GDAL-RASTER-FOOTPRINT(1) GDAL GDAL-RASTER-FOOTPRINT(1)

gdal-raster-footprint - Compute the footprint of a raster dataset

Added in version 3.11.

Usage: gdal raster footprint [OPTIONS] <INPUT> <OUTPUT>
Compute the footprint of a raster dataset.
Positional arguments:
  -i, --input <INPUT>                                  Input raster dataset [required]
  -o, --output <OUTPUT>                                Output vector dataset (created by algorithm) [required]
Common Options:
  -h, --help                                           Display help message and exit
  --json-usage                                         Display usage as JSON document and exit
  --config <KEY>=<VALUE>                               Configuration option [may be repeated]
  --progress                                           Display progress bar
Options:
  -f, --of, --format, --output-format <OUTPUT-FORMAT>  Output format
  --output-layer <OUTPUT-LAYER>                        Output layer name (default: footprint)
  --co, --creation-option <KEY>=<VALUE>                Creation option [may be repeated]
  --lco, --layer-creation-option <KEY>=<VALUE>         Layer creation option [may be repeated]
  --append                                             Whether to append to an existing dataset
  --overwrite                                          Whether overwriting existing output is allowed
  -b, --band <BAND>                                    Input band(s) (1-based index) [may be repeated]
  --combine-bands <COMBINE-BANDS>                      Defines how the mask bands of the selected bands are combined to generate a single mask band, before being vectorized.. COMBINE-BANDS=union|intersection (default: union)
  --overview <OVERVIEW>                                Which overview level of source file must be used
                                                       Mutually exclusive with --src-nodata
  --src-nodata <SRC-NODATA>                            Set nodata values for input bands. [1.. values]
                                                       Mutually exclusive with --overview
  --coordinate-system <COORDINATE-SYSTEM>              Target coordinate system. COORDINATE-SYSTEM=georeferenced|pixel
  --dst-crs <DST-CRS>                                  Destination CRS
  --split-multipolygons                                Whether to split multipolygons as several features each with one single polygon
  --convex-hull                                        Whether to compute the convex hull of the footprint
  --densify-distance <DENSIFY-DISTANCE>                Maximum distance between 2 consecutive points of the output geometry.
  --simplify-tolerance <SIMPLIFY-TOLERANCE>            Tolerance used to merge consecutive points of the output geometry.
  --min-ring-area <MIN-RING-AREA>                      Minimum value for the area of a ring
  --max-points <MAX-POINTS>                            Maximum number of points of each output geometry (default: 100)
  --location-field <LOCATION-FIELD>                    Name of the field where the path of the input dataset will be stored. (default: location)
                                                       Mutually exclusive with --no-location-field
  --no-location-field                                  Disable creating a field with the path of the input dataset
                                                       Mutually exclusive with --location-field
  --absolute-path                                      Whether the path to the input dataset should be stored as an absolute path
Advanced Options:
  --oo, --open-option <KEY>=<VALUE>                    Open options [may be repeated]
  --if, --input-format <INPUT-FORMAT>                  Input formats [may be repeated]

gdal raster footprint computes the footprint of a raster file, taking into account nodata values (or more generally the mask band attached to the raster bands), and generating polygons/multipolygons corresponding to areas where pixels are valid, and write to an output vector file.

The following options are available:

Which output vector format to use. Allowed values may be given by gdal --formats | grep vector | grep rw | sort
Many formats have one or more optional creation options that can be used to control particulars about the file created. For instance, the GeoTIFF driver supports creation options to control compression, and whether the file should be tiled.

May be repeated.

The creation options available vary by format driver, and some simple formats have no creation options at all. A list of options supported for a format can be listed with the --formats command line option but the documentation for the format is the definitive source of information on driver creation options. See Raster drivers format specific documentation for legal creation options for each format.

Many formats have one or more optional layer creation options that can be used to control particulars about the layer created. For instance, the GeoPackage driver supports layer creation options to control the feature identifier or geometry column name, setting the identifier or description, etc.

