inst/examples/eddy_db.R

library(neonstore)


index <- neon_index(product="DP4.00200.001", ext = "h5", deprecated = FALSE)

df <- as_tibble(neonstore:::read_eddy(index$path[[1]]))
out <- neonstore:::stack_eddy(index$path[1:4])
df <- neonstore:::neon_stack(index$path)

## Manual extraction  ugh! Consider the more modern hdf5r package
ex <- index$path[[1]]
level <- "dp04"

library(hdf5r)
h5 <- H5File$new(ex)
h5
h5[["BART"]]
h5[["BART"]][["dp04"]]
nsae <- h5[["BART"]][["dp04"]][["data"]][["fluxCo2"]][["nsae"]] 
df <- nsae$read()



## rhdf5, like neonUtilities
meta <- tibble::as_tibble(rhdf5::h5ls(ex))
data <- meta[meta$otype == "H5I_DATASET",]
series <- unique(base::paste(data$group, data$name, sep = "/"))
series <- unique(series)
series <- series[ grepl(level, series) ]
series <- series[ !grepl("foot/grid", series) ]
dat <- lapply(series, function(x) rhdf5::h5read(ex, x, read.attributes=T))
## and merge these data tables, 
## adjusting `flux` column name to reflect series name
## Propagate the units information in attributes
## convert datetimes from character strings
rhdf5::h5closeAll()

Try the neonstore package in your browser

Any scripts or data that you put into this service are public.

neonstore documentation built on June 22, 2024, 11:15 a.m.