|
GRASS GIS 7 Programmer's Manual
7.9.dev(2021)-e5379bbd7
|
#include <stdlib.h>#include <math.h>#include <grass/gis.h>#include <grass/imagery.h>#include <signal.h>
Go to the source code of this file.
Macros | |
| #define | M(row, col) m->v[(((row)-1)*(m->n))+(col)-1] |
| #define | MSUCCESS 1 /* SUCCESS */ |
| #define | MNPTERR 0 /* NOT ENOUGH POINTS */ |
| #define | MUNSOLVABLE -1 /* NOT SOLVABLE */ |
| #define | MMEMERR -2 /* NOT ENOUGH MEMORY */ |
| #define | MPARMERR -3 /* PARAMETER ERROR */ |
| #define | MINTERR -4 /* INTERNAL ERROR */ |
| #define | MAXORDER 3 /* HIGHEST SUPPORTED ORDER OF TRANSFORMATION */ |
Functions | |
| int | I_georef (double e1, double n1, double *e, double *n, double E[], double N[], int order) |
| int | I_compute_georef_equations (struct Control_Points *cp, double E12[], double N12[], double E21[], double N21[], int order) |
| #define MAXORDER 3 /* HIGHEST SUPPORTED ORDER OF TRANSFORMATION */ |
Definition at line 58 of file georef.c.
Referenced by I_compute_georef_equations().
| #define MPARMERR -3 /* PARAMETER ERROR */ |
Definition at line 55 of file georef.c.
Referenced by I_compute_georef_equations(), and I_georef().
| #define MSUCCESS 1 /* SUCCESS */ |
Definition at line 51 of file georef.c.
Referenced by I_georef().
| int I_compute_georef_equations | ( | struct Control_Points * | cp, |
| double | E12[], | ||
| double | N12[], | ||
| double | E21[], | ||
| double | N21[], | ||
| int | order | ||
| ) |