<?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: Write Point Geometry out to a Feature Service from XML, after DMS to DD Conversion. in ArcGIS GeoEvent Server Questions</title>
    <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/write-point-geometry-out-to-a-feature-service-from/m-p/1376279#M4084</link>
    <description>&lt;P&gt;Your arcade expression needs to be something more along the lines of --&amp;nbsp;&lt;/P&gt;&lt;P&gt;Where you create two variables to contain the lat/lon in Degrees and then use them in the point() function.&lt;/P&gt;&lt;P&gt;You could sider using convertDirection() or just use the formula you have already locally.&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;lat_dd&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;ConvertDirection&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;$feature&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;latitude&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;angleType&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;DMS&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;angleType&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;DEGREES&lt;/SPAN&gt;&lt;SPAN&gt;);&amp;nbsp; //Not Tested&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;lon_dd&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;ConvertDirection&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;$feature&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;longitude&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;angleType&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;DMS&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;angleType&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;DEGREES&lt;/SPAN&gt;&lt;SPAN&gt;); //Not Tested&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;return&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Point&lt;/SPAN&gt;&lt;SPAN&gt;({&lt;/SPAN&gt;&lt;SPAN&gt;"x"&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;lat_dd&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;"y"&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;lon_dd&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;"spatialReference"&lt;/SPAN&gt;&lt;SPAN&gt;:{&lt;/SPAN&gt;&lt;SPAN&gt;"wkid"&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;4326&lt;/SPAN&gt;&lt;SPAN&gt;}}));&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;A href="https://developers.arcgis.com/arcade/function-reference/geometry_functions/#convertdirection" target="_blank"&gt;https://developers.arcgis.com/arcade/function-reference/geometry_functions/#convertdirection&lt;/A&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Wed, 31 Jan 2024 03:50:28 GMT</pubDate>
    <dc:creator>JeffSilberberg</dc:creator>
    <dc:date>2024-01-31T03:50:28Z</dc:date>
    <item>
      <title>Write Point Geometry out to a Feature Service from XML, after DMS to DD Conversion.</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/write-point-geometry-out-to-a-feature-service-from/m-p/1376186#M4080</link>
      <description>&lt;P&gt;I am polling an external website for XML data that will then update a hosted feature service with point data for stream gauges. One of the issues with the XML data is that the lat and long are in DMS as strings. To solve this I am using field calculators to extract the degrees, minutes, and second values, convert them to double type values, and perform simple math to convert them to decimal degrees. That all works well. The issue I am having is figuring out how to write those converted latitude and longitude values out to the hosted feature service as geometries. I am curious if the fact that the latitude and longitude values are being calculated on the fly, and so is the geometry, that when I go to build my geometry those calculated latitude and longitude values only exist in memory and are not available to the "toPoint()" function. I have even tried breaking out the latitude, longitude, and geometry calculations to their own field calculator processors, but no luck. It's really hard to explain what issue I am encountering, so I appreciate it if you have read this far, and maybe you have some suggestions?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2024 22:10:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/write-point-geometry-out-to-a-feature-service-from/m-p/1376186#M4080</guid>
      <dc:creator>Gene_Sipes</dc:creator>
      <dc:date>2024-01-30T22:10:18Z</dc:date>
    </item>
    <item>
      <title>Re: Write Point Geometry out to a Feature Service from XML, after DMS to DD Conversion.</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/write-point-geometry-out-to-a-feature-service-from/m-p/1376193#M4081</link>
      <description>&lt;P&gt;In the Field Calculator Add Mapping - Geometry and in the Arcade use the point() function.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Replacing my $feature fields with your calculated ones.&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Point&lt;/SPAN&gt;&lt;SPAN&gt;({&lt;/SPAN&gt;&lt;SPAN&gt;"x"&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;$feature&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;longitude&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;"y"&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;$feature&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;latitude&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;"spatialReference"&lt;/SPAN&gt;&lt;SPAN&gt;:{&lt;/SPAN&gt;&lt;SPAN&gt;"wkid"&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;4326&lt;/SPAN&gt;&lt;SPAN&gt;}})&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2024 22:19:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/write-point-geometry-out-to-a-feature-service-from/m-p/1376193#M4081</guid>
      <dc:creator>JeffSilberberg</dc:creator>
      <dc:date>2024-01-30T22:19:12Z</dc:date>
    </item>
    <item>
      <title>Re: Write Point Geometry out to a Feature Service from XML, after DMS to DD Conversion.</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/write-point-geometry-out-to-a-feature-service-from/m-p/1376197#M4082</link>
      <description>&lt;P&gt;I'll give it a try. Should I just do all of my calculations within a field mapper? That is convert my laititude, longitude, and geometry all from one field mapper processor. Rather than trying to use seperate field calculators for each operation? I have pasted images of my setup below.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2024 22:31:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/write-point-geometry-out-to-a-feature-service-from/m-p/1376197#M4082</guid>
      <dc:creator>Gene_Sipes</dc:creator>
      <dc:date>2024-01-30T22:31:41Z</dc:date>
    </item>
    <item>
      <title>Re: Write Point Geometry out to a Feature Service from XML, after DMS to DD Conversion.</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/write-point-geometry-out-to-a-feature-service-from/m-p/1376201#M4083</link>
      <description>&lt;P&gt;This is what ends up happening. My latitude and longitude correctly convert, but geometry is null.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Gene_Sipes_0-1706654006536.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/93241i8270047AD290F5AE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Gene_Sipes_0-1706654006536.png" alt="Gene_Sipes_0-1706654006536.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2024 22:33:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/write-point-geometry-out-to-a-feature-service-from/m-p/1376201#M4083</guid>
      <dc:creator>Gene_Sipes</dc:creator>
      <dc:date>2024-01-30T22:33:29Z</dc:date>
    </item>
    <item>
      <title>Re: Write Point Geometry out to a Feature Service from XML, after DMS to DD Conversion.</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/write-point-geometry-out-to-a-feature-service-from/m-p/1376279#M4084</link>
      <description>&lt;P&gt;Your arcade expression needs to be something more along the lines of --&amp;nbsp;&lt;/P&gt;&lt;P&gt;Where you create two variables to contain the lat/lon in Degrees and then use them in the point() function.&lt;/P&gt;&lt;P&gt;You could sider using convertDirection() or just use the formula you have already locally.&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;lat_dd&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;ConvertDirection&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;$feature&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;latitude&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;angleType&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;DMS&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;angleType&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;DEGREES&lt;/SPAN&gt;&lt;SPAN&gt;);&amp;nbsp; //Not Tested&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;lon_dd&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;ConvertDirection&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;$feature&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;longitude&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;angleType&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;DMS&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;angleType&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN&gt;DEGREES&lt;/SPAN&gt;&lt;SPAN&gt;); //Not Tested&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;return&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Point&lt;/SPAN&gt;&lt;SPAN&gt;({&lt;/SPAN&gt;&lt;SPAN&gt;"x"&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;lat_dd&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;"y"&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;lon_dd&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;"spatialReference"&lt;/SPAN&gt;&lt;SPAN&gt;:{&lt;/SPAN&gt;&lt;SPAN&gt;"wkid"&lt;/SPAN&gt;&lt;SPAN&gt;:&lt;/SPAN&gt;&lt;SPAN&gt;4326&lt;/SPAN&gt;&lt;SPAN&gt;}}));&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;A href="https://developers.arcgis.com/arcade/function-reference/geometry_functions/#convertdirection" target="_blank"&gt;https://developers.arcgis.com/arcade/function-reference/geometry_functions/#convertdirection&lt;/A&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 31 Jan 2024 03:50:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/write-point-geometry-out-to-a-feature-service-from/m-p/1376279#M4084</guid>
      <dc:creator>JeffSilberberg</dc:creator>
      <dc:date>2024-01-31T03:50:28Z</dc:date>
    </item>
    <item>
      <title>Re: Write Point Geometry out to a Feature Service from XML, after DMS to DD Conversion.</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/write-point-geometry-out-to-a-feature-service-from/m-p/1377075#M4098</link>
      <description>&lt;P&gt;That makes sense, but I am not sure how to write more than one line expressions in the field calculator or the field mapper.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Gene_Sipes_0-1706802377820.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/93442iBE6556BC23361FCB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Gene_Sipes_0-1706802377820.png" alt="Gene_Sipes_0-1706802377820.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Feb 2024 15:46:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/write-point-geometry-out-to-a-feature-service-from/m-p/1377075#M4098</guid>
      <dc:creator>Gene_Sipes</dc:creator>
      <dc:date>2024-02-01T15:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: Write Point Geometry out to a Feature Service from XML, after DMS to DD Conversion.</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/write-point-geometry-out-to-a-feature-service-from/m-p/1377208#M4099</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I either Field Calc or Field Map, click on the Configure Arcade Expression.&amp;nbsp; Be sure to test/run it after you have it built.&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="JeffSilberberg_0-1706814176847.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/93472i09767DFAE7DD82D7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JeffSilberberg_0-1706814176847.png" alt="JeffSilberberg_0-1706814176847.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Feb 2024 19:03:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/write-point-geometry-out-to-a-feature-service-from/m-p/1377208#M4099</guid>
      <dc:creator>JeffSilberberg</dc:creator>
      <dc:date>2024-02-01T19:03:57Z</dc:date>
    </item>
    <item>
      <title>Re: Write Point Geometry out to a Feature Service from XML, after DMS to DD Conversion.</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/write-point-geometry-out-to-a-feature-service-from/m-p/1377219#M4100</link>
      <description>&lt;P&gt;Ah man... I gues my version doesn't have that button. I am using&amp;nbsp;&lt;SPAN&gt;10.9.1&amp;nbsp;(build&amp;nbsp;28388).&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;From my screenshot you can see it is bare bones. What version do you have?&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Gene_Sipes_0-1706815037002.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/93475iE26091EBB93D0279/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Gene_Sipes_0-1706815037002.png" alt="Gene_Sipes_0-1706815037002.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>Thu, 01 Feb 2024 19:17:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/write-point-geometry-out-to-a-feature-service-from/m-p/1377219#M4100</guid>
      <dc:creator>Gene_Sipes</dc:creator>
      <dc:date>2024-02-01T19:17:20Z</dc:date>
    </item>
    <item>
      <title>Re: Write Point Geometry out to a Feature Service from XML, after DMS to DD Conversion.</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/write-point-geometry-out-to-a-feature-service-from/m-p/1377303#M4101</link>
      <description>&lt;P&gt;Sorry, the difference is geoEvent versus Velocity.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maybe build the Arcade in NotePad++ and then pater it as a line into that.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do not currently have a geoEvent I can access to get the corresponding action.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Feb 2024 21:26:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/write-point-geometry-out-to-a-feature-service-from/m-p/1377303#M4101</guid>
      <dc:creator>JeffSilberberg</dc:creator>
      <dc:date>2024-02-01T21:26:11Z</dc:date>
    </item>
    <item>
      <title>Re: Write Point Geometry out to a Feature Service from XML, after DMS to DD Conversion.</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/write-point-geometry-out-to-a-feature-service-from/m-p/1377587#M4103</link>
      <description>&lt;P&gt;Yea, no dice. I built the expression in VS Code and pasted into the field mapper for the geometry, but it writes out a null value for geometry.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Gene_Sipes_0-1706887227268.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/93559i32E1E9D5E64DE9BC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Gene_Sipes_0-1706887227268.png" alt="Gene_Sipes_0-1706887227268.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Gene_Sipes_1-1706887257036.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/93560i01ABAB4B271C93FF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Gene_Sipes_1-1706887257036.png" alt="Gene_Sipes_1-1706887257036.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Gene_Sipes_2-1706887274547.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/93561i536E9E1FE0FB8A05/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Gene_Sipes_2-1706887274547.png" alt="Gene_Sipes_2-1706887274547.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Logs are citing that I have invalid field mapping for both my Point function and my variables lat_DD and long_DD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for you help so far.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Feb 2024 15:25:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/write-point-geometry-out-to-a-feature-service-from/m-p/1377587#M4103</guid>
      <dc:creator>Gene_Sipes</dc:creator>
      <dc:date>2024-02-02T15:25:23Z</dc:date>
    </item>
    <item>
      <title>Re: Write Point Geometry out to a Feature Service from XML, after DMS to DD Conversion.</title>
      <link>https://community.esri.com/t5/arcgis-geoevent-server-questions/write-point-geometry-out-to-a-feature-service-from/m-p/1382207#M4119</link>
      <description>&lt;P&gt;Ok I worked it out.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I needed to set up my input definition to include the two new fields that I was going to convert my DMS values to DD values to. Then in the geo event service, set up my field calculators to convert the values from DMS to DD and store in those new fields. Finally map them out to my output. Screenshots below for each piece of the pie. Hopefully someone gets something from this in the future!&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;XML Feed:&lt;BR /&gt;&lt;A href="https://hayscounty.wetec.us/WETMap/public/hayswlpublic.xml" target="_blank"&gt;https://hayscounty.wetec.us/WETMap/public/hayswlpublic.xml&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Input Definition with new fields highlighted:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Gene_Sipes_0-1707921110650.png" style="width: 788px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/94735i9C4B2406096C80D0/image-dimensions/788x260?v=v2" width="788" height="260" role="button" title="Gene_Sipes_0-1707921110650.png" alt="Gene_Sipes_0-1707921110650.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;XML Input Connector:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Gene_Sipes_1-1707921183020.png" style="width: 554px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/94736iCEE700A03A918E50/image-dimensions/554x461?v=v2" width="554" height="461" role="button" title="Gene_Sipes_1-1707921183020.png" alt="Gene_Sipes_1-1707921183020.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Hosted feature service output connector, make sure Update only is "NO":&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Gene_Sipes_7-1707921753764.png" style="width: 611px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/94743iC3AB284BACDAD374/image-dimensions/611x619?v=v2" width="611" height="619" role="button" title="Gene_Sipes_7-1707921753764.png" alt="Gene_Sipes_7-1707921753764.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Output Definition, with geometry output:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Gene_Sipes_2-1707921262582.png" style="width: 699px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/94737i0FDD6E60D6BD0380/image-dimensions/699x236?v=v2" width="699" height="236" role="button" title="Gene_Sipes_2-1707921262582.png" alt="Gene_Sipes_2-1707921262582.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Geoevent Service outputs to a hosted feature service, and sends email.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Gene_Sipes_3-1707921359671.png" style="width: 730px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/94739i8FC1ECA24D875129/image-dimensions/730x284?v=v2" width="730" height="284" role="button" title="Gene_Sipes_3-1707921359671.png" alt="Gene_Sipes_3-1707921359671.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Example Field Calculator that converts the XML DMS string value to a double DD value.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Gene_Sipes_4-1707921465614.png" style="width: 745px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/94740iC6838626CDF1EA03/image-dimensions/745x259?v=v2" width="745" height="259" role="button" title="Gene_Sipes_4-1707921465614.png" alt="Gene_Sipes_4-1707921465614.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;In the field mapper, using the DD values for latitude and longitude to construct the geometry.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Gene_Sipes_5-1707921551317.png" style="width: 519px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/94741iFE376FA12BB2CD2D/image-dimensions/519x614?v=v2" width="519" height="614" role="button" title="Gene_Sipes_5-1707921551317.png" alt="Gene_Sipes_5-1707921551317.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Data mapped to hosted feature service.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Gene_Sipes_6-1707921646774.png" style="width: 788px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/94742i0F618D16F02F2864/image-dimensions/788x729?v=v2" width="788" height="729" role="button" title="Gene_Sipes_6-1707921646774.png" alt="Gene_Sipes_6-1707921646774.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Feb 2024 14:43:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-geoevent-server-questions/write-point-geometry-out-to-a-feature-service-from/m-p/1382207#M4119</guid>
      <dc:creator>Gene_Sipes</dc:creator>
      <dc:date>2024-02-14T14:43:25Z</dc:date>
    </item>
  </channel>
</rss>

