<?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 Create Line Geom from Coords in ArcGIS Velocity Questions</title>
    <link>https://community.esri.com/t5/arcgis-velocity-questions/create-line-geom-from-coords/m-p/1226887#M101</link>
    <description>&lt;UL&gt;&lt;LI&gt;Waze Traffic endpoint provides a set of coordinates for constructing a polyline to show the slowdown traffic data.&amp;nbsp; This is shown under the nested JSON under &lt;STRONG&gt;"line":&lt;/STRONG&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markdown"&gt;"jams": [
{
"country": "AS",
"city": "Deception Bay",
"level": 5,
"line": [
{
"x": 153.029946,
"y": -27.193773
},
{
"x": 153.029894,
"y": -27.194082
}
],
"speedKMH": 0,
"length": 35,
"turnType": "NONE",
"type": "NONE",
"uuid": 74115178,
"speed": 0,
"segments": [
{}
],
"blockingAlertUuid": "d390204c-634f-4a2f-832e-54bbb14131e6",
"roadType": 20,
"delay": -1,
"pubMillis": 1667099170082
},&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Using an HTTP Poller, we can derive the schema as shown below:&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SimonGIS_0-1667108642264.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/54771iAD3D6F25E3C6446D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SimonGIS_0-1667108642264.png" alt="SimonGIS_0-1667108642264.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;This gives me a flattened Line field that contains the coordinates in a list like so:&lt;/LI&gt;&lt;LI&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;[{"x":152.516454,"y":-27.51705},{"x":152.50828,"y":-27.515946}]&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/LI&gt;&lt;LI&gt;I then specify to this Line field to be the single geometry field, the geom is line, and format is coordinates&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SimonGIS_1-1667108832795.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/54772iB163CC0759BA7F87/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SimonGIS_1-1667108832795.png" alt="SimonGIS_1-1667108832795.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, due to how the coordinates are currently formatted, I get the following error in the logs:&lt;/P&gt;&lt;TABLE width="747px"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="705.742px"&gt;WARN:&amp;nbsp; Failed to parse geometry field 'line'. Please make sure your geometry field string is valid.&lt;/TD&gt;&lt;TD width="40px"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What would the optimal way to parse this JSON feed so that I can ingest it and persist the lines into a spatiotemporal feature layer?&lt;/P&gt;</description>
    <pubDate>Sun, 30 Oct 2022 05:49:21 GMT</pubDate>
    <dc:creator>SimonGIS</dc:creator>
    <dc:date>2022-10-30T05:49:21Z</dc:date>
    <item>
      <title>Create Line Geom from Coords</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/create-line-geom-from-coords/m-p/1226887#M101</link>
      <description>&lt;UL&gt;&lt;LI&gt;Waze Traffic endpoint provides a set of coordinates for constructing a polyline to show the slowdown traffic data.&amp;nbsp; This is shown under the nested JSON under &lt;STRONG&gt;"line":&lt;/STRONG&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markdown"&gt;"jams": [
{
"country": "AS",
"city": "Deception Bay",
"level": 5,
"line": [
{
"x": 153.029946,
"y": -27.193773
},
{
"x": 153.029894,
"y": -27.194082
}
],
"speedKMH": 0,
"length": 35,
"turnType": "NONE",
"type": "NONE",
"uuid": 74115178,
"speed": 0,
"segments": [
{}
],
"blockingAlertUuid": "d390204c-634f-4a2f-832e-54bbb14131e6",
"roadType": 20,
"delay": -1,
"pubMillis": 1667099170082
},&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Using an HTTP Poller, we can derive the schema as shown below:&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SimonGIS_0-1667108642264.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/54771iAD3D6F25E3C6446D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SimonGIS_0-1667108642264.png" alt="SimonGIS_0-1667108642264.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;This gives me a flattened Line field that contains the coordinates in a list like so:&lt;/LI&gt;&lt;LI&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;[{"x":152.516454,"y":-27.51705},{"x":152.50828,"y":-27.515946}]&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/LI&gt;&lt;LI&gt;I then specify to this Line field to be the single geometry field, the geom is line, and format is coordinates&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SimonGIS_1-1667108832795.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/54772iB163CC0759BA7F87/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SimonGIS_1-1667108832795.png" alt="SimonGIS_1-1667108832795.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, due to how the coordinates are currently formatted, I get the following error in the logs:&lt;/P&gt;&lt;TABLE width="747px"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="705.742px"&gt;WARN:&amp;nbsp; Failed to parse geometry field 'line'. Please make sure your geometry field string is valid.&lt;/TD&gt;&lt;TD width="40px"&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What would the optimal way to parse this JSON feed so that I can ingest it and persist the lines into a spatiotemporal feature layer?&lt;/P&gt;</description>
      <pubDate>Sun, 30 Oct 2022 05:49:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/create-line-geom-from-coords/m-p/1226887#M101</guid>
      <dc:creator>SimonGIS</dc:creator>
      <dc:date>2022-10-30T05:49:21Z</dc:date>
    </item>
    <item>
      <title>Re: Create Line Geom from Coords</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/create-line-geom-from-coords/m-p/1227246#M104</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/424489"&gt;@SimonGIS&lt;/a&gt;&amp;nbsp;Thanks for reaching out with the question! I have an answer/solution below, but it depends on a few elements. Overall, the answer is that Velocity "single geometry field" supports EsriJSON, GeoJSON, WKT, and Coordinates (point). This Waze format is not any of those, therefore you would need to use an Arcade expression to build the geometry.&lt;/P&gt;&lt;P&gt;&lt;A href="https://doc.arcgis.com/en/iot/ingest/define-location-properties.htm" target="_blank" rel="noopener"&gt;https://doc.arcgis.com/en/iot/ingest/define-location-properties.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Additional considerations:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;This solution only takes the first two points from your "line" array object in your JSON to build a line. If there were 3+ points, the extras past the first two points would be ignored&lt;/LI&gt;&lt;LI&gt;This solution expects two valid points from the "line" array object in your JSON. If there was a null, or only a first point, this could fail to calculate the geometry for the given feature&lt;UL&gt;&lt;LI&gt;This could be enhanced using the Arcade "IIf" function and other logic to handle such a case of nulls, or not two points being present, or of more than 2 points&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var lineArray = FromJSON($feature.line);
