PicaJet

Reference Formats

GeoTIFF

GeoTIFF is a public-domain extension of the TIFF raster image format that embeds georeferencing metadata directly in the image file as TIFF tags.

Extension

.tif

Full name

GeoTIFF (Geographic Tagged Image File Format)

Introduced

GeoTIFF 1.0 specification released November 1995; adopted as OGC Standard (version 1.1) in September 2019

Vendor

GeoTIFF Working Group (community-developed); formalized by the Open Geospatial Consortium

What is inside the container

A GeoTIFF is a single self-contained file: standard TIFF image data plus a defined set of TIFF tags that record coordinate reference system, pixel scale, and the transform mapping pixels to real-world coordinates. Because everything lives inside one .tif file, there is no companion .tfw world file or separate projection file to lose, unlike older raster georeferencing workarounds. GeoTIFFs can hold anything from a single satellite band to multi-band imagery or elevation data, and the same TIFF compression options (LZW, DEFLATE) apply.

How to open it

Desktop GIS QGIS opens GeoTIFFs directly as raster layers and reads the embedded CRS
Desktop GIS Esri ArcGIS Pro imports GeoTIFFs natively for raster analysis and mapping
Image viewers Most standard image viewers (Preview, IrfanView) display the pixel data but ignore the georeferencing tags
Command line GDAL's gdalinfo and gdal_translate read metadata and convert GeoTIFFs from scripts or pipelines

For archives

Store GeoTIFFs as-is since the format is already a single self-describing file with no companion-file risk; preserve the original bit depth and compression rather than re-encoding to a lossy format. For DAM preview generation, extract the embedded CRS and extent tags to render a thumbnail and map footprint without needing the original GIS software.

GeoTIFF grew out of an informal effort in the early 1990s to add coordinate information to the widely used TIFF image format; SPOT Image Corporation proposed an early version limited to Universal Transverse Mercator in 1994, and the community-run GeoTIFF Working Group published the GeoTIFF 1.0 specification in November 1995. It remained a de facto, community-maintained standard for over two decades before the Open Geospatial Consortium formally adopted GeoTIFF 1.1 as an OGC Standard in September 2019, keeping it backward compatible with the original 1995 specification.

Technically, a GeoTIFF is ordinary TIFF raster data carrying an additional set of defined tags that record the coordinate reference system, the pixel-to-map transform, and other georeferencing parameters directly inside the file. That single-file design is what sets it apart from older raster georeferencing methods that relied on a separate .tfw world file sitting next to a plain image — lose the world file and the image loses its location.

  • Satellite and aerial imagery, single- or multi-band
  • Digital elevation models (DEM) storing height rather than color per pixel
  • Classified land-cover or other scientific raster data
  • Cloud Optimized GeoTIFF (COG) variants, tiled and internally indexed for fast partial reads over HTTP

For a DAM, GeoTIFF is comparatively easy to manage precisely because it is self-contained: there’s one file to version, one file to preview, and the georeferencing metadata can be read straight out of the TIFF tags to populate searchable fields like coordinate system and geographic extent without opening a GIS application. A DAM that supports GIS assets can generate a map-footprint thumbnail from those embedded tags, which is not possible for formats where the spatial reference lives in a separate file.

The tradeoff is file size: GeoTIFFs holding high-resolution satellite or aerial imagery can run into gigabytes, so DAM storage and preview pipelines built for photography assets often need adjusted thumbnail-generation and streaming logic (or Cloud Optimized GeoTIFF handling) to deal with these files efficiently.

Frequently asked

What makes GeoTIFF different from a regular TIFF image in a DAM?

A regular TIFF stores only pixel data, so a DAM has no way to know where on Earth the image sits unless a companion world file travels with it. GeoTIFF embeds georeferencing directly in standard TIFF tags — coordinate reference system, pixel scale, and tiepoints/transformation — making the file self-describing. A DAM can read this metadata straight from the file, index it for spatial search, and never risk losing georeferencing if the companion file goes missing.

Does a GeoTIFF need a separate world file like older georeferenced images?

No. Unlike a plain image paired with a .tfw world file, a GeoTIFF's georeferencing tags are embedded in the TIFF structure itself, which is why the format needs no companion file to stay geolocated.

Can a standard image viewer display a GeoTIFF?

Yes — because GeoTIFF is fully compliant TIFF, any standard viewer, browser plugin, or image library can open one and render the pixel data correctly. What gets lost is the geospatial layer: generic viewers simply ignore the embedded coordinate reference system, pixel scale, and tiepoint tags, so the image displays as a flat picture with no sense of location, scale, or projection. Proper display of that context requires GIS software or a DAM plugin that parses the GeoTIFF-specific tags.

Why do GeoTIFF files get so large in a DAM archive?

Size comes from what the format is used to carry, not the format itself. GeoTIFF commonly holds high-resolution satellite or aerial imagery with multiple spectral bands (e.g., red, green, blue, near-infrared) at full bit depth — often 16-bit or 32-bit per band rather than the 8-bit typical of a photo. Unless LZW or DEFLATE compression is applied, that combination of resolution, band count, and bit depth multiplies file size quickly, so archives of many scenes can consume substantial storage.

When was GeoTIFF standardized by the OGC?

The GeoTIFF Working Group first released the specification, version 1.0, in November 1995 — well before OGC involvement. The Open Geospatial Consortium formally adopted it as an official OGC standard in September 2019, published as version 1.1, document 19-008r4. That revision preserved backward compatibility with the original 1995 tags while tightening interoperability, notably by integrating the EPSG Geodetic Parameter Dataset registry for coordinate reference system definitions used across GIS and DAM tooling.

Should a DAM convert GeoTIFF to another format for previews?

The archival GeoTIFF should stay untouched — converting or recompressing it risks losing the embedded georeferencing tags that make it useful for GIS work. For previews, a DAM is better served by generating a lightweight derivative, such as a JPEG or PNG thumbnail rendered from the pixel data, or by re-encoding as a Cloud Optimized GeoTIFF (COG), which adds internal tiling and overviews so viewers can stream low-resolution previews over HTTP without downloading the full file.

What metadata should a DAM extract from a GeoTIFF on ingest?

Beyond standard file metadata, a DAM should pull the geospatial tags that make GeoTIFF distinct: the coordinate reference system (projection and datum), pixel scale and tiepoints or the full affine transformation, and the resulting geographic bounding box. Band count and bit depth are also worth capturing, since they explain file size and processing needs. Tools built on GDAL, such as gdalinfo, can read these tags directly and expose them for indexing and spatial search.

Is GeoTIFF a good archival format for a DAM?

Yes, with caveats. GeoTIFF is self-describing and self-contained — no companion world file to lose track of — and it rests on both a stable 1995 baseline and a formal OGC standard (1.1, 2019), so long-term readability is well established. The tradeoff is size: uncompressed or lightly compressed multi-band imagery can be very large, so a DAM archiving many scenes needs adequate storage planning and should avoid altering the original file when generating previews.

Sources