projection {lidR}R Documentation

Get or set the projection of a LAS* object

Description

Get or set the projection of a LAS* object.

Usage

epsg(object, ...)

epsg(object) <- value

## S4 method for signature 'LASheader'
epsg(object, ...)

## S4 replacement method for signature 'LASheader'
epsg(object) <- value

## S4 method for signature 'LAS'
epsg(object)

## S4 replacement method for signature 'LAS'
epsg(object) <- value

wkt(object) <- value

## S4 method for signature 'LASheader'
wkt(obj)

## S4 replacement method for signature 'LASheader'
wkt(object) <- value

## S4 method for signature 'LAS'
wkt(obj)

## S4 replacement method for signature 'LAS'
wkt(object) <- value

## S4 method for signature 'LASheader'
projection(x, asText = TRUE)

## S4 method for signature 'LAS'
projection(x, asText = TRUE)

## S4 replacement method for signature 'LAS'
projection(x) <- value

## S4 method for signature 'LAScatalog'
projection(x, asText = TRUE)

## S4 replacement method for signature 'LAScatalog'
projection(x) <- value

## S4 method for signature 'LASheader'
crs(x, asText = FALSE)

## S4 method for signature 'LAS'
crs(x, asText = FALSE)

## S4 replacement method for signature 'LAS'
crs(x, ...) <- value

## S4 method for signature 'LAScatalog'
crs(x, asText = FALSE)

## S4 replacement method for signature 'LAScatalog'
crs(x, ...) <- value

Arguments

object, x, obj

An object of class LAS or eventually LASheader (regular users don't need to manipulate LASheader objects).

...

Unused.

value

A CRS object or a proj4string string or WKT string or an EPSG code.

asText

logical. If TRUE, the projection is returned as text. Otherwise a CRS object is returned.

Details

There are two ways to store the CRS of a point cloud in a LAS file:

On the other hand, R sptial packages use a proj4string to store the CRS (but the ecosystem is moving to WKT). This is why the CRS is duplicated in a LAS object. The information belongs within the header in a format that can be written in a LAS file and in the slot proj4string in a format that can be understood by R packages.

Examples

LASfile <- system.file("extdata", "Megaplot.laz", package="lidR")
las <- readLAS(LASfile)

# Get the EPSG code stored in the header (returns 0 if not recorded)
epsg(las)

# Get the WKT string stored in the header (LAS >= 1.4)
wkt(las)

# Uses the EPSG code
projection(las) <- 26919
sf::st_crs(las)$input


[Package lidR version 3.2.2 Index]