Estoy tratando de agregar datos a una tabla de atributos en ArcGIS 10 usando el siguiente código: def make_floor_no( shapefile ): "Makes header for number of Floors (FLO) and calculates value" fieldName = "FLO" try: ARCPY.AddField_management(shapefile, fieldName, "DOUBLE") except: print...