module Options : sig ... end
module Operation : sig ... end
val suggested_warp_output : Data_set.t ‑> _ Transform.t ‑> warp_output_t
suggested_warp_output ds transform
will suggest dimensions and
Geo_transform.t parameters for a destination data set to warp ds
into
based on the dimensions of ds
and the parameters defined in
transform
.
val reproject_image : ?memory_limit:float ‑> ?max_error:float ‑> ?options:_ Options.t ‑> ?src_wkt:string ‑> ?dst_wkt:string ‑> src:Data_set.t ‑> dst:Data_set.t ‑> resample_t ‑> unit
reproject_image ?memory_limit ?max_error ?options ?src_wkt ?dst_wkt ~src ~dst alg
reprojects the image src
to dst
, overwriting dst
in the process.
src
and dst
.
Defaults to 0.0
.src
.dst
.val create_and_reproject_image : ?memory_limit:float ‑> ?max_error:float ‑> ?options:_ Options.t ‑> ?src_wkt:string ‑> ?dst_wkt:string ‑> ?create_options:string list ‑> Data_set.t ‑> filename:string ‑> Driver.t ‑> resample_t ‑> unit
create_and_reproject_image ?memory_limit ?max_error ?options
?src_wkt ?dst_wkt ?create_options src filename driver alg
reprojects the image src
to filename
.
src
and dst
.
Defaults to 0.0
.src
.filename
.
Defaults to the same projection as src
.filename
.val auto_create_warped_vrt : ?src_wkt:string ‑> ?dst_wkt:string ‑> ?max_error:float ‑> ?options:_ Options.t ‑> Data_set.t ‑> resample_t ‑> Data_set.t
auto_create_warped_vrt ?src_wkt ?dst_wkt ?max_error ?options src alg
creates a virtual dataset warped from src
.
src
.filename
.
Defaults to the same projection as src
.src
and dst
.
Defaults to 0.0
.