Module Values.StackConfigInputSource

The input structure for Stacking Operation.

Sourcetype nonrec t = {
  1. outputResolution : OutputResolutionStackInput.t option;
    (*

    The structure representing output resolution (in target georeferenced units) of the result of stacking operation.

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

    A list of bands to be stacked in the specified order. When the parameter is not provided, all the available bands in the data collection are stacked in the alphabetical order of their asset names.

    *)
}
Sourceval make : ?outputResolution:??? -> ?targetBands:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] list | `Structure of (string * [> `Enum of string | `Structure of (string * [> `Enum of string | `Float of Float_.t ]) 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