UtilDegreesToDMS(Double, String, String, String) Method

Convert degrees to sexagesimal degrees, minutes and seconds

Definition

Namespace: ASCOM.Utilities
Assembly: ASCOM.Utilities (in ASCOM.Utilities.dll) Version: 7.1.3+4851.c5da65c2b
C#
public string DegreesToDMS(
	double Degrees,
	string DegDelim,
	string MinDelim,
	string SecDelim
)

Parameters

Degrees  Double
The degrees value to convert
DegDelim  String
The delimiter string separating degrees and minutes
MinDelim  String
The delimiter string to append to the minutes part
SecDelim  String
The delimiter string to append to the seconds part

Return Value

String
Sexagesimal representation of degrees input value, degrees, minutes, and seconds

Remarks

If you need a leading plus sign, you must prepend it yourself. The delimiters are not restricted to single characters.

This overload is not available through COM, please use "DegreesToDMS(ByVal Degrees As Double, ByVal DegDelim As String, ByVal MinDelim As String, ByVal SecDelim As String)" with suitable parameters to achieve this effect.

See Also