Forrest logo
back to context overview

gdalbuildvrt

List of commands for gdalbuildvrt:

  • gdalbuildvrt:tldr:226c6 gdalbuildvrt: Make an RGB virtual mosaic from 3 single-band input files.
    $ gdalbuildvrt -separate ${path-to-rgb-vrt} ${path-to-red-tif} ${path-to-green-tif} ${path-to-blue-tif}
    try on your machine
    explain this command
  • gdalbuildvrt:tldr:3c760 gdalbuildvrt: Make a virtual mosaic from all TIFF files contained in a directory.
    $ gdalbuildvrt ${path-to-output-vrt} ${path-to-input_directory-*-tif}
    try on your machine
    explain this command
  • gdalbuildvrt:tldr:4bfaa gdalbuildvrt: Make a virtual mosaic from files whose name is specified in a text file.
    $ gdalbuildvrt -input_file_list ${path-to-list-txt} ${path-to-output-vrt}
    try on your machine
    explain this command
  • gdalbuildvrt:tldr:4e075 gdalbuildvrt: Make a virtual mosaic with blue background color (RGB: 0 0 255).
    $ gdalbuildvrt -hidenodata -vrtnodata "${0 0 255}" ${path-to-output-vrt} ${path-to-input_directory-*-tif}
    try on your machine
    explain this command
back to context overview