pe_coordsys_to_adjhcs |
Converts geographic or projected coordinates to an adjusted horizontal coordinate system
int pe_coordsys_to_adjhcs (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 forward transformation to the specified array of points.
Number of points adjusted successfully
double pnt[2][2] = {{10,20},{10,30}};
int out = pe_coordsys_to_adjhcs(adjcs,2,pnt);