Resumen
UpdateCursor establishes read-write access to records returned from a feature class or table.
Returns an iterator of lists. The order of values in the list matches the order of fields specified by the field_names argument.
Debate
Update cursors can be iterated using a for loop. Update cursors also support with statements to reset iteration and aid in removal of locks. However, using a del statement to delete the object or wrapping the cursor in a function to have the cursor object go out of scope should be considered to guard against all locking cases.
La apertura de operaciones de inserción o actualización simultáneas en el mismo espacio de trabajo con distintos cursores requiere que se inice una sesión de edición.
A continuación, se incluyen algunos tipos de datasets que solo se pueden editar en una sesión de edición:
- Clases de entidad que forman parte de una topología
- Clases de entidad que forman parte de una red geométrica
- Clases de entidad que forman parte de un dataset de red
- Datasets versionados en geodatabases corporativas
- Algunas clases de entidad y objetos con extensiones de clase
In Python 2, UpdateCursor supports the iterator next method to retrieve the next row outside of a loop. In Python 3, the equivalent is performed by using the Python built-in next function.
Sintaxis
UpdateCursor (in_table, field_names, {where_clause}, {spatial_reference}, {explode_to_points}, {sql_clause})
Parámetro | Explicación | Tipo de datos |
in_table | La clase de entidad, capa, tabla o vista de tabla. | String |
field_names [field_names,...] | Una lista (o tupla) de nombres de campo. Para un único campo, puede utilizar una cadena en lugar de una lista de cadenas. Use un asterisco (*) en lugar de una lista de campos si desea acceder a todos los campos desde la tabla de entrada (se excluyen los campos ráster y BLOB). Sin embargo, para un rendimiento más rápido y un orden de campo fiable, se recomienda que la lista de campos se acote a solo aquellos que se necesitan realmente. Los campos ráster no se admiten. Es posible acceder a información adicional con tokens (como OID@) en lugar de nombres de campo:
| String |
where_clause | Una expresión opcional que limita los registros que se devuelven. Para obtener más información sobre las cláusulas WHERE y sentencias SQL, consulte Crear una expresión de consulta. (El valor predeterminado es None) | String |
spatial_reference | The spatial reference of the feature class can be specified with either a SpatialReference object or string equivalent. (El valor predeterminado es None) | SpatialReference |
explode_to_points | Deconstruya una entidad en sus puntos o vértices individuales. Si explode_to_points se define como True, una entidad multipunto con cinco puntos, por ejemplo, se representa con cinco filas. (El valor predeterminado es False) | Boolean |
sql_clause | Un par opcional de cláusulas prefix y postfix de SQL organizadas en una lista o tupla. An SQL prefix clause supports None, DISTINCT, and TOP. An SQL postfix clause supports None, ORDER BY, and GROUP BY. Una cláusula prefix de SQL se ubica en la primera posición y se insertará entre la palabra clave SELECT y SELECT COLUMN LIST. La cláusula prefix de SQL se suele utilizar para cláusulas como DISTINCT o ALL. Una cláusula postfix de SQL se ubica en la segunda posición y se incorporará a la sentencia SELECT, tras la cláusula WHERE. La cláusula postfix de SQL se suele utilizar para cláusulas como ORDER BY. (El valor predeterminado es (None, None)) | tuple |
Propiedades
Propiedad | Explicación | Tipo de datos |
fields (Sólo lectura) | A tuple of field names used by the cursor. The tuple will include all fields and tokens specified by the field_names argument. The order of the field names on the fields property will be the same as passed in with the field_names argument. If the field_names argument is set to *, the fields property will include all fields used by the cursor. A value of * will return geometry in a tuple of x,y coordinates (equivalent to the SHAPE@XY token). | tuple |
Descripción general del método
Método | Explicación |
deleteRow () | Deletes the current row. |
next () | Returns the next row as a tuple. The order of fields will be returned in the order they were specified when creating the cursor. |
reset () | Resets the cursor back to the first row. |
updateRow (row) | Updates the current row in the table. |
Métodos
deleteRow ()
next ()
Valor de retorno
Tipo de datos | Explicación |
tuple | The next row as a tuple. |
reset ()
updateRow (row)
Parámetro | Explicación | Tipo de datos |
row | A list or tuple of values. The order of values should be in the same order as the fields. When updating fields, if the incoming values match the type of field, the values will be cast as necessary. For example, a value of 1.0 to a string field will be added as "1.0", and a value of "25" added to a float field will be added as 25.0. | tuple |
Muestra de código
UpdateCursor example 1
Use UpdateCursor to update a field value by evaluating the values of other fields.
import arcpy
fc = 'c:/data/base.gdb/well'
fields = ['WELL_YIELD', 'WELL_CLASS']
# Create update cursor for feature class
with arcpy.da.UpdateCursor(fc, fields) as cursor:
# For each row, evaluate the WELL_YIELD value (index position
# of 0), and update WELL_CLASS (index position of 1)
for row in cursor:
if (row[0] >= 0 and row[0] <= 10):
row[1] = 1
elif (row[0] > 10 and row[0] <= 20):
row[1] = 2
elif (row[0] > 20 and row[0] <= 30):
row[1] = 3
elif (row[0] > 30):
row[1] = 4
# Update the cursor with the updated list
cursor.updateRow(row)
UpdateCursor example 2
Use UpdateCursor to update a field of buffer distances for use with the Buffer function.
import arcpy
arcpy.env.workspace = 'c:/data/output.gdb'
fc = 'c:/data/base.gdb/roads'
fields = ['ROAD_TYPE', 'BUFFER_DISTANCE']
# Create update cursor for feature class
with arcpy.da.UpdateCursor(fc, fields) as cursor:
# Update the field used in Buffer so the distance is based on road
# type. Road type is either 1, 2, 3, or 4. Distance is in meters.
for row in cursor:
# Update the BUFFER_DISTANCE field to be 100 times the
# ROAD_TYPE field.
row[1] = row[0] * 100
cursor.updateRow(row)
# Buffer feature class using updated field values
arcpy.Buffer_analysis(fc, 'roads_buffer', 'BUFFER_DISTANCE')