Skip to content

Commit 11da838

Browse files
committed
correct typo and change absolute link to relative
1 parent 0bf5071 commit 11da838

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

guide/09-finding-places-with-geocoding/part5_reverse_geocoding.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,14 +144,14 @@
144144
"source": [
145145
"## The required `location` parameter\n",
146146
"\n",
147-
"As shown in the help output above, the only required input parameter of `reverse_geocode()` is the [`location`](https://developers.arcgis.com/rest/geocode/api-reference/geocoding-reverse-geocode.htm#ESRI_SECTION3_4909D4145D0B4D3EB2D28F916351BC58) parameter, which is the point from which to search for the closest address. The point can be represented as:\n",
147+
"As shown in the help output above, the only required input parameter of `reverse_geocode()` is the [`location`](/rest/geocode/api-reference/geocoding-reverse-geocode.htm#ESRI_SECTION3_4909D4145D0B4D3EB2D28F916351BC58) parameter, which is the point from which to search for the closest address. The point can be represented as:\n",
148148
"* a `list` of coordinates in either *[x, y]* or *[longitude, latitude]* format\n",
149149
"* a `dict` object (with or without spatial reference)\n",
150150
"* a [Point Geometry](/python/api-reference/arcgis.geometry.html#point)\n",
151151
"\n",
152152
"The spatial reference of the list of coordinates is `WGS84` (in decimal degress), the same coordinate system as the World Geocoding Service.\n",
153153
"\n",
154-
"Use a Python dictionary to meet the JSON formatting (see [Geometry objects](https://developers.arcgis.com/rest/services-reference/enterprise/geometry-objects) for details) requriments of the service to specify any other coordinate system for the input location. Specifically, set the spatial reference using its `well-known ID (WKID)` value. For a list of valid WKID values, see the [Using spatial references](https://developers.arcgis.com/rest/services-reference/enterprise/using-spatial-references/) help page.\n",
154+
"Use a Python dictionary to meet the JSON formatting (see [Geometry objects](/rest/services-reference/enterprise/geometry-objects) for details) requirements of the service to specify any other coordinate system for the input location. Specifically, set the spatial reference using its `well-known ID (WKID)` value. For a list of valid WKID values, see the [Using spatial references](/rest/services-reference/enterprise/using-spatial-references/) help page.\n",
155155
"\n",
156156
"* Example using the default `WGS84` spatial reference:\n",
157157
"```\n",

0 commit comments

Comments
 (0)