public PrimeMeridian()
public PrimeMeridian(const PrimeMeridian &source)
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.
void PrimeMeridian_PrimeMeridian()
{
GeoCalc.PrimeMeridian pm;
pm.set_Name(L"Madrid");
GeoCalc.AngularValue lon;
lon.set_InDegrees(-3.68793888888889);
pm.set_Longitude(lon);
}