fwf_interpreter: Full Waveform Interpreter

View source: R/fwf_interpreter.r

fwf_interpreterR Documentation

Full Waveform Interpreter

Description

This is an experimental function that may change
Raw full waveform data read from LAS files might be cryptic even with a good understanding of the LAS specifications. This function interpret the full waveform data as a set of XYZ coordinates and an amplitude which is the digitized voltage.

Usage

fwf_interpreter(header, data)

Arguments

header

list. A header

data

data.frame or data.table

Value

A list containing a data.frame per pulse with the XYZ coordinates of the waveform and the voltage of the record (Amplitude)

See Also

Other header_tools: crs_tools, extra_bytes_attribute_tools, public_header_block_tools

Examples

## Not run: 
f <- system.file("extdata", "fwf.laz", package="rlas")
head <- read.lasheader(f)
data <- read.las(f)
fwf <- fwf_interpreter(head, data)

## End(Not run)

rlas documentation built on March 31, 2023, 5:29 p.m.