Trait gdal::GeoTransformEx

source ·
pub trait GeoTransformEx {
    // Required methods
    fn apply(&self, pixel: f64, line: f64) -> (f64, f64);
    fn invert(&self) -> Result<GeoTransform>;
}
Expand description

Extension methods on GeoTransform

Required Methods§

source

fn apply(&self, pixel: f64, line: f64) -> (f64, f64)

Apply GeoTransform to x/y coordinate.

Wraps GDALApplyGeoTransform.

Example

See GeoTransform

source

fn invert(&self) -> Result<GeoTransform>

Implementors§