get_Height Method

WRAPPER_API LinearValue &get_Height()

WRAPPER_API const LinearValue &get_Height() const

 

Description

The get_Height method returns the LinearValue that gives the height coordinate.

 

Example

void GeodeticPoint_getHeight(GeoCalcPBW::DataSource & data)

{

GeoCalcPBW::GeodeticPoint pt(3);

pt.get_Latitude().set_InRadians(-.896);

pt.get_Longitude().set_InRadians(1.006);

pt.get_Height().set_InMeters(925.4);

}