Resumen
InsertCursor establishes a write cursor on a feature class or table. InsertCursor can be used to add new rows.
Debate
When using InsertCursor on a point feature class, creating a PointGeometry and setting it to the SHAPE@ token is a computationally intensive operation. Instead, define the point feature using tokens such as SHAPE@XY, SHAPE@Z, and SHAPE@M for faster, more efficient access.
Insert cursors support with statements to aid in the removal of locks. However, you can also use a del statement to delete the cursor object or wrap the cursor in a function so that the cursor object goes out of scope to prevent 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
Nota:
Using InsertCursor on a layer with a joined table is not supported.
When a field has a default value, a cursor applies the default value when the field is not specified or is set to None.
Sintaxis
InsertCursor (in_table, field_names, {datum_transformation}, {explicit})
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 para acceder a todos los campos de la tabla de entrada (se excluyen los campos 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:
Polygon, polyline, or multipoint features can only be created using the SHAPE@ token. | String |
datum_transformation | When features to be inserted have a different spatial reference than the target feature class, a projection will be performed automatically. If the two spatial references have a different datum, an appropriate transformation should be specified. La función ListTransformations se puede utilizar para proporcionar una lista de transformaciones de datum válidas entre dos referencias espaciales. | String |
explicit [explicit,...] | Si un campo tiene un valor predeterminado y el campo puede ser nulo, utilizar un valor de True invalidará explícitamente el valor predeterminado e insertará valores nulos en el registro. Si se utiliza un valor False, se insertará el valor predeterminado en lugar de nulo. Apply the explicit rule to all fields: La regla explícita también se puede aplicar a campos individuales mediante una lista de valores booleanos. La lista de valores debe tener la misma longitud que la lista de campos. Apply the explicit rule to only the first two fields specified: (El valor predeterminado es False) | Boolean |
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 |
insertRow (row) | Inserts a row into a table. |
Métodos
insertRow (row)
Parámetro | Explicación | Tipo de datos |
row [row,...] | A list or tuple of values. The order of values must be in the same order as specified when creating the cursor. 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 |
Tipo de datos | Explicación |
Integer | insertRow returns the objectid of the new row. |
Muestra de código
Use InsertCursor to insert new rows into a table.
import arcpy
import datetime
# Create an insert cursor for a table specifying the fields that will
# have values provided
fields = ['rowid', 'distance', 'CFCC', 'DateInsp']
with arcpy.da.InsertCursor('D:/data/base.gdb/roads_maint', fields) as cursor:
# Create 25 new rows. Set default values on distance and CFCC code
for x in range(0, 25):
cursor.insertRow((x, 100, 'A10', datetime.datetime.now()))
Use InsertCursor with the SHAPE@XY token to add point features to a point feature class.
import arcpy
# A list of values that will be used to construct new rows
row_values = [('Anderson', (1409934.4442000017, 1076766.8192000017)),
('Andrews', (752000.2489000037, 1128929.8114))]
# Open an InsertCursor using a context manager
with arcpy.da.InsertCursor('C:/data/texas.gdb/counties', ['NAME', 'SHAPE@XY']) as cursor:
# Insert new rows that include the county name and a x,y coordinate
# pair that represents the county center
for row in row_values:
cursor.insertRow(row)
Use InsertCursor with the SHAPE@ token to add a new feature using a geometry object.
import arcpy
# Create a polyline geometry
array = arcpy.Array([arcpy.Point(459111.6681, 5010433.1285),
arcpy.Point(472516.3818, 5001431.0808),
arcpy.Point(477710.8185, 4986587.1063)])
polyline = arcpy.Polyline(array)
# Open an InsertCursor using a context manager and insert the new geometry
with arcpy.da.InsertCursor('C:/data/texas.gdb/counties', ['SHAPE@']) as cursor:
cursor.insertRow([polyline])