<?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: Creating poly line features from time stamp point data in ArcGIS Workforce Questions</title>
    <link>https://community.esri.com/t5/arcgis-workforce-questions/creating-poly-line-features-from-time-stamp-point/m-p/881770#M1696</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P class=""&gt;Hi Darko, you may have better luck posting this in the ArcGIS Pro or ArcPy communities rather than Workforce for ArcGIS.&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;/P&gt;&lt;P class=""&gt;I know of three ways to do this:&lt;/P&gt;&lt;P class=""&gt;&lt;/P&gt;&lt;P class=""&gt;This first approach requires having an additional&amp;nbsp;&lt;A href="http://enterprise.arcgis.com/en/server/latest/get-started/windows/configure-the-portal-with-arcgis-geoanalytics-server.htm"&gt;&lt;SPAN class=""&gt;GeoAnalytics Server&amp;nbsp;&lt;/SPAN&gt;&lt;/A&gt;&amp;nbsp;installed and federated with your portal. ArcGIS GeoAnalytics Server introduces distributed computing to vector-based feature data and can be used to analyze big data or accelerate traditional ArcGIS Desktop analysis workflows through ArcGIS Pro and Portal for ArcGIS. If your organization has hundreds or thousands of users actively using Tracker for ArcGIS, GeoAnalytics Server can handle this large amount of data efficiently by distributing the computation over multiple server instances and cores.&amp;nbsp;One of the tools provided by the GeoAnalytics Server is the&amp;nbsp;&lt;A href="http://enterprise.arcgis.com/en/portal/latest/use/geoanalytics-reconstruct-tracks.htm"&gt;&lt;SPAN class=""&gt;Reconstruct Tracks Tool&lt;/SPAN&gt;&lt;/A&gt;. This tool will process point data and build polylines from the points based on the timestamp of the point and a unique field such as the “username” of the point. It outputs a new feature service layer with the resulting polylines or polygons. This allows you to split by time and/or distance.&lt;/P&gt;&lt;P class=""&gt;&lt;/P&gt;&lt;P class=""&gt;If your organization does not have a GeoAnalytics Server, you can still build lines from the points, with some limitations, by using the&amp;nbsp;&lt;A href="http://pro.arcgis.com/en/pro-app/tool-reference/data-management/points-to-line.htm"&gt;&lt;SPAN class=""&gt;Points to Line&lt;/SPAN&gt;&lt;/A&gt;&amp;nbsp;Geoprocessing tool. Since this tool only executes within an ArcGIS Pro environment it is only efficient for small sets of data. It also does not provide options to split the tracks by time or distance. This means that all points belonging to a specific individual will be connected into one single line regardless of the distance in time and space between consecutive points. It also outputs to a Feature Class on the local machine rather than to a feature service layer. So, to view it in the Portal, the output has to be published as a new service.&lt;/P&gt;&lt;P class=""&gt;&lt;/P&gt;&lt;P class=""&gt;Finally, you could write custom code in Python or other languages to process the data and build lines.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Apr 2019 13:06:28 GMT</pubDate>
    <dc:creator>Anonymous User</dc:creator>
    <dc:date>2019-04-17T13:06:28Z</dc:date>
    <item>
      <title>Creating poly line features from time stamp point data</title>
      <link>https://community.esri.com/t5/arcgis-workforce-questions/creating-poly-line-features-from-time-stamp-point/m-p/881769#M1695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am currently working with vessel tracking data from AIS and I have a years worth of vessel location data in a table format (now converted to point features in Pro).&amp;nbsp;&lt;/P&gt;&lt;P&gt;We essentially need to&amp;nbsp;create individual trips as poly lines from this data - a new trip in the data starts when the gap in&amp;nbsp; the timestamp is greater than 20 min.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to use a tool in ArcGIS which would go through all the point data timestamps and create line features from these? Additionally, a new line feature would be created each time the timestamp difference between point features is greater than 20 min.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attached is how the timestamp vessel location data looks now. Any help would be greatly appreciated!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Darko&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Apr 2019 10:58:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-workforce-questions/creating-poly-line-features-from-time-stamp-point/m-p/881769#M1695</guid>
      <dc:creator>DarkoPetrovic</dc:creator>
      <dc:date>2019-04-17T10:58:04Z</dc:date>
    </item>
    <item>
      <title>Re: Creating poly line features from time stamp point data</title>
      <link>https://community.esri.com/t5/arcgis-workforce-questions/creating-poly-line-features-from-time-stamp-point/m-p/881770#M1696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P class=""&gt;Hi Darko, you may have better luck posting this in the ArcGIS Pro or ArcPy communities rather than Workforce for ArcGIS.&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;/P&gt;&lt;P class=""&gt;I know of three ways to do this:&lt;/P&gt;&lt;P class=""&gt;&lt;/P&gt;&lt;P class=""&gt;This first approach requires having an additional&amp;nbsp;&lt;A href="http://enterprise.arcgis.com/en/server/latest/get-started/windows/configure-the-portal-with-arcgis-geoanalytics-server.htm"&gt;&lt;SPAN class=""&gt;GeoAnalytics Server&amp;nbsp;&lt;/SPAN&gt;&lt;/A&gt;&amp;nbsp;installed and federated with your portal. ArcGIS GeoAnalytics Server introduces distributed computing to vector-based feature data and can be used to analyze big data or accelerate traditional ArcGIS Desktop analysis workflows through ArcGIS Pro and Portal for ArcGIS. If your organization has hundreds or thousands of users actively using Tracker for ArcGIS, GeoAnalytics Server can handle this large amount of data efficiently by distributing the computation over multiple server instances and cores.&amp;nbsp;One of the tools provided by the GeoAnalytics Server is the&amp;nbsp;&lt;A href="http://enterprise.arcgis.com/en/portal/latest/use/geoanalytics-reconstruct-tracks.htm"&gt;&lt;SPAN class=""&gt;Reconstruct Tracks Tool&lt;/SPAN&gt;&lt;/A&gt;. This tool will process point data and build polylines from the points based on the timestamp of the point and a unique field such as the “username” of the point. It outputs a new feature service layer with the resulting polylines or polygons. This allows you to split by time and/or distance.&lt;/P&gt;&lt;P class=""&gt;&lt;/P&gt;&lt;P class=""&gt;If your organization does not have a GeoAnalytics Server, you can still build lines from the points, with some limitations, by using the&amp;nbsp;&lt;A href="http://pro.arcgis.com/en/pro-app/tool-reference/data-management/points-to-line.htm"&gt;&lt;SPAN class=""&gt;Points to Line&lt;/SPAN&gt;&lt;/A&gt;&amp;nbsp;Geoprocessing tool. Since this tool only executes within an ArcGIS Pro environment it is only efficient for small sets of data. It also does not provide options to split the tracks by time or distance. This means that all points belonging to a specific individual will be connected into one single line regardless of the distance in time and space between consecutive points. It also outputs to a Feature Class on the local machine rather than to a feature service layer. So, to view it in the Portal, the output has to be published as a new service.&lt;/P&gt;&lt;P class=""&gt;&lt;/P&gt;&lt;P class=""&gt;Finally, you could write custom code in Python or other languages to process the data and build lines.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Apr 2019 13:06:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-workforce-questions/creating-poly-line-features-from-time-stamp-point/m-p/881770#M1696</guid>
      <dc:creator>Anonymous User</dc:creator>
      <dc:date>2019-04-17T13:06:28Z</dc:date>
    </item>
    <item>
      <title>Re: Creating poly line features from time stamp point data</title>
      <link>https://community.esri.com/t5/arcgis-workforce-questions/creating-poly-line-features-from-time-stamp-point/m-p/1353770#M2717</link>
      <description>&lt;P&gt;In case someone ends up here in the future, it seems there is now a &lt;A href="https://pro.arcgis.com/en/pro-app/2.9/tool-reference/geoanalytics-desktop/reconstruct-tracks.htm" target="_self"&gt;Reconstruct Tracts&lt;/A&gt; desktop tool available in Pro 2.4+ (Advanced license)&lt;/P&gt;</description>
      <pubDate>Mon, 27 Nov 2023 20:49:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-workforce-questions/creating-poly-line-features-from-time-stamp-point/m-p/1353770#M2717</guid>
      <dc:creator>BrittanyBurson</dc:creator>
      <dc:date>2023-11-27T20:49:53Z</dc:date>
    </item>
  </channel>
</rss>

