Beispiel #1
0
        public bool LoadTargetData(bool isMinutes, int updateInterval)
        {
            //Get site location and closest MPC observatory
            MPC_Observatory = new Observatory();

            //Don't need geocentric ephemeris for Horizons -- using topocentric
            if (ServerQueryToSpeedVectors(isMinutes, updateInterval))
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Beispiel #2
0
        public bool LoadTargetData(bool isMinutes, int updateInterval)
        {
            //Get site location and closest MPC observatory
            MPC_Observatory = new Observatory();

            //Get Geocentric ephemeris
            if (!GeoToSiteCalibration())
            {
                return(false);
            }
            //Find geocentric ephemeris at current time (single ephemeris)
            //Find observatory ephemeris at current time (100 count)
            //Calculate geocentric to geodetic transformation for RA/Dec and dRA/dDec
            if (ServerQueryToSpeedVectors(isMinutes, updateInterval))
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }