Let's see what this does

This commit is contained in:
2022-11-12 17:28:25 +00:00
parent da1d1baa30
commit cd304f5955
2 changed files with 22 additions and 1 deletions
+2 -1
View File
@@ -3449,9 +3449,10 @@ namespace ASCOM.Meade.net
{
var dms = useLongFormat
? _utilities.DegreesToDMS(value, "*", ":", ":", _digitsDe)
//: _utilities.DegreesToDM(value, "*", "", _digitsDe);
: _utilities.DegreesToDM(value, "*", "", 0);
dms = dms.TrimEnd(':');
var s = value < 0 ? string.Empty : "+";
var command = $"Sd{s}{dms}";