PrimeMeridian Constructor

WRAPPER_API PrimeMeridian()

WRAPPER_API PrimeMeridian(const PrimeMeridian &source)

 

Description

The PrimeMeridian constructor creates a new instance of the PrimeMeridian class.  The default constructor takes no arguments and produces a PrimeMeridian that is equivalent to the Greenwich Meridian.  The second constructor is a copy-constructor, which produces a PrimeMeridian with the same value as the PrimeMeridian passed as argument.

 

Example

void PrimeMeridian_PrimeMeridian()

{

GEOCALCPBW_NAMESPACE::PrimeMeridian pm;

pm.set_Name(L"Madrid");

GEOCALCPBW_NAMESPACE::AngularValue lon;

lon.set_InDegrees(-3.68793888888889);

pm.set_Longitude(lon);

}