Problema con la función setValue () en ArcGIS 10


8

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 "Field already there"  

    # loop through attribute table    
    Rows = ARCPY.SearchCursor( shapefile ) 

    for row in Rows:
        floors = round( row.getValue( 'HGT' ) / 3.0, 0)
        print str(floors)
        row.setValue( fieldName, floors )
        Rows.updateRow(row)            

Sin embargo, sigo recibiendo un error en la línea

row.setValue( fieldName, floors )

No puedo detectar nada malo con esto, y he probado algunas opciones diferentes. ¿Hay algo mal con mi sintaxis?

El mensaje de error es el siguiente:

 File "Z:\ConstructionMaterial.py", line 100, in <module> make_floor_no( InputFile )
 File "Z:\ConstructionMaterial.py", line 71, in make_floor_no 
    row.setValue( fieldName, floors )
 File "C:\Program Files (x86)\ArcGIS\Desktop10.0\arcpy\arcpy\arcobjects\arcobjects.py", line 941, in setValue
    return convertArcObjectToPythonObject(self._arc_object.SetValue(*gp_fixargs(args)))
RuntimeError: ERROR 999999: Error executing function.

Respuestas:


9

Los cursores de búsqueda le permiten obtener filas de objetos de solo lectura. si desea actualizar necesita usar el cursor de actualización.

Entonces cambia esto

    Rows = ARCPY.SearchCursor( shapefile ) 

A esto

    Rows = ARCPY.UpdateCursor( shapefile ) 
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.