-
用于处理输入文件的 GDAL 驱动程序的名称。对于从文件创建的
GDALRaster
,会自动检测驱动程序类型。默认情况下,从头开始创建栅格是内存中的栅格 ('MEM'
),但可以根据需要进行更改。例如,将GTiff
用于GeoTiff
文件。有关文件类型的列表,另请参阅GDAL Raster Formats 列表。通过以下示例创建内存中的栅格:
>>> GDALRaster({'width': 10, 'height': 10, 'srid': 4326}).driver.name 'MEM'
通过以下示例创建基于文件的GeoTiff 栅格:
>>> import tempfile >>> rstfile = tempfile.NamedTemporaryFile(suffix='.tif') >>> rst = GDALRaster({'driver': 'GTiff', 'name': rstfile.name, 'srid': 4326, ... 'width': 255, 'height': 255, 'nr_of_bands': 1}) >>> rst.name '/tmp/tmp7x9H4J.tif' # The exact filename will be different on your computer >>> rst.driver.name 'GTiff'
本文介绍 django.contrib.gis.gdal.GDALRaster.driver
的用法。
声明
driver
相关用法
- Python Django GDALRaster.skew用法及代码示例
- Python Django GDALRaster.transform用法及代码示例
- Python Django GDALRaster.srid用法及代码示例
- Python Django GDALRaster.bands用法及代码示例
- Python Django GDALRaster.scale用法及代码示例
- Python Django GDALRaster.extent用法及代码示例
- Python Django GDALRaster.warp用法及代码示例
- Python Django GDALRaster.origin用法及代码示例
- Python Django GDALRaster.metadata用法及代码示例
- Python Django GDALRaster.srs用法及代码示例
- Python Django GDALRaster.width用法及代码示例
- Python Django GDALRaster.name用法及代码示例
- Python Django GDALRaster.geotransform用法及代码示例
- Python Django GDALRaster.height用法及代码示例
- Python Django GDALRaster用法及代码示例
- Python Django GDALBand.data用法及代码示例
- Python Django GeometryCollection用法及代码示例
- Python Django GEOSGeometry.srid用法及代码示例
- Python Django GEOSGeometry.normalize用法及代码示例
- Python Django GenericRelation用法及代码示例
- Python Django Greatest用法及代码示例
- Python Django GEOSGeometry.geom_type用法及代码示例
- Python PIL GaussianBlur()用法及代码示例
- Python Django Group.permissions用法及代码示例
- Python Tableau GroupItem用法及代码示例
注:本文由纯净天空筛选整理自djangoproject.com大神的英文原创作品 django.contrib.gis.gdal.GDALRaster.driver。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。