spatial.tools (version 1.6.0)

raster_to_GLT: Creates a geometry lookup (GLT) file from a raster

Description

Creates a geometry lookup (GLT) file from a raster

Usage

raster_to_GLT(x)

Arguments

x

Raster* The raster containing the geographic information to be used as the basis for the GLT.

Details

This function produces a two-band brick where the pixel values for the first band are the column numbers, and the pixel values for the second band are the row numbers of the corresponding pixels in the input Raster* file.

See Also

rowColFromCell, cellFromRow

Examples

Run this code
# NOT RUN {
library("raster")
tahoe_lidar_highesthit <- 
	raster(system.file("external/tahoe_lidar_highesthit.tif", package="spatial.tools"))
tahoe_lidar_highesthit_glt <- raster_to_GLT(tahoe_lidar_highesthit)
plot(tahoe_lidar_highesthit_glt)
setMinMax(tahoe_lidar_highesthit_glt)

# }

Run the code above in your browser using DataLab