Tell me more ×
Geographic Information Systems Stack Exchange is a question and answer site for cartographers, geographers and GIS professionals. It's 100% free, no registration required.

I see CopyFeatures_management, but this creates a new feature class.

http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//001700000035000000

Is there a way to copy features from a feature class into an existing feature class?

share|improve this question

1 Answer

up vote 4 down vote accepted

You want to use the Append_Management tool.

If you know the attribute tables will match up (including data type), use schema_type NO_TEST anyway (even though the documentation would suggest TEST). If the attribute tables do not match up you will have to deal with field mappings, which can be a huge pain in arcpy. (If you are using NO_TEST and a subtype, make sure that you pass in None for the field_mapping argument.)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.