Beispiel #1
0
 public SGP4Thread(SatelliteDataVector dataVector, Tle tleData,
                   TimeDate starttime, TimeDate stoptime, double step)
 {
     satTleData    = tleData;
     startTime     = starttime;
     stopTime      = stoptime;
     tick          = step;
     dataVectorRes = dataVector;
 }
Beispiel #2
0
 public void testFuckShit2()
 {
     SGP4.Sgp4 sgp = new SGP4.Sgp4(satTleData, 0);
     sgp.runSgp4Cal(startTime, stopTime, tick / 60.0);
     results = new List <Sgp4Data>(sgp.getRestults());
     sgp.clear();
     sgp           = null;
     satTleData    = null;
     startTime     = null;
     stopTime      = null;
     dataVectorRes = null;
 }