I want to duplicate a polygon feature class and offset all of the polygons by about 10 feet in both the x and y directions. Is this possible to do using arcpy, or are there any geoprocessing tools that could help me do this?
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.
|
It could be done with arcpy. Take a look at my post on updating a feature's geometry. Instead of using an update cursor and modifying a the geometry in place, you'd create a new feature class, use a search cursor on your original feature class and write new geometries based on each feature in your original feature class. |
|||
|
|
As stated above, I would export data to a new FC and then turn on editing, select all and use the move command. |
|||
|
|
|
I would have thought you'd do a Copy, Paste, then Move. The Editor menu's Move function lets you specify a delta x and y. However, I can't seem to find that function in arcpy. |
|||
|
|