LongitudeTotalSeconds Property

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

Definition

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

Property Value

Double

Implements

IDmsCoordinateTotalSeconds

Remarks

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

Example

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

See Also