GeoTIFF - A standard image file format for GIS applications

合集下载

geotiff 高程

geotiff 高程

geotiff 高程
GeoTIFF(Geospatial Tagged Image File Format)是一种扩展的TIFF格式,专为地理空间数据设计。

它不仅支持常规的图像数据,还包含有关地理坐标和投影信息等的元数据。

这使得GeoTIFF成为一种非常有用的格式,特别是在处理如高程模型(Digital Elevation Models,DEM)这样的地理空间数据时。

高程模型(DEM)是一种数字表示的地形表面模型,它通常以三维坐标的形式表示地形表面上的点。

这些数据可以通过各种方式获取,如激光雷达(LiDAR)或数字摄影测量。

高程数据在多个领域都有广泛的应用,包括地形分析、洪水模拟、气候研究以及导航和路线规划等。

GeoTIFF格式在存储和处理高程数据方面非常有效。

首先,它可以存储每个像素的高程值,这样你就可以在图像上直观地看到地形的起伏。

其次,GeoTIFF的元数据特性使得它可以轻松地与地理信息系统(GIS)软件集成,这些软件通常能够读取并处理GeoTIFF文件,从而进行空间分析、地图制作和数据可视化等操作。

在处理GeoTIFF高程数据时,你可能需要使用一些特定的GIS软件或库,如GDAL (Geospatial Data Abstraction Library)或Rasterio等。

这些工具提供了读取、写入和处理GeoTIFF文件的功能,以及进行各种空间分析的能力。

总的来说,GeoTIFF是一种强大且灵活的格式,特别适合于存储和处理高程数据。

通过结合GIS软件和工具,你可以充分利用这些数据进行各种地理空间分析,从而更好地理解和利用地形数据。

tiff和geotiff格式分析

tiff和geotiff格式分析

tiff和geotiff格式分析1、 tiff ⽂件的基本格式TIFF(Tag Image File Format) 图像⽂件说明:TIFF ⽂件是由许多的标签 (tag) 组成 , 在 Adobe 的有关 tiff6.0 的说明中,将 (tag) 的解释称各种标签所对应的数值,⽽在⽂件中各个标签的实际⼊⼝称为 (field) ,暂且称为域。

tiff ⽀持⿊⽩、灰度、彩⾊的图像格式,同时还可以接受 RGB CMYK 等⾊彩系统,同时⽀持图像数据的 LZW, 哈夫曼等压缩或者不压缩。

TIFF ⽂件分为⽂件头和 IFD 两部分,⼀个 IFD 中存储了⼀幅图像的信息, IFD 可以由许多标签组成。

在 TIFF6.0 ⽂件中,规定所有的标签必须以升序排列,通过这些标签信息,来处理⽂件中的图像数据。

TIFF ⽂件头说明:TIFF 的⽂件头有 8 字节0-1 规定为 "II" 或者 "MM" Intel /Mortorola 类型的字节顺序2-3 TIFF ⽂件的版本,为与以前的兼容,为 424-7 TIFF ⽂件的第⼀个 IFD 在⽂件中的偏移量,肯定⼤于 8IFD 说明: IFD 是由连续的标签组成OFFSET:0-1 IFD 中的标签数⽬OFFSET:2-13 IFD 中的第⼀个标签OFFSET:14-25 IFD 中的第⼆个标签.....OFFSET:2+12* 标签数下⼀个 IFD 的 ( 相对于⽂将 ) 偏移量,在⼀个 TIFF ⽂件中可以由多个 IFD ⽤于存放多个图像,如果如果该数字为 0,表⽰已经处理完所有的 IFD 。

标签说明:⼀个标签由连续的 12 字节组成OFFSET:0-1 TAG ID 标签所对应的数字编号 (tag) ,⽤于定义该标签所存放的 " 信息 "OFFSET:2-3 TAG INFO DATA TYPE 标签中数据的数据类型OFFSET:4-7 VALUE COUNT 2-3 中说明的数据类型的数⽬OFFSET:8-11 VALUE OFFSET 相对于⽂件的该标签值的偏移量 , 必须开始于 " 字 " 边界 , 为了节省空间,如果该标签的数据的长度⼩于等于四个字节,在 VALUE OFFSET 中直接存储 ( ⼩于四字节数据左对齐 ) 该标签的值⽽不是在⽂件中的偏移量。

