EHdr——ESRI.hdr标记

司机简称

EHdr

Driver built-in by default

This driver is built-in by default

GDAL支持读取和写入ESRI.hdr标签格式,通常称为ESRI BIL格式。支持8位、16位和32位整数栅格数据类型以及32位浮点。支持坐标系(来自.prj文件)和地理参考。将忽略.hdr文件中无法识别的选项。要打开数据集,请选择带有图像文件(通常扩展名为.bil)的文件。如果存在.clr颜色表文件,则读取但不写入。如果存在,将读取image.rep文件以提取Spaticoarte Defense 1.0栅格产品的投影系统。

这个驱动程序并不总是很好地区分浮点和整数数据。要区分的.hdr格式的GDAL扩展是添加一个名为PIXELTYPE的字段,该字段的值为FLOAT、SIGNEDINT或UNSIGNEDINT。结合NBITS场,可以描述像素类型的所有变化。

如。

ncols 1375
nrows 649
cellsize 0.050401
xllcorner -130.128639
yllcorner 20.166799
nodata_value 9999.000000
nbits 32
pixeltype float
byteorder msbfirst

此驱动程序可能足以读取GTOPO30数据。

注:执行为 gdal/frmts/raw/ehdrdataset.cpp .

驱动程序功能

Supports CreateCopy()

This driver supports the GDALDriver::CreateCopy() operation

Supports Create()

This driver supports the GDALDriver::Create() operation

Supports Georeferencing

This driver supports georeferencing

Supports VirtualIO

This driver supports virtual I/O operations (/vsimem/, etc.)

也见