Skip to content

Commit d007d12

Browse files
Merge pull request #9 from jyaistMap/jy-rvw-locate-addr
update formatting on hyperlinks
2 parents 4bc28e4 + eb21b00 commit d007d12

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@
410410
"\n",
411411
"Alternatively, the address can be specified in a multi-field format using a `dict` containing the various address fields accepted by the corresponding geocoding service.\n",
412412
"\n",
413-
"In order to provide a way to find addresses in many different countries, which may use different addressing formats, the `geocode()` method uses standardized field names for submitting address components. In understanding what specific fields are needed to enter for your address, you can check out [the `addressField` introduction](../part1-what-is-geocoding/) in the *What are geocoders and their types?* section for more information.\n",
413+
"In order to provide a way to find addresses in many different countries, which may use different addressing formats, the `geocode()` method uses standardized field names for submitting address components. To understand what specific fields are needed to enter for your address, you can check out the [Geocoding Introduction](../part1-what-is-geocoding/) guide in the *What are geocoders and their types?* section for more information.\n",
414414
"\n",
415415
"The Geocoder's `addressFields` property specifies the various address fields accepted by it. The neighborhood, city, subregion, and region parameters represent typical administrative divisions within a country. They may have different contexts for different countries, and not all administrative divisions are used in all countries. For instance, with addresses in the United States, only the `city` (city) and `region` (state) parameters are used; for addresses in Mexico, the `neighborhood` parameter is used for `districts` (colonias) within a city, `city` for `municipalities` (municipios), and the `region` parameter for `states` (estados); Spain uses all four administrative divisions.\n",
416416
"\n",
@@ -872,7 +872,7 @@
872872
"source": [
873873
"See below for the descriptions for all of the fields that can be returned by `geocode()`:\n",
874874
"\n",
875-
" - `address`: Complete matching address returned for [`findAddressCandidates`](https://developers.arcgis.com/rest/geocode/api-reference/geocoding-find-address-candidates.htm) and [`geocodeAddresses`](https://developers.arcgis.com/rest/geocode/api-reference/geocoding-geocode-addresses.htm_ geocode requests.\n",
875+
" - `address`: Complete matching address returned for [`findAddressCandidates`](https://developers.arcgis.com/rest/geocode/api-reference/geocoding-find-address-candidates.htm) and [`geocodeAddresses`](https://developers.arcgis.com/rest/geocode/api-reference/geocoding-geocode-addresses.htm) requests.\n",
876876
" - `location`: The point coordinates of the output match location as specified by the x and y properties. The spatial reference of the x and y coordinates is defined by the `spatialReference` output field. Always returned by default for `findAddressCandidates` and `geocodeAddresses` geocode requests only. \n",
877877
" - `score`: A number from 1–100 indicating the degree to which the input tokens in a geocoding request match the address components in a candidate record. A score of 100 represents a perfect match, while lower scores represent decreasing match accuracy. \n",
878878
" - `attributes`: A `dict` object containing `Loc_name`, `Status`, `Score`, `Match_addr`, `LongLabel`, `ShortLabel`, `Addr_type` and many other key-value pairs.\n",

0 commit comments

Comments
 (0)