pe_vtmethod_forward

Retrieves the forward function to transform between vertical coordinate systems

Usage syntax

PE_VTMETHFUNC pe_vtmethod_forward (PE_VTMETHOD vtmethod);

Parameters
vtmethod The vertical transformation method object
Description

Pe_vtmethod_forward returns the function to transform between vertical coordinate systems in the forward direction. Transformations are defined in a particular direction. It is often possible to reverse or inverse the transformation.

Returns

On success, returns the vertical transformation method forward transformation; on failure, returns a null pointer.

Examples

PE_VTMETHOD egm96bilinear =
     pe_vtmethod_new("EGM96_bilinear", &egm96_f, &egm96_i);
PE_VTMETHFUNC fwd =pe_vtmethod_forward(egm96bilinear);