metadata,SoilProfileCollection-method | R Documentation |
Get metadata from SoilProfileCollection. Result is a list. Two entries (aqp_df_class, depth_units) should not be edited in the metadata list directly. There are methods that facilitate changing them – and propagating their changes throughout the collection. Otherwise, metadata list is a free-form slot used to store arbitrary information about the data, how it was collected, citations, etc.
## S4 method for signature 'SoilProfileCollection'
metadata(object)
## S4 replacement method for signature 'SoilProfileCollection'
metadata(object) <- value
object |
A SoilProfileCollection |
value |
A named list (see examples) |
data(sp5)
# replace default metadata with itself
metadata(sp5) <- metadata(sp5)
# set new metadata attribute value
metadata(sp5)$newvalue <- 'foo'
# get metadata attribute
metadata(sp5)$newvalue
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.