Example #1
0
        /// <summary>
        ///     Predicts the satellite's location at a specific time
        /// </summary>
        /// <param name="time">The time of observation</param>
        /// <returns>An ECI coordinate set representing the satellite at the given time</returns>
        public EciCoordinate Predict(DateTime time)
        {
            time = time.ToStrictUtc();

            return(_sgp4.FindPosition(time));
        }
Example #2
0
 /// <summary>
 ///     Predicts the satellite's location at a specific time
 /// </summary>
 /// <param name="time">The time of observation</param>
 /// <returns>An ECI coordinate set representing the satellite at the given time</returns>
 public EciCoordinate Predict(DateTime time)
 {
     return(_sgp4.FindPosition(time));
 }