raster (version 1.0.4)

dataType: Data type

Description

Get the datatype of a RasterLayer object. The datatype determines the interpretation of values written to disk. Changing the datatype of a Raster* object does not directly affect the way they are stored in memory; but it does affect how values are read from file (unless values are read via rgdal). If you change the datatype of a RasterLayer and then read values from disk these may be completely wrong, so only do this for debugging or when the information in the header file was wrong. To set the datatype of a new file, you can give a 'datatype' argument to the functions that write values to disk (e.g. writeRaster).

Usage

dataType(x)
dataType(x) <- value

Arguments

x
A RasterLayer object
value
A data type (see below)

Value

  • a Raster* object

Details

Setting the data type is useful if you want to write values to disk. In other cases use functions such as round() Datatypes are described by 5 characters. The first three indicate whether the values are integers, decimal number or logical values. The fourth character indicates the number of bytes used to save the values on disk, and the last character indicates whether the numbers are signed (i.e. can be negative and positive values) or not (only zero and positive values allowed) The following datatypes are available. lll{ Datatype definition minimum possible value maximum possible value LOG1S FALSE (0) TRUE (1) INT1S -127 127 INT1U 0 255 INT2S -32,767 32,767 INT2U 0 65,534 INT4S -2,147,483,647 2,147,483,647 INT4U 0 4,294,967,294 INT8S -9,223,372,036,854,775,807 9,223,372,036,854,775,807 INT8U 0 18,446,744,073,709,551,614 FLT4S -3.4E38 3.4E38 FLT8S -1.7E308 1.7E308 } For all integer types, except the single byte types, the lowest (signed) or highest (unsigned) value is used to store NA. Single byte files do not have NA values. Logical values are stored as signed single byte integers, they do have an NA value (-127)

Examples

Run this code
r <- raster(system.file("external/test.grd", package="raster"))
dataType(r)
s <- saveAs(r, 'test.grd', datatype='INT2U')
dataType(s)

Run the code above in your browser using DataCamp Workspace