UtilDegreesToHM(Double, String, String, Int32) Method |
Convert degrees to sexagesimal hours and minutes with supplied 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 DegreesToHM(
double Degrees,
string HrsDelim,
string MinDelim,
int MinDecimalDigits
)
Public Function DegreesToHM (
Degrees As Double,
HrsDelim As String,
MinDelim As String,
MinDecimalDigits As Integer
) As String
public:
virtual String^ DegreesToHM(
double Degrees,
String^ HrsDelim,
String^ MinDelim,
int MinDecimalDigits
) sealed
Parameters
- Degrees Double
- The degrees value to convert
- HrsDelim String
- The delimiter string separating hours and minutes
- MinDelim String
- The delimiter string to append to the minutes part
- MinDecimalDigits Int32
- Number of minutes decimal places
Return Value
StringSexagesimal representation of degrees input value as hours and minutes
RemarksIf you need a leading plus sign, you must prepend it yourself. The delimiters are not restricted to single characters
See Also