Skip to content

Commit b3ab34f

Browse files
committed
tiny edits to ch 9.1
1 parent a62db6b commit b3ab34f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

source/part2/chapter-09/md/00-retrieving-osm-data.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ tags = {"amenity": True}
154154
amenities = ox.features.features_from_place(place, tags)
155155
```
156156

157-
Again, let's only plot a couple of available columns to check the contents of the data. You can see all column names by running `list(buildings.columns)`.
157+
Again, let's only plot a couple of available columns to check the contents of the data. You can see all column names by running `list(amenities.columns)`.
158158

159159
```python
160160
amenities[['amenity', 'name', 'opening_hours', 'geometry']].head()
@@ -290,7 +290,7 @@ _**Figure 9.7**. Downloaded buildings within a distance treshold from a geocoded
290290

291291
#### Question 9.3
292292

293-
Check your understanding and retrieve OpenStreetMap data from some other area in the world. Use `osmnx`and download:
293+
Check your understanding and retrieve OpenStreetMap data from some other area in the world. Use `osmnx` and download:
294294

295295
- Polygon of your area of interest
296296
- Street network

source/part2/chapter-09/nb/00-retrieving-osm-data.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -777,7 +777,7 @@
777777
"cell_type": "markdown",
778778
"metadata": {},
779779
"source": [
780-
"Again, let's only plot a couple of available columns to check the contents of the data. You can see all column names by running `list(buildings.columns)`."
780+
"Again, let's only plot a couple of available columns to check the contents of the data. You can see all column names by running `list(amenities.columns)`."
781781
]
782782
},
783783
{
@@ -1390,7 +1390,7 @@
13901390
"source": [
13911391
"#### Question 9.3\n",
13921392
"\n",
1393-
"Check your understanding and retrieve OpenStreetMap data from some other area in the world. Use `osmnx`and download:\n",
1393+
"Check your understanding and retrieve OpenStreetMap data from some other area in the world. Use `osmnx` and download:\n",
13941394
"\n",
13951395
"- Polygon of your area of interest\n",
13961396
"- Street network\n",

0 commit comments

Comments
 (0)