<?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: Is there an expression for converting values of longtitude and latitude into a point in ArcGIS GeoEvent Server Questions</title>
    <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/is-there-an-expression-for-converting-values-of/m-p/382545#M1632</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello David -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the field type within your GeoEvent is already of type Geometry, then no, you cannot use a &lt;EM&gt;Field Calculator&lt;/EM&gt; processor (for example) to reach into the Geometry object and extract out coordinate values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You might want to take a look at the &lt;A href="http://www.arcgis.com/home/item.html?id=2bdf684d4b5342e2a8bf6036b6f816b8"&gt;Extent Enricher Processor&lt;/A&gt; available on the Gallery. The source code for this custom processor is available on GitHub &lt;A href="https://github.com/Esri/extent-enricher-for-geoevent"&gt;here&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As I understand it, the processor allows you to enrich an event with fields providing the minimum and maximum X and Y values. The processor can optionally enrich the event with a second Geometry representing the center point of the original geometry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I believe the processor, given a Point geometry, will return to you identical minimum X and maximum X values ... the minimum Y and maximum Y would likewise be the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this information helps -&lt;/P&gt;&lt;P&gt;RJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 08 Apr 2015 02:25:01 GMT</pubDate>
    <dc:creator>RJSunderman</dc:creator>
    <dc:date>2015-04-08T02:25:01Z</dc:date>
    <item>
      <title>Is there an expression for converting values of longtitude and latitude into a point</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/is-there-an-expression-for-converting-values-of/m-p/382537#M1624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I need to calculate a shape from an input of json.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Is there an expression that I can use to convert the longtitude and latitude values into a point geometry to feed a shape field?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 May 2014 15:19:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/is-there-an-expression-for-converting-values-of/m-p/382537#M1624</guid>
      <dc:creator>KerenCohen</dc:creator>
      <dc:date>2014-05-11T15:19:42Z</dc:date>
    </item>
    <item>
      <title>Re: Is there an expression for converting values of longtitude and latitude into a po</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/is-there-an-expression-for-converting-values-of/m-p/382538#M1625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Which input connector are you using?&amp;nbsp; If you are using an input connector that has a "build geometry from fields" property, you specify which "fields" contain your x and y coordinates in your inbound messages and GeoEvent Processor will automatically build the shape using the values in those two fields.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Keep in mind:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;1. The GeoEvent Definition you will be using for your inbound messages needs a field to contain this automatically-built geometry.&amp;nbsp; So you may need to add a field to your GeoEvent Definition, which is a common scenario if you told GeoEvent Processor to automatically create the GeoEvent Definition based on incoming data.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. If the x and y values are not at the top level of your JSON, you will need to fully qualify the location of your x and y.&amp;nbsp; For example, if your inbound JSON looks like this: &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; [INDENT][/INDENT]"iss_position": {&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; [INDENT][INDENT][/INDENT][/INDENT]&amp;nbsp; "latitude": 44.16374704120857, &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; [INDENT][INDENT][/INDENT][/INDENT]&amp;nbsp; "longitude": -127.63242554809165&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; [INDENT][/INDENT] }, &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; [INDENT][INDENT][/INDENT][/INDENT] "message": "success", &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; [INDENT][INDENT][/INDENT][/INDENT]"timestamp": 1400010196&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You would need to tell your input that the x value is in "iss_position.longitude" and y value in "iss_position.latitude" (not just "longitude" and "latitude").&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Mark&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2014 18:49:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/is-there-an-expression-for-converting-values-of/m-p/382538#M1625</guid>
      <dc:creator>MarkBramer</dc:creator>
      <dc:date>2014-05-13T18:49:52Z</dc:date>
    </item>
    <item>
      <title>Re: Is there an expression for converting values of longtitude and latitude into a po</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/is-there-an-expression-for-converting-values-of/m-p/382539#M1626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello Keren -&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;An example of the functionality to which Mark is referring, &lt;/SPAN&gt;&lt;STRONG style="font-style: italic;"&gt;Build Geometry From Fields&lt;/STRONG&gt;&lt;SPAN&gt;&lt;SPAN&gt; can be found in 'Module 2' of the recently updated Introduction to &lt;A href="&amp;lt;/span&amp;gt;&amp;lt;a" target="_blank" rel="nofollow noopener noreferrer"&gt;GeoEvent" rel="nofollow" target="_blank"&amp;gt;http://www.arcgis.com/home/item.html?id=265c334a47994dcc95e1bd57cf20e98e]GeoEvent&lt;/A&gt;&lt;SPAN&gt; Processor tutorial. Look on pages 26 and 27 in the exercise "Making Features Come Alive".&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If your coordinates are expressed as attributes within a group, as in Mark's example, you retrieve them from the JSON structure by name. If the coordinates are in a list, as illustrated below, you need to specify the list index from which the coordinate value can be obtained.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
{
&amp;nbsp;&amp;nbsp;&amp;nbsp; "iss_position": {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "coordinates": [
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -127.632425,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 44.163747
&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; "message": "success",
&amp;nbsp;&amp;nbsp;&amp;nbsp; "timestamp": 1400010196
}
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Given the JSON above, you would specify the &lt;/SPAN&gt;&lt;STRONG style="font-style: italic;"&gt;X Geometry Field&lt;/STRONG&gt;&lt;SPAN&gt; be taken from &lt;/SPAN&gt;&lt;STRONG style="font-style: italic;"&gt;iss_position.coordinates[0]&lt;/STRONG&gt;&lt;SPAN&gt; and the &lt;/SPAN&gt;&lt;STRONG style="font-style: italic;"&gt;Y Geometry Field&lt;/STRONG&gt;&lt;SPAN&gt; from &lt;/SPAN&gt;&lt;STRONG style="font-style: italic;"&gt;iss_position.coordinates[1]&lt;/STRONG&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope this information helps -&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;RJ&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 17:37:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/is-there-an-expression-for-converting-values-of/m-p/382539#M1626</guid>
      <dc:creator>RJSunderman</dc:creator>
      <dc:date>2021-12-11T17:37:31Z</dc:date>
    </item>
    <item>
      <title>Re: Is there an expression for converting values of longtitude and latitude into a point</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/is-there-an-expression-for-converting-values-of/m-p/382540#M1627</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;I have just upgraded to 10.3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a GEP service which uses a Field Calculator to convert coordinates from minute degrees to decimal degrees and then use a Field Mapper to to cast the the string to a Geometry type, like explained in the "&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Using a Field Calculator Processor to compute a Geometry" example. Like this:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;longitude and latitude are converted coorinates.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;'{' + ' "x":' + longitude + ',' + ' "y":' + latitude + ',' + ' "spatialReference":{"wkid":4326} }'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;This worked just fine in 10.2.2, but now this is not working. I get the follwing error:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" class="dojoxGridRowTable"&gt;&lt;TBODY&gt;&lt;TR style="background-color: #f7fcff; background-position: initial !important;"&gt;&lt;TD class="dojoxGridCellOver dojoxGridCell" colspan="1" style="padding-right: 5px; padding-left: 5px; border-width: 1px; border-style: solid; border-color: #769dc0 #e5dac8 #769dc0 transparent; background: #e5edf4;"&gt;com.esri.ges.adapter.genericJson.JsonInboundParser&lt;/TD&gt;&lt;TD class="dojoxGridCell" colspan="1" style="padding-right: 5px; padding-left: 5px; border-width: 1px; border-style: solid; border-color: #769dc0 #e5dac8 #769dc0 transparent; background: #e5edf4;"&gt;Json parser could not find the field 'location.longitude' in the incoming data. This field is needed to populate the 'x' value in the Geometry.&lt;/TD&gt;&lt;TD class="dojoxGridCell" colspan="1" style="padding-right: 5px; padding-left: 5px; border-width: 1px; border-style: solid; border-color: #769dc0 #e5dac8 #769dc0 transparent; background: #e5edf4;"&gt;&lt;/TD&gt;&lt;TD class="dojoxGridCell" colspan="1" style="padding-right: 5px; padding-left: 5px; border-width: 1px; border-style: solid; border-color: #769dc0 #e5dac8 #769dc0 transparent; background: #e5edf4;"&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" class="dojoxGridRowTable"&gt;&lt;TBODY&gt;&lt;TR style="background-color: #cee6fa; background-position: initial !important;"&gt;&lt;TD class="dojoxGridCell" colspan="1" style="padding-right: 5px; padding-left: 5px; border-width: 1px; border-style: solid; border-color: #bfd6eb #e5dac8 #bfd6eb transparent;"&gt;com.esri.ges.adapter.genericJson.JsonInboundParser&lt;/TD&gt;&lt;TD class="dojoxGridCellFocus dojoxGridCellActive dojoxGridCell" colspan="1" style="padding-right: 5px; padding-left: 5px; border-width: 1px; border-style: solid; border-color: #bfd6eb #e5dac8 #bfd6eb transparent;"&gt;Json parser could not find the field 'location.latitude' in the incoming data. This field is needed to populate the 'y' value in the Geometry.&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So something have changed in 10.3, I guess it's trying to read the String with nested fields as a Geometry type, and not just converting the string to a geometry object?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I fix this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;Sindre &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Dec 2014 10:58:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/is-there-an-expression-for-converting-values-of/m-p/382540#M1627</guid>
      <dc:creator>SindreEngh</dc:creator>
      <dc:date>2014-12-11T10:58:04Z</dc:date>
    </item>
    <item>
      <title>Re: Is there an expression for converting values of longtitude and latitude into a point</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/is-there-an-expression-for-converting-values-of/m-p/382541#M1628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I fugured this one out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In 10.3 when you calculate the geometry with the Field Calculator the New Field Type should be Geomtry, not String. This have changed from 10.2.2. When you then Field Map it to the Shape field of the output Feature Class it works!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="FieldCalc.png" class="jive-image image-1" src="https://community.esri.com/legacyfs/online/39370_FieldCalc.png" style="width: 620px; height: 364px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Dec 2014 11:35:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/is-there-an-expression-for-converting-values-of/m-p/382541#M1628</guid>
      <dc:creator>SindreEngh</dc:creator>
      <dc:date>2014-12-11T11:35:43Z</dc:date>
    </item>
    <item>
      <title>Re: Is there an expression for converting values of longtitude and latitude into a point</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/is-there-an-expression-for-converting-values-of/m-p/382542#M1629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've just verified for the 10.3.1 product release that this has been fixed. You will again be able to use a &lt;EM&gt;Field Calculator&lt;/EM&gt; to produce a JSON String representation of a Geometry and write the result to a &lt;EM&gt;New Field Type:&amp;nbsp; String&lt;/EM&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When using the 10.3.0 product release, you will need to write your &lt;EM&gt;Field Calculator&lt;/EM&gt; output to a &lt;EM&gt;Geometry&lt;/EM&gt; field of type Geometry as illustrated above. You will probably also have to use a &lt;EM&gt;Field Mapper&lt;/EM&gt; to make sure the 'Geometry' the processor has calculated is cast to a proper Geometry before attempting to update features through a feature service.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The workflow outlined in the appendix of the product introduction tutorial works as documented for the 10.3.1 product release. Apologies for the frustration over this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- RJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Feb 2015 19:25:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/is-there-an-expression-for-converting-values-of/m-p/382542#M1629</guid>
      <dc:creator>RJSunderman</dc:creator>
      <dc:date>2015-02-27T19:25:31Z</dc:date>
    </item>
    <item>
      <title>Re: Is there an expression for converting values of longtitude and latitude into a point</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/is-there-an-expression-for-converting-values-of/m-p/382543#M1630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Great news. Thanks RJ.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Brad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Feb 2015 19:28:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/is-there-an-expression-for-converting-values-of/m-p/382543#M1630</guid>
      <dc:creator>BradleyHardesty</dc:creator>
      <dc:date>2015-02-27T19:28:57Z</dc:date>
    </item>
    <item>
      <title>Re: Is there an expression for converting values of longtitude and latitude into a point</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/is-there-an-expression-for-converting-values-of/m-p/382544#M1631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying the opposite.&amp;nbsp; I have a geometry tag but I'm trying to use the x or y value in the field calculator expression.&amp;nbsp; Anyone know how to to this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Apr 2015 21:22:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/is-there-an-expression-for-converting-values-of/m-p/382544#M1631</guid>
      <dc:creator>DavidStajan</dc:creator>
      <dc:date>2015-04-07T21:22:25Z</dc:date>
    </item>
    <item>
      <title>Re: Is there an expression for converting values of longtitude and latitude into a point</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/is-there-an-expression-for-converting-values-of/m-p/382545#M1632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello David -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the field type within your GeoEvent is already of type Geometry, then no, you cannot use a &lt;EM&gt;Field Calculator&lt;/EM&gt; processor (for example) to reach into the Geometry object and extract out coordinate values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You might want to take a look at the &lt;A href="http://www.arcgis.com/home/item.html?id=2bdf684d4b5342e2a8bf6036b6f816b8"&gt;Extent Enricher Processor&lt;/A&gt; available on the Gallery. The source code for this custom processor is available on GitHub &lt;A href="https://github.com/Esri/extent-enricher-for-geoevent"&gt;here&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As I understand it, the processor allows you to enrich an event with fields providing the minimum and maximum X and Y values. The processor can optionally enrich the event with a second Geometry representing the center point of the original geometry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I believe the processor, given a Point geometry, will return to you identical minimum X and maximum X values ... the minimum Y and maximum Y would likewise be the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this information helps -&lt;/P&gt;&lt;P&gt;RJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2015 02:25:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/is-there-an-expression-for-converting-values-of/m-p/382545#M1632</guid>
      <dc:creator>RJSunderman</dc:creator>
      <dc:date>2015-04-08T02:25:01Z</dc:date>
    </item>
    <item>
      <title>Re: Is there an expression for converting values of longtitude and latitude into a point</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/is-there-an-expression-for-converting-values-of/m-p/382546#M1633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the response RJ.&amp;nbsp; I was hoping for an easier solution than a custom processor.&amp;nbsp; I'll have to rethink my approach.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Apr 2015 19:44:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/is-there-an-expression-for-converting-values-of/m-p/382546#M1633</guid>
      <dc:creator>DavidStajan</dc:creator>
      <dc:date>2015-04-09T19:44:29Z</dc:date>
    </item>
    <item>
      <title>Re: Is there an expression for converting values of longtitude and latitude into a point</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/is-there-an-expression-for-converting-values-of/m-p/382547#M1634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can try the Add XYZ Processor downloadable from&lt;A href="http://solutionsdev.arcgis.com/military/land-operations/templates/geoevent-extension/tools/processors/add-xyz/"&gt; here&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;A href="http://solutionsdev.arcgis.com/military/land-operations/templates/geoevent-extension/tools/processors/add-xyz/" title="http://solutionsdev.arcgis.com/military/land-operations/templates/geoevent-extension/tools/processors/add-xyz/"&gt;http://solutionsdev.arcgis.com/military/land-operations/templates/geoevent-extension/tools/processors/add-xyz/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also get the source code from GitHub &lt;A href="http://https//github.com/Esri/solutions-geoevent-java/tree/master/solutions-geoevent/processors/addxyz-processor"&gt;here&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/Esri/solutions-geoevent-java/tree/master/solutions-geoevent/processors/addxyz-processor" title="https://github.com/Esri/solutions-geoevent-java/tree/master/solutions-geoevent/processors/addxyz-processor"&gt;solutions-geoevent-java/solutions-geoevent/processors/addxyz-processor at master · Esri/solutions-geoevent-java · GitHub&lt;/A&gt;&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Nov 2015 22:49:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/is-there-an-expression-for-converting-values-of/m-p/382547#M1634</guid>
      <dc:creator>MorakotPilouk1</dc:creator>
      <dc:date>2015-11-12T22:49:27Z</dc:date>
    </item>
  </channel>
</rss>

