+
    Tj#                     T    R t ^ RIHt ^ RIHtHtHtHtHtH	t	H
t
 RR ltR tRR ltR# )	z
This module is for inspecting OGR data sources and generating either
models for GeoDjango and/or mapping dictionaries for use with the
`LayerMapping` utility.
)
DataSource)OFTDateOFTDateTime
OFTIntegerOFTInteger64OFTReal	OFTStringOFTTimec                   \        V \        4      '       d   \        V 4      p M"\        V \        4      '       d   M\        R4      h/ pW,          P                   F*  pVP                  4       pVRR R8X  d
   VR,          pWTV&   K,  	  W,          P                  pV'       d   VP                  4        \        V4      P                  4       WA&   V# )a  
Given a DataSource, generate a dictionary that may be used
for invoking the LayerMapping utility.

Keyword Arguments:
 `geom_name` => The name of the geometry field to use for the model.

 `layer_key` => The key specifying which layer in the DataSource to use;
   defaults to 0 (the first layer). May be an integer index or a string
   identifier for the layer.

 `multi_geom` => Boolean (default: False) - specify as multigeometry.
>Data source parameter must be a string or a DataSource object.N_field)	
isinstancestrr   	TypeErrorfieldslower	geom_typeto_multiupper)data_source	geom_name	layer_key
multi_geom_mappingr   mfieldgtypes   &&&&    X/var/www/idalgo/venv/lib/python3.14/site-packages/django/contrib/gis/utils/ogrinspect.pymappingr      s     +s## -	K	,	,L
 	

 H '.."#;#gF 	 /
 ",,Ee***,HO    c                 6    RP                  \        V / VB 4      # )a	  
Given a data source (either a string or a DataSource object) and a string
model name this function will generate a GeoDjango model.

Usage:

>>> from django.contrib.gis.utils import ogrinspect
>>> ogrinspect('/path/to/shapefile.shp','NewModel')

...will print model definition to stout

or put this in a Python script and use to redirect the output to a new
model like:

$ python generate_model.py > myapp/models.py

# generate_model.py
from django.contrib.gis.utils import ogrinspect
shp_file = 'data/mapping_hacks/world_borders.shp'
model_name = 'WorldBorders'

print(ogrinspect(shp_file, model_name, multi_geom=True, srid=4326,
                 geom_name='shapes', blank=True))

Required Arguments
 `datasource` => string or DataSource object to file pointer

 `model name` => string of name of new model class to create

Optional Keyword Arguments
 `geom_name` => For specifying the model name for the Geometry Field.
   Otherwise will default to `geom`

 `layer_key` => The key specifying which layer in the DataSource to use;
   defaults to 0 (the first layer). May be an integer index or a string
   identifier for the layer.

 `srid` => The SRID to use for the Geometry Field. If it can be determined,
   the SRID of the datasource is used.

 `multi_geom` => Boolean (default: False) - specify as multigeometry.

 `name_field` => String - specifies a field name to return for the
   __str__() method (which will be generated if specified).

 `imports` => Boolean (default: True) - set to False to omit the
   `from django.contrib.gis.db import models` code from the
   autogenerated models thus avoiding duplicated imports when building
   more than one model by batching ogrinspect()

 `decimal` => Boolean or sequence (default: False). When set to True
   all generated model fields corresponding to the `OFTReal` type will
   be `DecimalField` instead of `FloatField`. A sequence of specific
   field names to generate as `DecimalField` may also be used.

 `blank` => Boolean or sequence (default: False). When set to True all
   generated model fields will have `blank=True`. If the user wants to
   give specific fields to have blank, then a list/tuple of OGR field
   names may be used.

 `null` => Boolean (default: False) - When set to True all generated
   model fields will have `null=True`. If the user wants to specify
   give specific fields to have null, then a list/tuple of OGR field
   names may be used.

