Estou tentando adicionar dados a uma tabela de atributos no ArcGIS 10 usando o seguinte 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...