var x1 = lineArray[0]["x"];
var y1 = lineArray[0]["y"];
var x2 = lineArray[1]["x"];
var y2 = lineArray[1]["y"];

return Polyline({
  "hasM": false,
  "hasZ": false,
  "paths": [
    [
      [x1,y1],
      [x2,y2]
    ]
  ],
  "spatialReference": {"wkid": 4326}
})&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As you can see above, we use the "FromJSON" function to convert the JSON string to a proper object, we parse the desired elements out, and then we send that into a "Polyline" function using the EsriJSON format. This is configured in the Calculate Fields or Map Fields tool for the geometry configuration.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Arcade1_Replace.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/54900i08B488D18BFC0FA6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Arcade1_Replace.png" alt="Arcade1_Replace.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Arcade2.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/54898i73B235B3B2447A44/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Arcade2.png" alt="Arcade2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Arcade3.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/54899i2C39819E114E4F8B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Arcade3.png" alt="Arcade3.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 31 Oct 2022 20:13:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/create-line-geom-from-coords/m-p/1227246#M104</guid>
      <dc:creator>PeterNasuti</dc:creator>
      <dc:date>2022-10-31T20:13:27Z</dc:date>
    </item>
    <item>
      <title>Re: Create Line Geom from Coords</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/create-line-geom-from-coords/m-p/1227556#M105</link>
      <description>&lt;P&gt;If the line can contain more vertices, here are a few options:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;You could manipulate the string before passing it to FromJSON. This takes advantage of the way that Velocity flattens the value, with no whitespace, and that the coordinates are already in the required order...&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var path = Replace(Replace(Replace(Replace($feature.line,
  '{', '['), '}', ']'), '"x":',''), '"y":','')

return Polyline({
  "hasM": false,
  "hasZ": false,
  "paths": [FromJSON(path)],
  "spatialReference": {"wkid": 4326}
})

​&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;You could use a for loop to construct the path for the paths array. This would be more versatile for other data formats, or where the order of the coordinates is not guaranteed. It would look something like this (untested)...&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var path = []
var i = 0
for (var c in FromJSON($feature.line)) {
  path[i] = [c.x, c.y]
  i++
}

return Polyline({
  "hasM": false,
  "hasZ": false,
  "paths": [path],
  "spatialReference": {"wkid": 4326}
})​&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Nov 2022 17:42:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/create-line-geom-from-coords/m-p/1227556#M105</guid>
      <dc:creator>brudo</dc:creator>
      <dc:date>2022-11-01T17:42:54Z</dc:date>
    </item>
    <item>
      <title>Re: Create Line Geom from Coords</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/create-line-geom-from-coords/m-p/1227561#M106</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/453188"&gt;@brudo&lt;/a&gt;&amp;nbsp;Thanks much for your reply and these ideas, I was just discussing with a coworker the use of a for loop workflow to generate the path array and what you proposed should work as expected.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/424489"&gt;@SimonGIS&lt;/a&gt;&amp;nbsp;As an FYI, these are alternate solutions that would better scale to variable length polylines when compared to the solution I provided that only accommodated a two-point polyline.&lt;/P&gt;&lt;P&gt;Coming back to edit, the following Arcade structure worked in test:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var path = [];
