<?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 Upload GPS points to Track using Python in ArcGIS API for Python Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-python-questions/upload-gps-points-to-track-using-python/m-p/1115588#M6803</link>
    <description>&lt;P&gt;I have a couple of hardware GPS trackers which we install on vehicles. The gps points from these trackers arrive on one of my servers, from where I want to push the locations into Arcgis Online.&lt;/P&gt;&lt;P&gt;I have tried this piece of Python code to append a track point to the track layer:&lt;/P&gt;&lt;P&gt;&lt;FONT face="andale mono,times"&gt;gis = GIS(username="redacted", password="redacted")&lt;BR /&gt;&lt;BR /&gt;&lt;/FONT&gt;&lt;FONT face="andale mono,times"&gt;izinto_item = gis.content.get("redated")&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="andale mono,times"&gt;feature_layer = izinto_item.layers[1]&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="andale mono,times"&gt;new_feature = {"geometry": {"x": redacted, "y": redacted, "spatialReference": {"wkid": 4326, "latestWkid": 4326}}, "attributes": {"activity": 0, "altitude": 511.228589377366, "app_id": "izinto", "battery_percentage": 55, "battery_state": 1, "course": None, "device_id": "test", "floor": None, "horizontal_accuracy": 46.4931761266777, "location_source": None, "location_timestamp": 1636544141380, "session_id": "test", "signal_strength": None, "speed": 0.646095156669617, "vertical_accuracy": 7.64551688182702, "full_name": "redacted", "category": None, "created_user": "redacted", "created_date": 1636544328798, "last_edited_user": "redacted", "last_edited_date": 1636544328798}}&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="andale mono,times"&gt;feature_layer.edit_features(adds=[new_feature])&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Running this code however results in an error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;Traceback (most recent call last):&lt;BR /&gt;File "/home/jpmeijers/PycharmProjects/arcgis-update-feature/track.py", line 52, in &amp;lt;module&amp;gt;&lt;BR /&gt;main()&lt;BR /&gt;File "/home/jpmeijers/PycharmProjects/arcgis-update-feature/track.py", line 48, in main&lt;BR /&gt;feature_layer.edit_features(adds=[new_feature])&lt;BR /&gt;File "/home/jpmeijers/PycharmProjects/arcgis-update-feature/venv/lib/python3.8/site-packages/arcgis/features/layer.py", line 2827, in edit_features&lt;BR /&gt;return self._con.post_multipart(path=edit_url, postdata=params)&lt;BR /&gt;File "/home/jpmeijers/PycharmProjects/arcgis-update-feature/venv/lib/python3.8/site-packages/arcgis/gis/_impl/_con/_connection.py", line 863, in post_multipart&lt;BR /&gt;return self._handle_response(&lt;BR /&gt;File "/home/jpmeijers/PycharmProjects/arcgis-update-feature/venv/lib/python3.8/site-packages/arcgis/gis/_impl/_con/_connection.py", line 625, in _handle_response&lt;BR /&gt;self._handle_json_error(data["error"], errorcode)&lt;BR /&gt;File "/home/jpmeijers/PycharmProjects/arcgis-update-feature/venv/lib/python3.8/site-packages/arcgis/gis/_impl/_con/_connection.py", line 648, in _handle_json_error&lt;BR /&gt;raise Exception(errormessage)&lt;BR /&gt;Exception:&lt;BR /&gt;This operation is not supported.&lt;BR /&gt;(Error Code: 400)&lt;/P&gt;&lt;P&gt;Process finished with exit code 1&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What would be the proper way to upload GPS tracks that are obtained from a hardware GPS tracker device?&lt;/P&gt;</description>
    <pubDate>Wed, 10 Nov 2021 12:46:25 GMT</pubDate>
    <dc:creator>JPMeijers</dc:creator>
    <dc:date>2021-11-10T12:46:25Z</dc:date>
    <item>
      <title>Upload GPS points to Track using Python</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/upload-gps-points-to-track-using-python/m-p/1115588#M6803</link>
      <description>&lt;P&gt;I have a couple of hardware GPS trackers which we install on vehicles. The gps points from these trackers arrive on one of my servers, from where I want to push the locations into Arcgis Online.&lt;/P&gt;&lt;P&gt;I have tried this piece of Python code to append a track point to the track layer:&lt;/P&gt;&lt;P&gt;&lt;FONT face="andale mono,times"&gt;gis = GIS(username="redacted", password="redacted")&lt;BR /&gt;&lt;BR /&gt;&lt;/FONT&gt;&lt;FONT face="andale mono,times"&gt;izinto_item = gis.content.get("redated")&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="andale mono,times"&gt;feature_layer = izinto_item.layers[1]&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="andale mono,times"&gt;new_feature = {"geometry": {"x": redacted, "y": redacted, "spatialReference": {"wkid": 4326, "latestWkid": 4326}}, "attributes": {"activity": 0, "altitude": 511.228589377366, "app_id": "izinto", "battery_percentage": 55, "battery_state": 1, "course": None, "device_id": "test", "floor": None, "horizontal_accuracy": 46.4931761266777, "location_source": None, "location_timestamp": 1636544141380, "session_id": "test", "signal_strength": None, "speed": 0.646095156669617, "vertical_accuracy": 7.64551688182702, "full_name": "redacted", "category": None, "created_user": "redacted", "created_date": 1636544328798, "last_edited_user": "redacted", "last_edited_date": 1636544328798}}&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="andale mono,times"&gt;feature_layer.edit_features(adds=[new_feature])&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Running this code however results in an error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;Traceback (most recent call last):&lt;BR /&gt;File "/home/jpmeijers/PycharmProjects/arcgis-update-feature/track.py", line 52, in &amp;lt;module&amp;gt;&lt;BR /&gt;main()&lt;BR /&gt;File "/home/jpmeijers/PycharmProjects/arcgis-update-feature/track.py", line 48, in main&lt;BR /&gt;feature_layer.edit_features(adds=[new_feature])&lt;BR /&gt;File "/home/jpmeijers/PycharmProjects/arcgis-update-feature/venv/lib/python3.8/site-packages/arcgis/features/layer.py", line 2827, in edit_features&lt;BR /&gt;return self._con.post_multipart(path=edit_url, postdata=params)&lt;BR /&gt;File "/home/jpmeijers/PycharmProjects/arcgis-update-feature/venv/lib/python3.8/site-packages/arcgis/gis/_impl/_con/_connection.py", line 863, in post_multipart&lt;BR /&gt;return self._handle_response(&lt;BR /&gt;File "/home/jpmeijers/PycharmProjects/arcgis-update-feature/venv/lib/python3.8/site-packages/arcgis/gis/_impl/_con/_connection.py", line 625, in _handle_response&lt;BR /&gt;self._handle_json_error(data["error"], errorcode)&lt;BR /&gt;File "/home/jpmeijers/PycharmProjects/arcgis-update-feature/venv/lib/python3.8/site-packages/arcgis/gis/_impl/_con/_connection.py", line 648, in _handle_json_error&lt;BR /&gt;raise Exception(errormessage)&lt;BR /&gt;Exception:&lt;BR /&gt;This operation is not supported.&lt;BR /&gt;(Error Code: 400)&lt;/P&gt;&lt;P&gt;Process finished with exit code 1&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What would be the proper way to upload GPS tracks that are obtained from a hardware GPS tracker device?&lt;/P&gt;</description>
      <pubDate>Wed, 10 Nov 2021 12:46:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/upload-gps-points-to-track-using-python/m-p/1115588#M6803</guid>
      <dc:creator>JPMeijers</dc:creator>
      <dc:date>2021-11-10T12:46:25Z</dc:date>
    </item>
    <item>
      <title>Re: Upload GPS points to Track using Python</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/upload-gps-points-to-track-using-python/m-p/1115692#M6804</link>
      <description>&lt;P&gt;Does excluding the created_user, created_date, last_edited_user, and last_edited_date attributes from the feature make a difference? Those attributes are typically automatically set by the feature service if they were added to the feature service when editing was enabled.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Nov 2021 16:29:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/upload-gps-points-to-track-using-python/m-p/1115692#M6804</guid>
      <dc:creator>J_R_Matchett</dc:creator>
      <dc:date>2021-11-10T16:29:22Z</dc:date>
    </item>
    <item>
      <title>Re: Upload GPS points to Track using Python</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/upload-gps-points-to-track-using-python/m-p/1116749#M6817</link>
      <description>&lt;P&gt;Thanks for the suggestion&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/94034"&gt;@J_R_Matchett&lt;/a&gt;. I've done the following:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;new_feature = {&lt;SPAN&gt;"geometry"&lt;/SPAN&gt;: {&lt;SPAN&gt;"x"&lt;/SPAN&gt;: &lt;SPAN&gt;12.345&lt;/SPAN&gt;, &lt;SPAN&gt;"y"&lt;/SPAN&gt;: -&lt;SPAN&gt;12.345&lt;/SPAN&gt;,&lt;BR /&gt;                            &lt;SPAN&gt;"spatialReference"&lt;/SPAN&gt;: {&lt;SPAN&gt;"wkid"&lt;/SPAN&gt;: &lt;SPAN&gt;4326&lt;/SPAN&gt;, &lt;SPAN&gt;"latestWkid"&lt;/SPAN&gt;: &lt;SPAN&gt;4326&lt;/SPAN&gt;}},&lt;BR /&gt;               &lt;SPAN&gt;"attributes"&lt;/SPAN&gt;: {&lt;SPAN&gt;"altitude"&lt;/SPAN&gt;: &lt;SPAN&gt;511.228589377366&lt;/SPAN&gt;,&lt;BR /&gt;                              &lt;SPAN&gt;"battery_percentage"&lt;/SPAN&gt;: &lt;SPAN&gt;55&lt;/SPAN&gt;, &lt;SPAN&gt;"device_id"&lt;/SPAN&gt;: &lt;SPAN&gt;"test"&lt;/SPAN&gt;,&lt;BR /&gt;                              &lt;SPAN&gt;"location_timestamp"&lt;/SPAN&gt;: &lt;SPAN&gt;1636544141380&lt;/SPAN&gt;, &lt;SPAN&gt;"signal_strength"&lt;/SPAN&gt;: &lt;SPAN&gt;None&lt;/SPAN&gt;,&lt;BR /&gt;                              }&lt;BR /&gt;               }&lt;BR /&gt;feature_layer.edit_features(&lt;SPAN&gt;adds&lt;/SPAN&gt;=[new_feature])&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But now I get a different error:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;P&gt;Traceback (most recent call last):&lt;BR /&gt;File "/home/jpmeijers/PycharmProjects/arcgis-update-feature/track.py", line 59, in &amp;lt;module&amp;gt;&lt;BR /&gt;main()&lt;BR /&gt;File "/home/jpmeijers/PycharmProjects/arcgis-update-feature/track.py", line 55, in main&lt;BR /&gt;feature_layer.edit_features(adds=[new_feature])&lt;BR /&gt;File "/home/jpmeijers/PycharmProjects/arcgis-update-feature/venv/lib/python3.8/site-packages/arcgis/features/layer.py", line 2827, in edit_features&lt;BR /&gt;return self._con.post_multipart(path=edit_url, postdata=params)&lt;BR /&gt;File "/home/jpmeijers/PycharmProjects/arcgis-update-feature/venv/lib/python3.8/site-packages/arcgis/gis/_impl/_con/_connection.py", line 863, in post_multipart&lt;BR /&gt;return self._handle_response(&lt;BR /&gt;File "/home/jpmeijers/PycharmProjects/arcgis-update-feature/venv/lib/python3.8/site-packages/arcgis/gis/_impl/_con/_connection.py", line 625, in _handle_response&lt;BR /&gt;self._handle_json_error(data["error"], errorcode)&lt;BR /&gt;File "/home/jpmeijers/PycharmProjects/arcgis-update-feature/venv/lib/python3.8/site-packages/arcgis/gis/_impl/_con/_connection.py", line 648, in _handle_json_error&lt;BR /&gt;raise Exception(errormessage)&lt;BR /&gt;Exception:&lt;BR /&gt;This operation is not supported.&lt;BR /&gt;(Error Code: 400)&lt;/P&gt;&lt;P&gt;Process finished with exit code 1&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;I'm starting to wonder if this Tracks feature is only supported by the mobile apps, and not third party integrations. Does anyone have a good suggestion how I can upload GPS tracker data into Arcgis Online?&lt;/P&gt;</description>
      <pubDate>Mon, 15 Nov 2021 07:15:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/upload-gps-points-to-track-using-python/m-p/1116749#M6817</guid>
      <dc:creator>JPMeijers</dc:creator>
      <dc:date>2021-11-15T07:15:48Z</dc:date>
    </item>
    <item>
      <title>Re: Upload GPS points to Track using Python</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/upload-gps-points-to-track-using-python/m-p/1116805#M6818</link>
      <description>&lt;P&gt;I have now create a new item with only a points layer. I can successfully upload GPS tracker points to this points layer, using application credentials.&lt;/P&gt;&lt;P&gt;For reference my full code&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;import &lt;/SPAN&gt;datetime&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;from &lt;/SPAN&gt;arcgis.gis &lt;SPAN&gt;import &lt;/SPAN&gt;GIS&lt;BR /&gt;&lt;SPAN&gt;from &lt;/SPAN&gt;arcgis.features &lt;SPAN&gt;import &lt;/SPAN&gt;FeatureLayer&lt;BR /&gt;&lt;SPAN&gt;import &lt;/SPAN&gt;requests  &lt;SPAN&gt;# pip install requests&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;def &lt;/SPAN&gt;&lt;SPAN&gt;get_token&lt;/SPAN&gt;():&lt;BR /&gt;    params = {&lt;BR /&gt;        &lt;SPAN&gt;'client_id'&lt;/SPAN&gt;: &lt;SPAN&gt;"redacted"&lt;/SPAN&gt;,&lt;BR /&gt;        &lt;SPAN&gt;'client_secret'&lt;/SPAN&gt;: &lt;SPAN&gt;"redacted"&lt;/SPAN&gt;,&lt;BR /&gt;        &lt;SPAN&gt;'grant_type'&lt;/SPAN&gt;: &lt;SPAN&gt;"client_credentials"&lt;BR /&gt;&lt;/SPAN&gt;    }&lt;BR /&gt;    request = requests.get(&lt;SPAN&gt;'https://www.arcgis.com/sharing/rest/oauth2/token'&lt;/SPAN&gt;,&lt;BR /&gt;                          &lt;SPAN&gt;params&lt;/SPAN&gt;=params)&lt;BR /&gt;    response = request.json()&lt;BR /&gt;    token = response[&lt;SPAN&gt;"access_token"&lt;/SPAN&gt;]&lt;BR /&gt;    &lt;SPAN&gt;return &lt;/SPAN&gt;token&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;def &lt;/SPAN&gt;&lt;SPAN&gt;main&lt;/SPAN&gt;():&lt;BR /&gt;    &lt;SPAN&gt;# token = get_token()&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;    # gis = GIS(token=token,&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;    #           referer="https://redacted")&lt;BR /&gt;&lt;/SPAN&gt;    gis = GIS(&lt;SPAN&gt;username&lt;/SPAN&gt;=&lt;SPAN&gt;"redacted"&lt;/SPAN&gt;, &lt;SPAN&gt;password&lt;/SPAN&gt;=&lt;SPAN&gt;"redacted"&lt;/SPAN&gt;)&lt;BR /&gt;&lt;BR /&gt;    &lt;SPAN&gt;installation_feature &lt;/SPAN&gt;= &lt;SPAN&gt;None&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;    izinto_item = gis.content.get(&lt;SPAN&gt;"redacted"&lt;/SPAN&gt;)&lt;BR /&gt;    &lt;SPAN&gt;print&lt;/SPAN&gt;(izinto_item)&lt;BR /&gt;    &lt;SPAN&gt;for &lt;/SPAN&gt;feature_layer &lt;SPAN&gt;in &lt;/SPAN&gt;izinto_item.layers:&lt;BR /&gt;        &lt;SPAN&gt;if &lt;/SPAN&gt;feature_layer.properties[&lt;SPAN&gt;'geometryType'&lt;/SPAN&gt;] == &lt;SPAN&gt;'esriGeometryPoint'&lt;/SPAN&gt;:&lt;BR /&gt;            &lt;SPAN&gt;"""&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;            Time   location_timestamp Date&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;            Hardware Serial Number hardware_serial    String&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;            Installation ID    installation_id    Integer&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;            Logger ID  logger_id  Integer&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;            Site ID    site_id    Integer&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;            GPS Status gps_status Integer&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;            GPS Fix    gps_fix    Integer&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;            Battery    battery    Double&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;            Moving moving Integer&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;            Button Pressed button Integer&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;            Fall detected  fall   Integer&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;            Heading    heading    Double&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;            Speed  speed  Double&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;            :return: &lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;            """&lt;BR /&gt;&lt;/SPAN&gt;            new_feature = {&lt;BR /&gt;                &lt;SPAN&gt;"geometry"&lt;/SPAN&gt;: {&lt;BR /&gt;                    &lt;SPAN&gt;"x"&lt;/SPAN&gt;: &lt;SPAN&gt;12.34&lt;/SPAN&gt;,&lt;BR /&gt;                    &lt;SPAN&gt;"y"&lt;/SPAN&gt;: -&lt;SPAN&gt;12.34&lt;/SPAN&gt;,&lt;BR /&gt;                    &lt;SPAN&gt;"spatialReference"&lt;/SPAN&gt;: {&lt;SPAN&gt;"wkid"&lt;/SPAN&gt;: &lt;SPAN&gt;4326&lt;/SPAN&gt;, &lt;SPAN&gt;"latestWkid"&lt;/SPAN&gt;: &lt;SPAN&gt;4326&lt;/SPAN&gt;}},&lt;BR /&gt;                &lt;SPAN&gt;"attributes"&lt;/SPAN&gt;: {&lt;BR /&gt;                    &lt;SPAN&gt;"location_timestamp"&lt;/SPAN&gt;: datetime.datetime.now(),&lt;BR /&gt;                    &lt;SPAN&gt;"hardware_serial"&lt;/SPAN&gt;: &lt;SPAN&gt;"test"&lt;/SPAN&gt;,&lt;BR /&gt;                    &lt;SPAN&gt;"installation_id"&lt;/SPAN&gt;: &lt;SPAN&gt;79&lt;/SPAN&gt;,&lt;BR /&gt;                    &lt;SPAN&gt;"logger_id"&lt;/SPAN&gt;: &lt;SPAN&gt;1&lt;/SPAN&gt;,&lt;BR /&gt;                    &lt;SPAN&gt;"site_id"&lt;/SPAN&gt;: &lt;SPAN&gt;32&lt;/SPAN&gt;,&lt;BR /&gt;                    &lt;SPAN&gt;"gps_status"&lt;/SPAN&gt;: &lt;SPAN&gt;3&lt;/SPAN&gt;,&lt;BR /&gt;                    &lt;SPAN&gt;"gps_fix"&lt;/SPAN&gt;: &lt;SPAN&gt;0&lt;/SPAN&gt;,&lt;BR /&gt;                    &lt;SPAN&gt;"battery"&lt;/SPAN&gt;: &lt;SPAN&gt;100&lt;/SPAN&gt;,&lt;BR /&gt;                    &lt;SPAN&gt;"moving"&lt;/SPAN&gt;: &lt;SPAN&gt;0&lt;/SPAN&gt;,&lt;BR /&gt;                    &lt;SPAN&gt;"button"&lt;/SPAN&gt;: &lt;SPAN&gt;0&lt;/SPAN&gt;,&lt;BR /&gt;                    &lt;SPAN&gt;"fall"&lt;/SPAN&gt;: &lt;SPAN&gt;0&lt;/SPAN&gt;,&lt;BR /&gt;                }&lt;BR /&gt;            }&lt;BR /&gt;            feature_layer.edit_features(&lt;SPAN&gt;adds&lt;/SPAN&gt;=[new_feature])&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;if &lt;/SPAN&gt;__name__ == &lt;SPAN&gt;'__main__'&lt;/SPAN&gt;:&lt;BR /&gt;    main()&lt;/PRE&gt;</description>
      <pubDate>Mon, 15 Nov 2021 11:44:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/upload-gps-points-to-track-using-python/m-p/1116805#M6818</guid>
      <dc:creator>JPMeijers</dc:creator>
      <dc:date>2021-11-15T11:44:34Z</dc:date>
    </item>
  </channel>
</rss>

