<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Reverse Geocoding... What am I doing wrong!? in ArcGIS Survey123 Questions</title>
    <link>https://community.esri.com/t5/arcgis-survey123-questions/reverse-geocoding-what-am-i-doing-wrong/m-p/1103747#M37726</link>
    <description>&lt;P&gt;I may be missing the point also but have you tried&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;pulldata("@geopoint",${&lt;STRONG&gt;address&lt;/STRONG&gt;},"reversegeocode.address.Match_addr","&lt;/SPAN&gt;&lt;EM&gt;&lt;A href="https://my/" target="_blank" rel="nofollow noopener noreferrer"&gt;https://my&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;company's geocoder URL&lt;/EM&gt;&lt;SPAN&gt;")&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 30 Sep 2021 21:11:02 GMT</pubDate>
    <dc:creator>LeonardBarnhill</dc:creator>
    <dc:date>2021-09-30T21:11:02Z</dc:date>
    <item>
      <title>Reverse Geocoding... What am I doing wrong!?</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/reverse-geocoding-what-am-i-doing-wrong/m-p/1103118#M37663</link>
      <description>&lt;P&gt;I've read through multiple posts about revere geocoding (long press on the map to auto-populate an "address" field within the Survey123 form).&amp;nbsp; I've tried over and over to get it to work, with no success.&lt;/P&gt;&lt;P&gt;If I enter:&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;pulldata("@geopoint",${location},"x","&lt;EM&gt;&lt;A href="https://my" target="_blank"&gt;https://my&lt;/A&gt; company's geocoder URL&lt;/EM&gt;")&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;I do get an X coordinate that auto-populates the address field.&amp;nbsp; If I enter:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;pulldata("@geopoint",${location},"reversegeocode.address.singleLineAddressField","&lt;EM&gt;&lt;A href="https://my" target="_blank"&gt;https://my&lt;/A&gt; company's geocoder URL&lt;/EM&gt;"&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;I get nothing.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;What am I missing/doing wrong?&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Sep 2021 15:15:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/reverse-geocoding-what-am-i-doing-wrong/m-p/1103118#M37663</guid>
      <dc:creator>JasonCyphers</dc:creator>
      <dc:date>2021-09-29T15:15:32Z</dc:date>
    </item>
    <item>
      <title>Re: Reverse Geocoding... What am I doing wrong!?</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/reverse-geocoding-what-am-i-doing-wrong/m-p/1103163#M37667</link>
      <description>&lt;P&gt;Hi. The problem sits on the property name you are passing to the pulldata() function. I bet that the property &lt;FONT color="#0000FF"&gt;address.singleLineAddressField &lt;/FONT&gt;does not exist in the output returned by the geocode service you are using.&lt;/P&gt;&lt;P&gt;Below, I am copying the output you can expect from the ArcGIS World Geocoding service. I took the example from &lt;A href="https://community.esri.com/t5/arcgis-survey123-blog/understanding-reverse-geocoding-in-survey123-3-0/ba-p/891644" target="_blank" rel="noopener"&gt;this blog&lt;/A&gt;. If you use this geocoding service, then you will want to use &lt;FONT color="#0000FF"&gt;reversegeocode.address.Match_addr&lt;/FONT&gt; for example.&lt;/P&gt;&lt;P&gt;The output of the reverse geocode call changes dependign on the geocoding service you are using. To inspect in detail the output you get, follow instructions from the blog post above. Hope this helps.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;{
	"address": {
		"Match_addr": "570 St Kilda Rd, Melbourne, Victoria, 3004",
		"LongLabel": "570 St Kilda Rd, Melbourne, Victoria, 3004, AUS",
		"ShortLabel": "570 St Kilda Rd",
		"Addr_type": "PointAddress",
		"Type": "",
		"PlaceName": "",
		"AddNum": "570",
		"Address": "570 St Kilda Rd",
		"Block": "",
		"Sector": "",
		"Neighborhood": "Melbourne",
		"District": "",
		"City": "Melbourne",
		"MetroArea": "",
		"Subregion": "",
		"Region": "Victoria",
		"Territory": "",
		"Postal": "3004",
		"PostalExt": "",
		"CountryCode": "AUS"
	},
	"location": {
		"x": 144.97914150000003,
		"y": -37.847384999999996,
		"spatialReference": {
			"wkid": 4326,
			"latestWkid": 4326
		}
	}
}‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Sep 2021 16:24:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/reverse-geocoding-what-am-i-doing-wrong/m-p/1103163#M37667</guid>
      <dc:creator>IsmaelChivite</dc:creator>
      <dc:date>2021-09-29T16:24:49Z</dc:date>
    </item>
    <item>
      <title>Re: Reverse Geocoding... What am I doing wrong!?</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/reverse-geocoding-what-am-i-doing-wrong/m-p/1103168#M37669</link>
      <description>&lt;P&gt;Thanks for the reply.&lt;/P&gt;&lt;P&gt;My company's geocoder has a "&lt;SPAN&gt;Match_addr" field, but even putting that (reversegeocode.address.Match_addr) into the calculation doesn't return any results.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I've even tried takin the geocoder URL out and just used&amp;nbsp;pulldata("@geopoint",${location},"reversegeocode.address.Match_addr"), and that doesn't work.&amp;nbsp; If I modify the&amp;nbsp;"reversegeocode.address.Match_addr" to pull coordinates, it works.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Sep 2021 16:53:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/reverse-geocoding-what-am-i-doing-wrong/m-p/1103168#M37669</guid>
      <dc:creator>JasonCyphers</dc:creator>
      <dc:date>2021-09-29T16:53:54Z</dc:date>
    </item>
    <item>
      <title>Re: Reverse Geocoding... What am I doing wrong!?</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/reverse-geocoding-what-am-i-doing-wrong/m-p/1103747#M37726</link>
      <description>&lt;P&gt;I may be missing the point also but have you tried&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;pulldata("@geopoint",${&lt;STRONG&gt;address&lt;/STRONG&gt;},"reversegeocode.address.Match_addr","&lt;/SPAN&gt;&lt;EM&gt;&lt;A href="https://my/" target="_blank" rel="nofollow noopener noreferrer"&gt;https://my&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;company's geocoder URL&lt;/EM&gt;&lt;SPAN&gt;")&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Sep 2021 21:11:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/reverse-geocoding-what-am-i-doing-wrong/m-p/1103747#M37726</guid>
      <dc:creator>LeonardBarnhill</dc:creator>
      <dc:date>2021-09-30T21:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: Reverse Geocoding... What am I doing wrong!?</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/reverse-geocoding-what-am-i-doing-wrong/m-p/1103909#M37753</link>
      <description>&lt;P&gt;I thought the ${address} field you mentioned was the name of the geopoint field?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JasonCyphers_0-1633089865818.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/24355i7BEB06BA39F211AC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JasonCyphers_0-1633089865818.png" alt="JasonCyphers_0-1633089865818.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Oct 2021 12:04:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/reverse-geocoding-what-am-i-doing-wrong/m-p/1103909#M37753</guid>
      <dc:creator>JasonCyphers</dc:creator>
      <dc:date>2021-10-01T12:04:53Z</dc:date>
    </item>
    <item>
      <title>Re: Reverse Geocoding... What am I doing wrong!?</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/reverse-geocoding-what-am-i-doing-wrong/m-p/1104738#M37829</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/9918"&gt;@JasonCyphers&lt;/a&gt;, here's how I've configured it.&amp;nbsp; Right column is the calculation column.&amp;nbsp; Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ThomasHamill_0-1633440496459.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/24523i5D21F33178B6A5B0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ThomasHamill_0-1633440496459.png" alt="ThomasHamill_0-1633440496459.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Oct 2021 13:29:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/reverse-geocoding-what-am-i-doing-wrong/m-p/1104738#M37829</guid>
      <dc:creator>ThomasHamill</dc:creator>
      <dc:date>2021-10-05T13:29:09Z</dc:date>
    </item>
    <item>
      <title>Re: Reverse Geocoding... What am I doing wrong!?</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/reverse-geocoding-what-am-i-doing-wrong/m-p/1109355#M38162</link>
      <description>&lt;P&gt;Thanks.&amp;nbsp; That's pretty much exactly what I have.&amp;nbsp; I can get coordinates to work, but not address.&amp;nbsp; I've tried Match_addr and ShortLabel, neither work.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JasonCyphers_0-1634751459872.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/25652i754A44BCB7993306/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JasonCyphers_0-1634751459872.png" alt="JasonCyphers_0-1634751459872.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JasonCyphers_1-1634751520860.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/25653iA2A76F2043BC8A07/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JasonCyphers_1-1634751520860.png" alt="JasonCyphers_1-1634751520860.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Oddly, it works in the web form, but in Connect and on the mobile app, I do get an error when long pressing on the map that "Reverse geocoding is not available when searching all geocoders.&amp;nbsp; Please select a single geocoder."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Oct 2021 11:44:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/reverse-geocoding-what-am-i-doing-wrong/m-p/1109355#M38162</guid>
      <dc:creator>JasonCyphers</dc:creator>
      <dc:date>2021-10-21T11:44:08Z</dc:date>
    </item>
  </channel>
</rss>

