Ejemplo n.º 1
0
 public void testFuckShit()
 {
     SGP4.Sgp4 sgp = new SGP4.Sgp4(satTleData, 0);
     sgp.runSgp4Cal(startTime, stopTime, tick / 60.0);
     dataVectorRes.addSatData(sgp.getRestults(), 11);
     sgp.clear();
     sgp = null;
 }
Ejemplo n.º 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;
 }