|
Server : Apache System : Linux cvar2.toservers.com 3.10.0-962.3.2.lve1.5.73.el7.x86_64 #1 SMP Wed Aug 24 21:31:23 UTC 2022 x86_64 User : njnconst ( 1116) PHP Version : 8.4.18 Disable Function : NONE Directory : /lib64/python2.7/site-packages/django/contrib/gis/gdal/ |
Upload File : |
� r�\c @ s� d Z d d l m Z m Z m Z m Z d d l m Z yl d d l m Z d d l m Z d d l m Z m Z m Z d d l m Z m Z d d l m Z e Z Wn e k r� e Z n Xy d d l m Z Wn e k r� n Xd S( s� This module houses ctypes interfaces for GDAL objects. The following GDAL objects are supported: CoordTransform: Used for coordinate transformations from one spatial reference system to another. Driver: Wraps an OGR data source driver. DataSource: Wrapper for the OGR data source object, supports OGR-supported data sources. Envelope: A ctypes structure for bounding boxes (GDAL library not required). OGRGeometry: Object for accessing OGR Geometry functionality. OGRGeomType: A class for representing the different OGR Geometry types (GDAL library not required). SpatialReference: Represents OSR Spatial Reference objects. The GDAL library will be imported from the system path using the default library name for the current OS. The default library path may be overridden by setting `GDAL_LIBRARY_PATH` in your settings with the path to the GDAL C library on your system. GDAL links to a large number of external libraries that consume RAM when loaded. Thus, it may desirable to disable GDAL on systems with limited RAM resources -- this may be accomplished by setting `GDAL_LIBRARY_PATH` to a non-existant file location (e.g., `GDAL_LIBRARY_PATH='/null/path'`; setting to None/False/'' will not work as a string must be given). i����( t check_errt OGRExceptiont OGRIndexErrort SRSException( t OGRGeomType( t Driver( t DataSource( t gdal_versiont gdal_full_versiont GDAL_VERSION( t SpatialReferencet CoordTransform( t OGRGeometry( t EnvelopeN( t __doc__t django.contrib.gis.gdal.errorR R R R t django.contrib.gis.gdal.geomtypeR t django.contrib.gis.gdal.driverR t"