UtilDegreesToDM(Double, String, String, Int32) Method |
Convert degrees to sexagesimal degrees and minutes with the specified number of minute decimal places
Namespace: ASCOM.UtilitiesAssembly: ASCOM.Utilities (in ASCOM.Utilities.dll) Version: 6.0.0.0 (6.6.9999.9999)
Syntaxpublic string DegreesToDM(
double Degrees,
string DegDelim,
string MinDelim,
int MinDecimalDigits
)
Public Function DegreesToDM (
Degrees As Double,
DegDelim As String,
MinDelim As String,
MinDecimalDigits As Integer
) As String
public:
virtual String^ DegreesToDM(
double Degrees,
String^ DegDelim,
String^ MinDelim,
int MinDecimalDigits
) sealed
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
- MinDecimalDigits Int32
- The number of digits after the decimal point on the minutes part
Return Value
StringSexagesimal representation of degrees input value, as degrees and minutes
RemarksIf you need a leading plus sign, you must prepend it yourself. The delimiters are not restricted to single characters.
See Also