2025-03-08 09:24:38 +00:00
|
|
|
|
#include "SPG4Function.h"
|
2025-03-15 09:14:17 +00:00
|
|
|
|
#include "SPG4Tool.h"
|
2025-03-08 09:24:38 +00:00
|
|
|
|
#include <Tle.h>
|
|
|
|
|
#include <SGP4.h>
|
|
|
|
|
#include <Observer.h>
|
|
|
|
|
#include <CoordGeodetic.h>
|
|
|
|
|
#include <CoordTopocentric.h>
|
|
|
|
|
|
|
|
|
|
#include <list>
|
|
|
|
|
#include <string>
|
|
|
|
|
#include <iomanip>
|
|
|
|
|
#include <iostream>
|
|
|
|
|
#include <fstream>
|
|
|
|
|
#include <vector>
|
|
|
|
|
#include <cstdlib>
|
2025-03-15 09:14:17 +00:00
|
|
|
|
#include <QDate>
|
|
|
|
|
#include <QDateTime>
|
2025-03-08 09:24:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-03-15 09:14:17 +00:00
|
|
|
|
std::vector<SatelliteAntPos> RunTle(libsgp4::Tle tle, double start, double end, double inc, bool printfinfoflag, bool running, bool first_run)
|
2025-03-08 09:24:38 +00:00
|
|
|
|
{
|
2025-03-15 09:14:17 +00:00
|
|
|
|
std::cout << "RunTle\t" ;
|
|
|
|
|
std::cout << "Start time:\t" << start;
|
|
|
|
|
std::cout << "End time:\t" << end;
|
|
|
|
|
std::cout << "inc time:\t" << inc << std::endl;
|
|
|
|
|
|
2025-03-08 09:24:38 +00:00
|
|
|
|
std::vector<SatelliteAntPos> resultpos(0);
|
|
|
|
|
double current = start;
|
|
|
|
|
libsgp4::SGP4 model(tle);
|
2025-03-15 09:14:17 +00:00
|
|
|
|
//bool running = true;
|
|
|
|
|
//bool first_run = true;
|
2025-03-08 09:24:38 +00:00
|
|
|
|
|
|
|
|
|
std::cout << std::setprecision(0) << tle.NoradNumber() << " xx"
|
|
|
|
|
<< std::endl;
|
|
|
|
|
|
|
|
|
|
while (running)
|
|
|
|
|
{
|
|
|
|
|
bool error = false;
|
|
|
|
|
libsgp4::Vector position;
|
|
|
|
|
libsgp4::Vector velocity;
|
|
|
|
|
double tsince;
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
if (first_run && current != 0.0)
|
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
* make sure first run is always as zero
|
|
|
|
|
*/
|
|
|
|
|
tsince = 0.0;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
* otherwise run as normal
|
|
|
|
|
*/
|
|
|
|
|
tsince = current;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
libsgp4::Eci eci = model.FindPosition(tsince);
|
|
|
|
|
position = eci.Position();
|
|
|
|
|
velocity = eci.Velocity();
|
2025-03-15 09:14:17 +00:00
|
|
|
|
|
2025-03-08 09:24:38 +00:00
|
|
|
|
}
|
|
|
|
|
catch (libsgp4::SatelliteException& e)
|
|
|
|
|
{
|
2025-03-15 09:14:17 +00:00
|
|
|
|
std::cerr << "SatelliteException:\t" << e.what() << std::endl;
|
2025-03-08 09:24:38 +00:00
|
|
|
|
error = true;
|
|
|
|
|
running = false;
|
|
|
|
|
}
|
|
|
|
|
catch (libsgp4::DecayedException& e)
|
|
|
|
|
{
|
2025-03-15 09:14:17 +00:00
|
|
|
|
std::cerr <<"DecayedException:\t" << e.what() << std::endl;
|
2025-03-08 09:24:38 +00:00
|
|
|
|
|
|
|
|
|
position = e.Position();
|
|
|
|
|
velocity = e.Velocity();
|
|
|
|
|
|
|
|
|
|
if (!first_run)
|
|
|
|
|
{
|
|
|
|
|
// print out position on first run
|
|
|
|
|
error = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
running = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!error)
|
|
|
|
|
{
|
|
|
|
|
SatelliteAntPos antpos{};
|
|
|
|
|
antpos.time = tsince;
|
|
|
|
|
antpos.Px = position.x;
|
|
|
|
|
antpos.Py = position.y;
|
|
|
|
|
antpos.Pz = position.z;
|
2025-03-15 09:14:17 +00:00
|
|
|
|
antpos.Vx = velocity.x;
|
|
|
|
|
antpos.Vy = velocity.y;
|
2025-03-08 09:24:38 +00:00
|
|
|
|
antpos.Vz = velocity.z;
|
|
|
|
|
|
|
|
|
|
resultpos.push_back(antpos);
|
|
|
|
|
if (printfinfoflag) {
|
|
|
|
|
std::cout << std::setprecision(8) << std::fixed;
|
|
|
|
|
std::cout.width(17);
|
|
|
|
|
std::cout << tsince << " ";
|
|
|
|
|
std::cout.width(16);
|
|
|
|
|
std::cout << position.x << " ";
|
|
|
|
|
std::cout.width(16);
|
|
|
|
|
std::cout << position.y << " ";
|
|
|
|
|
std::cout.width(16);
|
|
|
|
|
std::cout << position.z << " ";
|
|
|
|
|
std::cout << std::setprecision(9) << std::fixed;
|
|
|
|
|
std::cout.width(14);
|
|
|
|
|
std::cout << velocity.x << " ";
|
|
|
|
|
std::cout.width(14);
|
|
|
|
|
std::cout << velocity.y << " ";
|
|
|
|
|
std::cout.width(14);
|
|
|
|
|
std::cout << velocity.z << std::endl;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ((first_run && current == 0.0) || !first_run)
|
|
|
|
|
{
|
|
|
|
|
if (current == end)
|
|
|
|
|
{
|
|
|
|
|
running = false;
|
|
|
|
|
}
|
2025-03-15 09:14:17 +00:00
|
|
|
|
else if ((current + inc) > end)
|
2025-03-08 09:24:38 +00:00
|
|
|
|
{
|
|
|
|
|
current = end;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
current += inc;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
first_run = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return resultpos;
|
|
|
|
|
}
|
|
|
|
|
|
2025-03-15 09:14:17 +00:00
|
|
|
|
std::vector<SatelliteAntPos> getGPSPoints(std::string line1, std::string line2, double start, double end, double inc, bool printfinfoflag, bool running , bool first_run )
|
2025-03-14 11:43:25 +00:00
|
|
|
|
{
|
2025-03-15 09:14:17 +00:00
|
|
|
|
libsgp4::Tle tle("satellites", line1, line2);
|
|
|
|
|
std::cout << "Start time:\t" << start;
|
|
|
|
|
std::cout << "End time:\t" << end;
|
|
|
|
|
std::cout << "inc time:\t" << inc << std::endl;
|
2025-03-16 06:26:16 +00:00
|
|
|
|
std::vector<SatelliteAntPos> result= RunTle(tle, start, end, inc, printfinfoflag,running,first_run);
|
2025-03-15 09:14:17 +00:00
|
|
|
|
return result;
|
2025-03-14 11:43:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
2025-03-08 09:24:38 +00:00
|
|
|
|
|
2025-03-15 09:14:17 +00:00
|
|
|
|
double parseTLETimeOffset(const std::string& tle) {
|
|
|
|
|
// <20><><EFBFBD><EFBFBD>TLE<4C>ַ<EFBFBD><D6B7><EFBFBD><EFBFBD><EFBFBD>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD>Ϣ<EFBFBD><CFA2><EFBFBD>ض<EFBFBD>λ<EFBFBD><CEBB>
|
|
|
|
|
// <20><><EFBFBD>磬TLE<4C>ĵ<EFBFBD>19<31><39>32<33><32><EFBFBD>ַ<EFBFBD><D6B7><EFBFBD>ʾ<EFBFBD><CABE>Ԫʱ<D4AA><CAB1>
|
|
|
|
|
if (tle.length() < 32) {
|
|
|
|
|
return 0.0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::string epochStr = tle.substr(18, 14);
|
|
|
|
|
int year = std::stoi(epochStr.substr(0, 2));
|
|
|
|
|
double dayOfYear = std::stod(epochStr.substr(2));
|
|
|
|
|
|
|
|
|
|
// <20><><EFBFBD><EFBFBD>λ<EFBFBD><CEBB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ת<EFBFBD><D7AA>Ϊ<EFBFBD><CEAA>λ<EFBFBD><CEBB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
if (year < 57) {
|
|
|
|
|
year += 2000;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
year += 1900;
|
|
|
|
|
}
|
2025-03-08 09:24:38 +00:00
|
|
|
|
|
2025-03-15 09:14:17 +00:00
|
|
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD>Ӽ<EFBFBD>Ԫ<EFBFBD><D4AA>ʼ<EFBFBD><CABC>ָ<EFBFBD><D6B8><EFBFBD><EFBFBD><EFBFBD>ڵĺ<DAB5><C4BA><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
QDate date(year, 1, 1);
|
|
|
|
|
QDateTime dateTime(date.addDays(static_cast<int>(dayOfYear) - 1), QTime(0, 0), Qt::UTC);
|
|
|
|
|
qint64 millisecondsSinceEpoch = dateTime.toMSecsSinceEpoch() + static_cast<qint64>((dayOfYear - static_cast<int>(dayOfYear)) * 86400000);
|
2025-03-08 09:24:38 +00:00
|
|
|
|
|
2025-03-15 09:14:17 +00:00
|
|
|
|
return millisecondsSinceEpoch / 1000.0;
|
|
|
|
|
}
|