LatitudeTotalDegrees Property

Gets the total number of Degrees for this Latitude including Minutes and Seconds.

Definition

Namespace: InnerDrive.Geography
Assembly: InnerDrive.Geography (in InnerDrive.Geography.dll) Version: 5.2.9017.0
C#
public double TotalDegrees {
	get;
 }

Property Value

Double

Implements

IDmsCoordinateTotalDegrees

Remarks

Assuming 60 Minutes per Degree, and 60 Seconds per Minute, this value is equal to D + M / 60 + S / 3600. (In theory, an implementation could use different ratios between members.)

Example

Given a Latitude of 42° 7' 30", the TotalDegrees value will be 42.125.

See Also