lidar_get_data | R Documentation |
lidar_get_data
is a wrapper for the $get_data
method of
lfcLiDAR
objects. See also lidar
.
lidar_get_data(
object,
table_name,
variables = c("AB", "BAT", "BF", "CAT", "DBH", "DEN", "HM", "LAI", "REC", "VAE")
)
object |
|
table_name |
character vector of lenght 1 indicating the table to retrieve |
variables |
character vector indicating variables for which data is returned. If not provided, all variables stats are returned |
Precalculated aggregated values for
Catalonia, in the lidar_catalunya
table
Provinces, in the lidar_provincias
table
Veguerias, in the lidar_veguerias
table
Regions, in the lidar_comarcas
table
Municipalities, in the lidar_municipalities
table
National Parks
Natura 2000 Network
An sf object with the aggregated values for each administrative division or natural area for the variables requested
Other LiDAR functions:
lidar_avail_tables()
,
lidar_clip_and_stats()
,
lidar_describe_var()
,
lidar_get_lowres_raster()
,
lidar_point_value()
,
lidar()
if (interactive()) {
lidardb <- lidar()
# provinces data for DBH and AB
provinces_data <- lidar_get_data(lidardb, 'lidar_provincias', c('AB', 'DBH'))
provinces_data
# lidardb is an R6 object, so the previous example is the same as:
lidardb$get_data('lidar_provincias', c('AB', 'DBH'))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.