This package can be used to easily access the data of the EBV netCDFs which can be downloaded from the EBV Data Portal. It also provides some basic visualization. Advanced users can build their own netCDFs following the EBV structure.
The EBV netCDF structure is designed to hold Essential Biodiversity Variables. This concept is further described here. The files are based on the Network Common Data Format (netCDF). Additionally, it follows the Climate and Forecast Conventions (CF, version 1.8) and the Attribute Convention for Data Discovery (ACDD, version 1.3).
The structure allows several datacubes per netCDF file. These cubes have four dimensions: longitude, latitude, time and entity, whereby the last dimension can, e.g., encompass different species or groups of species, ecosystem types or other. The usage of hierarchical groups enables the coexistence of multiple data cubes. All cubes share the same dimensions. The first level (netCDF group) are scenarios, e.g., the modelling for different Shared Socioeconomic Pathways (SSP) scenarios. The second level (netCDF group) are metrics, e.g., the percentage of protected area per pixel and its proportional loss over a certain time span per pixel. All metrics are repeated per scenario, if any are present.
├── scenario_1
│ └── metric_1
│ └── ebv_cube [lon, lat, time, entity]
└── scenario_2
└── metric_2
└── ebv_cube [lon, lat, time, entity]
Just keep in mind: All EBV netCDF always have a metric. But they may or may not have a scenario. The resulting datacubes hold the data. These datacubes are 4D.
You can install the ebvcube packages with:
#get the current version on CRAN
install.packages('ebvcube')
#install the latest version from GitHub
::install_github('https://github.com/LuiseQuoss/ebvcube/tree/dev') devtools
The example data set used in this README is a spatial subset (African continent) of the Local bird diversity (cSAR/BES-SIM) data set by Ines Martins.
With the following two functions you get the metadata of a specific EBV netCDF file. First we take a look at some basic metadata of that file. The properties encompass much more information!
library(ebvcube)
#set the path to the file
<- system.file(file.path("extdata","martins_comcom_subset.nc"), package="ebvcube")
file
#read the properties of the file
<- ebv_properties(file, verbose=FALSE)
prop.file
#take a look at the general properties of the data set - there are more properties to discover!
@general[1:4]
prop.file#> $title
#> [1] "Local bird diversity (cSAR/BES-SIM)"
#>
#> $description
#> [1] "Changes in bird diversity at 1-degree resolution caused by land use, estimated by the cSAR model for 1900-2015 using LUH2.0 historical reconstruction of land-use."
#>
#> $ebv_class
#> [1] "Community composition"
#>
#> $ebv_name
#> [1] "Taxonomic and phylogenetic diversity"
slotNames(prop.file)
#> [1] "general" "spatial" "temporal" "metric" "scenario" "ebv_cube"
Now let’s get the paths to all possible datacubes. The resulting data.frame includes the paths and also descriptions of the metric and/or scenario and/or entity. The paths basically consist of the nested structure of scenario, metric and the datacube.
<- ebv_datacubepaths(file, verbose=FALSE)
datacubes
datacubes#> datacubepaths metric_names
#> 1 metric_1/ebv_cube Relative change in the number of species (%)
#> 2 metric_2/ebv_cube Absolute change in the number of species
In the next step we will get the properties of one specific datacube - fyi: the result also holds the general file properties from above.
<- ebv_properties(file, datacubes[1,1], verbose=FALSE)
prop.dc @metric
prop.dc#> $name
#> [1] "Relative change in the number of species (%)"
#>
#> $description
#> [1] "Relative change in the number of species (S) using the year 1900 as reference (e.g. -50 corresponds to a decrease in 50% of the number of species in the cell since 1900, (S_year-S_1900)/S_1900*100)"
To discover the spatial distribution of the data, you can plot a map of the datacube that we just looked at. It has 12 timesteps. Here we look at the first one.
#plot the global map
<- datacubes[2,1]
dc ebv_map(file, dc, entity=1, timestep = 1, classes = 9,
verbose=FALSE, col_rev = TRUE)
It’s nice to see the global distribution, but how is the change of that datacube (non forest birds) over time? Let’s take a look at the average. The function returns the values, catch them!
#get the averages and plot
<- ebv_trend(file, dc, entity=1, verbose=FALSE) averages
averages#> [1] 0.6140731 1.2972444 2.2045310 3.6016083 6.4691830 8.8957375
#> [7] 9.7711291 10.3299345 10.9822654 11.5685090 11.9421034 12.3869482
It would be cool to have that for other indicators as well? Check out the different options for ‘method’.
Before you actually load the data it may be nice to get an impression of the value range and other basic measurements.
#info for whole dataset
<- ebv_analyse(file, dc, entity=1, verbose=FALSE)
measurements #see the included measurements
names(measurements)
#> [1] "min" "q25" "q50" "mean" "q75" "max" "std" "n" "NAs"
#check out the mean and the number of pixels
$mean
measurements#> [1] 0.6140731
$n
measurements#> [1] 7650
#info for a subset defined by a bounding box
#you can also define the subset by a Shapefile - check it out!
<- c(-26, 64, 30, 38)
bb <- ebv_analyse(file,dc, entity = 1, subset = bb, verbose=FALSE)
measurements.bb #check out the mean of the subset
$mean
measurements.bb#> [1] 0.3241093
$n
measurements.bb#> [1] 720
To access the first three timesteps of the data you can use the following:
#load whole data as array for two timesteps
<- ebv_read(file, dc, entity = 1, timestep = 1:3, type = 'a')
data dim(data)
#> [1] 85 90 3
You can also get a spatial subset of the data by providing a Shapefile.
#load subset from shapefile (Cameroon)
<- system.file(file.path('extdata','cameroon.shp'), package="ebvcube")
shp <- ebv_read_shp(file, dc, entity=1, shp = shp, timestep = c(1,2,3), verbose=FALSE)
data.shp dim(data.shp)
#> [1] 12 9 3
#very quick plot of the resulting raster plus the shapefile
<- terra::vect(shp)
borders ::ggplot() +
ggplot2::geom_spatraster(data = data.shp[[1]]) +
tidyterra::geom_spatvector(data = borders, fill = NA) +
tidyterra::scale_fill_fermenter(na.value=NA, palette = 'YlGn', direction = 1) +
ggplot2::theme_classic() ggplot2
Imagine you have a very large dataset but only limited memory. The package provides the possibility to load the data as a DelayedArray. The ebv_write() function helps you to write that data back on disk properly. Look into the manual to obtain more information.
First of all, you have to insert all the metadata in the EBV Data Portal and then use the resulting text file (json format) to create an empty netCDF which complies to the EBV netCDF structure, i.e., it has the correct structure mapped to your data and holds the metadata. Additionally to that (json) text file, the function needs a list of all entities the netCDF (see help page for detailed information) will encompass and geospatial information such as the coordinate reference system.
The example is based on the Local bird diversity (cSAR/BES-SIM).
#paths
<- system.file(file.path('extdata','metadata.json'), package="ebvcube")
json <- file.path(system.file(package="ebvcube"),'extdata','test.nc')
newNc <- c('forest bird species','non-forest bird species','all bird species')
entities #defining the fillvalue - optional
<- -3.4e+38
fv #create the netCDF
ebv_create(jsonpath = json, outputpath = newNc, entities = entities,
epsg = 4326, extent = c(-180, 180, -90, 90), resolution = c(1, 1),
fillvalue = fv, overwrite=TRUE, verbose=FALSE)
#needless to say: check the properties of your newly created file to see if you get what you want
#especially the entity_names from the slot general should be checked to see if your csv was formatted the right way
print(ebv_properties(newNc, verbose=FALSE)@general$entity_names)
#> [1] "forest bird species" "non-forest bird species"
#> [3] "all bird species"
#check out the (still empty) datacubes that are available
<- ebv_datacubepaths(newNc, verbose=FALSE)
dc.new print(dc.new)
#> datacubepaths metric_names
#> 1 metric_1/ebv_cube Relative change in the number of species (%)
#> 2 metric_2/ebv_cube Absolute change in the number of species
Hint: You can always take a look at your netCDF in Panoply provided by NASA. That’s very helpful to understand the structure.
In the next step you can add your data to the netCDF from GeoTiff files or in-memory objects (matrix/array). You need to indicate the datacubepath the data belongs to. You can add your data timestep per timestep, in slices or all at once. You can simply add more data to the same datacube by changing the timestep definition.
#path to tif with data
<- system.file(file.path('extdata'), package="ebvcube")
root <- c('entity1.tif', 'entity2.tif', 'entity3.tif')
tifs <- file.path(root, tifs)
tif_paths
#adding the data
<- 1
entity for (tif in tif_paths){
ebv_add_data(filepath_nc = newNc, datacubepath=dc.new[1,1], entity = entity,
timestep=1:3, data = tif, band=1:3)
<- entity + 1
entity }
Ups! So you did a mistake and want to change the attribute?! No problem. Just use the upcoming function to change it.
ebv_attribute(newNc, attribute_name='units', value='Percentage', levelpath=dc.new[1,1])
#check the properties one more time - perfect!
print(ebv_properties(newNc, dc.new[1,1], verbose=FALSE)@ebv_cube$units)
#> [1] "Percentage"
In this case the levelpath corresponds to the datacube path. But you can also alter attributes at the metric or scenario level. See the manual for more info.
citation('ebvcube')
#>
#> To cite ebvcube in publications use:
#>
#> Quoss L, Fernandez N, Langer C, Valdez J, Pereira H (2023). _ebvcube:
#> Working with netCDF for Essential Biodiversity Variables_. German
#> Centre for Integrative Biodiversity Research (iDiv)
#> Halle-Jena-Leipzig, Germany. R package version 0.2.1,
#> <https://github.com/LuiseQuoss/ebvcube>.
#>
#> A BibTeX entry for LaTeX users is
#>
#> @Manual{,
#> title = {ebvcube: Working with netCDF for Essential Biodiversity Variables},
#> author = {Luise Quoss and Nestor Fernandez and Christian Langer and Jose Valdez and Henrique Miguel Pereira},
#> year = {2023},
#> note = {R package version 0.2.1},
#> organization = {German Centre for Integrative Biodiversity Research (iDiv) Halle-Jena-Leipzig},
#> address = {Germany},
#> url = {https://github.com/LuiseQuoss/ebvcube},
#> }
Functionality | Function | Description |
---|---|---|
Basic access | ebv_datacubepaths | Get all available data cubes in the netCDF |
ebv_properties | Get all the metadata of the netCDF | |
ebv_download | Download EBV netCDFs from the EBV Portal | |
Data access | ebv_read | Read the data |
ebv_read_bb | Read a spatial subset given by a bounding box | |
ebv_read_shp | Read a spatial subset given by a Shapefile | |
ebv_analyse | Get basic measurements of the data | |
ebv_write | Write manipulated data back to disc | |
Data visualization | ebv_map | Plot a map of the specified data slice |
ebv_trend | Plot the temporal trend | |
Data creation | ebv_create | Create a new EBV netCDF |
ebv_create_taxonomy | Create a new EBV netCDF with taxonomy info | |
ebv_add_data | Add data to the new netCDF | |
ebv_attribute | Change an attribute value |