Cloud Optimized GeoTIFF (COG)

Overview

Cloud Optimized GeoTIFF (COG) is a type of GeoTIFF file that is optimized for efficient access and processing in cloud environments, allowing for faster retrieval of specific portions of the data without needing to download the entire file. COGs use internal tiling and overviews to enable HTTP range requests.

Key Concepts

Internal tiling organizes pixels into rectangular blocks for random access. Overviews are reduced-resolution versions for quick previews. HTTP range requests retrieve only needed bytes from cloud storage. Header optimization places metadata at file start for fast reading. Compression reduces file size (LZW, Deflate, ZSTD).

Requirements

  1. Tiled (not stripped) organization
  2. Overviews included
  3. Metadata at file start
  4. Compression (optional but recommended)

Benefits

BenefitDescription
StreamingRead portions without full download
ScalabilityWorks with any HTTP-accessible storage
EfficiencyOnly transfer needed data
CompatibilityStandard GeoTIFF readers still work

Appendix

Created: 2025-12-13 | Modified: 2025-12-13

See Also