Latitude(Double, Double, Double) Constructor

Creates a new instance of Latitude.

Definition

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

Parameters

degrees  Double
The total degrees of latitude for this coordinate, from 90 to -90.
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 Latitude. The individual components are not validated.

See Also