diff --git a/notebooks/topojson.ipynb b/notebooks/topojson.ipynb index 75ff591..2adf6d2 100644 --- a/notebooks/topojson.ipynb +++ b/notebooks/topojson.ipynb @@ -9,7 +9,8 @@ "from topojson import Topology\n", "import geopandas as gpd\n", "\n", - "africa = gpd.read_file(gpd.datasets.get_path(\"naturalearth_lowres\")).query('continent == \"Africa\"')" + "gdf = gpd.read_file(\"https://d2ad6b4ur7yvpq.cloudfront.net/naturalearth-3.3.0/ne_50m_admin_0_countries.geojson\")\n", + "africa = gdf.query('continent == \"Africa\"')" ] }, {