GDAL-RASTER-COLOR-MAP(1) GDAL GDAL-RASTER-COLOR-MAP(1)
NAME
gdal-raster-color-map - Generate a RGB or RGBA dataset from a single
band, using a color map
Added in version 3.11.
SYNOPSIS
Usage: gdal raster color-map [OPTIONS]
Generate a RGB or RGBA dataset from a single band, using a color map
Positional arguments:
-i, --input Input raster datasets [required] [not available in pipelines]
-o, --output Output raster dataset [required] [not available in pipelines]
Common Options:
-h, --help Display help message and exit
--json-usage Display usage as JSON document and exit
--config = Configuration option [may be repeated]
-q, --quiet Quiet mode (no progress bar or warning message) [not available in pipelines]
Options:
-f, --of, --format, --output-format Output format ("GDALG" allowed) [not available in pipelines]
--co, --creation-option = Creation option [may be repeated] [not available in pipelines]
--overwrite Whether overwriting existing output dataset is allowed [not available in pipelines]
Mutually exclusive with --append
--append Append as a subdataset to existing output [not available in pipelines]
Mutually exclusive with --overwrite
-b, --band Input band (1-based index) (default: 1)
--color-map Color map filename
--add-alpha Adds an alpha mask band to the destination.
--color-selection How to compute output colors from input values. COLOR-SELECTION=interpolate|exact|nearest (default: interpolate)
Advanced Options:
--if, --input-format Input formats [may be repeated] [not available in pipelines]
--oo, --open-option = Open options [may be repeated] [not available in pipelines]
DESCRIPTION
gdal raster color-map generates a RGB or RGBA dataset from a single
band, using a color map, either attached directly to a raster band, or
from an external text file. It is typically used to create hypsometric
maps from a DEM.
This subcommand is also available as a potential step of gdal raster
pipeline
GDALG OUTPUT (ON-THE-FLY / STREAMED DATASET)
This program supports serializing the command line as a JSON file using
the GDALG output format. The resulting file can then be opened as a
raster dataset using the GDALG: GDAL Streamed Algorithm driver, and
apply the specified pipeline in a on-the-fly / streamed way.
PROGRAM-SPECIFIC OPTIONS
--add-alpha
Adds an alpha mask band to the output.
-b, --band
Index (starting at 1) of the band to process.
--color-map
Color map filename containing the association between various
raster values and the corresponding wished color.
This option must be specified if the input raster band has no
attached color table.
The text-based color configuration file generally contains 4
columns per line: the raster value and the corresponding Red,
Green, Blue component (between 0 and 255). The raster value can
be any floating point value, or the nv keyword for the nodata
value. The raster can also be expressed as a percentage: 0%
being the minimum value found in the raster, 100% the maximum
value.
An extra column can be optionally added for the alpha component.
If it is not specified, full opacity (255) is assumed.
Various field separators are accepted: comma, tabulation,
spaces, ':'.
Common colors used by GRASS can also be specified by using their
name, instead of the RGB triplet. The supported list is: white,
black, red, green, blue, yellow, magenta, cyan, aqua, grey/gray,
orange, brown, purple/violet and indigo.
GMT .cpt palette files are also supported (COLOR_MODEL = RGB
only).
Note: the syntax of the color configuration file is derived from
the one supported by GRASS r.colors utility. ESRI HDR color
table files (.clr) also match that syntax. The alpha component
and the support of tab and comma as separators are GDAL specific
extensions.
For example:
3500 white
2500 235:220:175
50% 190 185 135
700 240 250 150
0 50 180 50
nv 0 0 0 0
To implement a "round to the floor value" mode, the raster value
can be duplicate with a new value being slightly above the
threshold. For example to have red in [0,10], green in ]10,20]
and blue in ]20,30]:
0 red
10 red
10.001 green
20 green
20.001 blue
30 blue
--color-selection interpolate|exact|nearest
How to compute output colors from input values:
o interpolate (default): apply linear interpolation when a
raster value falls between two entries of the color map.
o exact: only input raster values matching exacting an entry of
the color map will be colorized. If none matching color entry
is found, the "0,0,0,0" RGBA quadruplet will be used.
o nearest: input raster values will be assigned the entry of the
color map that is the closest.
NOTE:
This option is only taken into account when --color-map is
specified.
STANDARD OPTIONS
--co, --creation-option =
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.
-f, --of, --format, --output-format
Which output raster format to use. Allowed values may be given
by gdal --formats | grep raster | grep rw | sort
--overwrite
Allow program to overwrite existing target file or dataset.
Otherwise, by default, gdal errors out if the target file or
dataset already exists.
RETURN STATUS CODE
The program returns status code 0 in case of success, and non-zero in
case of error (non-blocking errors emitted as warnings are considered
as a successful execution).
EXAMPLES
Example 1: Generates a RGB dataset from a DTED0 file using an external
color map
$ gdal raster color-map --color-map=color-map.txt n43.dt0 out.tif --overwrite
AUTHOR
Even Rouault
COPYRIGHT
1998-2026
August 18, 2026 GDAL-RASTER-COLOR-MAP(1)