Try the Copy Features (Data Management) tool.http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//001700000035000000import arcpyfrom arcpy import envenv.workspace = "C:/data"arcpy.CopyFeatures_management("InFeature.shp", "C:/output/output.gdb/OutFeature")
The dissolve tool may not be recognizing the joined field as a legitimate field to perform the task. Perform the join to csv and then create a new featureclass and then perform the dissolve on that new featureclass.
Charles:Please see this Esri Online Help for the Dissolve tool:http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//00170000005n000000If all your counties of interest have a common attribute in an attribute field, you can "dissolve" on the field/attribute and create a new featureclass.
Charles:In your python script, could you add code to output a "dissolved" new featureclass of your selected counties for an "outline" shape that represents all counties being considered?
Aangemelde leden kunnen berichten plaatsen, updates volgen en meer. Nieuw hier? Registreer een gratis account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.