Read GEDI Level1B data (Geolocated Waveforms)
This function reads GEDI level1B products: geolocated Waveforms
readLevel1B(level1Bpath)
level1Bpath |
File path pointing to GEDI level1B data. Data in HDF5 Hierarchical Data Format (.h5). |
Returns an S4 object of class "gedi.level1b" containing GEDI level1B data.
hdf5r::H5File
in the hdf5r package and
https://lpdaac.usgs.gov/products/gedi01_bv001/
# Specifying the path to GEDI level1B data (zip file) outdir = tempdir() level1B_fp_zip <- system.file("extdata", "GEDI01_B_2019108080338_O01964_T05337_02_003_01_sub.zip", package="rGEDI") # Unzipping GEDI level1B data level1Bpath <- unzip(level1B_fp_zip,exdir = outdir) # Reading GEDI level1B data (h5 file) level1b<-readLevel1B(level1Bpath=level1Bpath) close(level1b)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.