gee中的format参数

gee中的format参数

gee中的format参数在Google Earth Engine (GEE) 中,format 参数通常用于指定导出数据的格式。

当你想从GEE 导出数据时,比如将图像导出为GeoTIFF 文件或将表格数据导出为CSV 文件,你需要指定一个 format 参数来告诉GEE 你希望以哪种格式导出数据。

以下是一些常见的 format 参数值:1.'GTiff' 或 'GeoTIFF': 用于导出地理参照的图像数据。

GeoTIFF 是一个广泛使用的格式,被大多数GIS 软件所支持。

2.'CSV': 用于导出表格数据。

CSV (逗号分隔值) 格式是一个简单的文本格式,可以被电子表格软件(如Microsoft Excel 或Google Sheets)读取。

3.'KML': 用于导出矢量数据,如点、线和多边形。

KML (Keyhole Markup Language) 是Google Earth 的原生格式,但也可以被许多其他软件读取。

4.'TFRecord': 这是一个专为TensorFlow 设计的格式,用于导出图像数据和相关的标签或属性。

5.'JSON': 用于导出某些特定类型的数据,如地理JSON 或GeoJSON。

当你使用GEE 的 Export 功能时,通常需要提供一个描述导出参数的对象,其中 format 是其中的一个属性。

例如:javascript复制代码:var exportParams = {image: imageToExport,description: 'my_exported_image',scale: 30,region: geometry,formatOptions: {cloudOptimized: true},format: 'GTiff'};Export.image.toDrive(exportParams);在上面的例子中,我们定义了一个名为 exportParams 的对象,该对象描述了要导出的图像、导出的描述、比例、区域以及其他格式选项。

geotiff_standard_1.1标准_概述说明以及解释

geotiff_standard_1.1标准_概述说明以及解释

geotiff standard 1.1标准概述说明以及解释1. 引言1.1 概述本篇文章旨在介绍和解释Geotiff Standard 1.1标准。

Geotiff是一种用于存储地理空间信息的文件格式,它结合了栅格图像数据和地理空间参考信息,为GIS (地理信息系统)应用提供了重要的支持。

1.2 文章结构文章分为以下几个部分:引言、正文、Geotiff Standard 1.1标准概述说明和解释以及结论。

其中,在引言部分我们将对本文的整体内容进行概述;在正文部分将展开介绍Geotiff Standard 1.1标准的细节内容;在Geotiff Standard 1.1标准概述说明部分,我们将简要描述该标准的重要概念和构成元素;在Geotiff Standard 1.1标准解释部分,我们将详细解释该标准中的各种标记、数据类型和结构规则;最后,在结论部分,我们将总结并讨论Geotiff在地理信息领域中的重要性,并展望其未来发展。

1.3 目的本文主要目的是帮助读者了解并掌握Geotiff Standard 1.1标准。

通过阐述该标准的概述说明及解释,读者可以深入了解Geotiff文件格式的特点、结构以及如何使用和解析该格式的数据。

同时,本文还将探讨Geotiff在地理信息领域中的重要性,为读者提供一个对该标准未来发展的展望。

通过阅读本文,读者将能够更好地应用Geotiff标准进行地理信息数据存储、传输和分析,并为相关研究和实践工作提供参考依据。

以上为“1. 引言”部分的内容。

2. 正文正文部分将对Geotiff Standard 1.1标准进行详细的介绍和解释。

首先,我们将简要概述Geotiff标准的背景和发展历程,然后详细说明Geotiff标准的结构和组成元素。

Geotiff是一种基于TIFF(Tagged Image File Format)格式扩展开发而来的地理信息数据存储规范。

它允许在图像文件中嵌入地理空间信息,包括地理位置、投影坐标系统、地物分类等。

tiff金字塔文件格式

tiff金字塔文件格式

tiff金字塔文件格式
TIFF金字塔文件格式是一种图像文件格式,用于存储由多个分辨率级别组成的图像。

它是基于Tagged Image File Format(已标记图像文件格式)的扩展版本,并支持数据的高效压缩和随机访问。

