LongitudeTotalMinutes Property

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

Definition

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

Property Value

Double

Implements

IDmsCoordinateTotalMinutes

Remarks

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

Example

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

See Also