Module Values.PropertySource

Represents a single searchable property to search on.

Sourcetype nonrec t = {
  1. eoCloudCover : EoCloudCoverInput.t option;
    (*

    The structure representing EoCloudCover property filter containing a lower bound and upper bound.

    *)
  2. landsatCloudCoverLand : LandsatCloudCoverLandInput.t option;
    (*

    The structure representing Land Cloud Cover property filter for Landsat collection containing a lower bound and upper bound.

    *)
  3. platform : PlatformInput.t option;
    (*

    The structure representing Platform property filter consisting of value and comparison operator.

    *)
  4. viewOffNadir : ViewOffNadirInput.t option;
    (*

    The structure representing ViewOffNadir property filter containing a lower bound and upper bound.

    *)
  5. viewSunAzimuth : ViewSunAzimuthInput.t option;
    (*

    The structure representing ViewSunAzimuth property filter containing a lower bound and upper bound.

    *)
  6. viewSunElevation : ViewSunElevationInput.t option;
    (*

    The structure representing ViewSunElevation property filter containing a lower bound and upper bound.

    *)
}
Sourceval make : ?eoCloudCover:??? -> ?landsatCloudCoverLand:??? -> ?platform:??? -> ?viewOffNadir:??? -> ?viewSunAzimuth:??? -> ?viewSunElevation:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `Float of Float_.t | `String of String_.t ]) 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