o
    [hy"                     @   s   d dl mZmZ d dlmZ d dlmZmZ d dlm	Z	m
Z
 d dlmZ d dlmZ d dlmZ d dlmZ d d	lmZ d d
lmZ d dlmZ d dlmZ d dlmZmZ G dd deZdS )    )byrefc_double)GDALBase)EnvelopeOGREnvelope)GDALExceptionSRSException)Feature)OGRFieldTypes)OGRGeometry)OGRGeomType)dsgeom)srs)SpatialReference)force_bytes	force_strc                   @   s   e Zd ZdZdd Zdd Zdd Zdd	 Zd
d Zdd Z	e
dd Ze
dd Ze
d/ddZe
dd Ze
dd Ze
dd Ze
dd Ze
dd Ze
dd  Ze
d!d" Zd#d$ Zd%d& Ze
eeZd'd( Zd0d*d+Zd,d- Zd.S )1Layerza
    A class that wraps an OGR Layer, needs to be instantiated from a DataSource
    object.
    c                 C   s6   |st d|| _|| _t| j| _| d| _dS )a7  
        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.
        z*Cannot create Layer, invalid pointer givens
   RandomReadN)	r   ptr_dscapiZget_layer_defn_ptr_ldefntest_capability_random_read)selfZ	layer_ptrr    r   /home/ubuntu/experiments/live_experiments/Pythonexperiments/Otree/venv/lib/python3.10/site-packages/django/contrib/gis/gdal/layer.py__init__   s   zLayer.__init__c                    sb   t |tr|dk rtd |S t |tr-| j\}}} fddt|||D S td)z'Get the Feature at the specified index.r   z/Negative indices are not allowed on OGR Layers.c                    s   g | ]}  |qS r   )_make_feature).0fidr   r   r   
<listcomp>6       z%Layer.__getitem__.<locals>.<listcomp>z>Integers and slices may only be used when indexing OGR Layers.)	
isinstanceint
IndexErrorr    sliceindicesnum_featrange	TypeError)r   indexstartstopZstrider   r#   r   __getitem__*   s   


zLayer.__getitem__c                 c   s6    t | j t| jD ]}tt | j| V  qdS )z'Iterate over each Feature in the Layer.N)r   Zreset_readingr   r,   r+   r	   Zget_next_feature)r   ir   r   r   __iter__<   s
   zLayer.__iter__c                 C      | j S )z%The length is the number of features.)r+   r#   r   r   r   __len__C      zLayer.__len__c                 C   r4   )zThe string name of the layer.)namer#   r   r   r   __str__G   r6   zLayer.__str__c                 C   sX   | j rztt| j|| W S  ty   Y nw | D ]}|j|kr%|  S qtd| )a.  
        Helper routine for __getitem__ that constructs a Feature from the given
        Feature ID.  If the OGR Layer does not support random-access reading,
        then each feature of the layer will be incremented through until the
        a Feature is found matching the given feature ID.
        zInvalid feature id: %s.)r   r	   r   Zget_featurer   r   r"   r(   )r   Zfeat_idfeatr   r   r   r    K   s   
zLayer._make_featurec                 C   s"   t  }t| jt|d t|S )z.Return the extent (an Envelope) of this layer.   )r   r   Z
get_extentr   r   r   )r   envr   r   r   extentb   s   zLayer.extentc                 C   s   t | j}t|| jjddS )z1Return the name of this layer in the Data Source.TZstrings_only)r   Zget_fd_namer   r   r   encoding)r   r7   r   r   r   r7   i   s   z
Layer.namer:   c                 C   s   t | j|S )z+Return the number of features in the Layer.)r   Zget_feature_countr   )r   forcer   r   r   r+   o   s   zLayer.num_featc                 C   s   t | jS )z)Return the number of fields in the Layer.)r   Zget_field_countr   r#   r   r   r   
num_fieldst   s   zLayer.num_fieldsc                 C   s   t t| jS )z4Return the geometry type (OGRGeomType) of the Layer.)r   r   Zget_fd_geom_typer   r#   r   r   r   	geom_typey   s   zLayer.geom_typec                 C   s2   zt | j}tt|W S  ty   Y dS w )z0Return the Spatial Reference used in this Layer.N)r   Zget_layer_srsr   r   srs_apiZ	clone_srsr   )r   r   r   r   r   r   ~   s   z	Layer.srsc                        fddt  jD S )zt
        Return a list of string names corresponding to each of the Fields
        available in this Layer.
        c              	      s.   g | ]}t tt j| jjd dqS )Tr=   )r   r   Zget_field_nameget_field_defnr   r   r>   r!   r2   r#   r   r   r$      s    z Layer.fields.<locals>.<listcomp>r,   r@   r#   r   r#   r   fields   s   