该文件格式通过将原始图像分割为多个较小的图像块来创建金字塔结构。

每个图像块包含原始图像的某个分辨率级别,从高分辨率到低分辨率。

这个金字塔结构的目的是在不同的缩放级别和分辨率之间提供更高效的图像显示和处理。

TIFF金字塔文件格式的主要优势在于它可以快速获取和显示图像的不同部分,而不需要加载整个图像。

这种随机访问的能力使得它非常适用于需要快速浏览大型图像数据集的应用程序,例如遥感图像处理和医学图像分析。

此外,TIFF金字塔文件格式还支持多种数据压缩算法,例如LZW (Lempel-Ziv-Welch)和JPEG(联合摄影专家组)。

这些压缩算法可以显著减小文件大小,从而节省存储空间。

总而言之,TIFF金字塔文件格式是一种用于存储多分辨率级别图像的扩展文件格式。

它提供了高效的数据压缩和随机访问的功能,适用于需要处理大型图像数据集的应用程序。

GeoTIFF图像文件的数据存储格式及读写

GeoTIFF图像文件的数据存储格式及读写

由于它对图像信息的存放灵活多变,可以支持很多 进行详细的阐述。
色彩系统,而且独立于操作系统,因此得到了广泛 2 T IF F图 像 文 件的结构
应用。在各种地理信息系统、摄影测量与遥感等应
TIF F图 像 文件的结构包括文件头 (ImageF ile
用中,要求图像具有地理编码信息,例如图像所在 Header,I M)、图像文件目录 (ImageF ileD irectory,
四川测绘第 27卷第 3期 2004年 9月
最后4个字节是指向下一个图像文件目录 (1FD)的 偏移量,或 0值 (后面不再有 IFD)。每一个 目录项 包含标签 (Tag)的名称 (2字节),一般用对应的 整数来表示;该目录项存放数据的类型 (2字节),
取值为 1一12(其中各个值的含义见表 1);存放数 据的数量 (4字节);以及存放数据的值,或当该值 大于4个字节时存放数据的偏移地址 (4字节)。所
的坐标系、比例尺、图像上点的坐标、经纬度、长 IFD)和图像数据区。每一个文件只能有一个文件
度单位及角度单位等等。对于存储和读取这些信 头,但允许有多个文件目录和多个图像数据区;每
息,纯TIFF格式的图像文件是很难做到的,而 Geo- 一个 『D和一个图像数据区对应一幅图像,IFD包
TIFF作为 TIFF的一种扩展,在 TIFF的基础上定义 含每一幅图像的一些基本信息以及各种数据在文件
版本为 1.8.2,它继承了TIFF6.0规范中的文件结 行设 计的,并且按照TIFF的结构和布局规范,随着
构,将 Geo= 信息编码在一些未使用的TIFF保留 参数 的不断增加,还可以在现在的框架内定义新的
标签中。对于标准的,TIFF读取软件来说,没有任何 关键 字。

geotiff格式

geotiff格式

GeoTiff是包含地理信息的一种Tiff格式的文件。

记得数月前在CSDN论坛上提问过关于GeoTiff文件读写的问题,回答者了了,偶有回答都限于“只是Tiff文件加几个标签而已……”云云,而当我对此做了一番深入研究之后,发现尽管GeoTiff确实只是Tiff的一种特例,但要遵循规范来用好它却绝不是那么简单,在此我准备将自己的学习做一个小结,以期深入交流。

1.GeoTiff利用Tiff表达Geo(地理)信息的思想Tiff对GeoTiff的支持已写进Tiff6.0,也就是说,GeoTiff是一种Tiff6.0文件,它继承了在Tiff6.0规范中的相应部分,所有的GeoTiff特有的信息都编码在Tiff的一些预留Tag(标签)中,它没有自己的IFD (图像文件目录)、二进制结构以及其它一些对Tiff来说不可见的信息。

用来描述GeoTiff流行的众多影射参数及类型信息,如果每一个信息都采用一个标签那将至少需要几十甚至几百个标签,这会耗尽Tiff定义的有限的标签资源,另一方面,虽然私有的IFD提供了数千个自由的标签,但也是有限的,因为标签值对不理解的读者来说是不可见的(因为他们不知道IFD_OFFSET标签值指向一个私有的IFD)。

