Skip to content

Commit 0af1cb9

Browse files
authored
Merge pull request #25 from gboeing/updates
Spring updates
2 parents cf0d9d7 + d8fda13 commit 0af1cb9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

modules/05-geocoding-apis/lecture.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -941,7 +941,7 @@
941941
"ax = vacant.plot(c=\"b\", markersize=1, alpha=0.5)\n",
942942
"\n",
943943
"occupied = parking[parking[\"occupancystate\"] == \"OCCUPIED\"]\n",
944-
"ax = vacant.plot(ax=ax, c=\"r\", markersize=1, alpha=0.5)"
944+
"ax = occupied.plot(ax=ax, c=\"r\", markersize=1, alpha=0.5)"
945945
]
946946
},
947947
{

modules/06-spatial-data/lecture.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,7 @@
829829
" legend_name=\"Businesses per square km\",\n",
830830
").add_to(m)\n",
831831
"\n",
832-
"# add mouseover tooltip to the countries\n",
832+
"# add mouseover tooltip to the tracts\n",
833833
"c.geojson.add_child(folium.features.GeoJsonTooltip([\"GEOID\", \"density\"]))\n",
834834
"\n",
835835
"# save web map to disk\n",

modules/07-urban-networks-i/lecture.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -644,7 +644,7 @@
644644
"metadata": {},
645645
"outputs": [],
646646
"source": [
647-
"# restaurants near the empire state buildings\n",
647+
"# restaurants near the empire state building\n",
648648
"address = \"350 5th Ave, New York, NY 10001\"\n",
649649
"tags = {\"amenity\": \"restaurant\"}\n",
650650
"gdf = ox.features.features_from_address(address, tags=tags, dist=500)\n",

0 commit comments

Comments
 (0)