Implemented RightAscension

TargetRightAscension
TargetDec
SlewToCoord
and SlewToCoordAsync
This commit is contained in:
2019-05-06 20:29:32 +01:00
parent 75d2d080a3
commit ee088ff35c
5 changed files with 445 additions and 188 deletions
@@ -14,11 +14,16 @@ namespace ASCOM.MeadeAutostar497.Controller
double SiteLongitude { get; set; }
AlignmentModes AlignmentMode { get; set; }
bool AtPark { get; }
double Azimuth { get; }
double Declination { get; }
double Altitude { get; }
double Azimuth { get; }
double RightAscension { get; }
double Declination { get; }
double TargetRightAscension { get; set; }
double TargetDeclination { get; set; }
void AbortSlew();
void PulseGuide(GuideDirections direction, int duration);
void Park();
void SlewToCoordinates(double rightAscension, double declination);
void SlewToCoordinatesAsync(double rightAscension, double declination);
}
}