<?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: Updating, Adding, and Automating Updates to Feature Layer in AGO using Python API in ArcGIS API for Python Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-python-questions/updating-adding-and-automating-updates-to-feature/m-p/1147493#M7160</link>
    <description>&lt;P&gt;As Dan said, there are loads of examples already out there that probably cover this. I've even replied to some of them.&lt;/P&gt;&lt;P&gt;As far as advice, I cannot overstate the importance of familiarizing yourself with the &lt;A href="https://pandas.pydata.org/" target="_self"&gt;&lt;STRONG&gt;pandas&lt;/STRONG&gt; Python module&lt;/A&gt;, and Esri's &lt;A href="https://developers.arcgis.com/python/api-reference/arcgis.features.toc.html#geoaccessor" target="_self"&gt;&lt;EM&gt;spatially enabled dataframe&lt;/EM&gt;&lt;/A&gt;. Not only will it make it easier to query layers and apply edits to them, but you it's also pretty good at reading in spatial features from JSON. The last time I had to do so, &lt;A href="https://geopandas.org/en/stable/" target="_self"&gt;geopandas&lt;/A&gt; has been a &lt;EM&gt;bit &lt;/EM&gt;easier to use when parsing JSON, so take a look at that, too.&lt;/P&gt;</description>
    <pubDate>Thu, 24 Feb 2022 13:38:18 GMT</pubDate>
    <dc:creator>jcarlson</dc:creator>
    <dc:date>2022-02-24T13:38:18Z</dc:date>
    <item>
      <title>Updating, Adding, and Automating Updates to Feature Layer in AGO using Python API</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/updating-adding-and-automating-updates-to-feature/m-p/1147436#M7158</link>
      <description>&lt;P&gt;Hello!&lt;BR /&gt;I am reaching out to see if anyone can provide information, resources, or tutorials that will help guide me in the right direction for a task I have taken on for my internship.&lt;/P&gt;&lt;P&gt;I'm new to Python API very novice. Still, I am tasked with creating a script that will update and add data to an AGO feature layer and automate updates to the layer from an API at specific time intervals (monthly) with little or no human intervention in AGO.&lt;/P&gt;&lt;P&gt;As I'm learning how to accomplish this task, I'm using a clone of the primary point feature layer, which will receive all the updates and TWO JSON samples of what would be received from the Service API endpoint. (which will run once a month).&lt;/P&gt;&lt;P&gt;The JSON samples are two types:&lt;/P&gt;&lt;P&gt;UPDATED features: 10 records&lt;BR /&gt;NEW features: 18 new records&lt;/P&gt;&lt;P&gt;Any advice from experts, resource recommendations, etc., would help get me started and be greatly appreciated.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Feb 2022 08:26:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/updating-adding-and-automating-updates-to-feature/m-p/1147436#M7158</guid>
      <dc:creator>ChristopherCharles-Noriega</dc:creator>
      <dc:date>2022-02-24T08:26:25Z</dc:date>
    </item>
    <item>
      <title>Re: Updating, Adding, and Automating Updates to Feature Layer in AGO using Python API</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/updating-adding-and-automating-updates-to-feature/m-p/1147477#M7159</link>
      <description>&lt;P&gt;Did you check out the links to the right of your question?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="links.png" style="width: 283px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/34871i12C78BFB1DB37F72/image-size/medium?v=v2&amp;amp;px=400" role="button" title="links.png" alt="links.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Often they will get you started, even before you have to consult the api documentation.&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.arcgis.com/python/api-reference/" target="_blank"&gt;API Reference for the ArcGIS API for Python — arcgis 2.0.0 documentation&lt;/A&gt;&lt;/P&gt;&lt;P&gt;which is fine if you know exactly what you are looking for&lt;/P&gt;</description>
      <pubDate>Thu, 24 Feb 2022 12:18:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/updating-adding-and-automating-updates-to-feature/m-p/1147477#M7159</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2022-02-24T12:18:19Z</dc:date>
    </item>
    <item>
      <title>Re: Updating, Adding, and Automating Updates to Feature Layer in AGO using Python API</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/updating-adding-and-automating-updates-to-feature/m-p/1147493#M7160</link>
      <description>&lt;P&gt;As Dan said, there are loads of examples already out there that probably cover this. I've even replied to some of them.&lt;/P&gt;&lt;P&gt;As far as advice, I cannot overstate the importance of familiarizing yourself with the &lt;A href="https://pandas.pydata.org/" target="_self"&gt;&lt;STRONG&gt;pandas&lt;/STRONG&gt; Python module&lt;/A&gt;, and Esri's &lt;A href="https://developers.arcgis.com/python/api-reference/arcgis.features.toc.html#geoaccessor" target="_self"&gt;&lt;EM&gt;spatially enabled dataframe&lt;/EM&gt;&lt;/A&gt;. Not only will it make it easier to query layers and apply edits to them, but you it's also pretty good at reading in spatial features from JSON. The last time I had to do so, &lt;A href="https://geopandas.org/en/stable/" target="_self"&gt;geopandas&lt;/A&gt; has been a &lt;EM&gt;bit &lt;/EM&gt;easier to use when parsing JSON, so take a look at that, too.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Feb 2022 13:38:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/updating-adding-and-automating-updates-to-feature/m-p/1147493#M7160</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2022-02-24T13:38:18Z</dc:date>
    </item>
    <item>
      <title>Re: Updating, Adding, and Automating Updates to Feature Layer in AGO using Python API</title>
      <link>https://community.esri.com/t5/arcgis-api-for-python-questions/updating-adding-and-automating-updates-to-feature/m-p/1147787#M7163</link>
      <description>&lt;P&gt;Search for the answer. Google is your friend.&amp;nbsp; For example this site is easy to find&amp;nbsp;&lt;A href="https://developers.arcgis.com/python/sample-notebooks/" target="_blank"&gt;https://developers.arcgis.com/python/sample-notebooks/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;with this search phrase: arcgis python api samples.&lt;/P&gt;&lt;P&gt;ESRI has a bunch of documentation.&amp;nbsp; Plethora of you tube videos and stackexchange posts.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For someone us learning the API, taking hard route of reading through the documenation, using the Python dir command and the Jupyter notebook question mark (?) magic to figure it out on your own would pay off in the end.&amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Feb 2022 23:02:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-python-questions/updating-adding-and-automating-updates-to-feature/m-p/1147787#M7163</guid>
      <dc:creator>DavidAnderson_1701</dc:creator>
      <dc:date>2022-02-24T23:02:35Z</dc:date>
    </item>
  </channel>
</rss>

