<?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: Python or ModelBuilder Help in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/python-or-modelbuilder-help/m-p/521372#M22889</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Justin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One way you can do this is the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.&amp;nbsp; Import the table into a File Geodatabase using the Excel to Table tool as &lt;A href="https://community.esri.com/migrated-users/4422"&gt;Joe Borgione&lt;/A&gt;‌ mentioned&lt;/P&gt;&lt;P&gt;2.&amp;nbsp; Create a new TEXT field (i.e. Time_Str) and calculate this to your Time_ field.&amp;nbsp; This will convert your date to a string&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-4" src="https://community.esri.com/legacyfs/online/472808_pastedImage_4.png" /&gt;&lt;/P&gt;&lt;P&gt;3.&amp;nbsp; Create another field of type Long or Double (i.e. Date_Dbl)&lt;/P&gt;&lt;P&gt;3.&amp;nbsp; Calculate the new field (Date_Dbl) by converting the TEXT field to epoch seconds using the field calculator and the following expression:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="language-python line-numbers"&gt;&lt;CODE&gt;time&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;mktime&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;datetime&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;datetime&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;strptime&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;!Time_Str!&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"%m/%d/%Y %I:%M:%S %p"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;timetuple&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1000&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/472806_pastedImage_2.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4.&amp;nbsp; Convert the table to a point feature class using the &lt;A href="https://pro.arcgis.com/en/pro-app/tool-reference/data-management/xy-table-to-point.htm"&gt;XY Table to Point&lt;/A&gt; tool&lt;/P&gt;&lt;P&gt;5.&amp;nbsp; Dissolve the feature class based on the Latitude and Longitude fields for the &lt;STRONG&gt;Dissolve&lt;/STRONG&gt; &lt;STRONG&gt;Fields&lt;/STRONG&gt; and the Date_Dbl field for the &lt;STRONG&gt;Statistic Field&lt;/STRONG&gt;.&amp;nbsp; Set the &lt;STRONG&gt;Statistic Type &lt;/STRONG&gt;to &lt;STRONG&gt;Range&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note, you will want to make sure you Lat/Long fields are exact for when the vehicle was not moving.&amp;nbsp; Looks like some are rounded differently.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/472805_pastedImage_1.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6.&amp;nbsp; This should give you an output with a Range field that shows the epoch time of how long the vehicle was not moving.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-3 jive-image" src="https://community.esri.com/legacyfs/online/472807_pastedImage_3.png" /&gt;&lt;/P&gt;&lt;P&gt;If the value is greater than 300000, it was idle for more than 5 minutes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 07 Nov 2019 19:13:59 GMT</pubDate>
    <dc:creator>JakeSkinner</dc:creator>
    <dc:date>2019-11-07T19:13:59Z</dc:date>
    <item>
      <title>Python or ModelBuilder Help</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/python-or-modelbuilder-help/m-p/521364#M22881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;I am trying to transition to ArcGIS Pro.&amp;nbsp;I am not very good at programming and needed some help with either Python or ModelBuilder.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am tasked with creating maps for our documents to show sampling locations. I currently have all the layers such as the basemap, roads, boundaries, etc. added to the project. Currently, I manually import an edited excel file and I use the "display XY Data" to display the Lat and Long of our tracks to the map. The attribute table contains the following information shown in the attached file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The excel file is data we took while moving in our vehicle that is equipped with GPS. What I am trying to do is use the&amp;nbsp;information&amp;nbsp;and place a marker point and use a style on that point anywhere that our vehicle was parked for more than 5 min. The excel file name is never the same and is created from data from Igor. The excel file is usually named in the following format (XXXXX DAQ Data XXXXXX.xlsx) where "X" are numbers for the date and case number.&amp;nbsp;I am not sure if this is possible but I figured I would start with my question here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hopefully I posted this in the correct area!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance for any help!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Justin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Nov 2019 17:43:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/python-or-modelbuilder-help/m-p/521364#M22881</guid>
      <dc:creator>JustinMays</dc:creator>
      <dc:date>2019-11-07T17:43:29Z</dc:date>
    </item>
    <item>
      <title>Re: Python or ModelBuilder Help</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/python-or-modelbuilder-help/m-p/521365#M22882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you share some of your excel? In particular, an area where you know you sat 5 min?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Nov 2019 17:45:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/python-or-modelbuilder-help/m-p/521365#M22882</guid>
      <dc:creator>GarrettSeay1</dc:creator>
      <dc:date>2019-11-07T17:45:59Z</dc:date>
    </item>
    <item>
      <title>Re: Python or ModelBuilder Help</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/python-or-modelbuilder-help/m-p/521366#M22883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You might want to start with &lt;A href="https://pro.arcgis.com/en/pro-app/tool-reference/conversion/excel-to-table.htm"&gt;excel to table&lt;/A&gt;, which will translate your excel table into a geodatabase table format.&amp;nbsp; You provide the in excel name, the out geodata base, and the new table name.&amp;nbsp; IMHO, working with a table is easier than excel worksheets.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Nov 2019 18:03:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/python-or-modelbuilder-help/m-p/521366#M22883</guid>
      <dc:creator>JoeBorgione</dc:creator>
      <dc:date>2019-11-07T18:03:30Z</dc:date>
    </item>
    <item>
      <title>Re: Python or ModelBuilder Help</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/python-or-modelbuilder-help/m-p/521367#M22884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you all for getting back to me. I have attached a excel file as asked. This is a edited file and only contains the information that I need. It is also in xls instead of xlsx but I don't think it matters much.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again for the help.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Justin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Nov 2019 18:51:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/python-or-modelbuilder-help/m-p/521367#M22884</guid>
      <dc:creator>JustinMays</dc:creator>
      <dc:date>2019-11-07T18:51:03Z</dc:date>
    </item>
    <item>
      <title>Re: Python or ModelBuilder Help</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/python-or-modelbuilder-help/m-p/521368#M22885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am wondering what your question is?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;right click on your excel table and select Create Feature Class &amp;gt; From XY Table...&lt;IMG alt="" class="jive-emoji image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/472801_Capture.PNG" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It should work unless your somewhere near Willa, Washington&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Nov 2019 18:55:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/python-or-modelbuilder-help/m-p/521368#M22885</guid>
      <dc:creator>RobertBorchert</dc:creator>
      <dc:date>2019-11-07T18:55:45Z</dc:date>
    </item>
    <item>
      <title>Re: Python or ModelBuilder Help</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/python-or-modelbuilder-help/m-p/521369#M22886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Robert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to automate or at least speed up the process some how by using a Python script or ModelBuilder to bring in the excel files, add them to the map, display all the coordinates on the map, then place a marker on any location where the markers were at a location for more that 5 minutes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Justin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Nov 2019 19:02:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/python-or-modelbuilder-help/m-p/521369#M22886</guid>
      <dc:creator>JustinMays</dc:creator>
      <dc:date>2019-11-07T19:02:01Z</dc:date>
    </item>
    <item>
      <title>Re: Python or ModelBuilder Help</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/python-or-modelbuilder-help/m-p/521370#M22887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What are you using for GPS. Many if not most will have available software to create points as shape files for you.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Nov 2019 19:05:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/python-or-modelbuilder-help/m-p/521370#M22887</guid>
      <dc:creator>RobertBorchert</dc:creator>
      <dc:date>2019-11-07T19:05:24Z</dc:date>
    </item>
    <item>
      <title>Re: Python or ModelBuilder Help</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/python-or-modelbuilder-help/m-p/521371#M22888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I believe is is an Airmar system. But I get the data from another person in excel format.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Nov 2019 19:13:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/python-or-modelbuilder-help/m-p/521371#M22888</guid>
      <dc:creator>JustinMays</dc:creator>
      <dc:date>2019-11-07T19:13:17Z</dc:date>
    </item>
    <item>
      <title>Re: Python or ModelBuilder Help</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/python-or-modelbuilder-help/m-p/521372#M22889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Justin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One way you can do this is the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.&amp;nbsp; Import the table into a File Geodatabase using the Excel to Table tool as &lt;A href="https://community.esri.com/migrated-users/4422"&gt;Joe Borgione&lt;/A&gt;‌ mentioned&lt;/P&gt;&lt;P&gt;2.&amp;nbsp; Create a new TEXT field (i.e. Time_Str) and calculate this to your Time_ field.&amp;nbsp; This will convert your date to a string&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-4" src="https://community.esri.com/legacyfs/online/472808_pastedImage_4.png" /&gt;&lt;/P&gt;&lt;P&gt;3.&amp;nbsp; Create another field of type Long or Double (i.e. Date_Dbl)&lt;/P&gt;&lt;P&gt;3.&amp;nbsp; Calculate the new field (Date_Dbl) by converting the TEXT field to epoch seconds using the field calculator and the following expression:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="language-python line-numbers"&gt;&lt;CODE&gt;time&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;mktime&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;datetime&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;datetime&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;strptime&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;!Time_Str!&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"%m/%d/%Y %I:%M:%S %p"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;timetuple&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;*&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;1000&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/472806_pastedImage_2.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4.&amp;nbsp; Convert the table to a point feature class using the &lt;A href="https://pro.arcgis.com/en/pro-app/tool-reference/data-management/xy-table-to-point.htm"&gt;XY Table to Point&lt;/A&gt; tool&lt;/P&gt;&lt;P&gt;5.&amp;nbsp; Dissolve the feature class based on the Latitude and Longitude fields for the &lt;STRONG&gt;Dissolve&lt;/STRONG&gt; &lt;STRONG&gt;Fields&lt;/STRONG&gt; and the Date_Dbl field for the &lt;STRONG&gt;Statistic Field&lt;/STRONG&gt;.&amp;nbsp; Set the &lt;STRONG&gt;Statistic Type &lt;/STRONG&gt;to &lt;STRONG&gt;Range&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note, you will want to make sure you Lat/Long fields are exact for when the vehicle was not moving.&amp;nbsp; Looks like some are rounded differently.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/472805_pastedImage_1.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6.&amp;nbsp; This should give you an output with a Range field that shows the epoch time of how long the vehicle was not moving.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-3 jive-image" src="https://community.esri.com/legacyfs/online/472807_pastedImage_3.png" /&gt;&lt;/P&gt;&lt;P&gt;If the value is greater than 300000, it was idle for more than 5 minutes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Nov 2019 19:13:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/python-or-modelbuilder-help/m-p/521372#M22889</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2019-11-07T19:13:59Z</dc:date>
    </item>
    <item>
      <title>Re: Python or ModelBuilder Help</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/python-or-modelbuilder-help/m-p/521373#M22890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for the write up. I will give this a shot. I might not get it completed today but I will respond with the results I get. Thank you all again for the help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Justin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Nov 2019 19:18:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/python-or-modelbuilder-help/m-p/521373#M22890</guid>
      <dc:creator>JustinMays</dc:creator>
      <dc:date>2019-11-07T19:18:07Z</dc:date>
    </item>
    <item>
      <title>Re: Python or ModelBuilder Help</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/python-or-modelbuilder-help/m-p/521374#M22891</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you sure there were any two times that were at least 5 minutes apart&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;all your readings are a few seconds apart. I took them into MS Access and looked for duplicate locations and the closest to 5 minutes is on that had 24 readins&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then going back to the original table there are a bunch close together. Your GPS rating is fluctuation by a few inches to feet between many readings. &lt;IMG alt="" class="jive-emoji image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/472811_Capture.PNG" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Nov 2019 19:53:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/python-or-modelbuilder-help/m-p/521374#M22891</guid>
      <dc:creator>RobertBorchert</dc:creator>
      <dc:date>2019-11-07T19:53:13Z</dc:date>
    </item>
    <item>
      <title>Re: Python or ModelBuilder Help</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/python-or-modelbuilder-help/m-p/521375#M22892</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I found the same when I did that. I used the Find Identical tool.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Nov 2019 20:01:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/python-or-modelbuilder-help/m-p/521375#M22892</guid>
      <dc:creator>GarrettSeay1</dc:creator>
      <dc:date>2019-11-07T20:01:41Z</dc:date>
    </item>
    <item>
      <title>Re: Python or ModelBuilder Help</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/python-or-modelbuilder-help/m-p/521376#M22893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What we are doing is driving around in an area to take samples. We then stop at random locations through out the day. If we are stopped for more than 5 minutes, the client would like me to mark that location on the map.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have attached an example picture showing some of our tracks and stops. The blue dots represent the locations of stops we made and the yellow dots are all the data from the excel file where we were that day. As it stands now, I manually import the edited data and manually look for locations of where we made stops during the day and add a marker at those locations.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Nov 2019 20:10:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/python-or-modelbuilder-help/m-p/521376#M22893</guid>
      <dc:creator>JustinMays</dc:creator>
      <dc:date>2019-11-07T20:10:50Z</dc:date>
    </item>
  </channel>
</rss>

