write stars object to gdal dataset (typically: to file)
# S3 method for stars
st_write(obj, dsn, layer = 1, ...,
driver = detect.driver(dsn), options = character(0),
type = "Float32", NA_value = NA_real_)
object of class stars
gdal dataset (file) name
attribute name; if missing, the first attribute is written
passed on to gdal_write
driver driver name; see st_drivers
character vector with options
character; output binary type, one of: Byte
for eight bit unsigned integer, UInt16
for sixteen bit unsigned integer, Int16
for sixteen bit signed integer, UInt32
for thirty two bit unsigned integer, Int32
for thirty two bit signed integer, Float32
for thirty two bit floating point, Float64
for sixty four bit floating point.
non-NA value that should represent R's NA
value in the target raster file; if set to NA
, it will be ignored.