SearchCursor

Resumen

Establishes read-only access to the records of a feature class or table.

It returns an iterator of tuples. The order of values in the tuple matches the order of fields specified by the field_names argument.

Learn more about data access using cursors

Debate

Geometry object properties can be accessed by specifying the token SHAPE@ in the list of fields.

Search cursors can be iterated using a for loop. Search 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.

The records returned by SearchCursor can be constrained to match attribute criteria or spatial criteria.

Accessing full geometry with SHAPE@ is an expensive operation. If only simple geometry information is required, such as the x,y coordinates of a point, use tokens such as SHAPE@XY, SHAPE@Z, and SHAPE@M for faster, more efficient access.

Sintaxis

SearchCursor (in_table, field_names, {where_clause}, {spatial_reference}, {explode_to_points}, {sql_clause}, {datum_transformation}, {spatial_filter}, {spatial_relationship}, {search_order})
ParámetroExplicaciónTipo 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.

Es posible acceder a información adicional con tokens (como OID@) en lugar de nombres de campo:

  • SHAPE@XYUna tupla de las coordenadas x,y del centroide de la entidad.
  • SHAPE@XYZUna tupla de las coordenadas x, y, z del centroide de la entidad.
  • SHAPE@TRUECENTROIDUna tupla de las coordenadas x,y del centroide de la entidad. Devuelve el mismo valor que SHAPE@XY.
  • SHAPE@XUn doble de la coordenada x de la entidad.
  • SHAPE@YUn doble de la coordenada y de la entidad.
  • SHAPE@ZUn doble de la coordenada z de la entidad.
  • SHAPE@MUn doble del valor m de la entidad.
  • SHAPE@JSONLa cadena de caracteres JSON de Esri que representa la geometría.
  • SHAPE@WKBRepresentación binaria conocida (WKB) para geometría OGC. Ofrece una representación portátil de un valor de geometría como una transmisión contigua de bytes.Los valores se devuelven como un objeto bytearray.
  • SHAPE@WKTRepresentación en texto conocida (WKT) para geometría OGC. Ofrece una representación portátil de un valor de geometría como cadena de caracteres.
  • SHAPE@Objeto de geometría para la entidad.
  • SHAPE@AREAUn doble del área de la entidad.
  • SHAPE@LENGTHUn doble de la longitud de la entidad.
  • CREATED@Un objeto datetime de cuándo se creó la entidad. Este campo es de solo lectura.
  • CREATOR@Una cadena del nombre de usuario que creó la entidad. Este campo es de solo lectura.
  • EDITED@Un objeto datetime de cuándo se editó la entidad por última vez. Este campo es de solo lectura.
  • EDITOR@Una cadena del nombre de usuario que editó la entidad por última vez. Este campo es de solo lectura.
  • GLOBALID@Una cadena de caracteres del identificador único universal de la entidad. Este campo es de solo lectura.
  • OID@El valor del campo Id. de objeto.
  • SUBTYPE@Un entero del código de subtipo.
String
where_clause

Una expresión opcional que limita los registros que se devuelven. Para obtener más información sobre cláusulas WHERE y sentencias SQL, consulte Referencia de SQL para las expresiones de consulta utilizadas en ArcGIS.

(El valor predeterminado es None)

String
spatial_reference

La referencia espacial de la clase de entidad. Cuando se especifica este argumento, la entidad se proyectará (o transformará) a partir de la referencia espacial de la entrada. Si no se especifica, se utilizará la referencia espacial de las clases de entidad de entrada. Los valores válidos para este argumento son un objeto de SpatialReference o un equivalente de cadena.

If a spatial reference is specified, but the input feature class has an unknown spatial reference, neither a projection nor transformation can be completed. The geometry returned by the cursor will have coordinates matching the input, with a spatial reference updated to the one specified.

