Query available trait data associated with a given pft and a list of traits
Arguments
- ids
vector of species or cultivar id's from trait database
- priors
vector of parameters for which priors have been specified
- con
database connection object
- update.check.only
if TRUE, returns results but does not print summaries
- ids_are_cultivars
if TRUE, ids is a vector of cultivar IDs, otherwise they are species IDs
Examples
if (FALSE) { # \dontrun{
con <- db.open(your_settings_here)
species <- query.pft_species('ebifarm.c4crop')
spstr <- vecpaste(species$id)
trvec <- c('leafN', 'SLA')
trait.data <- query.traits(spstr, trvec, con)
} # }