Module Values.LandsatCloudCoverLandInputSource

The structure representing Land Cloud Cover property for Landsat data collection.

Sourcetype nonrec t = {
  1. lowerBound : Float_.t;
    (*

    The minimum value for Land Cloud Cover property filter. This will filter items having Land Cloud Cover greater than or equal to this value.

    *)
  2. upperBound : Float_.t;
    (*

    The maximum value for Land Cloud Cover property filter. This will filter items having Land Cloud Cover less than or equal to this value.

    *)
}
Sourceval context_ : string
Sourceval make : lowerBound:Float_.t -> upperBound:Float_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Float of Float_.t ]) 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