View source: R/get.AIMS.data.R
get.AIMS.data | R Documentation |
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 |
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 |
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.