pe_proj_to_geog

Converts a projected coordinate system to geographic coordinates

Usage syntax

int pe_proj_to_geog (PE_PROJCS projcs, int n, double coord[ ][2]);

Parameters
projcs Projected coordinate system object
n Number of points
coord Array of points
Description

Applies the map projection’s inverse transformation to the specified array of points.

Returns

Number of points projected successfully

Examples

double pnt[2][2] = {{10,20},{10,30}};
int out = pe_proj_to_geog(pcs,2,pnt);