Want to create an hypsometric, hillshaded and colored hillshaded rendering of a DEM in a single command line ? This will be possible in @gdal 3.12 with nested pipelines, like:
gdal pipeline read n43.tif ! \
color-map --color-map color_file.txt ! \
tee [ write colored.tif ] ! \
color-merge --grayscale \
[ read n43.tif ! hillshade -z 30 ! tee [ write hillshade.tif ] ] ! \
write colored-hillshade.tif
Pipeline: add support for input and output nested pipelines by rouault · Pull Request #13009 · OSGeo/gdal
Fixes #12874. See https://github.com/rouault/gdal/blob/nested_pipeline/doc/source/programs/gdal_cli_include/gdal_nested_pipeline_intro.rst and https://github.com/rouault/gdal/blob/nested_pipeline/d...