Loads AIMS dataset associated with a particular AIMS graph
The function creates a list of associated dataframes for particular AIMS graph objects. Currently these include one of more of $coords
$arc.length
$node.pa
.
get.AIMS.data(graph = "mur_full", supress.message = FALSE)
graph
: A character string defining one of the AIMS graphs codified in streamDAGs.
supress.message
: Logical. Supress message detailing objects created by function.The function radically simplifies code gymnastics required to obtain datasets associated AIMS graphs (see, for instance, Detaails in streamDAGs
).
Returns a list containg up to three dataframes: - coords: Spatial coordinates and other information from AIMS.node.coords
.
arc.length: Lengths of network, generally in km.
node.pa: Presence(1)/absence(0) of surface water at the node.
Ken Aho
streamDAGs
jd <- get.AIMS.data("jd_full", TRUE) head(jd$coords) head(jd$arc.length) head(jd$node.pa)
Useful links