FCM_m_Chla_estimation: Estimate Chla concentration by algorithms blending via...

Description Usage Arguments Value Note References See Also Examples

View source: R/Chla_estimation.R

Description

To calculate the Chla concentration via blending remote sensing algorithms.

Usage

1

Arguments

Rrs

Data.frame of Remote sensing reflectance which should contain colname with (also at) Rrs665, Rrs709, and Rrs754 with unit sr^-1.

U

Data.frame of membership values which should have seven columns presenting seven membership values from each cluster produced by FCM-m

Value

Each column presents Chla concentration with unit ug/L or mg/m^3 by model BR, TBA, C6 and blending result. Also with the membership values of each cluster.

Note

The input of Rrs must have bands with wavelength at 665, 709 and 754 nm. See examples of using this function. (2020-02-28) The C6 model was replaced by Bloom model.

References

See Also

Other Algorithms: Chla concentration: Blend_Bi21(), Blend_FCMm(), Blend_Jac17(), Blend_Moo14(), Blend_Smith18(), Bloom(), C6(), Chla_FBA, Chla_Gil10_Git11, Chla_OCx_OLCI, Gons08(), NDCI_Mi12(), OCI_Hu12(), QAA_v5(), SCI_Shen10(), TC2(), run_all_Chla_algorithms()

Examples

1
2
3
4
5
6
7
library(FCMm)
data("WaterSpec35")
data("Bi_clusters")
Rrs <- WaterSpec35[,3:17]
result <- apply_FCM_m(Rrs=Rrs, option.plot=TRUE)
dt_Chla <- FCM_m_Chla_estimation(Rrs=data.frame(Rrs665=Rrs$`665`, 
  Rrs709=Rrs$`708.75`,Rrs754=Rrs$`753.75`),U=result$u)

bishun945/FCMm documentation built on Oct. 15, 2021, 6:43 p.m.