Skip to content

Commit 38dcb68

Browse files
committed
fixing typos
1 parent 48edbde commit 38dcb68

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

samples/04_gis_analysts_data_scientists/which_counties_and_states_have_access_to_airports.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -903,7 +903,7 @@
903903
"cell_type": "markdown",
904904
"metadata": {},
905905
"source": [
906-
"We also print out the names of states that lack have counties lacking airports. "
906+
"We also print out the names of states with counties that lack airports within. "
907907
]
908908
},
909909
{
@@ -989,7 +989,7 @@
989989
"cell_type": "markdown",
990990
"metadata": {},
991991
"source": [
992-
"We now write this method below to loop through each county and find its nearest airport using the spatial index for a quick search. We then use the __[`distance()`](https://developers.arcgis.com/python/latest/api-reference/arcgis.geometry.functions.html#distance)__ geometry method to find the distance between the centroid of the county and the closest airport in miles. We extract this data in the form of a distance matrix that gives us the distance between a county and its nearest airport, along with the population density. "
992+
"We now write this method below to loop through each county and find its nearest airport using the spatial index for a quick search. We then use the __[`distance()`](https://developers.arcgis.com/python/latest/api-reference/arcgis.geometry.functions.html#distance)__ Geometry method to find the distance between the centroid of the county and the closest airport in miles. We extract this data in the form of a distance matrix that gives us the distance between a county and its nearest airport, along with the population density. "
993993
]
994994
},
995995
{
@@ -1146,7 +1146,7 @@
11461146
"source": [
11471147
"def get_distance(x):\n",
11481148
" '''\n",
1149-
" Fetch distance value from the distance disctionary\n",
1149+
" Fetch distance value from the distance dictionary\n",
11501150
" '''\n",
11511151
" return x['distance']\n",
11521152
"\n",
@@ -1208,7 +1208,7 @@
12081208
"cell_type": "markdown",
12091209
"metadata": {},
12101210
"source": [
1211-
"The map below shows us that a few airports we saw initially in the Midwest and the central part of the country are no longer on this map, indicating that they are within 30 miles of the closest airport."
1211+
"The map below shows us that a few counties we saw initially in the Midwest and the central part of the country are no longer on this map, indicating that they are within 30 miles of the closest airport."
12121212
]
12131213
},
12141214
{

0 commit comments

Comments
 (0)