o
    [h                     @   sr   d dl mZ d dlmZ d dlmZ d dlmZm	Z	 d dl
mZ d dlmZ G dd de	eZG d	d
 d
eZdS )    )
prototypes)GEOSCoordSeq)GEOSException)GEOSGeometryLinearGeometryMixin)Point)numpyc                       s   e Zd ZejZdZdZ fddZdd Z	dd Z
d	d
 ZeZdd Zdd Zdd Zedd ZeZdd Zedd Zedd Zedd Zedd Z  ZS )
LineString   Tc                    s  t |dkr|d }n|}t|ttfs trt|tjs td|d}t |}|s8t j	| 
d|d dS || jk rItd| jj| j|f t|ttf }|rl|j}t |dkr`td	| |d  |d }n+d}|D ]&}	t|	tttfs~td
|du rt |	}| | qpt |	|krtdqptt||t|dkd}
|dkr|
jn|
j}t|D ]#}|r||ddf }nt|| tr|| j}n|| }||| qt j	| 
|
j|d dS )a  
        Initialize on the given sequence -- may take lists, tuples, NumPy arrays
        of X,Y pairs, or Point objects.  If Point objects are used, ownership is
        _not_ transferred to the LineString object.

        Examples:
         ls = LineString((1, 1), (2, 2))
         ls = LineString([(1, 1), (2, 2)])
         ls = LineString(array([(1, 1), (2, 2)]))
         ls = LineString(Point(1, 1), Point(2, 2))
           r   z-Invalid initialization input for LineStrings.sridN)r   z'%s requires at least %d points, got %s.r
   zToo many dimensions.z4Each coordinate should be a sequence (list or tuple)Dimension mismatch.   z)len
isinstancetuplelistr   Zndarray	TypeErrorgetsuper__init__
_init_func
_minlength
ValueError	__class____name__shape	_checkdimr   r   capi	create_csboolZ_set_point_3dZ_set_point_2drangeptr)selfargskwargscoordsr   ZncoordsZnumpy_coordsr   ndimZcoordcsZpoint_setteriZpoint_coordsr    /home/ubuntu/experiments/live_experiments/Pythonexperiments/Otree/venv/lib/python3.10/site-packages/django/contrib/gis/geos/linestring.pyr      sj   



	
zLineString.__init__c                 c   s"    t t| D ]}| | V  qdS )z%Allow iteration over this LineString.N)r#   r   )r%   r+   r-   r-   r.   __iter__c   s   zLineString.__iter__c                 C   s
   t | jS )z/Return the number of points in this LineString.)r   _csr%   r-   r-   r.   __len__h   s   
zLineString.__len__c                 C   s
   | j | S Nr0   )r%   indexr-   r-   r.   _get_single_externall   s   
zLineString._get_single_externalc           
      C   s   | j j}| j j}| j}tt|||d}t|D ]\}}|||< q| |j	}	|	r@t
| j	 |	| _	|d ur:|| _|   d S td)Nr   z3Geometry resulting from slice deletion was invalid.)r0   dimshaszr   r   r    r!   	enumerater   r$   Zdestroy_geomZ
_post_initr   )
r%   lengthitemsr)   r8   r   r*   r+   cr$   r-   r-   r.   	_set_listq   s   
zLineString._set_listc                 C   s   || j |< d S r3   r4   )r%   r5   valuer-   r-   r.   _set_single   s   zLineString._set_singlec                 C   s   |dvrt dd S )N)r
   r   r   )r   )r%   dimr-   r-   r.   r      s   zLineString._checkdimc                 C   s   | j jS )zDReturn a tuple version of the geometry from the coordinate sequence.)r0   r   r1   r-   r-   r.   r      s   zLineString.tuplec                    s,    fddt t| D }trt|S |S )z{
        Return a sequence (list) corresponding with the given function.
        Return a numpy array if possible.
        c                    s   g | ]} |qS r-   r-   ).0r+   funcr-   r.   
<listcomp>   s    z'LineString._listarr.<locals>.<listcomp>)r#   r   r   array)r%   rC   lstr-   rB   r.   _listarr   s   
zLineString._listarrc                 C      |  | jjS )z(Return a numpy array for the LineString.)rG   r0   __getitem__r1   r-   r-   r.   rE         zLineString.arrayc                 C   rH   )z/Return a list or numpy array of the X variable.)rG   r0   ZgetXr1   r-   r-   r.   x   rJ   zLineString.xc                 C   rH   )z/Return a list or numpy array of the Y variable.)rG   r0   ZgetYr1   r-   r-   r.   y   rJ   zLineString.yc                 C   s   | j sdS | | jjS )z/Return a list or numpy array of the Z variable.N)r8   rG   r0   ZgetZr1   r-   r-   r.   r      s   zLineString.z)r   
__module____qualname__r    Zcreate_linestringr   r   Zhas_csr   r/   r2   r6   Z_get_single_internalr=   r?   r   propertyr   r(   rG   rE   rK   rL   r   __classcell__r-   r-   r,   r.   r	   	   s0    U



r	   c                   @   s"   e Zd ZdZejZedd ZdS )
LinearRing   c                 C   s   | j rtd| jjS )Nz8Orientation of an empty LinearRing cannot be determined.)emptyr   r0   is_counterclockwiser1   r-   r-   r.   rT      s   zLinearRing.is_counterclockwiseN)	r   rM   rN   r   r    Zcreate_linearringr   rO   rT   r-   r-   r-   r.   rQ      s
    rQ   N)Zdjango.contrib.gis.geosr   r    Z django.contrib.gis.geos.coordseqr   Zdjango.contrib.gis.geos.errorr   Z django.contrib.gis.geos.geometryr   r   Zdjango.contrib.gis.geos.pointr   Zdjango.contrib.gis.shortcutsr   r	   rQ   r-   r-   r-   r.   <module>   s     1