Module Values.ResamplingConfigInputSource

The structure representing input for resampling operation.

Sourcetype nonrec t = {
  1. algorithmName : AlgorithmNameResampling.t option;
    (*

    The name of the algorithm used for resampling.

    *)
  2. outputResolution : OutputResolutionResamplingInput.t;
    (*

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

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

    Bands used in the operation. If no target bands are specified, it uses all bands available in the input.

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