为了避免这些问题,GeoTiff采用一系列的Keys(键)来存取这些信息,这些键在功能上相当于标签,但它处在TIFF上抽象更上一层。

准确的说它是一种媒介标签(Meta-Tag)。

键与格式化的标签值一起共存,TIFF文件处理其它图像数据。

和标签一样,键也有的ID号,范围从0到65535,但不像标签那样,所有键的ID号都可以用于GeoTiff的参数定义上。

2.结构与定义这些键也称为GeoKeys,所有键都由GeoKeyDirectoryTag标签来索引,该标签就相当于表示Geo 信息的键的一个目录。

它的结构如下:GeoKeyDirectoryTag:Tag = 34735 (87AF.H)Type = SHORT (2-byte unsigned short)N = variable, >= 4Alias: ProjectionInfoTag, CoordSystemInfoTagOwner: SPOT Image, Inc.它由头和键实体构成,如下:Header={KeyDirectoryVersion, KeyRevision, MinorRevision, NumberOfKeys}KeyEntry = { KeyID, TIFFTagLocation, Count, Value_Offset }其中,TIFFTagLocation表示哪个tag存放值,如果值为0则表示值为SHORT类型且包含在Value_Offset元素中;否则,其值类型由tag含有值的TIFF-Type暗指。

TIFF(Tag Image File Format) 图像文件说明

TIFF(Tag Image File Format) 图像文件说明

TIFF(Tag Image File Format) 图像文件说明TIFF 文件是由许多的标签 (tag) 组成 , 在 Adobe 的有关 tiff6.0 的说明中,将 (tag) 的解释称各种标签所对应的数值,而在文件中各个标签的实际入口称为 (field) ,暂且称为域。

tiff 支持黑白、灰度、彩色的图像格式,同时还可以接受 RGB CMYK 等色彩系统,同时支持图像数据的 LZW, 哈夫曼等压缩算法或者不压缩。

TIFF 文件分为文件头和 IFD 两部分,一个 IFD 中存储了一幅图像的信息, IFD 可以由许多标签组成。

在 TIFF6.0文件中,规定所有的标签必须以升序排列,通过这些标签信息,来处理文件中的图像数据。

TIFF 文件头说明:TIFF 的文件头有 8 字节0-1 规定为 "II" 或者 "MM" Intel /Mortorola 类型的字节顺序2-3 TIFF 文件的版本,为与以前的兼容,为 424-7 TIFF 文件的第一个 IFD 在文件中的偏移量,肯定大于 8IFD 说明: IFD 是由连续的标签组成OFFSET:0-1 IFD 中的标签数目OFFSET:2-13 IFD 中的第一个标签OFFSET:14-25 IFD 中的第二个标签.....OFFSET:2+12* 标签数下一个 IFD 的 ( 相对于文将 ) 偏移量,在一个 TIFF 文件中可以由多个 IFD 用于存放多个图像,如果如果该数字为 0 ,表示已经处理完所有的 IFD 。

标签说明:一个标签由连续的 12 字节组成OFFSET:0-1 TAG ID 标签所对应的数字编号 (tag) ,用于定义该标签所存放的 " 信息 "OFFSET:2-3 TAG INFO DATA TYPE 标签中数据的数据类型OFFSET:4-7 VALUE COUNT 2-3 中说明的数据类型的数目OFFSET:8-11 VALUE OFFSET 相对于文件的该标签值的偏移量 , 必须开始于 " 字 " 边界 , 为了节省空间,如果该标签的数据的长度小于等于四个字节,在 VALUE OFFSET 中直接存储 ( 小于四字节数据左对齐 ) 该标签的值而不是在文件中的偏移量。

  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

