From 4e808e8b07c03fd7e1280671c83456ee5859285d Mon Sep 17 00:00:00 2001 From: Martin Fleischmann Date: Mon, 22 Apr 2024 16:37:40 +0200 Subject: [PATCH] DOC: fix typo (#64) --- doc/source/geopandas.ipynb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/source/geopandas.ipynb b/doc/source/geopandas.ipynb index 8b0ab59..d986b54 100644 --- a/doc/source/geopandas.ipynb +++ b/doc/source/geopandas.ipynb @@ -1834,7 +1834,7 @@ "source": [ "counties = gpd.read_file(get_path(\"geoda.natregimes\"))\n", "\n", - "deomgraphy = xr.Dataset(\n", + "demography = xr.Dataset(\n", " data_vars=dict(\n", " population=([\"county\", \"year\"], counties[[\"PO60\", \"PO70\", \"PO80\", \"PO90\"]]),\n", " unemployment=([\"county\", \"year\"], counties[[\"UE60\", \"UE70\", \"UE80\", \"UE90\"]]),\n", @@ -1843,7 +1843,7 @@ " ),\n", " coords=dict(county=counties.geometry, year=[1960, 1970, 1980, 1990]),\n", ").xvec.set_geom_indexes(\"county\", crs=counties.crs)\n", - "deomgraphy" + "demography" ] }, { @@ -2028,7 +2028,7 @@ } ], "source": [ - "deomgraphy.xvec.to_geodataframe()" + "demography.xvec.to_geodataframe()" ] }, { @@ -2371,7 +2371,7 @@ } ], "source": [ - "deomgraphy.xvec.to_geodataframe(long=False)" + "demography.xvec.to_geodataframe(long=False)" ] }, {