Package org.geotools.gce.geotiff

A grid coverage exchange to manage the GeoTIFF Revision 1.0 format.

See:
          Description

Class Summary
GeoTiffCoordinateSystemAdapter The GeoTiffCoordinateSystemAdapter is responsible for interpreting the metadata provided by the GeoTiffIIOMetadataAdapter for the purposes of constructing a CoordinateSystem object representative of the information found in the tags.
GeoTiffFormat Provides basic information about the GeoTIFF format IO.
GeoTiffFormatFactorySpi The GeoTiffFormatFactorySpi should never be instantiated directly by user code.
GeoTiffIIOMetadataAdapter This class provides an abstraction from the details of TIFF data access for the purpose of retrieving GeoTIFF metadata from an image.
GeoTiffReader GeoTiffReader is responsible for exposing the data and the Georeferencing metadata available to the Geotools library.
GeoTiffUtils  
GeoTiffWriter DOCUMENT ME!
 

Exception Summary
GeoTiffException This exception is thrown when the problem with reading the GeoTiff file has to do with constructing either the raster to model transform, or the coordinate system.
 

Package org.geotools.gce.geotiff Description

A grid coverage exchange to manage the GeoTIFF Revision 1.0 format.

This package is going to be "evolutionary", rather than "revolutionary". As functionality is added to the package, this page will be updated. This page should be considered a current synopsis of the capabilities of the module.

Revision Date

May 31, 2005

Requirements

This package requires that the runtime environment have access to Java Advanced Imaging (JAI) and the JAI Image I/O extensions available from Sun. Specifically, the GeoTiffFormatFactorySpi will report itself unavailable if any of the following are unavailable:

Other classes are of course necessary to successfully read in the GeoTIFF image. As they typically come bundled with one or more of the above, they are assumed to be present if all of the above are present.

CRS Information

The ability of the GeoTiff module to interpret and accurately express the geographic information encoded in the GeoTIFF file relies strongly on it's ability to use the Geotools framework to construct a meaningful coordinate reference system (CRS) object. Geotools has a number of Authority Factories which take care of constructing CRS information given the code assigned to that CRS.

The central problem is that a complete CRS is composed of many smaller pieces (coordinate systems (CS), datums, and coordinate operations.) Each of these smaller peices is assigned a code for berevity. So when a GeoTIFF file is written, the coordinate information can either be a single code representing the entire CRS (if you're lucky), or a combination of each of the component codes. Reading a GeoTIFF involves the reverse process: looking up either a single code or a collection of the component codes and building up a CRS object from these components.

Geotools supports the looking up of EPSG codes in plugins. Therefore it is critical that the environment inside which the GeoTIFF plugin is running contain the appropriate epsg authority factory plugins. Unfortunately, the definition of "appropriate" varies according to the type of GeoTIFF file you are trying to read. If you know that your GeoTIFF file contains only codes for complete CRSes, then you can use an EPSG plugin which only looks up complete CRSes (e.g., epsg-wkt, the property file based EPSG authority factory.) If, however, you want to be able to handle more types of GeoTIFF files (perhaps you do not know where your GeoTIFF files are coming from), you must choose an EPSG authority factory which can lookup components of a CRS (e.g., epsg-access, the MS Access backed authority factory.)

In short, the exact means by which EPSG codes are turned into actual Java Objects is left up to the application writer. Ensure that the capabilities you have configured match the requirements imposed by the data you are trying to read.

Current Functionality

The current iteration of the GeoTIFF plugin will read GeoTIFF files with the following restrictions:

The GeoTIFF plugin currently does not write GeoTIFF files. The current obstacles to writing a GeoTIFF file are:

  1. The GeoTiffIIOMetadataAdapter cannot modify the IIOMetadata object (e.g., it's read-only).
  2. No mechanism exists to examine the parameters of a coordinate system and produce an EPSG code.

Key features of the package:

  1. Has a reasonable level of isolation from the Geotools library ala the GeoAPI interfaces. Areas of best isolation are CRS, and areas of worst isolation are the grid coverage exchange API.
  2. Utilizes the JAI ImageI/O tools to perform the actual file I/O.
  3. Interprets metadata retrieved as IIOMetadata.
  4. Functionality is logically subdivided:

License Information

The GeoTIFF plugin for Geotools is public domain. The GeoTiffIIOMetadataAdapter is Copyright 2004 by Mike Gelbin and released under a liberal license as noted in that file.



Copyright © GeoTools. All Rights Reserved.