Geo::GDAL
2.3
|
An array of affine transformation coefficients.
More...
Public Member Functions | |
public method | Apply (scalar x, scalar y) |
public method | Inv () |
public method | NorthUp () |
public method | new (array params) |
An array of affine transformation coefficients.
The geo transformation has the form
where
(column,row) is the location in cell coordinates, and
(x,y) is the location in projection coordinates, or vice versa.
A Geo::GDAL::GeoTransform object is a reference to an anonymous array [a,b,c,d,e,f].
public method Geo::GDAL::GeoTransform::Apply | ( | scalar | x, |
scalar | y | ||
) |
Object method.
x | Column or x, or a reference to an array of columns or x's |
y | Row or y, or a reference to an array of rows or y's |
public method Geo::GDAL::GeoTransform::Inv | ( | ) |
Object method.
public method Geo::GDAL::GeoTransform::new | ( | array | params | ) |
Class method.
params | nothing, a reference to an array [a,b,c,d,e,f], a list (a,b,c,d,e,f), or named parameters - GCPs A reference to an array of Geo::GDAL::GCP objects. - ApproxOK Minimize the error in the coefficients (integer, default is 1 (true), used with GCPs). - Extent A Geo::GDAL::Extent object used to obtain the coordinates of the up left corner position. - CellSize The cell size (width and height) (default is 1, used with Extent). |
public method Geo::GDAL::GeoTransform::NorthUp | ( | ) |