<?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>idea Automatic dot-to-dot in ArcGIS Online Ideas</title>
    <link>https://community.esri.com/t5/arcgis-online-ideas/automatic-dot-to-dot/idi-p/1588574</link>
    <description>&lt;P&gt;Just wondering if there is an appetite to be able to automatically create a linear feature (in my case the line of a pipe) from breadcrumb data collected?&lt;BR /&gt;I have a .xlsx file with pipeline inspection data that I can manually turn in to a pipeline feature on ArcGIS by manually joining the dots, but there a hundreds of points to join. In my case I want to use all the girth weld locations to fix the shape and location of the pipeline.&lt;BR /&gt;It's be fantastic if there was an ability to&amp;nbsp; click 'select all' on the field you want to use and ArcGIS Online does the rest.&lt;BR /&gt;Also it'd be even better if there was a way to smooth out the line in the event there was an errant reading, or the ability to remove that from the feature layer.&lt;/P&gt;</description>
    <pubDate>Mon, 24 Feb 2025 16:10:16 GMT</pubDate>
    <dc:creator>PaulLewis</dc:creator>
    <dc:date>2025-02-24T16:10:16Z</dc:date>
    <item>
      <title>Automatic dot-to-dot</title>
      <link>https://community.esri.com/t5/arcgis-online-ideas/automatic-dot-to-dot/idi-p/1588574</link>
      <description>&lt;P&gt;Just wondering if there is an appetite to be able to automatically create a linear feature (in my case the line of a pipe) from breadcrumb data collected?&lt;BR /&gt;I have a .xlsx file with pipeline inspection data that I can manually turn in to a pipeline feature on ArcGIS by manually joining the dots, but there a hundreds of points to join. In my case I want to use all the girth weld locations to fix the shape and location of the pipeline.&lt;BR /&gt;It's be fantastic if there was an ability to&amp;nbsp; click 'select all' on the field you want to use and ArcGIS Online does the rest.&lt;BR /&gt;Also it'd be even better if there was a way to smooth out the line in the event there was an errant reading, or the ability to remove that from the feature layer.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2025 16:10:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-ideas/automatic-dot-to-dot/idi-p/1588574</guid>
      <dc:creator>PaulLewis</dc:creator>
      <dc:date>2025-02-24T16:10:16Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic dot-to-dot</title>
      <link>https://community.esri.com/t5/arcgis-online-ideas/automatic-dot-to-dot/idc-p/1588600#M12230</link>
      <description>&lt;P&gt;[REMOVED]&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2025 16:36:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-ideas/automatic-dot-to-dot/idc-p/1588600#M12230</guid>
      <dc:creator>JasonBennett</dc:creator>
      <dc:date>2025-02-24T16:36:58Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic dot-to-dot</title>
      <link>https://community.esri.com/t5/arcgis-online-ideas/automatic-dot-to-dot/idc-p/1588781#M12233</link>
      <description>&lt;P&gt;If you don't have access to any desktop GIS, you can likely find an online tool to convert the coordinates into Shapefile, GeoJSON or KML tracks (probably the easiest).&amp;nbsp; Obviously beware of the data you're sharing and apply common sense if&amp;nbsp; the website doesn't seem legitimate.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2025 23:27:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-ideas/automatic-dot-to-dot/idc-p/1588781#M12233</guid>
      <dc:creator>DavidPike</dc:creator>
      <dc:date>2025-02-24T23:27:22Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic dot-to-dot</title>
      <link>https://community.esri.com/t5/arcgis-online-ideas/automatic-dot-to-dot/idc-p/1588882#M12235</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/167692"&gt;@DavidPike&lt;/a&gt;&amp;nbsp;It's an interesting option, but we can't push our data on to another site due to security.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just wonder how much effort it is to create a tool within the ArcGIS online environment to do this...&lt;/P&gt;</description>
      <pubDate>Tue, 25 Feb 2025 10:03:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-ideas/automatic-dot-to-dot/idc-p/1588882#M12235</guid>
      <dc:creator>PaulLewis</dc:creator>
      <dc:date>2025-02-25T10:03:41Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic dot-to-dot</title>
      <link>https://community.esri.com/t5/arcgis-online-ideas/automatic-dot-to-dot/idc-p/1588984#M12237</link>
      <description>&lt;P&gt;I had a look at the GeoJSON spec and it looks fairly simple.&amp;nbsp; Same for KML.&lt;/P&gt;&lt;LI-CODE lang="python"&gt;#GeoJSON

{ "type": "FeatureCollection",
  "features": [
    { "type": "Feature",
      "geometry": {
        "type": "LineString",
        "coordinates": [
          [102.0, 0.0], [103.0, 1.0], [104.0, 0.0], [105.0, 1.0]
          ]
        },
      "properties": {
        "prop0": "value0",
        "prop1": 0.0
        }
      }
    ]
  }&lt;/LI-CODE&gt;&lt;P&gt;For GeoJSON could have a python script or powershell or various to populate what is essentially just a list of coordinates in order.&amp;nbsp; Save it then upload to ArcGIS Online.&lt;/P&gt;&lt;P&gt;&lt;A href="https://gist.github.com/wavded/1200773?short_path=99c1af9" target="_blank"&gt;https://gist.github.com/wavded/1200773?short_path=99c1af9&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/openlayers/openlayers/blob/main/examples/data/geojson/roads-seoul.geojson?short_path=84daf47" target="_blank"&gt;https://github.com/openlayers/openlayers/blob/main/examples/data/geojson/roads-seoul.geojson?short_path=84daf47&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.google.com/kml/documentation/kml_tut#paths" target="_blank"&gt;https://developers.google.com/kml/documentation/kml_tut#paths&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Feb 2025 16:05:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-online-ideas/automatic-dot-to-dot/idc-p/1588984#M12237</guid>
      <dc:creator>DavidPike</dc:creator>
      <dc:date>2025-02-25T16:05:52Z</dc:date>
    </item>
  </channel>
</rss>

