pe_coordsys_to_adjhcs

Converts geographic or projected coordinates to an adjusted horizontal coordinate system

Usage syntax

int pe_coordsys_to_adjhcs (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 forward transformation to the specified array of points.

Returns

Number of points adjusted successfully

Examples

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