We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05bff7b commit 04e58a3Copy full SHA for 04e58a3
Software/OpenAstroTracker ASCOM/OpenAstroTracker ASCOM/Driver.vb
@@ -795,9 +795,7 @@ Public Class Telescope
795
TL.LogMessage("SlewToCoordinates", "RA " + RightAscension.ToString + ", Dec " + Declination.ToString)
796
Dim strRAcmd = ":Sr" + utilities.HoursToHMS(RightAscension, ":", ":")
797
Dim strDeccmd = utilities.DegreesToDMS(Declination, "*", ":", "")
798
- If Declination < 0 Then
799
- strDeccmd = "-" + strDeccmd
800
- Else
+ If Declination >= 0 Then
801
strDeccmd = "+" + strDeccmd
802
End If
803
strDeccmd = ":Sd" + strDeccmd
0 commit comments