R/gdal-utils-helpers.R
ts_te.Rd
Format properties for the GDAL options.
te(extent) ts(dimension) ts_te(dimension, extent)
xmin,xmax,ymin,ymax
ncol, nrow
string formatted for GDAL command line (-te -ts)
ts_te(c(10, 100), 1:4) #> [1] "-ts 10 100-te 1 3 2 4" ts(c(10, 100)) #> [1] "-ts 10 100" te(1:4) #> [1] "-te 1 3 2 4"