Description Usage Arguments Value See Also Examples
This function computes the overall suitability scores and class of the land units.
1 | overall_suit(suit, method = NULL, interval = NULL)
|
suit |
an object of class suitability. |
method |
a character for the method for computing the overall suitability, choices are:
|
interval |
if |
A data frame with columns:
Score
- the overall suitability scores
Class
- the overall suitability classes
suit
, https://alstat.github.io/ALUES/
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | library(ALUES)
out <- suit("ricebr", terrain=MarinduqueLT, water=MarinduqueWater, temp=MarinduqueTemp, sow_month=1)
out[["terrain"]]
# Soil Overall Suitability
head(overall_suit(out[["soil"]]))
head(overall_suit(out[["soil"]], "average"))
head(overall_suit(out[["soil"]], "maximum"))
head(overall_suit(out[["soil"]], "average", c(0, 0.3, 0.35, 0.6, 1.0)))
# Water Overall Suitability
head(overall_suit(out[["water"]], "average"))
head(overall_suit(out[["water"]], "maximum"))
head(overall_suit(out[["water"]], "average", c(0, 0.3, 0.35, 0.6, 1.0)))
# Temperature Overall Suitability
head(overall_suit(out[["temp"]], "average"))
head(overall_suit(out[["temp"]], "maximum"))
head(overall_suit(out[["temp"]], "average", c(0, 0.3, 0.35, 0.6, 1.0)))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.