<?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: Extracting Geometry Coordinates from JSON String in ArcGIS GeoEvent Server Questions</title>
    <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/extracting-geometry-coordinates-from-json-string/m-p/389090#M1655</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, I will try that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you recommend creating a flat geoevent definition and using a field mapper?&lt;/P&gt;&lt;P&gt;Which output connector works the best? I used "&lt;SPAN class="" style="font-size: 15.6px;"&gt;Update a Feature in a Spatiotemporal Big Data Store&lt;/SPAN&gt;&lt;SPAN class="" style="font-size: 15.6px;"&gt;&lt;/SPAN&gt;" .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Feb 2020 15:07:08 GMT</pubDate>
    <dc:creator>SaraAbasi</dc:creator>
    <dc:date>2020-02-19T15:07:08Z</dc:date>
    <item>
      <title>Extracting Geometry Coordinates from JSON String</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/extracting-geometry-coordinates-from-json-string/m-p/389085#M1650</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;With the GeoEvent Processor, is there a way to extract the coordinates from a JSON field when the coordinates are embedded in a single string?:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;"CREATED_LOCATION":"31.555114:-117.458182:12.792526:10.000000:3.000000:0.000000:-1.000000:1402525011.385171"&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm just trying to pull out the 31.555114 and -117.458182 to be used in creating Geometry for a feature service.&amp;nbsp; I asked a similar question recently (&lt;/SPAN&gt;&lt;A href="http://forums.arcgis.com/threads/109721-Converting-Lat-Long-Coordinates-in-JSON-Feed-to-Geometry?p=389548#post389548"&gt;http://forums.arcgis.com/threads/109721-Converting-Lat-Long-Coordinates-in-JSON-Feed-to-Geometry?p=389548#post389548&lt;/A&gt;&lt;SPAN&gt;), but this case is a little trickier since the coordinates are now embedded in a single string.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jun 2014 23:54:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/extracting-geometry-coordinates-from-json-string/m-p/389085#M1650</guid>
      <dc:creator>TomFlahive</dc:creator>
      <dc:date>2014-06-11T23:54:59Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting Geometry Coordinates from JSON String</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/extracting-geometry-coordinates-from-json-string/m-p/389086#M1651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello Tom -&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I apologize for not being able to respond to your post earlier.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The easiest way to do what I think you are trying to do will be to leverage the &lt;/SPAN&gt;&lt;STRONG style="font-style: italic;"&gt;Field Calculator&lt;/STRONG&gt;&lt;SPAN&gt; and Java string functions available with the 10.2.2 product release.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Given a block of JSON input:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
{
&amp;nbsp;&amp;nbsp;&amp;nbsp; "Attributes": {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "name": "Some name...",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "date": "2/17/2014 15:31:45"
&amp;nbsp;&amp;nbsp;&amp;nbsp; },
&amp;nbsp;&amp;nbsp;&amp;nbsp; "Location": "31.555114:-117.458182:12.792526:10.000000:3.000000:0.000000"
}
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You could design a GeoEvent Service something like the one illustrated below to find the index of the ':' delimiters within the event attribute string and then pull the substring found between those index values.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]34963[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(Click to Enlarge)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is going to depend on your "latitude" and "longitude" always being found within the first two substring values of the &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;Location&lt;/SPAN&gt;&lt;SPAN&gt; attribute string. The output you should expect would look something like:&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
[
&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Attributes": {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "name": "Some name...",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "date": 1392679905000
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; },
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Location": "31.555114:-117.458182:12.792526:10.000000:3.000000:0.000000",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "IdxA": 9,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "IdxB": 21,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Latitude": 31.555114,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Longitude": -117.458182
&amp;nbsp;&amp;nbsp;&amp;nbsp; }
]
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope that helps -&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;RJ&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 17:51:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/extracting-geometry-coordinates-from-json-string/m-p/389086#M1651</guid>
      <dc:creator>RJSunderman</dc:creator>
      <dc:date>2021-12-11T17:51:50Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting Geometry Coordinates from JSON String</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/extracting-geometry-coordinates-from-json-string/m-p/389087#M1652</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks RJ, I would have never figured that out.&amp;nbsp; This will work.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Tom&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jun 2014 17:46:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/extracting-geometry-coordinates-from-json-string/m-p/389087#M1652</guid>
      <dc:creator>TomFlahive</dc:creator>
      <dc:date>2014-06-30T17:46:28Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting Geometry Coordinates from JSON String</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/extracting-geometry-coordinates-from-json-string/m-p/389088#M1653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi RJ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Will you be able to help me with creating a calculated field for the following input?&lt;/P&gt;&lt;P&gt;I am polling an external website for a json, here is the format of the input and the geodefinition that created by default.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-emoji image-1 jive-image" height="382" src="https://community.esri.com/legacyfs/online/482622_input-data-bird.jpg" width="336" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-2 jive-image" height="282" src="https://community.esri.com/legacyfs/online/482645_pastedImage_3.png" width="532" /&gt;&lt;/P&gt;&lt;P&gt;I've created a flat geoevent definition but I am not sure how to map the data to the new definition and the expression in the calculated field to build the geometry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Feb 2020 13:57:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/extracting-geometry-coordinates-from-json-string/m-p/389088#M1653</guid>
      <dc:creator>SaraAbasi</dc:creator>
      <dc:date>2020-02-19T13:57:23Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting Geometry Coordinates from JSON String</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/extracting-geometry-coordinates-from-json-string/m-p/389089#M1654</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A href="https://community.esri.com/migrated-users/347151"&gt;Sara Abasi&lt;/A&gt;‌,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the easiest way would be to use "Construct Geometry From Fields" in your input connector. This will work pretty fine if you always have the same JSON structure that contains a geometry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just add a new field to your geoevent definition with the &lt;STRONG&gt;Type&lt;/STRONG&gt; &lt;EM&gt;Geometry&lt;/EM&gt; and the &lt;STRONG&gt;Tag&lt;/STRONG&gt;&amp;nbsp;&lt;EM&gt;GEOMETRY&lt;/EM&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the Advanced section if your input configuration you can try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/482656_pastedImage_5.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That should work &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Feb 2020 14:49:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/extracting-geometry-coordinates-from-json-string/m-p/389089#M1654</guid>
      <dc:creator>Stefan_Jung</dc:creator>
      <dc:date>2020-02-19T14:49:47Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting Geometry Coordinates from JSON String</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/extracting-geometry-coordinates-from-json-string/m-p/389090#M1655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, I will try that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you recommend creating a flat geoevent definition and using a field mapper?&lt;/P&gt;&lt;P&gt;Which output connector works the best? I used "&lt;SPAN class="" style="font-size: 15.6px;"&gt;Update a Feature in a Spatiotemporal Big Data Store&lt;/SPAN&gt;&lt;SPAN class="" style="font-size: 15.6px;"&gt;&lt;/SPAN&gt;" .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Feb 2020 15:07:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/extracting-geometry-coordinates-from-json-string/m-p/389090#M1655</guid>
      <dc:creator>SaraAbasi</dc:creator>
      <dc:date>2020-02-19T15:07:08Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting Geometry Coordinates from JSON String</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/extracting-geometry-coordinates-from-json-string/m-p/389091#M1656</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Creating a flat geoevent definition is always a good idea if the data will be used in a relational table.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just be careful if you have fields with&amp;nbsp;&lt;STRONG&gt;Cardinality&lt;/STRONG&gt; &lt;EM&gt;many&lt;/EM&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And which output connector works best depends on what are you planning to do with the data. There is not just one correct answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to save all the incoming data for analysis and if you receive a lot of data than the Spatiotemporal Big Data Store might be best for you. If you&amp;nbsp;want save and update the last location of your incoming vehicles the Standard Data Store might be enough. If you want to have a smooth visualization of the current position of each vehicle maybe Stream Service is your choice.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Feb 2020 15:19:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/extracting-geometry-coordinates-from-json-string/m-p/389091#M1656</guid>
      <dc:creator>Stefan_Jung</dc:creator>
      <dc:date>2020-02-19T15:19:06Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting Geometry Coordinates from JSON String</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/extracting-geometry-coordinates-from-json-string/m-p/389092#M1657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Stefan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used the output: "&lt;SPAN style="color: #505051; background-color: #ffffff; font-size: 15.6px;"&gt;Add a Feature to a Spatiotemporal Big Data Store&lt;/SPAN&gt;", count is increasing in Geoevent manger/ monitor, but there is no data when I view the feature class in portal/ content page.&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/482660_pastedImage_2.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" height="142" src="https://community.esri.com/legacyfs/online/482647_pastedImage_1.png" width="491" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Feb 2020 15:20:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/extracting-geometry-coordinates-from-json-string/m-p/389092#M1657</guid>
      <dc:creator>SaraAbasi</dc:creator>
      <dc:date>2020-02-19T15:20:39Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting Geometry Coordinates from JSON String</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/extracting-geometry-coordinates-from-json-string/m-p/389093#M1658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First of all i would check the log-files if you find any error trying to write to the output. Maybe there is a missmatch of the geoevent defnition that has been used for publishing the service and is now used to write.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For debugging&amp;nbsp;I would also suggest you to create a new output connector:&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Push Text to an External TCP Socket&lt;/EM&gt;&lt;/STRONG&gt; and use the GeoEvent Logger (installed with GeoEvent Server) to see what data is send to the output.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Feb 2020 15:29:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/extracting-geometry-coordinates-from-json-string/m-p/389093#M1658</guid>
      <dc:creator>Stefan_Jung</dc:creator>
      <dc:date>2020-02-19T15:29:23Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting Geometry Coordinates from JSON String</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/extracting-geometry-coordinates-from-json-string/m-p/389094#M1659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's captured in logs for both outputs I created, Spatiotemporal and stream service:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;"The GeoEvent received contains an incompatible GeoEvent Definition (Bird-Status-Changes-Created) than the schema of the destination Spatiotemporal Big Data Store Service (BirdAPI-StatusChanges-Flat)."&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Feb 2020 15:34:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/extracting-geometry-coordinates-from-json-string/m-p/389094#M1659</guid>
      <dc:creator>SaraAbasi</dc:creator>
      <dc:date>2020-02-19T15:34:51Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting Geometry Coordinates from JSON String</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/extracting-geometry-coordinates-from-json-string/m-p/389095#M1660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So you might forgot to map the GeoEvent Definition. The Definition that is received by the Ouput must match the one that has been used for publishing the service.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Feb 2020 15:48:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/extracting-geometry-coordinates-from-json-string/m-p/389095#M1660</guid>
      <dc:creator>Stefan_Jung</dc:creator>
      <dc:date>2020-02-19T15:48:49Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting Geometry Coordinates from JSON String</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/extracting-geometry-coordinates-from-json-string/m-p/389096#M1661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a field mapper in the service and I've mapped the created geo definition to the flat definition.&amp;nbsp;&lt;/P&gt;&lt;P&gt;then I used the flat one in the output and datastore.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I feel like there is something wrong with the fields and cardinalities. Please see the screenshots below.&lt;/P&gt;&lt;P&gt;"Bird-Status-changes- created" is the&amp;nbsp;geo definition&amp;nbsp;automatically created by the input.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field mapper processor in the service:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" height="374" src="https://community.esri.com/legacyfs/online/482661_pastedImage_1.png" width="389" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Output connector:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-2 jive-image" height="141" src="https://community.esri.com/legacyfs/online/482662_pastedImage_2.png" width="487" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Auto-created geo definition: (we added "construct geometry field, I am not sure how they are used to construct the geometry?"). I have added the "Geometry" manually.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-3 jive-image" height="339" src="https://community.esri.com/legacyfs/online/482675_pastedImage_3.png" width="470" /&gt;&lt;/P&gt;&lt;P&gt;Flat geo definition:&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-4" height="178" src="https://community.esri.com/legacyfs/online/482676_pastedImage_4.png" width="602" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Feb 2020 16:22:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/extracting-geometry-coordinates-from-json-string/m-p/389096#M1661</guid>
      <dc:creator>SaraAbasi</dc:creator>
      <dc:date>2020-02-19T16:22:49Z</dc:date>
    </item>
  </channel>
</rss>

