View source: R/draw_simple_OCN.R
draw_simple_OCN | R Documentation |
Function that plots the non-aggregated OCN as calculated by create_OCN
.
draw_simple_OCN(OCN, thrADraw = 0.002 * OCN$FD$nNodes *
OCN$cellsize^2, riverColor = "#0066FF", easyDraw = NULL,
min_lwd = 0.5, max_lwd = 5, add = FALSE)
OCN |
A |
thrADraw |
Threshold drainage area value used to display the network. |
riverColor |
Color used to plot the river. |
easyDraw |
Logical. If |
min_lwd , max_lwd |
Minimum and maximum values of line width used to display the OCN (actual line width is proportional to the square root of drainage area). |
add |
Logical. If |
No output is returned.
# 1a) draw OCN with default settings
draw_simple_OCN(OCN_250_T)
# 1b) same as above, but with decreased thrADraw
draw_simple_OCN(OCN_250_T, thrADraw = 0.001 * OCN_250_T$dimX * OCN_250_T$dimY)
# 1c) same as the first example, but include the portion of network
# with drainage area lower than thrADraw
draw_simple_OCN(OCN_250_T, easyDraw = FALSE) # this will take some seconds
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.