Esempio n. 1
0
        static void Main(string[] args)
        {
            // string line0 = "ISS (ZARYA)    ";
            string line1 = "1 25544U 98067A   20206.38292522 -.00000985  00000-0 -95291-5 0  9998";
            string line2 = "2 25544  51.6430 164.3636 0001088 140.8410 323.1994 15.49511774237787";

            Sat_Io io     = new Sat_Io();
            Satrec satrec = io.twoline2satrec(line1, line2);

            Sgp4 sgp4 = new Sgp4();
            PositionAndVelocity positionAndVelocity = sgp4.sgp4(satrec, 0);



            // Set the Observer at 122.03 West by 36.96 North, in RADIANS
            Geodetic  observerGd = new Geodetic();
            Transform tf         = new Transform();

            observerGd.longitude = tf.degreesToRadians(-122.0308);
            observerGd.latitude  = tf.degreesToRadians(36.9613422);
            observerGd.height    = 0.370;


            Console.WriteLine(positionAndVelocity.position_ECI.x);
            Console.WriteLine(positionAndVelocity.position_ECI.y);
            Console.WriteLine(positionAndVelocity.position_ECI.z);



            Console.WriteLine("Look i didnt crash");
        }
Esempio n. 2
0
        public void CheckInitialisation()
        {
            string line1 = "1 25544U 98067A   20206.38292522 -.00000985  00000-0 -95291-5 0  9998";
            string line2 = "2 25544  51.6430 164.3636 0001088 140.8410 323.1994 15.49511774237787";

            Sat.Sat_Io io     = new Sat.Sat_Io();
            Sat.Satrec satrec = io.twoline2satrec(line1, line2);

            Sat.Sgp4 sgp4 = new Sat.Sgp4();
            Sat.PositionAndVelocity positionAndVelocity = sgp4.sgp4(satrec, 0);

            Assert.Equal(485.6716711104389, positionAndVelocity.position_ECI.x);  // Value from Sat.js
            Assert.Equal(-4381.651985814846, positionAndVelocity.position_ECI.y); // Value from Sat.js
            Assert.Equal(5162.784591395867, positionAndVelocity.position_ECI.z);  // Value from Sat.js
        }