(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 de cláusulas prefix y postfix de SQL organizadas en una lista o tupla.

Una cláusula prefix de SQL admite None, DISTINCT y TOP. Una cláusula postfix de SQL admite None, ORDER BY y GROUP BY.

Use DISTINCT in a prefix clause.


with arcpy.da.SearchCursor(
        in_features, 
        ["OID@", "STREET_NAME"], 
        sql_clause=("DISTINCT STREET_NAME", None)
) as cur:

Use TOP in a prefix clause, and ORDER BY in a postfix clause.


with arcpy.da.SearchCursor(
        in_features, 
        ['OID@', "ELEVATION"], 
        sql_clause=("TOP 5", "ORDER BY ELEVATION DESC")
) as cur:

Use GROUP BY in a postfix clause.


with arcpy.da.SearchCursor(
        in_features, 
        ['STREET_NAME'], 
        sql_clause=(None, "GROUP BY STREET_NAME")
) as cur:

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.

Nota:

DISTINCT, ORDER BY y ALL solo se admiten al trabajar con bases de datos. Otras fuentes de datos no las admiten (como las tablas INFO o dBASE).

TOP solo es compatible con bases de datos SQL Server.

(El valor predeterminado es (None, None))

tuple
datum_transformation

Cuando el cursor proyecta las entidades de una referencia espacial a otra, si las referencias espaciales no comparten el mismo datum, se debería especificar una transformación de datum adecuada.

La función ListTransformations se puede utilizar para proporcionar una lista de transformaciones de datum válidas entre dos referencias espaciales.

Más información sobre las transformaciones de datum

(El valor predeterminado es None)

String
spatial_filter

Objeto de geometría utilizado para filtrar entidades espacialmente. Cuando se especifica este argumento, el cursor limita las entidades devueltas basándose en la geometría especificada y el valor de spatial_relationship.

(El valor predeterminado es None)

Geometry
spatial_relationship

Relación espacial entre la entrada y la geometría de consulta del argumento spatial_filter. Este argumento solo se aplica cuando se especifica el argumento spatial_filter.

  • INTERSECTS Rows are only returned when the spatial_filter geometry intersects the input row's geometry.
  • ENVELOPE_INTERSECTS Rows are only returned when the spatial_filter geometry's envelope intersects the input row's geometry.
  • INDEX_INTERSECTS Rows are only returned when the spatial_filter geometry's envelope intersects the index entry for the input row's geometry. Because it uses the underlying index grid, rather than the envelope of the feature, it is faster and is commonly used for return features for display purposes.
  • TOUCHES Rows are only returned when the spatial_filter geometry touches the input row's geometry.
  • OVERLAPS Rows are only returned when the spatial_filter geometry overlaps the input row's geometry.
  • CROSSES Rows are only returned when the spatial_filter geometry crosses the input row's geometry.
  • WITHIN Rows are only returned when the spatial_filter geometry is within the input row's geometry.
  • CONTAINS Rows are only returned when the spatial_filter geometry contains the input row's geometry.

(El valor predeterminado es INTERSECTS)

String
search_order

Orden en que el RDBMS aplica las búsquedas espaciales. Esta propiedad solo afecta a los datos de las geodatabases corporativas y se aplica cuando se especifica el argumento spatial_filter exclusivamente.

  • ATTRIBUTEFIRSTThe attribute query will be applied first.
  • SPATIALFIRST The spatial query will be applied first.

(El valor predeterminado es ATTRIBUTEFIRST)

String

Propiedades

PropiedadExplicaciónTipo 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étodoExplicación
reset ()

Resets the cursor back to the first row.

Métodos

reset ()

Muestra de código

SearchCursor example 1

Use SearchCursor to step through a feature class and print specific field values and the x,y coordinates of the point.

import arcpy

fc = 'c:/data/base.gdb/well'
fields = ['WELL_ID', 'WELL_TYPE', 'SHAPE@XY']

# For each row, print the WELL_ID and WELL_TYPE fields, and
# the feature's x,y coordinates
with arcpy.da.SearchCursor(fc, fields) as cursor:
    for row in cursor:
        print(f'{row[0]}, {row[1]}, {row[2]}')
SearchCursor example 2

Use SearchCursor to return a set of unique field values.

import arcpy

fc = 'c:/data/base.gdb/well'
field = 'Diameter'

# Use SearchCursor with list comprehension to return a
# unique set of values in the specified field
values = [row[0] for row in arcpy.da.SearchCursor(fc, field)]
unique_values = set(values)

print(unique_values)
SearchCursor example 3

Use SearchCursor to return attributes using tokens.

import arcpy

fc = 'c:/data/base.gdb/well'

# For each row, print the Object ID field, and use the SHAPE@AREA
#  token to access geometry properties
with arcpy.da.SearchCursor(fc, ['OID@', 'SHAPE@AREA']) as cursor:
    for row in cursor:
        print(f'Feature {row[0]} has an area of {row[1]}')
SearchCursor example 4

Use SearchCursor with a where clause to identify features that meet specific criteria.

import arcpy

fc = 'c:/base/data.gdb/roads'
class_field = 'Road Class'
name_field = 'Name'

# Create an expression with proper delimiters
delimited_field = arcpy.AddFieldDelimiters(fc, name_field)
expression = f'{delimited_field} = 2'

# Create a search cursor using an SQL expression
with arcpy.da.SearchCursor(
    fc, [class_field, name_field], where_clause=expression
) as cursor:
    for row in cursor:
        # Print the name of the residential road
        print(row[1])
SearchCursor example 5

Use SearchCursor and the Python sorted method to sort rows.

For additional sorting options, see the Python Sorting Mini-HOW TO.

import arcpy

fc = 'c:/data/base.gdb/well'
fields = ['WELL_ID', 'WELL_TYPE']

# Use Python's sorted method to sort rows
for row in sorted(arcpy.da.SearchCursor(fc, fields)):
    print(f'{row[0]}, {row[1]}')
SearchCursor example 6

Alternatively, sort using sql_clause if the data supports the SQL ORDER BY clause.

Nota:

The ORDER BY clause is only supported when working with databases. It is not supported by other data sources (such as dBASE).

import arcpy

fc = 'c:/data/base.gdb/well'
fields = ['WELL_ID', 'WELL_TYPE']

# Use ORDER BY sql clause to sort field values
with arcpy.da.SearchCursor(fc, fields, sql_clause=(None, "ORDER BY WELL_ID, WELL_TYPE")) as cursor:
    for row in cursor:
        print(f'{row[0]}, {row[1]}')
SearchCursor example 7

Use the SQL TOP clause to limit the number of records to return.

Nota:

The TOP clause is only supported by SQL Server databases.

import arcpy

fc = 'c:/data/base.mdb/well'
fields = ['WELL_ID', 'WELL_TYPE']

# Use SQL TOP to sort field values
with arcpy.da.SearchCursor(fc, fields, sql_clause=('TOP 3', None)):
    for row in cursor:
        print(f'{row[0]}, {row[1]}')
SearchCursor example 8

Use SearchCursor using a spatial filter with a geometry object.

import arcpy

arr = arcpy.Array(
    [arcpy.Point(342917.4, 553980.8), arcpy.Point(366915.9, 594749.1)]
)
new_road = arcpy.Polyline(arr, spatial_reference=arcpy.SpatialReference(26971))

fc = r"C:\data\chicago.gdb\houses"
fields = ["ADDRESS", "OCCUPIED"]

with arcpy.da.SearchCursor(
    fc, fields, where_clause="OCCUPIED != 'Vacant'", spatial_filter=new_road
) as cursor:
    for row in cursor:
        print(f'{row[0]}: {row[1]}')
SearchCursor example 9

Use SearchCursor using a spatial filter with a geometry object from another feature class.

import arcpy

fc = r"c:\connections\sqlserver.sde\DBO.ShipPositions"
fields = ["OBJECTID", "SHIP_NAME"]
searchPoly = [row[0] for row in arcpy.da.SearchCursor("searchArea", ["SHAPE@"])][0]

with arcpy.da.SearchCursor(
    fc, fields, spatial_filter=searchPoly, search_order="SPATIALFIRST"
) as cursor:
    for row in cursor:
        print(f'{row[0]}: {row[1]}')

Temas relacionados