
gdalwarp
List of commands for gdalwarp:
-
gdalwarp:tldr:0b083 gdalwarp: Crop a raster dataset using a vector layer.$ gdalwarp -cutline ${path-to-area_to_cut-geojson} -crop_to_cutline ${path-to-input-tif} ${path-to-output-tif}try on your machineexplain this command
-
gdalwarp:tldr:59ae5 gdalwarp: Reproject a raster dataset.$ gdalwarp -t_srs ${EPSG:4326} ${path-to-input-tif} ${path-to-output-tif}try on your machineexplain this command
-
gdalwarp:tldr:bff07 gdalwarp: Crop a raster dataset by using specific coordinates.$ gdalwarp -te ${min_x} ${min_y} ${max_x} ${max_y} -te_srs ${EPSG:4326} ${path-to-input-tif} ${path-to-output-tif}try on your machineexplain this command