Note: Call the _ogrinspect() helper to do the heavy lifting.

)join_ogrinspect)argskwargss   *,r   
ogrinspectr'   ;   s    H 99[$1&122r    Nc              #    aaa"   \        V \        4      '       d   \        V 4      p M"\        V \        4      '       d   M\        R4      hW,          pVP                  oV3R lpV! V
4      oV! V	4      oV! V4      pVV3R lpV'       d   Rx  Rx  Rx  Rx  RV,          x  \        SVP                  VP                  VP                  4       EFH  w  ppppVP                  4       pVRR R	8X  d
   VR
,          pV! V4      pV\        J d=   VP                  4       V9   d   RVVVV3,          x  Kd  RV: RVR,          : R2x  Kz  V\        J d   RV: RVR,          : R2x  K  V\        J d   RV: RVR,          : R2x  K  V\        J d   RV: RV: V: R2x  K  V\        J d   RV: RVR,          : R2x  K  V\        J d   RV: RVR,          : R2x  EK  V\         J d   RV: RVR,          : R2x  EK8  \        RV: RV: 24      h	  VP"                  pV'       d   VP%                  4        VP&                  pVfC   VP(                  f   RpM:VP(                  P*                  pVf   RpMVR8X  d   RpMRV,          pM	RV,          pRV: RV: RV: R2x  V'       d   Rx  RV,          x  R# R# 5i)z
Helper routine for `ogrinspect` that generates GeoDjango models
corresponding to the given data source. See the `ogrinspect` docstring for
more details.
r   c                    < \        V \        \        34      '       d    V  Uu. uF  qP                  4       NK  	  up# V '       d    S Uu. uF  qP                  4       NK  	  up# . # u upi u upi )N)r   listtupler   )kwargs
ogr_fieldss   & r   process_kwarg"_ogrinspect.<locals>.process_kwarg   sV    edE]++',-u!GGIu--'12z!GGIz22I	 .2s   A&	A+c                    < . pV P                  4       S9   d   VP                  R 4       V P                  4       S9   d   VP                  R4       V'       d   RRP                  V4      ,           # R# )z	null=Truez
blank=Truez,  )r   appendr#   )
field_namekwlistblank_fieldsnull_fieldss   & r   get_kwargs_str#_ogrinspect.<locals>.get_kwargs_str   s\    ,MM+&-MM,'$))F+++r    zF# This is an auto-generated Django model module created by ogrinspect.z(from django.contrib.gis.db import modelsr2   zclass %s(models.Model):Nr   r   z@    %s = models.DecimalField(max_digits=%d, decimal_places=%d%s)z    z = models.FloatField(:   NN)z = models.IntegerField(z = models.BigIntegerField(z = models.CharField(max_length=z = models.DateField(z = models.DateTimeField(z = models.TimeField(zUnknown field type z in zsrid=-1i  zsrid=%sz
 = models.(z%    def __str__(self): return self.%sr   )r   r   r   r   r   zipfield_widthsfield_precisionsfield_typesr   r   r   r   r   r   r   r	   r   r   djangosrssrid)r   
model_namer   r   rC   r   
name_fieldimportsdecimalblanknulllayerr/   decimal_fieldsr8   r4   width	precision
field_typer   
kwargs_strr   
geom_fieldsrid_strr6   r7   r.   s   &&&&&&&&&&&             @@@r   r$   r$      s    & +s## -	K	,	,L
 	
 "EJ  %K 'L"7+N	 VV88
#j
0047E&&(>(>@Q@Q50
E9j !!#"#;#gF $J/
  !^3V	  4 ;A*R..QQ:%8>
2OO<';A:b>>RR9$ 
 7"5;Z^^LL;&9?BPP7"5;Z^^LLZPQQW5\ OOEJ |99 H99>>D|$$t+t#&/X
FF5
BB s   H-K
3BK
7K
)geom    F)	rR   rS   NFNTFFF)__doc__django.contrib.gis.gdalr   django.contrib.gis.gdal.fieldr   r   r   r   r   r   r	   r   r'   r$    r    r   <module>rX      s2    /  %PD3NKCr    