Extracts datasets from SMAP data files.
extract_smap(data, name)
A data frame produced by download_smap()
that specifies
input files from which to extract data.
The path in the HDF5 file pointing to data to extract.
Returns a SpatRaster object.
The arguments group
and dataset
must refer specifically the
group and name within group for the input file, such as can be obtained with
list_smap()
. This function will extract that particular dataset,
returning a Raster object.
if (FALSE) {
files <- find_smap(id = "SPL4SMGP", dates = "2015-03-31", version = 4)
downloads <- download_smap(files[1, ])
sm_raster <- extract_smap(downloads, name = '/Geophysical_Data/sm_surface')
}