var i = 0;
var lineArray = FromJSON($feature.line)

for (var linePoint in lineArray) {
    var xVal = lineArray[i]["x"];
    var yVal = lineArray[i]["y"];
    path[i] = [xVal, yVal]
    i++
}

return Polyline({
  "hasM": false,
  "hasZ": false,
  "paths": [path],
  "spatialReference": {"wkid": 4326}
})&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 02 Nov 2022 14:15:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/create-line-geom-from-coords/m-p/1227561#M106</guid>
      <dc:creator>PeterNasuti</dc:creator>
      <dc:date>2022-11-02T14:15:58Z</dc:date>
    </item>
    <item>
      <title>Re: Create Line Geom from Coords</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/create-line-geom-from-coords/m-p/1228146#M107</link>
      <description>&lt;P&gt;I have lines!&amp;nbsp; Thanks&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/453188"&gt;@brudo&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/56766"&gt;@PeterNasuti&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I ended up using Peter's arcade snippet.&amp;nbsp; Working well so far.&amp;nbsp; No performance issues from my side.&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thanks again.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SimonGIS_0-1667432708410.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/55141i7B40E5C14703A194/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SimonGIS_0-1667432708410.png" alt="SimonGIS_0-1667432708410.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Nov 2022 23:46:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/create-line-geom-from-coords/m-p/1228146#M107</guid>
      <dc:creator>SimonGIS</dc:creator>
      <dc:date>2022-11-02T23:46:04Z</dc:date>
    </item>
    <item>
      <title>Re: Create Line Geom from Coords</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/create-line-geom-from-coords/m-p/1228523#M108</link>
      <description>&lt;P&gt;Hi Peter,&lt;/P&gt;&lt;P&gt;I tried to do the same thing with the ARCADE from REAL TIME analytics to calculate the GEOMETRY field. Somehow, when you click the $feature.line, it shows as "pacific" instead of "X,Y" string arrays like your screen shot displayed on the right content. The feeds come in OK and I use Location as NONE.&amp;nbsp; Do you think I miss something? Thanks&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="featureLine.JPG" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/55235i18164F3C15A1BC86/image-size/large?v=v2&amp;amp;px=999" role="button" title="featureLine.JPG" alt="featureLine.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Nov 2022 20:57:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/create-line-geom-from-coords/m-p/1228523#M108</guid>
      <dc:creator>chunguangWayneZhang</dc:creator>
      <dc:date>2022-11-03T20:57:32Z</dc:date>
    </item>
    <item>
      <title>Re: Create Line Geom from Coords</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/create-line-geom-from-coords/m-p/1228526#M109</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/446786"&gt;@chunguangWayneZhang&lt;/a&gt;&amp;nbsp;- I missed that out, and I had same issue.&amp;nbsp; Peter saved the day:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Pacific is the Arcade “sample value” for a string field, which line is a string field&lt;/P&gt;&lt;P&gt;To resolve this, in the Arcade editor on the right click the Globals tab, click the arrow at the right of the $feature element, find $feature.line, click the edit pencil, and paste the valid JSON of the line element (not wrapped in quotations).&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Then, testing the Arcade expression will evaluate against that sample:&lt;BR /&gt;&lt;BR /&gt;For example, try this test string to use in place of Pacific under $feature.line&lt;/P&gt;&lt;P&gt;[{"x":153.029946,"y":-27.193773},{"x":154.029894,"y":-28.194082},{"x":155.029894,"y":-29.194082}]&lt;/P&gt;</description>
      <pubDate>Thu, 03 Nov 2022 21:02:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/create-line-geom-from-coords/m-p/1228526#M109</guid>
      <dc:creator>SimonGIS</dc:creator>
      <dc:date>2022-11-03T21:02:41Z</dc:date>
    </item>
    <item>
      <title>Re: Create Line Geom from Coords</title>
      <link>https://community.esri.com/t5/arcgis-velocity-questions/create-line-geom-from-coords/m-p/1228575#M110</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/424489"&gt;@SimonGIS&lt;/a&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV class=""&gt;&lt;A href="https://community.esri.com/t5/arcgis-velocity-questions/create-line-geom-from-coords/m-p/1228526#" target="_blank" rel="noopener"&gt;PREVIEW&lt;/A&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;Your explanation helps to clear the puzzle. I thought PACIFIC is a sort of string that is parsed as an error. Never thought you can use generic JSON strings for testing. Thanks so much&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 03 Nov 2022 23:23:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-velocity-questions/create-line-geom-from-coords/m-p/1228575#M110</guid>
      <dc:creator>chunguangWayneZhang</dc:creator>
      <dc:date>2022-11-03T23:23:22Z</dc:date>
    </item>
  </channel>
</rss>

