pe_adjhcs_to_coordsys

Converts an adjusted horizontal coordinates to geographic or projected coordinates

Usage syntax

int pe_adjhcs_to_coordsys (PE_ADJHCS adjhcs, int n, double coord[ ][2]);

Parameters
adjhcs Adjusted horizontal coordinate system object
n Number of points
coord[ ][2] Array of points
Description

This function applies the adjusted horizontal coordinate system's inverse transformation to the specified array of points.

Returns

Number of points adjusted successfully

Examples

double pnt[2][2] = {{10.4493,20.185},{10.0272,30.476}};
int out = pe_adjhcs_to_coordsys(adjcs,2,pnt);