Module Values.BandMathConfigInputSource

Input structure for the BandMath operation type. Defines Predefined and CustomIndices to be computed using BandMath.

Sourcetype nonrec t = {
  1. customIndices : CustomIndicesInput.t option;
    (*

    CustomIndices that are computed.

    *)
  2. predefinedIndices : StringListInput.t option;
    (*

    One or many of the supported predefined indices to compute. Allowed values: NDVI, EVI2, MSAVI, NDWI, NDMI, NDSI, and WDRVI.

    *)
}
Sourceval make : ?customIndices:??? -> ?predefinedIndices:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] list | `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of String_.t ]) list ] list ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t