Trait gdal::GeoTransformEx

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

Extension methods on GeoTransform

Required Methods

Apply GeoTransform to x/y coordinate.

Wraps GDALApplyGeoTransform.

Example

See GeoTransform

Implementors