desc = arcpy.Describe ("FeatureClass") print desc.path
import arcpy, os arcpy.env.workspace = os.getcwd() for gdb in arcpy.ListWorkspaces("*","Access"): print "Access: "+gdb for gdb in arcpy.ListWorkspaces("*","FileGDB"): print "FGDB: "+gdb
fc = arcpy.getParamaterAsText(0) fieldName = arcpy.getParamaterAsText(1) newName = arcpy.AddFieldDelimiters(fc, fieldName) sqlExp = newName + " = 5"
Angemeldete Mitglieder können Beiträge verfassen, Updates folgen und mehr. Neu hier? Registriere ein kostenloses Konto.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.