WRAPPER_API void set_Longitude(AngularValue &value)
The set_Longitude method sets the AngularValue by which this PrimeMeridian deviates from the Greenwich Meridian.
void PrimeMeridian_setLongitude()
{
GEOCALCPBW_NAMESPACE::PrimeMeridian pm;
pm.set_Name(L"Madrid");
GEOCALCPBW_NAMESPACE::AngularValue lon;
lon.set_InDegrees(-3.68793888888889);
pm.set_Longitude(lon);
}