-
用於處理輸入文件的 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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。