<?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: How do I add a new feature to an existing featureclass in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/how-do-i-add-a-new-feature-to-an-existing/m-p/463017#M36265</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could play with the arcpy.da.editor &lt;A href="http://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy-data-access/editor.htm" title="http://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy-data-access/editor.htm"&gt;Editor—Help | ArcGIS for Desktop&lt;/A&gt; &lt;/P&gt;&lt;P&gt;or just the da.insertcursor option &lt;A href="http://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy-data-access/insertcursor-class.htm" title="http://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy-data-access/insertcursor-class.htm"&gt;InsertCursor—Help | ArcGIS for Desktop&lt;/A&gt; &lt;/P&gt;&lt;P&gt;depends on what you want to do, there are other options depending on where you data are (aka merge)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 28 Jul 2016 01:01:17 GMT</pubDate>
    <dc:creator>DanPatterson_Retired</dc:creator>
    <dc:date>2016-07-28T01:01:17Z</dc:date>
    <item>
      <title>How do I add a new feature to an existing featureclass</title>
      <link>https://community.esri.com/t5/python-questions/how-do-i-add-a-new-feature-to-an-existing/m-p/463016#M36264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;I do a lot of selecting and updating, but I just want to write a new feature (add a row) based on values from another feature class&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2016 00:25:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-do-i-add-a-new-feature-to-an-existing/m-p/463016#M36264</guid>
      <dc:creator>LeeNeher1</dc:creator>
      <dc:date>2016-07-28T00:25:43Z</dc:date>
    </item>
    <item>
      <title>Re: How do I add a new feature to an existing featureclass</title>
      <link>https://community.esri.com/t5/python-questions/how-do-i-add-a-new-feature-to-an-existing/m-p/463017#M36265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could play with the arcpy.da.editor &lt;A href="http://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy-data-access/editor.htm" title="http://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy-data-access/editor.htm"&gt;Editor—Help | ArcGIS for Desktop&lt;/A&gt; &lt;/P&gt;&lt;P&gt;or just the da.insertcursor option &lt;A href="http://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy-data-access/insertcursor-class.htm" title="http://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy-data-access/insertcursor-class.htm"&gt;InsertCursor—Help | ArcGIS for Desktop&lt;/A&gt; &lt;/P&gt;&lt;P&gt;depends on what you want to do, there are other options depending on where you data are (aka merge)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2016 01:01:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-do-i-add-a-new-feature-to-an-existing/m-p/463017#M36265</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-07-28T01:01:17Z</dc:date>
    </item>
    <item>
      <title>Re: How do I add a new feature to an existing featureclass</title>
      <link>https://community.esri.com/t5/python-questions/how-do-i-add-a-new-feature-to-an-existing/m-p/463018#M36266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, I am working with big (4-6gb) feature classes and a simple load in ArcCatalog fails.&amp;nbsp;&amp;nbsp; I will check out insertCursor.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2016 01:10:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-do-i-add-a-new-feature-to-an-existing/m-p/463018#M36266</guid>
      <dc:creator>LeeNeher1</dc:creator>
      <dc:date>2016-07-28T01:10:44Z</dc:date>
    </item>
    <item>
      <title>Re: How do I add a new feature to an existing featureclass</title>
      <link>https://community.esri.com/t5/python-questions/how-do-i-add-a-new-feature-to-an-existing/m-p/463019#M36267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why does load fail? What is the error? It should work.&lt;/P&gt;&lt;P&gt;Are the input and target the same type / coord sys / attributes???&lt;/P&gt;&lt;P&gt;da.InsertCursor will also work, but that seems a long way around to do what the standard tools will do.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2016 08:27:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-do-i-add-a-new-feature-to-an-existing/m-p/463019#M36267</guid>
      <dc:creator>NeilAyres</dc:creator>
      <dc:date>2016-07-28T08:27:26Z</dc:date>
    </item>
  </channel>
</rss>