GeoTIFF-A standard image file format for GIS applicationsSk.Sazid Mahammad(sazid@.in)andR.Ramakrishnan(rama@.in)Space Applications Centre(ISRO),Ahmedabad.-15Ph.+91-079-6914145/4752FAX:+91-079-6749115AbstractThe widespread application of Geographical Information System(GIS) packages worldwide needs standardization of remote sensing satellite digital image data products'formats and its contents.Geographic Tagged Image File Format(GeoTIFF)format is an effort towards this.The Aldus-Adobe's public domain Tagged Image File Format(TIFF)is one of the widely used raster file formats,which is platform independent and has provision for extension.The basic idea was to exploit the extensibility feature of TIFF, which allows to officially register new TIFF Tags in order to create a well established structured format/space for a variety of geographic information. GeoTIFF format fully complies with the TIFF6.0specifications,and its extensions do not in any way go against the TIFF recommendations,nor do they limit the scope of raster data supported by TIFF.It uses a"MetaTag" (GeoKey)approach to encode dozens of information elements into just six tags,taking advantage of TIFF platform-independent data format representation to avoid cross-platform interchange difficulties.These keys are designed in a manner parallel to standard TIFF tags,and closely follow the TIFF discipline in their structure and layout.New keys may be defined as needs arise,within the current framework,and without requiring the allocation of new tags from Aldus/Adobe.The GeoTIFF specification defines a set of TIFF tags provided to describe all"Cartographic" information associated with TIFF imagery that originates from satellite imaging systems,scanned aerial photography,scanned maps,digital elevation models,or as a result of geographic analysis.Its aim is to allow means for tying a raster image to a known model space or map projection. This paper gives features of GeoTIFF and how it is useful for various GIS and image processing packages to directly use GeoTIFF images with portability.Indian Remote Sensing Satellite(IRS)Data Products in GeoTIFF is also briefly described.IntroductionTIFF format is widely accepted versatile raster data format in the world today.TIFF is a suitable format for storage,transfer,display,and printing ofraster images such as clipart,logotypes,scanned documents etc..The TIFF imagery file format can be used to store and transfer digital satellite imagery, scanned aerial photos,elevation models,and scanned maps.Looking into popularity of TIFF,many TIFF users those who were using TIFF format to store digital satellite images felt the requirement of somehow embedding Geographic information(latitude,longitude,map projection etc.) into TIFF file so that it can be used by various GIS packages with ease.This requirement prompted the development of GeoTIFF,the TIFF file that has geographic(or cartographic)data embedded as tags within the TIFF file. The geographic data of a GeoTIFF file can be used to position the image in the correct location and geometry on the screen of a geographic information display.Since GeoTIFF is based on TIFF this paper describes TIFF for the sake of completeness.TIFF(Tagged Image File Format)TIFF is a tag-based file format for storing and interchanging raster images. Aldus Corporation published the first version of TIFF specification in1986, after a series of meetings with various scanner manufactures and software developers.TIFF is to describe and store raster image data.The main advantages of TIFF is its suitability for a wide range of applications and its independence of computer's architecture,operating system,and graphics hardware.It is reasonably compact and handles black-and-white,grayscale, and color images,allowing a user to adjust for the unique characteristics of a scanner,monitor,or printer.TIFF allows color resolution up to48bits(a16-bit field each for R,G,and B),either as full RGB color or in a64k-color palette.The TIFF6.0specifications,released in June1992is taken as reference by GeoTIFF.Overview of TIFF File StructureThe TIFF format[1]has a three-level hierarchy as shown in Fig.1.From highest to lowest,the levels are:1)A file Header.2)One or more directories called IFDs(Image File Directories),containing codes and their data,or pointer to the data.(Table1)3)Data.The File HeaderThe TIFF file begins with an8-byte header,which gives basic information about the file such as byte order(Little Endian or Big Endian),TIFF file ID or Version Number(which is always42)and a pointer to first IFD.Image File Directories(IFDs)Most Likely,the next structure in the file after the header will be the first(or only)IFD,but not necessarily.From here on,everything is found by following pointers.So,to locate the first IFD use the header's pointer.An IFD consists of12-byte entries,typically tagged pointers.The structure of an IFD and its entries are as follows:TABLE1:TIFF IFD Entry StructureOffset Length Description02Tag22Type of Data44Count field84Data pointer or data fieldTag:The first two bytes are tag,which,if public,may be looked up in the specification.These codes are assigned by the TIFF administrator(Aldus Developer's Desk),in blocks of five.This tag concept has been extended to support GeoTIFF.Type code:The next two bytes comprise a code indicating the type of data in the pointed field.Count field:The4-byte field specifies the number of values in the data field,not the number of bytes.Data pointer or data field:The final four bytes are usually a pointer to the start of a data field.Sometimes,however,this field contains not a pointer,but the actual data. Brief Description of GeoTIFFThe GeoTIFF specification[2]defines a set of TIFF tags provided to describe all "Cartographic"information associated with TIFF imagery that originates from satellite imaging systems,scanned aerial photography,scanned maps,digital elevation models,or as a result of geographic analyses.Its aim is to allow means for tying a raster image to a known model space or map projection.Basic Features of GeoTIFFGeoTIFF format fully complies with the TIFF6.0specifications,and its extensions do not in any way go against the TIFF recommendations,nor do they limit the scope of raster data supported by TIFF.It uses a small set of reserved TIFF tags to store a broad range of georeferencing information,catering to geographic as well as projected coordinate systems needs. Projections include Universal Transverse Mercator(UTM),US State Plane and National Grids,as well as the underlying projection types such as Transverse Mercator,Lambert Conformal Conic,etc.It uses a"MetaTag"(GeoKey)approach to encode dozens of information elements into just six tags.These keys are designed in a manner parallel to standard TIFF tags, and closely follow the TIFF discipline in their structure and layout.New keys may be defined as needs arise,within the current framework,and without requiring the allocation of new tags from Aldus/Adobe.GeoTIFF format uses numerical codes to describe projection types,coordinate systems,datums,ellipsoids,etc.The projection,datums and ellipsoid codes are derived from the EPSG list compiled by the Petrotechnical Open Software Corporation(POSC),and mechanisms for adding further international projections,datums and ellipsoids has been established.The GeoTIFF information content is designed to be compatible with the data decomposition approach used by the National Spatial Data Infrastructure(NSDI)of the U.S.Federal Geographic Data Committee(FGDC).GeoTIFF File and"Key"Structure HierarchyThis gives the abstract file-format and"GeoKey"data storage mechanism used in GeoTIFF.To see graphical view of the GeoTIFF file structure please refer Fig.2.A GeoTIFF file is a TIFF6.0file,and inherits the file structure as described in the corresponding portion of the TIFF spec.All GeoTIFF specific information is encoded in several additional reserved TIFF tags,and contains no private Image File Directories(IFD's),binary structures or other private information invisible tostandard TIFF readers.A GeoTIFF file stores projection parameters in a set of"Keys"which are virtually identical in function to a"Tag",but has one more level of abstraction above TIFF. Effectively,it is a sort of"Meta-Tag".A Key works with formatted tag-values of a TIFF file the way that a TIFF file deals with the raw bytes of a data file.Like a tag,aKey has an ID number ranging from0to65535,but unlike TIFF tags,all key ID's are available for use in GeoTIFF parameter definitions.The Keys in GeoTIFF(also call"GeoKeys")are all referenced from the GeoKeyDirectoryTag,which defined in Table2.GeoKeyDirectoryTag:This tag may be used to store the GeoKeys and GeoKey directory header information.The header values consist of the following information,in order:Header={KeyDirectoryVersion,KeyRevision,MinorRevision,NumberOfKeys} where"KeyDirectoryVersion"indicates the current version of Key implementation. "KeyRevision"indicates what revision of Key-Sets are used."MinorRevision" indicates what set of Key-codes are used.The complete revision number is denoted<KeyRevision>.<MinorRevision>."NumberOfKeys"indicates how many Keys are defined by the rest of this Tag.This header is immediately followed by a collection of<NumberOfKeys>KeyEntry sets,each of which is also4-SHORTS long.Table2:Additional Tags used by GeoTIFFTagName/Tag Value Type N=VariableAlias OwnerGeoKeyDirectoryTag/34735SHORT(2byteunsigned)>=4ProjectionInfoTag,CoordSyetemInfoTagSPOTImage,Inc.GeoDoubleParamTag/34736DOUBLE(IEEEDouble Precion variable NONE SPOTImage,Inc.GeoAsciiParamsTag/34737ASCII variable NONE SPOTImage,Inc. Each KeyEntry is modeled on the"TIFFEntry"format of the TIFF directory header,and is of the form:KeyEntry={KeyID,TIFFTagLocation,Count,Value_Offset} where"KeyID"gives the key-ID value of the Key(identical in function to TIFF tagID,but completely independent of TIFF tag-space),"TIFFTagLocation"indicateswhich TIFF tag contains the value(s)of the Key."Count"indicates the number of values in this key."Value_Offset"Value_Offset indicates the index-offset*into*the TagArray indicated by TIFFTagLocation,if it is nonzero.If TIFFTagLocation=0,then Value_Offset contains the actual(SHORT)value of the Key,and Count=1is implied.GeoDoubleParamsTag:This tag is used to store all of the DOUBLE valued GeoKeys,referenced by the GeoKeyDirectoryTag.GeoAsciiParamsTag:This tag is used to store all of the ASCII valued GeoKeys, referenced by the GeoKeyDirectoryTag.Coordinate TransformationsThe purpose of Geotiff is to allow the definitive identification of georeferenced locations within a raster dataset.This is generally accomplished through tying raster space coordinates to a model space coordinate system,when no further information is required.In the GeoTIFF nomenclature,"georeferencing"refers to tying raster space to a model space M,while"geocoding"refers to defining how the model space M assigns coordinates to points on the earth.The three tags defined below may be used for defining the relationship between R and M,and the relationship may be diagrammed as:ModelPixelScaleTagModelTiepointTagR------------OR-------------->M(I,J,K)ModelTransformationTag(X,Y,Z)ModelTiepointTag=(….I,J,K,X,Y,Z…)where(I,J,K)is the point at location(I,J)in raster space with pixel-value K,and(X,Y,Z)is a vector in model space.In most cases the model space is only two-dimensional,in which case both K and Z should be set to zero;this third dimension is provided in anticipation of future support for3D digital elevation models and vertical coordinate systems.ModelPixelScaleTag=(ScaleX,ScaleY,ScaleZ)whereScaleX and ScaleY give the horizontal and vertical spacing of raster pixels.The ScaleZ is primarily used to map the pixel value of a digital elevation model into the correct Z-scale,and so for most other purposes this value should be zero(since most model spaces are2-D,with Z=0).A single tiepoint in the ModelTiepointTag, together with this tag,completely determine the relationship between raster and model space;thus they comprise the two tags which Baseline GeoTIFF files most often will use to place a raster image into a"standard position"in model space.GIS and GeoTIFFA large number of commercial GIS and Image processing packages now support GeoTIFF because of its embedded georeferencing information.The major GIS/Image Processing packages those who support GeoTIFF are:• ARC/INFO• ERDAS IMAGINE• PCI’s EASI/PACE• MAP INFO and Python Imaging LibraryGeoTIFF and IRS Data Products[3]Since GeoTIFF has become a de-facto standard among Satellite Image data users,it has been adopted as a format of choice for IRS-1C/1D and future Indian Remote Sensing Satellites(IRS)data products.Since GeoTIFF does not have fields to describe general satellite specific information,such as Sensor,Spectral Band,Gain,Date of Pass etc.,an ASCII TIFF Tag270(ImageDescription)has been used to give these information.Fast Format Header(1536*3bytes)which is in ASCII is given in this field for IRS-1C/1D GeoTIFF products,so that users have added advantage.Fast Format Header have three records(each of1536bytes)namely Administrative Record (gives general satellite specific information like Sensor,Date of Pass etc.), Radiometric Record(gives gain,saturation radiance etc.),and Geometric Record(corner co-ordinate and projection parameters).ConclusionAs almost all standard GIS and Image Processing packages support GeoTIFF,it has emerged as a standard image file format for various GIS applications worldwide.The TIFF flexibility to add new Tags and portability has given a lot of scope for GeoTIFF expansion in future.Now major GeoTIFF data providers are Department of Space (DOS)India,Space Imaging,SPOT.Since major remote sensing data providers in the world today provide data in GeoTIFF format it has high potential user base for GIS applications where spatial data is one of the major input.References[1]TIFF6.0Specifications[2]GeoTIFF Specification(Revision1.0)[3]GeoTIFF Format Document for IRS-1C/1D[4]ftp:///pub/tiff/geotiff/[5]ftp:///release/geotiff/jpl_mirror/。

相关文档
最新文档