Click or drag to resize

UtilDegreesToDM(Double, String, String) Method

Convert degrees to sexagesimal degrees and minutes

Namespace: ASCOM.Utilities
Assembly: ASCOM.Utilities (in ASCOM.Utilities.dll) Version: 6.0.0.0 (6.6.9999.9999)
Syntax
public string DegreesToDM(
	double Degrees,
	string DegDelim,
	string MinDelim
)

Parameters

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

Return Value

String
Sexagesimal representation of degrees input value, as degrees and minutes
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 "DegreesToDM(ByVal Degrees As Double, ByVal DegDelim As String, ByVal MinDelim As String, ByVal MinDecimalDigits As Integer)" with suitable parameters to achieve this effect.

See Also