Create Flow-To-Suitable-Area Curve for Individual Reach (scaled by multiplier)

habitat_fsa_reach_scaled(
  reach,
  multiplier,
  habitat_type = "rearing",
  units = "ft"
)

Arguments

reach

Integer comid identifier for reach

multiplier

Numeric multiplier to scale flow

habitat_type

Either "rearing" (default) or "spawning"

units

Desired units for output, either "ft" for square ft per linear ft, or "ac" for total acres

Value

A tibble with columns for flow (flow_cfs) and suitable habitat (habitat)

Examples


habitat_fsa_reach_scaled(reach = 7978069, multiplier = 0.8)
#> # A tibble: 50 x 2
#>    flow_cfs habitat
#>       <dbl>   <dbl>
#>  1     50.1   0.146
#>  2     56.2   0.146
#>  3     63.1   0.146
#>  4     70.8   0.147
#>  5     79.4   0.148
#>  6     89.1   0.152
#>  7    100     0.152
#>  8    112.    0.156
#>  9    126.    0.159
#> 10    141.    0.162
#> # i 40 more rows