Class Layer
A class that wraps an OGR Layer, needs to be instantiated from a DataSource object.
Declaration
source linkDocumentation
Methods
▷ def __getitem__(self, index) Get the Feature at the specified index.
▶ def __init__(self, layer_ptr, ds) Initialize on an OGR C pointer to the Layer and the `DataSource` object
that owns this layer. The `DataSource` object is required so that a
reference to it is kept with this Layer. This prevents garbage
collection of the `DataSource` while this Layer is still active.
▷ def __iter__(self) Iterate over each Feature in the Layer.
▷ def __len__(self) The length is the number of features.
▷ def __str__(self) The string name of the layer.
▷ def extent(self) @property Return the extent (an Envelope) of this layer.
@property
def extent(self)
▷ def field_precisions(self) @property Return the field precisions for the features.
@property
def field_precisions(self)
▷ def field_types(self) @property Return a list of the types of fields in this Layer. For example, return the list [OFTInteger, OFTReal, OFTString] for an OGR layer that has an integer, a floating-point, and string fields.
@property
def field_types(self)
▷ def field_widths(self) @property Return a list of the maximum field widths for the features.
@property
def field_widths(self)
▷ def fields(self) @property Return a list of string names corresponding to each of the Fields available in this Layer.
@property
def fields(self)
▷ def geom_type(self) @property Return the geometry type (OGRGeomType) of the Layer.
@property
def geom_type(self)
▷ def get_fields(self, field_name) Return a list containing the given field name for every Feature in the Layer.
▷ def get_geoms(self, geos=False) Return a list containing the OGRGeometry for every Feature in the Layer.
▷ def name(self) @property Return the name of this layer in the Data Source.
▷ def num_feat(self, force=1) @property Return the number of features in the Layer.
@property
def num_feat(
self,
force=1,
)
▷ def num_fields(self) @property Return the number of fields in the Layer.
@property
def num_fields(self)
▷ def srs(self) @property Return the Spatial Reference used in this Layer.
▶ def test_capability(self, capability) Return a bool indicating whether the this Layer supports the given
capability (a string). Valid capability strings include:
'RandomRead', 'SequentialWrite', 'RandomWrite', 'FastSpatialFilter',
'FastFeatureCount', 'FastGetExtent', 'CreateField', 'Transactions',
'DeleteFeature', and 'FastSetNextByIndex'.