Learn R Programming

⚠️There's a newer version (4.1.2) of this package.Take me there.

R package for Airborne LiDAR Data Manipulation and Visualization for Forestry Applications

The lidR package provides functions to read and write .las and .laz files, plot point clouds, compute metrics using an area-based approach, compute digital canopy models, thin lidar data, manage a catalog of datasets, automatically extract ground inventories, process a set of tiles using multicore processing, individual tree segmentation, classify data from geographic data, and provides other tools to manipulate LiDAR data in a research and development context.

Development of the lidR package between 2015 and 2018 was made possible thanks to the financial support of the AWARE project (NSERC CRDPJ 462973-14); grantee Prof Nicholas Coops.

Content

  1. Key features
  2. Some examples
  3. Install lidR
  4. Changelog

Key features

Some examples

Read and display a las file

In R-fashion style the function plot, based on rgl, enables the user to display, rotate and zoom a point cloud. Because rgl has limited capabilities with respect to large datasets, we also made a package PointCloudViewer with greater display capabilites.

las = readLAS("<file.las>")
plot(las)

Compute a canopy height model

lidR has several algorithms from the literature to compute canopy height models either point-to-raster based (grid_canopy) or triangulation based (grid_tincanopy). This allows testing and comparison of some methods that rely on a CHM, such as individual tree segmentation or the computation of a canopy roughness index.

las = readLAS("<file.las>")

# Khosravipour et al. pitfree algorithm
th = c(0,2,5,10,15)
edge = c(0, 1.5)
chm = grid_tincanopy(las, thresholds = th, max_edge = edge)

plot(chm)

Read and display a catalog of las files

lidR enables the user to manage, use and process a catalog of las files. The function catalog builds a LAScatalog object from a folder. The function plot displays this catalog on an interactive map using the mapview package.

ctg = catalog("<folder/>")
ctg@crs = sp::CRS("+proj=utm +zone=17")

# CRS set: will be displayed on an interactive map
plot(ctg)

From a LAScatalog object the user can (for example) extract some regions of interest (ROI) with lasclip or catalog_queries. Using a catalog for the extraction of the ROI guarantees fast and memory-efficient clipping. LAScatalog objects allow many other manipulations that are usually done with multicore processing, where possible.

Individual tree segmentation

The lastrees function has several algorithms from the literature for individual tree segmentation, based either on the digital canopy model or on the point-cloud. Each algorithm has been coded from the source article to be as close as possible to what was written in the peer-reviwed papers. Our goal is to make published algorithms usable, testable and comparable.

las = readLAS("<file.las>")

lastrees(las, algorithm = "li2012")

col = random.colors(200)
plot(las, color = "treeID", colorPalette = col)

Other tools

lidR has many other tools and is a continuouly improved package. If it does not exist in lidR please ask us for a new feature, and depending on the feasability we will be glad to implement your requested feature.

Install lidR

  • The latest released version from CRAN with
install.packages("lidR")
  • The latest stable development version from github with
devtools::install_github("Jean-Romain/rlas", dependencies=TRUE)
devtools::install_github("Jean-Romain/lidR", dependencies=TRUE)
  • The latest unstable development version from github with
devtools::install_github("Jean-Romain/rlas", dependencies=TRUE, ref="devel")
devtools::install_github("Jean-Romain/lidR", dependencies=TRUE, ref="devel")

To install the package from github make sure you have a working development environment.

  • Windows: Install Rtools.exe.
  • Mac: Install Xcode from the Mac App Store.
  • Linux: Install the R development package, usually called r-devel or r-base-dev
  • The latest stable development version from github with

Changelog

See changelogs on NEW.md

Copy Link

Version

Install

install.packages('lidR')

Monthly Downloads

4,932

Version

1.6.1

License

GPL-3

Issues

Pull Requests

Stars

Forks

Last Published

August 22nd, 2018

Functions in lidR (1.6.1)

LAD

Leaf area density
as.spatial

Transform a lidR object into sp object
grid_metrics3d

Voxelize the space and compute metrics for each voxel
grid_canopy

Canopy surface model
gap_fraction_profile

Gap fraction profile
LAScatalog-class

An S4 class to represent a set of .las or .laz files
-,LAS,RasterLayer-method

Convenient operator to lasnormalize
LASheader-class

An S4 class to represent the header read in a .las or .laz file
catalog_retile

Retile a catalog
LASheader

Create a LASheader object
LAScluster-class

An S4 class to represent an arbitrary region in the catalog.
catalog_select

Select LAS files interactively
catalog_queries

Extract LiDAR data based on a set of coordinates
catalog_options

laspulse

Retrieve individual pulses
grid_terrain

Digital Terrain Model
lasnormalize

Subtract digital terrain model
as.lasmetrics

Set the class 'lasmetrics' to a data.frame or a data.table
catalog_index

Retrieve the files containing ROIs
lastrees

Individual tree segmentation
lascolor

Compute the color from RGB fields
catalog_reshape

Reshape (retile) a catalog
entropy

Normalized Shannon diversity index
VCI

Vertical Complexity Index
lasclassify

Classify LiDAR points from source data
extent,LAS-method

Extent
plot.LAS

Plot LiDAR data
lasclip

Clip LiDAR points
lidrpalettes

Palettes
lasfilter

Return points with matching conditions
rumple_index

Rumple index of roughness
lastrees_dalponte

Individual tree segmentation
area

Surface covered by a LAS object or by a LAScatalog.
grid_catalog

Apply a grid function over a catalog
as.list.LASheader

Transform to a list
catalog_apply

Apply a user-defined function to an entire catalog in a continuous way
grid_hexametrics

Compute metrics for hexagonal cells
catalog

Build a catalog of las tiles/files
stdmetrics

Predefined standard metrics functions
lasfilterdecimate

Thin LiDAR data
set.colors

Automatic colorization
grid_metrics

Rasterize the space and compute metrics for each cell
lasground

Classify points as ground or not ground
lassmooth

Smooth a point cloud
lasmetrics

Compute metrics for a cloud of points
lassnags

Snag classification
grid_density

Map the pulse or point density
lastrees_silva

Individual tree segmentation
grid_tincanopy

Canopy height model based on a triangulation.
lidR-deprecated

Deprecated function(s) in the lidR package
lastrees_watershed

Individual tree segmentation
summary.LAS

LiDAR data summary
tree_detection

Tree top detection based on local maxima filters
plot.LAScatalog

Plot a LAScatalog object
tree_hulls

Compute the hull of each tree.
lasfilters

Predefined filters
lasfiltersurfacepoints

Filter the surface points
lasadddata

Add data into a las object
lidr_options

Options Settings for the lidR package
plot.lasmetrics

Plot an object of class lasmetrics in 2D
lasflightline

Retrieve individual flightlines
lasroi

Select a region of interest interactively
writeLAS

Write a las or laz file
lasscanline

Retrieve individual scanline
plot.lashexametrics

Plot an object of class lashexametrics in 2D
lastrees_li

Individual tree segmentation (deprecated)
lastrees_li2

Individual tree segmentation
plot3d

Plot a wireframe of a RasterLayer or a lasmetrics object
readLAS

Read .las or .laz files
tree_metrics

Compute metrics for each tree
util_makeZhangParam

Parameters for progressive morphological filter
plot.lasmetrics3d

Plot voxelized LiDAR data
as.raster.lasmetrics

Transform a lasmetrics object into a spatial RasterLayer object
LAS-class

An S4 class to represent the data read in a .las or .laz file
LAS

Create a LAS object