<div dir="ltr"><div dir="ltr"><br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Wed, Apr 7, 2021 at 3:46 PM Andreas Yankopolus <<a href="mailto:andreas@yank.to">andreas@yank.to</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Is it possible to write multiple dimensions to a raster such as a GeoTIFF? For example: Z, Classification, Intensity, Red, Green, and Blue.<br></blockquote><div><br></div><div>PDAL doesn't support this, but you can chain writers to get separate rasters. I assume GDAL has some VRT magic to merge the separate tiffs into a multi-band:</div><div><br></div>[<br>    "/pdal/test/data/las/autzen_trim.las",<br>    {<br>        "type":"writers.gdal",<br>        "dimension": "Red",<br>        "filename": "red.tif",<br>        "output_type": "idw",<br>        "resolution": 100<br>    },<br>    {<br>        "type":"writers.gdal",<br>        "dimension": "Green",<br>        "filename": "green.tif",<br>        "output_type": "idw",<br>        "resolution": 100<br>    }<br><div>]</div><div><br></div><div>--<br></div></div><div dir="ltr" class="gmail_signature">Andrew Bell<br><a href="mailto:andrew.bell.ia@gmail.com" target="_blank">andrew.bell.ia@gmail.com</a></div></div>