zLayer.fieldsc                    rC   )z
        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.
        c              	      s$   g | ]}t tt j| qS r   )r
   r   Zget_field_typerD   r   rE   r#   r   r   r$      s    z%Layer.field_types.<locals>.<listcomp>rF   r#   r   r#   r   field_types   s   
zLayer.field_typesc                    rC   )z;Return a list of the maximum field widths for the features.c                        g | ]}t t  j|qS r   )r   Zget_field_widthrD   r   rE   r#   r   r   r$          z&Layer.field_widths.<locals>.<listcomp>rF   r#   r   r#   r   field_widths      
zLayer.field_widthsc                    rC   )z-Return the field precisions for the features.c                    rI   r   )r   Zget_field_precisionrD   r   rE   r#   r   r   r$      rJ   z*Layer.field_precisions.<locals>.<listcomp>rF   r#   r   r#   r   field_precisions   rL   zLayer.field_precisionsc                 C   s.   zt tt| jW S  ty   Y d S w )N)r   geom_apiZ
clone_geomr   Zget_spatial_filterr   r   r#   r   r   r   _get_spatial_filter   s
   zLayer._get_spatial_filterc                 C   s   t |trt| j|j d S t |ttfr5t|dks tdt	t
|\}}}}t| j|||| d S |d u rBt| jd  d S td)N   z/Spatial filter list/tuple must have 4 elements.zJSpatial filter must be either an OGRGeometry instance, a 4-tuple, or None.)r&   r   r   Zset_spatial_filterr   tuplelistlen
ValueErrormapr   Zset_spatial_filter_rectr-   )r   filterZxminZyminZxmaxZymaxr   r   r   _set_spatial_filter   s   
zLayer._set_spatial_filterc                    s(    | j vrtd   fdd| D S )zg
        Return a list containing the given field name for every Feature
        in the Layer.
        zinvalid field name: %sc                    s   g | ]}|  qS r   )getr!   r9   
field_namer   r   r$      r%   z$Layer.get_fields.<locals>.<listcomp>)rG   r   )r   r[   r   rZ   r   
get_fields   s   
zLayer.get_fieldsFc                    s0   |rddl m   fdd| D S dd | D S )zb
        Return a list containing the OGRGeometry for every Feature in
        the Layer.
        r   GEOSGeometryc                    s   g | ]} |j jqS r   )r   ZwkbrY   r]   r   r   r$      s    z#Layer.get_geoms.<locals>.<listcomp>c                 S   s   g | ]}|j qS r   r   rY   r   r   r   r$      s    )Zdjango.contrib.gis.geosr^   )r   Zgeosr   r]   r   	get_geoms   s   zLayer.get_geomsc                 C   s   t t| jt|S )ah  
        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'.
        )boolr   r   r   r   )r   Z
capabilityr   r   r   r      s   zLayer.test_capabilityN)r:   )F)__name__
__module____qualname____doc__r   r1   r3   r5   r8   r    propertyr<   r7   r+   r@   rA   r   rG   rH   rK   rM   rO   rW   Zspatial_filterr\   r_   r   r   r   r   r   r      sD    










	r   N) ctypesr   r   Zdjango.contrib.gis.gdal.baser   Z django.contrib.gis.gdal.enveloper   r   Zdjango.contrib.gis.gdal.errorr   r   Zdjango.contrib.gis.gdal.featurer	   Zdjango.contrib.gis.gdal.fieldr
   Z"django.contrib.gis.gdal.geometriesr   Z django.contrib.gis.gdal.geomtyper   Z"django.contrib.gis.gdal.prototypesr   r   r   rN   r   rB   Zdjango.contrib.gis.gdal.srsr   Zdjango.utils.encodingr   r   r   r   r   r   r   <module>   s    