/// <summary> /// Expresses the value of the destination GPS coordinates in terms of degrees, minutes, and seconds. Ex: "46°32'15.24" N 88°53'25.82" W" /// </summary> /// <returns>A <see cref="System.String"/> that represents this instance.</returns> public string ToDestLatitudeLongitudeDegreeMinuteSecondString() { return(String.Concat(DestLatitude.ToDegreeMinuteSecondString(), " ", DestLongitude.ToDegreeMinuteSecondString())); }
/// <summary> /// Generates a decimal-based version of the destination GPS coordinates. Ex: "46.5925° N 88.9882° W" /// </summary> /// <returns>A <see cref="System.String"/> that represents this instance.</returns> public string ToDestLatitudeLongitudeDecimalString() { return(String.Concat(DestLatitude.ToDoubleString(), " ", DestLongitude.ToDoubleString())); }