May be repeated.

The layer creation options available vary by format driver, and some simple formats have no layer creation options at all. A list of options supported for a format can be listed with the --formats command line option but the documentation for the format is the definitive source of information on driver creation options. See Vector drivers format specific documentation for legal creation options for each format.

Note that layer creation options are different from dataset creation options.

Output layer name. Defaults to footprint.
Allow program to overwrite existing target file or dataset. Otherwise, by default, gdal errors out if the target file or dataset already exists.
Whether appending features to existing layer(s) is allowed
Select an input <band> to be processed. Bands are numbered from 1. Multiple -b switches may be used to select a set of input bands. If not specified, all bands are taken into account. The way multiple bands are combined is controlled by --combine-bands
Defines how the mask bands of the selected bands are combined to generate a single mask band, before being vectorized. The default value is union: that is a pixel is valid if it is valid at least for one of the selected bands. intersection means that a pixel is valid only if it is valid for all selected bands.
To specify which overview level of source file must be used, when overviews are available on the source raster. By default the full resolution level is used. The index is 0-based, that is 0 means the first overview level. This option is mutually exclusive with --src-nodata.
Set nodata values for input bands (different values can be supplied for each band). If a single value is specified, it applies to all selected bands. If more than one value is supplied, there should be as many values as the number of selected bands, and all values should be quoted to keep them together as a single operating system argument. If the option is not specified, the intrinsic mask band of each selected bands will be used.
Target coordinate system. By default if the input dataset is georeferenced, georeferenced is implied, that is the footprint geometry will be expressed as coordinates in the CRS of the raster (or the one specified with --dst-crs). If specifying pixel, the coordinates of the footprint geometry are column and line indices.
Target CRS of the output file. The <CRS_DEF> may be any of the usual GDAL/OGR forms, complete WKT, PROJ.4, EPSG:n or a file containing the WKT. Specifying this option implies --coordinate-system=georeferenced. The footprint is reprojected from the CRS of the source raster to the specified CRS.
When specified, multipolygons are split as several features each with one single polygon.
When specified, the convex hull of (multi)polygons is computed.
The specified value of this option is the maximum distance between 2 consecutive points of the output geometry. The unit of the distance is in pixels if --coordinate-system equals pixel, or otherwise in georeferenced units of the source raster. This option is applied before the reprojection implied by --dst-crs.
The specified value of this option is the tolerance used to merge consecutive points of the output geometry using the OGRGeometry::Simplify() method. The unit of the distance is in pixels if --coordinate-system equals pixel, or otherwise in georeferenced units of the target vector dataset. This option is applied after the reprojection implied by --dst-crs.
Minimum value for the area of a ring The unit of the area is in square pixels if --coordinate-system equals pixel, or otherwise in georeferenced units of the target vector dataset. This option is applied after the reprojection implied by --dst-crs
Maximum number of points of each output geometry (not counting the closing point of each ring, which is always identical to the first point). The default value is 100. unlimited can be used to remove that limitation.
Specifies the name of the field in the resulting vector dataset where the path of the input dataset will be stored. The default field name is "location". To prevent writing the path of the input dataset, use --no-location-field
Turns off the writing of the path of the input dataset as a field in the output vector dataset.
Enables writing the absolute path of the input dataset. By default, the filename is written in the location field exactly as specified on the command line.

Post-vectorization geometric operations are applied in the following order:

  • optional splitting (--split-multipolygons)
  • optional densification (--densify-distance)
  • optional reprojection (--dst-crs)
  • optional filtering by minimum ring area (--min-ring-area)
  • optional application of convex hull (--convex-hull)
  • optional simplification (--simplify-tolerance)
  • limitation of number of points (--max-points)

gdal raster footprint my_raster.tif footprint.geojson

Even Rouault <even.rouault@spatialys.com>

1998-2025

May 6, 2025