get_East Method

WRAPPER_API LinearValue &get_East()

WRAPPER_API const LinearValue &get_East() const

 

Description

The get_East method returns the LinearValue that gives the East-coordinate of this ProjectedPoint.  The East-coordinate gives the distance in the East/West extent from this point to the origin of the ProjectedCoordSys.

 

Example

void ProjectedPoint_getEast()

{

GeoCalcPBW::ProjectedPoint pt;

pt.get_East().set_InMeters(12);

pt.get_North().set_InMeters(-589);

pt.get_Height().set_InMeters(42.88);

}