<?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: geopoint type question managment in ArcGIS Survey123 Questions</title>
    <link>https://community.esri.com/t5/arcgis-survey123-questions/geopoint-type-question-managment/m-p/803312#M11368</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perfect! Thnaks a lot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 02 Oct 2020 19:22:55 GMT</pubDate>
    <dc:creator>CédricVilleneuve</dc:creator>
    <dc:date>2020-10-02T19:22:55Z</dc:date>
    <item>
      <title>geopoint type question managment</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/geopoint-type-question-managment/m-p/803310#M11366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi every one,&lt;/P&gt;&lt;P&gt;I know we cannot have multiple geopoint set as point shape but since I fugured we could put esritype:bind to null I've set many questions in my survey as geopoint&amp;nbsp; so&amp;nbsp;I could get more than one place to capture the localisation of what I describe. The problem is the following: as I do not get a point shape where is the coordinates are stoked? In the form I have that little map with a pin but once I sync the form, the table as no coordinates field..... Where is this info I capture via geopoint question?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Oct 2020 17:33:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/geopoint-type-question-managment/m-p/803310#M11366</guid>
      <dc:creator>CédricVilleneuve</dc:creator>
      <dc:date>2020-10-02T17:33:02Z</dc:date>
    </item>
    <item>
      <title>Re: geopoint type question managment</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/geopoint-type-question-managment/m-p/803311#M11367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you set the fieldType to null, the question value is stored in your device but never sent to your feature layer.&lt;/P&gt;&lt;P&gt;If you want to persist the XY Coordinates in your feature layer as attributes, do something like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE class="j-table jiveBorder" style="border: 1px solid #c6c6c6;" width="100%"&gt;&lt;THEAD&gt;&lt;TR style="background-color: #efefef;"&gt;&lt;TH&gt;type&lt;/TH&gt;&lt;TH&gt;name&lt;/TH&gt;&lt;TH&gt;label&lt;/TH&gt;&lt;TH&gt;appearance&lt;/TH&gt;&lt;TH&gt;calculation&lt;/TH&gt;&lt;TH&gt;bind::esri:fieldType&lt;/TH&gt;&lt;/TR&gt;&lt;/THEAD&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;geopoint&lt;/TD&gt;&lt;TD&gt;location&lt;/TD&gt;&lt;TD&gt;Location&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;null&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;decimal&lt;/TD&gt;&lt;TD&gt;coord_x&lt;/TD&gt;&lt;TD&gt;X&lt;/TD&gt;&lt;TD&gt;hidden&lt;/TD&gt;&lt;TD&gt;pulldata("@geopoint", ${location}, "x")&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;decimal&lt;/TD&gt;&lt;TD&gt;coord_y&lt;/TD&gt;&lt;TD&gt;Y&lt;/TD&gt;&lt;TD&gt;hidden&lt;/TD&gt;&lt;TD&gt;pulldata("@geopoint", ${location}, "y")&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternatively&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE class="j-table jiveBorder" style="border: 1px solid #c6c6c6;" width="100%"&gt;&lt;THEAD&gt;&lt;TR style="background-color: #efefef;"&gt;&lt;TH&gt;type&lt;/TH&gt;&lt;TH&gt;name&lt;/TH&gt;&lt;TH&gt;label&lt;/TH&gt;&lt;TH&gt;calculation&lt;/TH&gt;&lt;TH&gt;bind::esri:fieldType&lt;/TH&gt;&lt;/TR&gt;&lt;/THEAD&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;geopoint&lt;/TD&gt;&lt;TD&gt;location&lt;/TD&gt;&lt;TD&gt;Location&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;null&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;calculate&lt;/TD&gt;&lt;TD&gt;coord_x&lt;/TD&gt;&lt;TD&gt;X&lt;/TD&gt;&lt;TD&gt;pulldata("@geopoint", ${location}, "x")&lt;/TD&gt;&lt;TD&gt;esriFieldTypeDouble&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;calculate&lt;/TD&gt;&lt;TD&gt;coord_y&lt;/TD&gt;&lt;TD&gt;Y&lt;/TD&gt;&lt;TD&gt;pulldata("@geopoint", ${location}, "y")&lt;/TD&gt;&lt;TD&gt;esriFieldTypeDouble&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Oct 2020 18:18:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/geopoint-type-question-managment/m-p/803311#M11367</guid>
      <dc:creator>IsmaelChivite</dc:creator>
      <dc:date>2020-10-02T18:18:12Z</dc:date>
    </item>
    <item>
      <title>Re: geopoint type question managment</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/geopoint-type-question-managment/m-p/803312#M11368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perfect! Thnaks a lot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Oct 2020 19:22:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/geopoint-type-question-managment/m-p/803312#M11368</guid>
      <dc:creator>CédricVilleneuve</dc:creator>
      <dc:date>2020-10-02T19:22:55Z</dc:date>
    </item>
    <item>
      <title>Re: geopoint type question managment</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/geopoint-type-question-managment/m-p/803313#M11369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I did not do that from the start, is there any way for me to get those value from a form&amp;nbsp;in my Inbox that was already done and sent?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Oct 2020 19:25:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/geopoint-type-question-managment/m-p/803313#M11369</guid>
      <dc:creator>CédricVilleneuve</dc:creator>
      <dc:date>2020-10-02T19:25:12Z</dc:date>
    </item>
    <item>
      <title>Re: geopoint type question managment</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/geopoint-type-question-managment/m-p/803314#M11370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you did not persist the X/Y values in the feature layer I do not see how you could recover these values.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Oct 2020 19:36:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/geopoint-type-question-managment/m-p/803314#M11370</guid>
      <dc:creator>IsmaelChivite</dc:creator>
      <dc:date>2020-10-02T19:36:11Z</dc:date>
    </item>
    <item>
      <title>Re: geopoint type question managment</title>
      <link>https://community.esri.com/t5/arcgis-survey123-questions/geopoint-type-question-managment/m-p/803315#M11371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I will take this as a NO hihi.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Oct 2020 19:48:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-survey123-questions/geopoint-type-question-managment/m-p/803315#M11371</guid>
      <dc:creator>CédricVilleneuve</dc:creator>
      <dc:date>2020-10-02T19:48:44Z</dc:date>
    </item>
  </channel>
</rss>

