| pe_adjhcs_to_coordsys |
Converts an adjusted horizontal coordinates to geographic or projected coordinates
int pe_adjhcs_to_coordsys (PE_ADJHCS adjhcs, int n, double coord[ ][2]);
| adjhcs | Adjusted horizontal coordinate system object |
| n | Number of points |
| coord[ ][2] | Array of points |
This function applies the adjusted horizontal coordinate system's inverse transformation to the specified array of points.
Number of points adjusted successfully
double pnt[2][2] = {{10.4493,20.185},{10.0272,30.476}};
int out = pe_adjhcs_to_coordsys(adjcs,2,pnt);