Longitude(Double, Double, Double) Constructor

Creates a new instance of Longitude.

Definition

Namespace: InnerDrive.Geography
Assembly: InnerDrive.Geography (in InnerDrive.Geography.dll) Version: 5.2.9017.0
C#
public Longitude(
	double degrees,
	double minutes,
	double seconds
)

Parameters

degrees  Double
The total degrees of latitude for this coordinate, from 180 to -180.
minutes  Double
The minutes of latitude for this coordinate, from 0 to 59.9...
seconds  Double
The seconds of latitude for this coordinate, from 0 to 59.9...

Remarks

The constructor simply adds degrees, minutes, and seconds together to find a Value for this Longitude. The individual components are not validated.

See Also