import arcpy def search_results(feature_class ): fields = ['Campo1'] results = [] cursor = arcpy.da.SearchCursor(feature_class, fields) for row in cursor: results ...
This is a brief tutorial for how to get started scripting ArcGIS commands in Python using Arcpy. Arcpy is a proprietary Python module that allows ArcGIS toolbox commands to be implemented through ...