Skip to content

laser mosaicΒΆ

Merges a list of rasters into a single mosaic.

Does not run on las/laz data - runs on raster data instead.

Use the --metric option to add custom metadata to the headers of the output file, like the units of the datatype.


laser mosaic [-h] [--input-is-list] [-m {metric}] [--srcnodata value] [--dstnodata value]
  [--co creation_option [creation_option ...]] [--of raster_format] input_files [input_file(s ...] output_file

positional arguments:
  input_file(s)         Input file(s)
  output_file           Output file

optional arguments:
  -h, --help            show this help message and exit
  --input-is-list       Use input file as a list of rasters to merge. (default: False)
  -m, --metric          {ground,surface,canopy_height,building_height,canopy_cover,ladder_fuels,base_height,flame_gap,slicer,vertical_layers}
                        Lazer dataset type. (default: None)
  --srcnodata value     Input nodata value (default: None)
  --dstnodata value     Output nodata value (default: None)
  --co creation_option [creation_option ...]
                        GDAL creation option arguments (default: ['BIGTIFF=YES', 'TILED=YES', 'COMPRESS=DEFLATE', 'NUM_THREADS=ALL_CPUS'])
  --of raster_format    GDAL driver format (default: GTiff)
Back to top