pe_proj_to_geog |
Converts a projected coordinate system to geographic coordinates
int pe_proj_to_geog (PE_PROJCS projcs, int n, double coord[ ][2]);
projcs | Projected coordinate system object |
n | Number of points |
coord | Array of points |
Applies the map projections inverse transformation to the specified array of points.
Number of points projected successfully
double pnt[2][2] = {{10,20},{10,30}};
int out = pe_proj_to_geog(pcs,2,pnt);