From e5d28142c8d5f8e755643fb7cfd45a1d96052c58 Mon Sep 17 00:00:00 2001 From: uniform64 Date: Thu, 10 Jul 2025 23:13:09 +0800 Subject: [PATCH] doc: fix outdated GeoHandler --- docs/cookbooks/Visualizing-Data-With-Geopandas.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/cookbooks/Visualizing-Data-With-Geopandas.ipynb b/docs/cookbooks/Visualizing-Data-With-Geopandas.ipynb index 84e2923..d6dd34f 100644 --- a/docs/cookbooks/Visualizing-Data-With-Geopandas.ipynb +++ b/docs/cookbooks/Visualizing-Data-With-Geopandas.ipynb @@ -60,7 +60,7 @@ "id": "2aac82bf-fd20-4fc4-8232-dbc3c281b842", "metadata": {}, "source": [ - "This will load every single OSM object into the GeoDataFrame as long as it can be converted into a geometry, including all untagged nodes. This is usually not what you want. Therefore it is important to carefully filter the data before giving it to the GeoHandler. In our case we are only interested in streets. That means, it must be linear ways with a tag 'highway'. Lets add the appropriate filters:" + "This will load every single OSM object into the GeoDataFrame as long as it can be converted into a geometry, including all untagged nodes. This is usually not what you want. Therefore it is important to carefully filter the data before giving it to the GeoInterfaceFilter. In our case we are only interested in streets. That means, it must be linear ways with a tag 'highway'. Lets add the appropriate filters:" ] }, { @@ -516,7 +516,7 @@ "id": "7b7ff175-18a2-4f6b-acc7-e91ea168b8f7", "metadata": {}, "source": [ - "It also contains all possible tags, that an OSM object can have. We are only interested in a selected number of tags. The GeoHandler can be instructed to restrict the tags, it adds to the properties:" + "It also contains all possible tags, that an OSM object can have. We are only interested in a selected number of tags. The GeoInterfaceFilter can be instructed to restrict the tags, it adds to the properties:" ] }, {