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"
Los miembros registrados pueden publicar, seguir actualizaciones y más. ¿Nuevo aquí? Regístrate gratis.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.