Skip to content

Commit b6b223f

Browse files
Fix outdated notebook call for NaturalEarth
1 parent 93a84c0 commit b6b223f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

examples/CERA_workflow.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@
4040
},
4141
"outputs": [],
4242
"source": [
43-
"world = gpd.read_file(gpd.datasets.get_path('naturalearth_lowres'))\n",
44-
"us = world[world.name.isin(['United States of America', 'Puerto Rico'])]\n",
43+
"world = gpd.read_file('https://naciscdn.org/naturalearth/110m/cultural/ne_110m_admin_0_countries.zip')\n",
44+
"us = world[world.NAME.isin(['United States of America', 'Puerto Rico'])]\n",
4545
"us_coast = us.boundary.intersection(world.unary_union.boundary)\n",
4646
"ax = world.plot(color='k', alpha=0.1)\n",
4747
"us.plot(ax=ax, color='b', alpha=0.2)\n",
@@ -206,7 +206,7 @@
206206
],
207207
"metadata": {
208208
"kernelspec": {
209-
"display_name": "python3",
209+
"display_name": "Python 3 (ipykernel)",
210210
"language": "python",
211211
"name": "python3"
212212
},
@@ -220,7 +220,7 @@
220220
"name": "python",
221221
"nbconvert_exporter": "python",
222222
"pygments_lexer": "ipython3",
223-
"version": "3.9.16"
223+
"version": "3.10.14"
224224
}
225225
},
226226
"nbformat": 4,

0 commit comments

Comments
 (0)