Structure containing georeferencing information for transforming between geographic and projected/pixel coordinate systems.
More...
|
| int | status |
| | Status of the georeferencing (0 = valid, other values indicate errors)
|
| |
| int | count |
| | Number of reference points used.
|
| |
| int | order |
| | Polynomial order for the transformation (1, 2, or 3)
|
| |
| double * | tx |
| | Array of x-coordinates in target (typically pixel) space.
|
| |
| double * | ty |
| | Array of y-coordinates in target (typically pixel) space.
|
| |
| double * | lon |
| | Array of longitudes corresponding to reference points.
|
| |
| double * | lat |
| | Array of latitudes corresponding to reference points.
|
| |
| double * | pwx |
| | Polynomial coefficients for pixel-to-world longitude transformation.
|
| |
| double * | pwy |
| | Polynomial coefficients for pixel-to-world latitude transformation.
|
| |
| double * | wpx |
| | Polynomial coefficients for world-to-pixel x transformation.
|
| |
| double * | wpy |
| | Polynomial coefficients for world-to-pixel y transformation.
|
| |
| int | txmax |
| | Maximum x value in target space.
|
| |
| int | tymax |
| | Maximum y value in target space.
|
| |
| int | txmin |
| | Minimum x value in target space.
|
| |
| int | tymin |
| | Minimum y value in target space.
|
| |
| double | lonmax |
| | Maximum longitude in reference data.
|
| |
| double | lonmin |
| | Minimum longitude in reference data.
|
| |
| double | latmax |
| | Maximum latitude in reference data.
|
| |
| double | latmin |
| | Minimum latitude in reference data.
|
| |
Structure containing georeferencing information for transforming between geographic and projected/pixel coordinate systems.
This structure holds all necessary data to perform polynomial-based coordinate transformations between world coordinates (latitude/longitude) and target coordinates (typically pixels in a chart or image). It stores reference points, transformation coefficients, and boundary information used in the conversion process.
The structure supports transformations of different polynomial orders (1-3) with increasing accuracy and complexity. Polynomial coefficients are calculated using the Georef_Calculate_Coefficients() functions.
Definition at line 63 of file georef.h.