1 Star 0 Fork 3

guo.me/GNSS TJPPP

forked from Liyanyi/GNSS TJPPP 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
QPPPModel.cpp 86.96 KB
一键复制 编辑 原始数据 按行查看 历史
Liyanyi 提交于 2021-12-06 01:15 . 提交第一版主文件
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905
#include "QPPPModel.h"
QStringList QPPPModel::searchFilterFile(QString floder_path, QStringList filers)
{
QDir floder_Dir(floder_path);
QStringList all_file_path;
floder_Dir.setFilter(QDir::Files | QDir::NoSymLinks);
floder_Dir.setNameFilters(filers);
QFileInfoList file_infos = floder_Dir.entryInfoList();
for(int i = 0;i < file_infos.length();i++)
{
QFileInfo file_info = file_infos.at(i);
if(file_info.fileName() != "." || file_info.fileName() != "..")
all_file_path.append(file_info.absoluteFilePath());
}
return all_file_path;
}
//Run the specified directory file
QPPPModel::QPPPModel(QString files_path, QTextEdit *pQTextEdit, QString Method, QString Satsystem,
QString TropDelay, double CutAngle, bool isKinematic, QString Smooth_Str, QString products,
QString pppmodel_t, QString deleteSats, QVector<QStringList> ObsTypeSet, QVector<QStringList> Qw_Pk_LPacc)
{
//Initialize variables
initVar();
// Display for GUI
mp_QTextEditforDisplay = pQTextEdit;
m_run_floder = files_path + PATHSEG;
m_App_floder = QCoreApplication::applicationDirPath() + PATHSEG;
// find files
QStringList tempFilters,
OFileNamesList, Sp3FileNamesList, ClkFileNamesList, ErpFileNamesList,
AtxFileNamesList, BlqFileNamesList, GrdFileNamesList;
// find obs files
tempFilters.clear();
tempFilters.append("*.*o");
OFileNamesList = searchFilterFile(m_run_floder, tempFilters);
// find sp3 files
tempFilters.clear();
tempFilters.append("*.sp3");
tempFilters.append("*.eph");
Sp3FileNamesList = searchFilterFile(m_run_floder, tempFilters);
// find clk files
tempFilters.clear();
tempFilters.append("*.clk");
ClkFileNamesList = searchFilterFile(m_run_floder, tempFilters);
// if not find clk try clk_*
if(ClkFileNamesList.isEmpty())
{
tempFilters.clear();
tempFilters.append("*.clk_*");
ClkFileNamesList = searchFilterFile(m_run_floder, tempFilters);
}
// find erp files
tempFilters.clear();
tempFilters.append("*.erp");
ErpFileNamesList = searchFilterFile(m_run_floder, tempFilters);
// find Atx files
tempFilters.clear();
tempFilters.append("*.atx");
QStringList run_floder, app_floder;
run_floder = searchFilterFile(m_run_floder, tempFilters);
app_floder = searchFilterFile(m_App_floder, tempFilters);
AtxFileNamesList.append(run_floder);
AtxFileNamesList.append(app_floder);
run_floder.clear();
app_floder.clear();
// find blq files
tempFilters.clear();
tempFilters.append("*.blq");
run_floder = searchFilterFile(m_run_floder, tempFilters);
app_floder = searchFilterFile(m_App_floder, tempFilters);
BlqFileNamesList.append(run_floder);
BlqFileNamesList.append(app_floder);
run_floder.clear();
app_floder.clear();
// find grd files
tempFilters.clear();
tempFilters.append("*.grd");
run_floder = searchFilterFile(m_run_floder, tempFilters);
app_floder = searchFilterFile(m_App_floder, tempFilters);
GrdFileNamesList.append(run_floder);
GrdFileNamesList.append(app_floder);
run_floder.clear();
app_floder.clear();
// get want file
// o file
QString OfileName = "", erpFile = "", blqFile = "", atxFile = "", grdFile = "";
if (!OFileNamesList.isEmpty())
{
OfileName = OFileNamesList.at(0);
m_haveObsFile = true;
}
else
{
ErroTrace("QPPPModel::QPPPModel: Cant not find Obsvertion file.");
m_haveObsFile = false;
}
if(!ErpFileNamesList.isEmpty()) erpFile = ErpFileNamesList.at(0);
if(!AtxFileNamesList.isEmpty()) atxFile = AtxFileNamesList.at(0);
if(!BlqFileNamesList.isEmpty()) blqFile = BlqFileNamesList.at(0);
if(!GrdFileNamesList.isEmpty()) grdFile = GrdFileNamesList.at(0);
// get OBS file size for real-time write file
QFileInfo obs_info(OfileName);
double obsMB = (double)(obs_info.size())/(1024.0*1024.0);
if(obsMB > 80) m_IS_MAX_OBS = true;
// use defualt config
setConfigure(Method, Satsystem, TropDelay, CutAngle, isKinematic, Smooth_Str, products, pppmodel_t, deleteSats,
ObsTypeSet, Qw_Pk_LPacc);
// save data to QPPPModel
initQPPPModel(OfileName, Sp3FileNamesList, ClkFileNamesList, erpFile, blqFile, atxFile, grdFile);
}
void QPPPModel::setConfigure(QString Method, QString Satsystem, QString TropDelay, double CutAngle,
bool isKinematic, QString Smooth_Str, QString products, QString pppmodel_t,
QString deleteSats, QVector<QStringList> ObsTypeSet, QVector<QStringList> Qw_Pk_LPacc)
{
// Configure
m_Solver_Method = Method;// m_Solver_Method value can be "SRIF" or "Kalman"
m_CutAngle = CutAngle;// (degree)
m_SatSystem = Satsystem;// GPS, GLONASS, BDS, and Galieo are used respectively: the letters G, R, C, E
m_TropDelay = TropDelay;// The tropospheric model m_TropDelay can choose Sass, Hopfiled, UNB3m
m_Product = products;
m_PPPModel_Str = pppmodel_t;
m_isKinematic = isKinematic;
m_deleteSats = deleteSats;
m_ObsTypeSet = ObsTypeSet;
m_Qw_Pk_LPacc = Qw_Pk_LPacc;
//Setting up the file system SystemStr:"G"(Turn on the GPS system);"GR":(Turn on the GPS+GLONASS system);"GRCE" (Open all), etc.
//GPS, GLONASS, BDS, and Galieo are used respectively: the letters G, R, C, E
setSatlitSys(Satsystem);
m_sys_str = Satsystem;
m_sys_num = getSystemnum();
m_ReadOFileClass.setWangObsType(ObsTypeSet);
// set filter Model
if(isKinematic)
{
m_KalmanClass.setModel(QKalmanFilter::KALMAN_MODEL::PPP_KINEMATIC);// set Kinematic model
m_SRIFAlgorithm.setModel(SRIFAlgorithm::SRIF_MODEL::PPP_KINEMATIC);
m_minSatFlag = 5;// Dynamic Settings 4 or 1???, Static Settings 1
}
else
{
m_KalmanClass.setModel(QKalmanFilter::KALMAN_MODEL::PPP_STATIC);// set static model
m_SRIFAlgorithm.setModel(SRIFAlgorithm::SRIF_MODEL::PPP_STATIC);
m_minSatFlag = 1;// Dynamic Settings 1, Static Settings 1
}
m_KalmanClass.setFilterParams(Qw_Pk_LPacc);// set Qw and Pk for Kalman
m_SRIFAlgorithm.setFilterParams(Qw_Pk_LPacc);// set Qw and Pk for SRIF
if("Smooth" == Smooth_Str)
{
m_KalmanClass.setSmoothRange(QKalmanFilter::KALMAN_SMOOTH_RANGE::SMOOTH);
m_SRIFAlgorithm.setSmoothRange(SRIFAlgorithm::SRIF_SMOOTH_RANGE::SMOOTH);
m_isSmoothRange = true;
}
else if("NoSmooth" == Smooth_Str)
{
m_KalmanClass.setSmoothRange(QKalmanFilter::KALMAN_SMOOTH_RANGE::NO_SMOOTH);
m_SRIFAlgorithm.setSmoothRange(SRIFAlgorithm::SRIF_SMOOTH_RANGE::NO_SMOOTH);
m_isSmoothRange = false;
}
if(Method == "KalmanOu")
{
m_KalmanClass.setFilterMode(QKalmanFilter::KALMAN_FILLTER::KALMAN_MrOu);
}
if(m_PPPModel_Str.contains("Ion", Qt::CaseInsensitive))
{
setPPPModel(PPP_MODEL::PPP_Combination);
m_KalmanClass.setPPPModel(PPP_MODEL::PPP_Combination);
m_SRIFAlgorithm.setPPPModel(PPP_MODEL::PPP_Combination);
m_writeFileClass.setPPPModel(PPP_MODEL::PPP_Combination);
if(m_IS_MAX_OBS) m_QRTWrite2File.setPPPModel(PPP_MODEL::PPP_Combination);
m_qualityCtrl.setPPPModel(PPP_MODEL::PPP_Combination);
}
else if(m_PPPModel_Str.contains("Uncomb", Qt::CaseInsensitive))
{
setPPPModel(PPP_MODEL::PPP_NOCombination);
m_KalmanClass.setPPPModel(PPP_MODEL::PPP_NOCombination);
m_SRIFAlgorithm.setPPPModel(PPP_MODEL::PPP_NOCombination);
m_writeFileClass.setPPPModel(PPP_MODEL::PPP_NOCombination);
if(m_IS_MAX_OBS) m_QRTWrite2File.setPPPModel(PPP_MODEL::PPP_NOCombination);
m_qualityCtrl.setPPPModel(PPP_MODEL::PPP_NOCombination);
}
else
m_haveObsFile = false;
}
//Initialization operation
void QPPPModel::initVar()
{
for (int i = 0;i < 3;i++)
m_ApproxRecPos[0] = 0;
m_OFileName = "";
multReadOFile = 1000;
m_leapSeconds = 0;
m_isConnect = false;
m_isConnectCNT = false;
m_run_floder = "";
m_haveObsFile = false;
m_isRuned = false;
m_save_images_path = "";
m_iswritre_file = false;
m_minSatFlag = 5;// Dynamic Settings 5 or 1, Static Settings 1 in setConfigure()
m_isSmoothRange = false;
m_clock_jump_type = 0;
m_interval = -1;
mp_QTextEditforDisplay = NULL;
m_IS_MAX_OBS = false;
m_deleteSats = "";
}
//Constructor
void QPPPModel::initQPPPModel(QString OFileName,QStringList Sp3FileNames,QStringList ClkFileNames,QString ErpFileName,QString BlqFileName,QString AtxFileName,QString GrdFileName)
{
if(!m_haveObsFile) return ;// if not have observation file.
//Set up multi-system data
//Initial various classes
m_ReadSP3Class.setSP3FileNames(Sp3FileNames);
m_ReadClkClass.setClkFileNames(ClkFileNames);
m_ReadOFileClass.setObsFileName(OFileName);
m_ReadTropClass.setTropFileNames(GrdFileName,"GMF", m_TropDelay);// Default tropospheric model projection function GMF
m_ReadAntClass.setAntFileName(AtxFileName);
m_TideEffectClass.setTideFileName(BlqFileName,ErpFileName);// for OCEAN and Erp tide
m_ReadAntClass.m_CmpClass.readRepFile(ErpFileName);// for compute sun and moon position
qCmpGpsT.readRepFile(ErpFileName);// safe operation
//Save file name
m_OFileName = OFileName;
m_Sp3FileNames = Sp3FileNames;
m_ClkFileNames = ClkFileNames;
m_ErpFileName = ErpFileName;
//Various class settings
int obsTime[5] = {0};
double Seconds = 0,ObsJD = 0;
m_ReadOFileClass.getApproXYZ(m_ApproxRecPos);//Obtain the approximate coordinates of the O file
m_ReadOFileClass.getFistObsTime(obsTime,Seconds);//Get the initial observation time
ObsJD = qCmpGpsT.computeJD(obsTime[0],obsTime[1],obsTime[2],obsTime[3],obsTime[4],Seconds);
m_ReadAntClass.setObsJD(m_ReadOFileClass.getAntType(),ObsJD);//Set the antenna effective time
m_TideEffectClass.setStationName(m_ReadOFileClass.getMakerName());//Setting the tide requires a station name
//Search products and download
int GPS_Week = 0, GPS_Day = 0;
qCmpGpsT.YMD2GPSTime(obsTime[0],obsTime[1],obsTime[2],obsTime[3],obsTime[4],Seconds, &GPS_Week, &GPS_Day);
//If there is no product, it is necessary to make up such final products.
if(Sp3FileNames.isEmpty() || ClkFileNames.isEmpty() || ErpFileName.isEmpty()) connectHost();
if(m_Product.contains("igs", Qt::CaseInsensitive))
{
if(Sp3FileNames.isEmpty()) m_Sp3FileNames = downProducts(m_run_floder, GPS_Week, GPS_Day, "sp3");
if(ClkFileNames.isEmpty()) m_ClkFileNames = downProducts(m_run_floder, GPS_Week, GPS_Day, "clk");
}
// download erp
if(ErpFileName.isEmpty())
{
m_ErpFileName = downErpFile(m_run_floder, GPS_Week, GPS_Day, "erp");
m_TideEffectClass.setTideFileName(BlqFileName,m_ErpFileName);
m_ReadAntClass.m_CmpClass.readRepFile(ErpFileName);// for compute sun and moon position
qCmpGpsT.readRepFile(m_ErpFileName);
}
// if download final products bad, it will download real-time cnt products
if(m_Product.contains("cnt", Qt::CaseInsensitive))
{
if(m_Sp3FileNames.isEmpty() || m_ClkFileNames.isEmpty()) connectCNTHost();
if(m_Sp3FileNames.isEmpty()) m_Sp3FileNames = downCNTProducts(m_run_floder, GPS_Week, GPS_Day, "sp3");
if(m_ClkFileNames.isEmpty()) m_ClkFileNames = downCNTProducts(m_run_floder, GPS_Week, GPS_Day, "clk");
}
// set download file name
if(!m_Sp3FileNames.isEmpty()) m_ReadSP3Class.setSP3FileNames(m_Sp3FileNames);
if(!m_ClkFileNames.isEmpty()) m_ReadClkClass.setClkFileNames(m_ClkFileNames);
// end this PPP
if(m_Sp3FileNames.isEmpty() || m_ClkFileNames.isEmpty()) m_haveObsFile = false;
//Get skip seconds
m_leapSeconds = qCmpGpsT.getLeapSecond(obsTime[0],obsTime[1],obsTime[2],obsTime[3],obsTime[4],Seconds);
m_interval = m_ReadOFileClass.getInterval();
//Read the required calculation file module (time consuming)
if(m_haveObsFile)
{
m_ReadAntClass.getAllData();//Read all data from satellites and receivers
m_TideEffectClass.getAllData();//Read tide data
m_ReadTropClass.getAllData();//Read grd files for later tropospheric calculations
m_ReadSP3Class.getAllData();//Read the entire SP3 file
m_ReadClkClass.getAllData();//Read the clock error file for later calculation
}
// init QRTWrite2File class
if(m_IS_MAX_OBS)
{
QDir tempDir(m_run_floder);
// product name
QString Product_name = "IGS";
if(m_Sp3FileNames.length() > 0)
{
QString sp3name_path = m_Sp3FileNames.at(0);
int index_p = sp3name_path.lastIndexOf("/");// get sp3 name
QString sp3name = sp3name_path.mid(index_p+1);
Product_name = sp3name.mid(0,3).toUpper();
}
QString floder_name = Product_name + "Products_" + m_Solver_Method + "_" + m_PPPModel_Str + "_Static_" + m_sys_str + PATHSEG; //+ "_1e8" + "_1e8_new"
if(m_isKinematic)
floder_name = Product_name + "Products_" + m_Solver_Method + "_" + m_PPPModel_Str + "_Kinematic_" + m_sys_str +PATHSEG;
QString RTwriteFloder = tempDir.absoluteFilePath(floder_name);
m_QRTWrite2File.setSaveFloder(RTwriteFloder);
}
}
// get matrix B and observer L
void QPPPModel::Obtaining_equation(QVector< SatlitData > &currEpoch, double *ApproxRecPos, MatrixXd &mat_B, VectorXd &Vct_L, MatrixXd &mat_P, bool isSmoothRange)
{
int epochLenLB = currEpoch.length();
MatrixXd B, P;
VectorXd L, sys_len;
sys_len.resize(m_sys_str.length());
B.resize(epochLenLB,3 + m_sys_num);
P.resize(epochLenLB,epochLenLB);
L.resize(epochLenLB);
sys_len.setZero();
B.setZero();
L.setZero();
P.setIdentity();
bool is_find_base_sat = false;
for (int i = 0; i < epochLenLB;i++)
{
SatlitData oneSatlit = currEpoch.at(i);
double li = 0,mi = 0,ni = 0,p0 = 0,dltaX = 0,dltaY = 0,dltaZ = 0;
dltaX = oneSatlit.X - ApproxRecPos[0];
dltaY = oneSatlit.Y - ApproxRecPos[1];
dltaZ = oneSatlit.Z - ApproxRecPos[2];
p0 = qSqrt(dltaX*dltaX+dltaY*dltaY+dltaZ*dltaZ);
li = dltaX/p0;mi = dltaY/p0;ni = dltaZ/p0;
//Computational B matrix
//P3 pseudorange code matrix
B(i, 0) = li;B(i, 1) = mi;B(i, 2) = ni; B(i, 3) = -1;// base system satlite clk must exist
// debug by xiaogongwei 2019.04.03 for ISB
for(int k = 1; k < m_sys_str.length();k++)
{
if(m_sys_str[k] == oneSatlit.SatType)
{
B(i,3+k) = -1;
sys_len[k] = 1;//good no zeros cloumn in B,sys_lenmybe 0 1 1 0
}
}
// debug by xiaogongwei 2019.04.10 is exist base system satlite clk
if(m_sys_str[0] == oneSatlit.SatType)
is_find_base_sat = true;
//Calculating the L matrix
double dlta = 0;//Correction of each
dlta = - oneSatlit.StaClock + oneSatlit.SatTrop - oneSatlit.Relativty -
oneSatlit.Sagnac - oneSatlit.TideEffect - oneSatlit.AntHeight;
//Pseudorange code PP3
if(isSmoothRange)
{// add by xiaogongwei 2018.11.20
L(i) = p0 - oneSatlit.PP3_Smooth + dlta;
// Computing weight matrix P
// if(oneSatlit.UTCTime.epochNum > 30 && oneSatlit.PP3_Smooth_NUM < 30 )//
// P(i, i) = 0.0001;
// else
P(i, i) = 1 / oneSatlit.PP3_Smooth_Q;//Smooth pseudorange????
}
else
{
L(i) = p0 - oneSatlit.PP3 + dlta;
// Computing weight matrix P
P(i, i) = oneSatlit.SatWight;//Pseudo-range right
}
}//B, L is calculated
// save data to mat_B
mat_B = B;
Vct_L = L;
mat_P = P;
// debug by xiaogongwei 2019.04.04
int no_zero = sys_len.size() - 1 - sys_len.sum();
if(no_zero > 0 || !is_find_base_sat)
{
int new_hang = B.rows() + no_zero, new_lie = B.cols(), flag = 0;
if(!is_find_base_sat) new_hang++; // debug by xiaogongwei 2019.04.10 is exist base system satlite clk
mat_B.resize(new_hang,new_lie);
mat_P.resize(new_hang,new_hang);
Vct_L.resize(new_hang);
mat_B.setZero();
Vct_L.setZero();
mat_P.setIdentity();
// debug by xiaogongwei 2019.04.10 is exist base system satlite clk
if(!is_find_base_sat)
{
for(int i = 0;i < B.rows();i++)
B(i, 3) = 0;
mat_B(mat_B.rows() - 1, 3) = 1;// 3 is conntain [dx,dy,dz]
}
mat_B.block(0,0,B.rows(),B.cols()) = B;
mat_P.block(0,0,P.rows(),P.cols()) = P;
Vct_L.head(L.rows()) = L;
for(int i = 1; i < sys_len.size();i++)
{
if(0 == sys_len[i])
{
mat_B(epochLenLB+flag, 3+i) = 1;// 3 is conntain [dx,dy,dz]
flag++;
}
}
}//if(no_zero > 0)
}
void QPPPModel::SimpleSPP(QVector < SatlitData > &prevEpochSatlitData, QVector < SatlitData > &epochSatlitData, double *spp_pos)
{
double p_HEN[3] = {0};
m_ReadOFileClass.getAntHEN(p_HEN);//Get the antenna high
GPSPosTime epochTime;//Obtaining observation time
if(epochSatlitData.length() > 0)
epochTime = epochSatlitData.at(0).UTCTime;//Obtaining observation time
else
return ;
Vector3d tempPos3d, diff_3d;
tempPos3d[0] = spp_pos[0]; tempPos3d[1] = spp_pos[1]; tempPos3d[2] = spp_pos[2];
QVector< SatlitData > store_currEpoch;
int max_iter = 20;
for(int iterj = 0; iterj < max_iter; iterj++)
{
QVector< SatlitData > currEpoch;
// get every satilite data
for (int i = 0;i < epochSatlitData.length();i++)
{
SatlitData tempSatlitData = epochSatlitData.at(i);//Store calculated corrected satellite data
if(!isInSystem(tempSatlitData.SatType))
continue;
//Test whether the carrier and pseudorange are abnormal and terminate in time.
if(!(tempSatlitData.L1&&tempSatlitData.L2&&tempSatlitData.C1&&tempSatlitData.C2))
{
QString errorline;
ErrorMsg(errorline);
tempSatlitData.badMsg.append("Lack of observations"+errorline);
m_writeFileClass.allBadSatlitData.append(tempSatlitData);
continue;
}
//When seeking GPS
double m_PrnGpst = qCmpGpsT.YMD2GPSTime(epochTime.Year,epochTime.Month,epochTime.Day,
epochTime.Hours,epochTime.Minutes,epochTime.Seconds);
// Read satellite clock error from CLK file
double stalitClock = 0;//Unit m
// Note: Time is the signal transmission time(m_PrnGpst - tempSatlitData.C2/M_C)
getCLKData(tempSatlitData.PRN,tempSatlitData.SatType,m_PrnGpst - tempSatlitData.C2/M_C,&stalitClock);
tempSatlitData.StaClock = stalitClock;
//Obtain the coordinates of the epoch satellite from the SP3 data data
double pXYZ[3] = {0},pdXYZ[3] = {0}, sp3Clk = 0.0;//Unit m
// Note: Time is the signal transmission time(m_PrnGpst - tempSatlitData.C2/M_C - tempSatlitData.StaClock/M_C)
getSP3Pos(m_PrnGpst - tempSatlitData.C2/M_C - tempSatlitData.StaClock/M_C,tempSatlitData.PRN,
tempSatlitData.SatType,pXYZ,pdXYZ, &sp3Clk);//Obtain the precise ephemeris coordinates of the satellite launch time(Obtain the precise ephemeris coordinates of the satellite launch time tempSatlitData.StaClock/M_C Otherwise it will cause a convergence gap of 20cm)
tempSatlitData.X = pXYZ[0];tempSatlitData.Y = pXYZ[1];tempSatlitData.Z = pXYZ[2];
// tempSatlitData.StaClock = sp3Clk;// Use igu to do real-time PPP need to use sp3 clock difference replacement, the directory must have the same day clk file, but the clk file data is not used
//Calculate the satellite's high sitting angle (as the receiver approximates the target)
double EA[2]={0};
getSatEA(tempSatlitData.X,tempSatlitData.Y,tempSatlitData.Z,spp_pos,EA);
tempSatlitData.EA[0] = EA[0];tempSatlitData.EA[1] = EA[1];
EA[0] = EA[0]*MM_PI/180;EA[1] = EA[1]*MM_PI/180;//Go to the arc to facilitate the calculation below
tempSatlitData.SatWight = 0.01;// debug xiaogongwei 2018.11.16
getWight(tempSatlitData);
//Test the state of the precise ephemeris and the clock difference and whether the carrier and pseudorange are abnormal, and terminate the XYZ or the satellite with the clock difference of 0 in time.
if (!(tempSatlitData.X&&tempSatlitData.Y&&tempSatlitData.Z&&tempSatlitData.StaClock))
{
QString errorline;
ErrorMsg(errorline);
tempSatlitData.badMsg.append("Can't calculate the orbit and clock offset"+errorline);
m_writeFileClass.allBadSatlitData.append(tempSatlitData);
continue;
}
//Quality control (height angle pseudorange difference)
if (qAbs(tempSatlitData.C1 - tempSatlitData.C2) > 50)
{
QString errorline;
ErrorMsg(errorline);
tempSatlitData.badMsg.append("C1-C2>50"+errorline);
m_writeFileClass.allBadSatlitData.append(tempSatlitData);
continue;
}
if(spp_pos[0] !=0 && tempSatlitData.EA[0] < m_CutAngle)
{
QString errorline;
ErrorMsg(errorline);
tempSatlitData.badMsg.append("elevation angle is " + QString::number(tempSatlitData.EA[0],'f',2)
+ " less " + QString::number(m_CutAngle,'f',2) +errorline);
m_writeFileClass.allBadSatlitData.append(tempSatlitData);
continue;
}
//At the time of SPP, the five satellites with poor GEO orbit in front of Beidou are not removed.
// if(tempSatlitData.SatType == 'C' && tempSatlitData.PRN <=5 )
// continue;
//Calculate the wavelength (mainly for multiple systems)
double F1 = tempSatlitData.Frq[0],F2 = tempSatlitData.Frq[1];
if(F1 == 0 || F2 == 0) continue;//Frequency cannot be 0
//Computational relativity correction
double relative = 0;
if(spp_pos[0] !=0 ) relative = getRelativty(tempSatlitData.SatType, pXYZ,spp_pos,pdXYZ);
tempSatlitData.Relativty = relative;
//Calculate the autobiographic correction of the earth
double earthW = 0;
earthW = getSagnac(tempSatlitData.X,tempSatlitData.Y,tempSatlitData.Z,spp_pos);
tempSatlitData.Sagnac = 0;
if(spp_pos[0] !=0 ) tempSatlitData.Sagnac = earthW;
//Calculate tropospheric dry delay!!!
double MJD = qCmpGpsT.computeJD(epochTime.Year,epochTime.Month,epochTime.Day,
epochTime.Hours,epochTime.Minutes,epochTime.Seconds) - 2400000.5;//Simplified Julian Day
//Calculate and save the annual accumulation date
double TDay = qCmpGpsT.YearAccDay(epochTime.Year,epochTime.Month,epochTime.Day);
double p_BLH[3] = {0},mf = 0, TropZPD = 0;;
qCmpGpsT.XYZ2BLH(spp_pos[0], spp_pos[1], spp_pos[2], p_BLH);
if(spp_pos[0] !=0 ) getTropDelay(MJD,TDay,EA[0],p_BLH,&mf, NULL, &TropZPD);
tempSatlitData.SatTrop = TropZPD;
tempSatlitData.StaTropMap = mf;
if(spp_pos[0] !=0 ) tempSatlitData.StaTropMap = mf;
//Calculate antenna high offset correction Antenna Height
tempSatlitData.AntHeight = 0;
if( spp_pos[0] !=0 )
tempSatlitData.AntHeight = p_HEN[0]*qSin(EA[0]) + p_HEN[1]*qCos(EA[0])*qSin(EA[1]) + p_HEN[2]*qCos(EA[0])*qCos(EA[1]);
//Receiver L1 L2 offset correction
double Lamta1 = M_C/F1,Lamta2 = M_C/F2;
double L1Offset = 0,L2Offset = 0;
if( spp_pos[0] !=0 ) getRecvOffset(EA,tempSatlitData.SatType,L1Offset,L2Offset, tempSatlitData.wantObserType);
tempSatlitData.L1Offset = L1Offset/Lamta1;
tempSatlitData.L2Offset = L2Offset/Lamta2;
//Satellite antenna phase center correction
double SatL12Offset[2] = {0};
if( spp_pos[0] !=0 )
getSatlitOffset(epochTime.Year,epochTime.Month,epochTime.Day,
epochTime.Hours,epochTime.Minutes,epochTime.Seconds - tempSatlitData.C2/M_C,
tempSatlitData.PRN,tempSatlitData.SatType,pXYZ,spp_pos, SatL12Offset, tempSatlitData.wantObserType);//pXYZ saves satellite coordinates
tempSatlitData.SatL1Offset = SatL12Offset[0]/Lamta1;
tempSatlitData.SatL2Offset = SatL12Offset[1]/Lamta2;
//Calculate tide correction
tempSatlitData.TideEffect = 0;
//Calculate antenna phase winding
double AntWindup = 0,preAntWindup = 0;
//Find the previous epoch. Is there a satellite present? The deposit is stored in preAntWindup or preAntWindup=0.
if( spp_pos[0] !=0 )
{
preAntWindup = getPreEpochWindUp(prevEpochSatlitData,tempSatlitData.PRN,tempSatlitData.SatType);//Get the previous epoch of WindUp
AntWindup = getWindup(epochTime.Year,epochTime.Month,epochTime.Day,
epochTime.Hours,epochTime.Minutes,epochTime.Seconds - tempSatlitData.C2/M_C,
pXYZ,spp_pos,preAntWindup,m_ReadAntClass.m_sunpos);
}
tempSatlitData.AntWindup = AntWindup;
//Computation to eliminate ionospheric pseudorange and carrier combinations (here absorbed receiver carrier deflection and WindUp) add SatL1Offset and SatL1Offset by xiaogongwei 2019.04.12
double alpha1 = (F1*F1)/(F1*F1 - F2*F2),alpha2 = (F2*F2)/(F1*F1 - F2*F2);
tempSatlitData.LL1 = Lamta1*(tempSatlitData.L1 + tempSatlitData.L1Offset + tempSatlitData.SatL1Offset - tempSatlitData.AntWindup);
tempSatlitData.LL2 = Lamta2*(tempSatlitData.L2 + tempSatlitData.L2Offset + tempSatlitData.SatL2Offset - tempSatlitData.AntWindup);
tempSatlitData.CC1 = tempSatlitData.C1 + Lamta1*tempSatlitData.L1Offset + Lamta1*tempSatlitData.SatL1Offset;
tempSatlitData.CC2 = tempSatlitData.C2 + Lamta2 *tempSatlitData.L2Offset + Lamta2*tempSatlitData.SatL2Offset;
tempSatlitData.LL3 = alpha1*tempSatlitData.LL1 - alpha2*tempSatlitData.LL2;//Eliminate ionospheric carrier LL3
tempSatlitData.PP3 = alpha1*tempSatlitData.CC1 - alpha2*tempSatlitData.CC2;//Eliminate ionospheric carrier PP3
// save data to currEpoch
currEpoch.append(tempSatlitData);
}
// judge satilite number large 4
if(currEpoch.length() < 5)
{
memset(spp_pos, 0, 3*sizeof(double));// debug by xiaogongwei 2019.09.25
epochSatlitData = currEpoch;// debug by xiaogongwei 2019.04.10
return ;
}
// get equation
MatrixXd mat_B, mat_P;
VectorXd Vct_L, Xk;
Vector3d XYZ_Pos;
Obtaining_equation( currEpoch, spp_pos, mat_B, Vct_L, mat_P);// debug xiaogongwei 2018.11.16
// slover by least square
Xk = (mat_B.transpose()*mat_P*mat_B).inverse()*mat_B.transpose()*mat_P*Vct_L;
XYZ_Pos[0] = tempPos3d[0] + Xk[0];
XYZ_Pos[1] = tempPos3d[1] + Xk[1];
XYZ_Pos[2] = tempPos3d[2] + Xk[2];
diff_3d = XYZ_Pos - tempPos3d;
tempPos3d = XYZ_Pos;// save slover pos
// update spp_pos
spp_pos[0] = XYZ_Pos[0]; spp_pos[1] = XYZ_Pos[1]; spp_pos[2] = XYZ_Pos[2];
// debug by xiaogongwei 2018.11.17
if(diff_3d.cwiseAbs().maxCoeff() < 1)
{
spp_pos[3] = Xk[3];// save base clk
store_currEpoch = currEpoch;
break;
}
if(diff_3d.cwiseAbs().maxCoeff() > 2e7 || !isnormal(diff_3d[0]) || iterj == max_iter - 1)
{
memset(spp_pos, 0, 4*sizeof(double));
epochSatlitData = currEpoch;// debug by xiaogongwei 2019.09.25
return ;
}
}// for(int iterj = 0; iterj < 20; iterj++)
// add Pesudorange smoothed by xiaogongwei 2018.11.20
MatrixXd mat_B, mat_P;
VectorXd Vct_L, Xk_smooth;
//Monitor satellite quality and cycle slip
// getGoodSatlite(prevEpochSatlitData,store_currEpoch, m_CutAngle);
if(store_currEpoch.length() < m_minSatFlag)
{
memset(spp_pos, 0, 4*sizeof(double));// debug by xiaogongwei 2019.09.25
epochSatlitData = store_currEpoch;// debug by xiaogongwei 2019.04.10
return ;
}
if(m_isSmoothRange)
{
m_QPseudoSmooth.SmoothPesudoRange(prevEpochSatlitData, store_currEpoch);
Obtaining_equation( store_currEpoch, spp_pos, mat_B, Vct_L, mat_P, true);// debug xiaogongwei 2018.11.16
// slover by least square
Xk_smooth = (mat_B.transpose()*mat_P*mat_B).inverse()*mat_B.transpose()*mat_P*Vct_L;
// update spp_pos
spp_pos[0] += Xk_smooth[0]; spp_pos[1] += Xk_smooth[1]; spp_pos[2] += Xk_smooth[2];
// use spp_pos update mat_B Vct_L
Obtaining_equation( store_currEpoch, spp_pos, mat_B, Vct_L, mat_P, true);// debug xiaogongwei 2019.03.28
}
else
{// Safe operation
for(int i = 0; i < store_currEpoch.length(); i++)
{
store_currEpoch[i].PP3_Smooth = store_currEpoch[i].PP3;
store_currEpoch[i].PP3_Smooth_NUM = 1;
store_currEpoch[i].PP3_Smooth_Q = 1 / store_currEpoch[i].SatWight;
}
Obtaining_equation( store_currEpoch, spp_pos, mat_B, Vct_L, mat_P, false);
}
// Qulity control. add by xiaogongwei 2019.05.06
VectorXd delate_flag;
// int max_iter1 = 10;
// Assuming that SPP has only one gross error, use if is not while, filtering uses while loop to eliminate Debug by xiaogongwei 2019.05.06
while(m_qualityCtrl.VtPVCtrl_C(mat_B, Vct_L, mat_P, delate_flag, store_currEpoch.length()))
{
QVector<int> del_val;
int sat_len = store_currEpoch.length();
for(int i = sat_len - 1; i >= 0;i--)
{
if(0 != delate_flag[i])
del_val.append(i);
}
// max_iter1--;
// if(max_iter1 <= 0) break;
// delete gross Errors
int del_len = del_val.length();
if(sat_len - del_len >= 5)
{
for(int i = 0; i < del_len;i++)
store_currEpoch.remove(del_val[i]);
sat_len = store_currEpoch.length();// update epochLenLB
//update spp_pos
Obtaining_equation( store_currEpoch, spp_pos, mat_B, Vct_L, mat_P, m_isSmoothRange);
MatrixXd mat_Q = (mat_B.transpose()*mat_P*mat_B).inverse();
VectorXd x_solver = mat_Q*mat_B.transpose()*mat_P*Vct_L;
spp_pos[0] += x_solver[0]; spp_pos[1] += x_solver[1]; spp_pos[2] += x_solver[2];
}
else
{
memset(spp_pos, 0, 4*sizeof(double));// debug by xiaogongwei 2019.09.25
break;
}
}
// change epochSatlitData !!!!!!
epochSatlitData = store_currEpoch;
}
//Read O files, sp3 files, clk files, and various error calculations, Kalman filtering ......................
//isDisplayEveryEpoch represent is disply every epoch information?(ENU or XYZ)
void QPPPModel::Run(bool isDisplayEveryEpoch)
{
if(!m_haveObsFile) return ;// if not have observation file.
QTime myTime; // set timer
myTime.start();// start timer
//Externally initialize fixed variables to speed up calculations
double p_HEN[3] = {0};//Get the antenna high
m_ReadOFileClass.getAntHEN(p_HEN);
//Traversing data one by one epoch, reading O file data
QString disPlayQTextEdit = "";// display for QTextEdit
QVector < SatlitData > prevEpochSatlitData;//Store satellite data of an epoch, use cycle slip detection(Put it on top, otherwise read multReadOFile epochs, the life cycle will expire when reading)
double spp_pos[4] = {0};// store SPP pos and clk
memcpy(spp_pos, m_ApproxRecPos, 3*sizeof(double));
int epoch_num = 0, continue_bad_epoch = 0;//Record the first epoch
bool isInitSpp = false;
if(spp_pos[0] !=0 ) isInitSpp = true;
while (!m_ReadOFileClass.isEnd())
{
QVector< QVector < SatlitData > > multepochSatlitData;//Store multiple epochs
m_ReadOFileClass.getMultEpochData(multepochSatlitData,multReadOFile);//Read multReadOFile epochs
//Multiple epoch cycles
for (int epoch = 0; epoch < multepochSatlitData.length();epoch++)
{
QVector< SatlitData > epochSatlitData;//Temporary storage of uncalculated data for each epoch satellite
QVector< SatlitData > epochResultSatlitData;// Store each epoch satellite to calculate the correction data
epochSatlitData = multepochSatlitData.at(epoch);
if(epochSatlitData.length() == 0) continue;
GPSPosTime epochTime;
if(epochSatlitData.length() > 0)
{
epochTime= epochSatlitData.at(0).UTCTime;//Obtain the observation time (the epoch stores the observation time for each satellite)
epochTime.epochNum = epoch_num;
}
//Set the epoch of the satellite
for(int i = 0;i < epochSatlitData.length();i++)
epochSatlitData[i].UTCTime.epochNum = epoch_num;
if(epoch_num == 2271)
{// Debug for epoch
//2018-12- 8 13: 4: 0.0000000
int a = 0;
}
// use spp compute postion and smooth pesudorange get clk at spp_pos[3]
// !isInitSpp || m_isKinematic
SimpleSPP(prevEpochSatlitData, epochSatlitData, spp_pos);
if(!isInitSpp && spp_pos[0] != 0)
memcpy(m_ApproxRecPos, spp_pos, 3*sizeof(double));
if(!m_isKinematic)
memcpy(spp_pos, m_ApproxRecPos, 3*sizeof(double));
if(!isnormal(spp_pos[0]))
memset(spp_pos, 0, 4*sizeof(double));
// The number of skipping satellites is less than m_minSatFlag
// update at 2018.10.17 for less m_minSatFlag satellites at the begin observtion
if(epochSatlitData.length() < m_minSatFlag || spp_pos[0] == 0)
{
if(m_isKinematic&&continue_bad_epoch++ > 8)
{
prevEpochSatlitData.clear();// Exception reinitialization
continue_bad_epoch = 0;
}
for(int i = 0;i < epochSatlitData.length();i++)
{
epochSatlitData[i].EpochFlag = 888;// add bad flag 888 for SPP
// set residual as zeros
epochSatlitData[i].VC1 = 0; epochSatlitData[i].VC2 = 0;
epochSatlitData[i].VL1 = 0; epochSatlitData[i].VL2 = 0;
epochSatlitData[i].VLL3 = 0; epochSatlitData[i].VPP3 = 0;
}
disPlayQTextEdit = "GPST: " + QString::number(epochTime.Hours) + ":" + QString::number(epochTime.Minutes)
+ ":" + QString::number(epochTime.Seconds) ;
autoScrollTextEdit(mp_QTextEditforDisplay, disPlayQTextEdit);// display for QTextEdit
disPlayQTextEdit = "Satellite number: " + QString::number(epochSatlitData.length())
+ " jump satellites number is less than 5.";
autoScrollTextEdit(mp_QTextEditforDisplay, disPlayQTextEdit);// display for QTextEdit
// translation to ENU
VectorXd ENU_Vct;
double spp_vct[3] = {0};
int param_len = 3*epochSatlitData.length() + 32;
ENU_Vct.resize(param_len);
ENU_Vct.fill(0);
// debug by xiaogongwei 2020.04.24
saveResult2Class(ENU_Vct, spp_vct, epochTime, epochSatlitData, epoch_num);
epoch_num++;
continue;
}
//An epoch cycle begins
for (int i = 0;i < epochSatlitData.length();i++)
{
SatlitData tempSatlitData = epochSatlitData.at(i);//Store calculated corrected satellite data
if(!isInSystem(tempSatlitData.SatType))
continue;
//Test whether the carrier and pseudorange are abnormal and terminate in time.
if(!(tempSatlitData.L1&&tempSatlitData.L2&&tempSatlitData.C1&&tempSatlitData.C2))
{
QString errorline;
ErrorMsg(errorline);
tempSatlitData.badMsg.append("Lack of observations"+errorline);
m_writeFileClass.allBadSatlitData.append(tempSatlitData);
continue;
}
//When seeking GPS
double m_PrnGpst = qCmpGpsT.YMD2GPSTime(epochTime.Year,epochTime.Month,epochTime.Day,
epochTime.Hours,epochTime.Minutes,epochTime.Seconds);
// Read satellite clock error from CLK file
double stalitClock = 0.0;
// Note: Time is the signal transmission time(m_PrnGpst - tempSatlitData.C2/M_C)
getCLKData(tempSatlitData.PRN,tempSatlitData.SatType,m_PrnGpst - tempSatlitData.C2/M_C,&stalitClock);
tempSatlitData.StaClock = stalitClock;
tempSatlitData.StaClockRate = 0;
//Obtain the coordinates of the epoch satellite from the SP3 data data
double pXYZ[3] = {0},pdXYZ[3] = {0}, sp3Clk = 0.0;//Unit m
// Note: Time is the signal transmission time(m_PrnGpst - tempSatlitData.C2/M_C - tempSatlitData.StaClock/M_C)
getSP3Pos(m_PrnGpst - tempSatlitData.C2/M_C - tempSatlitData.StaClock/M_C,tempSatlitData.PRN,
tempSatlitData.SatType,pXYZ,pdXYZ, &sp3Clk);//Obtain the precise ephemeris coordinates of the satellite launch time(Here we need to subtract the satellite clock error. tempSatlitData.StaClock/M_C Otherwise it will cause a convergence gap of 20cm)
tempSatlitData.X = pXYZ[0];tempSatlitData.Y = pXYZ[1];tempSatlitData.Z = pXYZ[2];
// tempSatlitData.StaClock = sp3Clk;// Use igu to do real-time PPP need to use sp3 clock difference replacement, the directory must have the same day clk file, but the clk file data is not used
//Test the state of the precise ephemeris and the clock difference and whether the carrier and pseudorange are abnormal, and terminate the XYZ or the satellite with the clock difference of 0 in time.
if (!(tempSatlitData.X&&tempSatlitData.Y&&tempSatlitData.Z&&tempSatlitData.StaClock))
{
QString errorline;
ErrorMsg(errorline);
tempSatlitData.badMsg.append("Can't calculate the orbit and clock offset"+errorline);
m_writeFileClass.allBadSatlitData.append(tempSatlitData);
continue;
}
//PPP removes satellites
QString removeSat = QString(tempSatlitData.SatType);
if(tempSatlitData.PRN < 10)
removeSat += "0" + QString::number(tempSatlitData.PRN);
else
removeSat += QString::number(tempSatlitData.PRN);
if(m_deleteSats.contains(removeSat, Qt::CaseInsensitive))
{
QString errorline;
ErrorMsg(errorline);
tempSatlitData.badMsg.append("remove " + removeSat +errorline);
m_writeFileClass.allBadSatlitData.append(tempSatlitData);
continue;
}
//Calculate the wavelength (mainly for multiple systems)
double F1 = tempSatlitData.Frq[0],F2 = tempSatlitData.Frq[1];
if(F1 == 0 || F2 == 0) continue;//Frequency cannot be 0
//Computational relativity correction
double relative = 0;
relative = getRelativty(tempSatlitData.SatType, pXYZ,spp_pos,pdXYZ);
tempSatlitData.Relativty = relative;
//Calculate the satellite's high sitting angle (as the receiver approximates the target)
double EA[2]={0};
getSatEA(tempSatlitData.X,tempSatlitData.Y,tempSatlitData.Z,spp_pos,EA);
tempSatlitData.EA[0] = EA[0];tempSatlitData.EA[1] = EA[1];
EA[0] = EA[0]*MM_PI/180;EA[1] = EA[1]*MM_PI/180;//Go to the arc to facilitate the calculation below
getWight(tempSatlitData);
//Calculate the autobiographic correction of the earth
double earthW = 0;
earthW = getSagnac(tempSatlitData.X,tempSatlitData.Y,tempSatlitData.Z,spp_pos);
tempSatlitData.Sagnac = earthW;
//Calculate tropospheric dry delay
double MJD = qCmpGpsT.computeJD(epochTime.Year,epochTime.Month,epochTime.Day,
epochTime.Hours,epochTime.Minutes,epochTime.Seconds) - 2400000.5;//Simplified Julian Day
//Calculate and save the annual accumulation date
double TDay = qCmpGpsT.YearAccDay(epochTime.Year,epochTime.Month,epochTime.Day);
double p_BLH[3] = {0},mf = 0, TropZHD_s = 0, store_epoch_ZHD;
qCmpGpsT.XYZ2BLH(spp_pos[0], spp_pos[1], spp_pos[2], p_BLH);
getTropDelay(MJD,TDay,EA[0],p_BLH,&mf, &TropZHD_s, NULL, &store_epoch_ZHD);
tempSatlitData.SatTrop = TropZHD_s;
tempSatlitData.StaTropMap = mf;
tempSatlitData.UTCTime.TropZHD = store_epoch_ZHD;
//Calculate antenna high offset correction Antenna Height
tempSatlitData.AntHeight = p_HEN[0]*qSin(EA[0]) + p_HEN[1]*qCos(EA[0])*qSin(EA[1]) + p_HEN[2]*qCos(EA[0])*qCos(EA[1]);
//Receiver L1 L2 offset correction
double Lamta1 = M_C/F1,Lamta2 = M_C/F2;
double L1Offset = 0,L2Offset = 0;
getRecvOffset(EA,tempSatlitData.SatType,L1Offset,L2Offset, tempSatlitData.wantObserType);
tempSatlitData.L1Offset = L1Offset/Lamta1;
tempSatlitData.L2Offset = L2Offset/Lamta2;
//Satellite antenna phase center correction store data to (m_ReadAntClass.m_sunpos,m_ReadAntClass.m_moonpos,m_ReadAntClass.m_gmst)
// and update sunpos and moonpos
double SatL12Offset[2] = {0};
getSatlitOffset(epochTime.Year,epochTime.Month,epochTime.Day,
epochTime.Hours,epochTime.Minutes,epochTime.Seconds - tempSatlitData.C2/M_C,
tempSatlitData.PRN,tempSatlitData.SatType,pXYZ,spp_pos, SatL12Offset, tempSatlitData.wantObserType);//pXYZ saves satellite coordinates
tempSatlitData.SatL1Offset = SatL12Offset[0] / Lamta1;
tempSatlitData.SatL2Offset = SatL12Offset[1] / Lamta2;
//Calculate tide correction
double effctDistance = 0;
effctDistance = getTideEffect(epochTime.Year,epochTime.Month,epochTime.Day,
epochTime.Hours,epochTime.Minutes,epochTime.Seconds,spp_pos,EA,
m_ReadAntClass.m_sunpos,m_ReadAntClass.m_moonpos,m_ReadAntClass.m_gmst);
tempSatlitData.TideEffect = effctDistance;
//Calculate antenna phase winding
double AntWindup = 0,preAntWindup = 0;
//Find the previous epoch. Is there a satellite present? The deposit is stored in preAntWindup or preAntWindup=0.
preAntWindup = getPreEpochWindUp(prevEpochSatlitData,tempSatlitData.PRN,tempSatlitData.SatType);//Get the previous epoch of WindUp
AntWindup = getWindup(epochTime.Year,epochTime.Month,epochTime.Day,
epochTime.Hours,epochTime.Minutes,epochTime.Seconds - tempSatlitData.C2/M_C,
pXYZ,spp_pos,preAntWindup,m_ReadAntClass.m_sunpos);
tempSatlitData.AntWindup = AntWindup;
//Computation to eliminate ionospheric pseudorange and carrier combinations (here absorbed receiver carrier deflection and WindUp) add SatL1Offset and SatL1Offset by xiaogongwei 2019.04.12
double alpha1 = (F1*F1)/(F1*F1 - F2*F2),alpha2 = (F2*F2)/(F1*F1 - F2*F2);
tempSatlitData.LL1 = Lamta1*(tempSatlitData.L1 + tempSatlitData.L1Offset + tempSatlitData.SatL1Offset - tempSatlitData.AntWindup);
tempSatlitData.LL2 = Lamta2*(tempSatlitData.L2 + tempSatlitData.L2Offset + tempSatlitData.SatL2Offset - tempSatlitData.AntWindup);
tempSatlitData.CC1 = tempSatlitData.C1 + Lamta1*tempSatlitData.L1Offset + Lamta1*tempSatlitData.SatL1Offset;
tempSatlitData.CC2 = tempSatlitData.C2 + Lamta2 *tempSatlitData.L2Offset + Lamta2*tempSatlitData.SatL2Offset;
tempSatlitData.LL3 = alpha1*tempSatlitData.LL1 - alpha2*tempSatlitData.LL2;//Eliminate ionospheric carrier LL3
tempSatlitData.PP3 = alpha1*tempSatlitData.CC1 - alpha2*tempSatlitData.CC2;//Eliminate ionospheric carrier PP3
//Save an epoch satellite data
epochResultSatlitData.append(tempSatlitData);
}//End of an epoch. for (int i = 0;i < epochSatlitData.length();i++)
// if((epoch_num+1)%200 == 0)
// {// Debug for epoch
// //2018-12- 8 13: 4: 0.0000000
// for(int i = 0;i < epochResultSatlitData.length()-1;i++)
// {
// epochResultSatlitData[i].StaClock += 100;
// }
// int a = 0;
// }
//Monitor satellite quality and cycle slip
getGoodSatlite(prevEpochSatlitData,epochResultSatlitData, m_CutAngle);
//Satellite number not sufficient
if(epochResultSatlitData.length() < m_minSatFlag)
{
if(m_isKinematic&&continue_bad_epoch++ > 8)
{
prevEpochSatlitData.clear();// Exception reinitialization
continue_bad_epoch = 0;
}
for(int i = 0;i < epochResultSatlitData.length();i++)
{
epochResultSatlitData[i].EpochFlag = 777;// add bad flag 777 for getGoodSatlite
// set residual as zeros
epochResultSatlitData[i].VC1 = 0; epochResultSatlitData[i].VC2 = 0;
epochResultSatlitData[i].VL1 = 0; epochResultSatlitData[i].VL2 = 0;
epochResultSatlitData[i].VLL3 = 0; epochResultSatlitData[i].VPP3 = 0;
}
// display clock jump
disPlayQTextEdit = "Valid Satellite Number: " + QString::number(epochResultSatlitData.length()) + ENDLINE +
"Waring: ***************Satellite number not sufficient*****************";
autoScrollTextEdit(mp_QTextEditforDisplay, disPlayQTextEdit);// display for QTextEdit
// translation to ENU
VectorXd ENU_Vct;
double spp_vct[3] = {0};
int param_len = 3*epochResultSatlitData.length() + 32;
ENU_Vct.resize(param_len);
ENU_Vct.fill(0);
// debug by xiaogongwei 2020.04.24
saveResult2Class(ENU_Vct, spp_vct, epochTime, epochResultSatlitData, epoch_num);
epoch_num++;
continue;
}
// Choose solve method Kalman or SRIF
MatrixXd P;
VectorXd X;//Respectively dX, dY, dZ, dT (zenith tropospheric residual), dVt (receiver clock error), N1, N2...Nm (fuzzy)[dx,dy,dz,dTrop,dClock,N1,N2,...Nn]
double spp_vct[3] = {0};// save spp pos
bool is_filter_good = false;
X.resize(5+epochResultSatlitData.length());
X.setZero();
// store spp position
spp_vct[0] = spp_pos[0]; spp_vct[1] = spp_pos[1]; spp_vct[2] = spp_pos[2];
if (!m_Solver_Method.compare("SRIF", Qt::CaseInsensitive))
is_filter_good = m_SRIFAlgorithm.SRIFforStatic(prevEpochSatlitData,epochResultSatlitData,spp_pos,X,P);
else
is_filter_good = m_KalmanClass.KalmanforStatic(prevEpochSatlitData,epochResultSatlitData,spp_pos,X,P);
//Save the last epoch satellite data
if(is_filter_good)
{
m_qualityCtrl.CmpSatClkRate(prevEpochSatlitData, epochResultSatlitData);// CmpSatClkRate add by 2020.01.03
prevEpochSatlitData = epochResultSatlitData;
continue_bad_epoch = 0;
}
else
{
continue_bad_epoch++;
memset(spp_pos, 0, 4*sizeof(double));
memset(spp_vct, 0, 3*sizeof(double));
X.setZero();
}
if(m_isKinematic && continue_bad_epoch++ > 8)
{
prevEpochSatlitData.clear();// Exception reinitialization
continue_bad_epoch = 0;
}
//Output calculation result(print result)
// display every epoch results
if(isDisplayEveryEpoch)
{
int Valid_SatNumber = epochResultSatlitData.length();
// display epoch number
disPlayQTextEdit = "Epoch Number: " + QString::number(epoch_num);
autoScrollTextEdit(mp_QTextEditforDisplay, disPlayQTextEdit);// display for QTextEdit
//
disPlayQTextEdit = "GPST: " + QString::number(epochTime.Hours) + ":" + QString::number(epochTime.Minutes)
+ ":" + QString::number(epochTime.Seconds) + ENDLINE + "Satellite number: " + QString::number(epochSatlitData.length());
autoScrollTextEdit(mp_QTextEditforDisplay, disPlayQTextEdit);// display for QTextEdit
// display ENU or XYZ
disPlayQTextEdit = "Valid Satellite Number: " + QString::number(Valid_SatNumber) + ENDLINE
+ "Estimated coordinates: [ " + QString::number(spp_pos[0], 'f', 4) + "," + QString::number(spp_pos[1], 'f', 4) + ","
+ QString::number(spp_pos[2], 'f', 4) + " ]" + ENDLINE;
autoScrollTextEdit(mp_QTextEditforDisplay, disPlayQTextEdit);// display for QTextEdit
}
//Save each epoch X data to prepare for writing a file
// translation to ENU
VectorXd ENU_Vct;
ENU_Vct = X;// [dx,dy,dz,dTrop,dClock,N1,N2,...Nn]
//ENU_Vct[0] = P(1,1); ENU_Vct[1] = P(2,2); ENU_Vct[2] = P(3,3);
ENU_Vct[0] = spp_pos[0]; ENU_Vct[1] = spp_pos[1]; ENU_Vct[2] = spp_pos[2];
saveResult2Class(ENU_Vct, spp_vct, epochTime, epochResultSatlitData, epoch_num, &P);
epoch_num++;//Increase in epoch
}//End of multiple epochs. (int n = 0; n < multepochSatlitData.length();n++)
// clear multepochSatlitData
multepochSatlitData.clear();
}//Arrive at the end of the file. while (!m_ReadOFileClass.isEnd())
// time end
float m_diffTime = myTime.elapsed() / 1000.0;
if(isDisplayEveryEpoch)
{
disPlayQTextEdit = "The Elapse Time: " + QString::number(m_diffTime) + "s";
autoScrollTextEdit(mp_QTextEditforDisplay, disPlayQTextEdit);// display for QTextEdit
}
//Write result to file
if(!m_IS_MAX_OBS) writeResult2File();
m_isRuned = true;// Determine whether the operation is complete.
}
// The edit box automatically scrolls, adding one row or more lines at a time.
void QPPPModel::autoScrollTextEdit(QTextEdit *textEdit,QString &add_text)
{
if(textEdit == NULL) return ;
int m_Display_Max_line = 99999;
//Add line character and refresh edit box.
QString insertText = add_text + ENDLINE;
textEdit->insertPlainText(insertText);
//Keep the editor in the last line of the cursor.
QTextCursor cursor=textEdit->textCursor();
cursor.movePosition(QTextCursor::End);
textEdit->setTextCursor(cursor);
textEdit->repaint();
QApplication::processEvents();
//If you exceed a certain number of lines, empty it.
if(textEdit->document()->lineCount() > m_Display_Max_line)
{
textEdit->clear();
}
}
bool QPPPModel::connectHost()
{
if(m_isConnect) return true;
QString ftp_link = "ftp.gfz-potsdam.de", user_name = "anonymous", user_password = "";//ftp information
int Port = 21;
ftpClient.FtpSetUserInfor(user_name, user_password);
ftpClient.FtpSetHostPort(ftp_link, Port);
m_isConnect = true;
return true;
}
bool QPPPModel::connectCNTHost()
{
if(m_isConnectCNT) return true;
QString ftp_link = "ppp-wizard.net", user_name = "anonymous", user_password = "";//ftp information
int Port = 21;
ftpClient.FtpSetUserInfor(user_name, user_password);
ftpClient.FtpSetHostPort(ftp_link, Port);
m_isConnectCNT = true;
return true;
}
//download Get erp file
// productType: "erp"
// GPS_Week: is GPS week.
QString QPPPModel::downErpFile(QString store_floder_path, int GPS_Week, int GPS_day, QString productType)
{
QString erp_path_name = "";
if(!m_isConnect)
return erp_path_name;
QString igs_short_path = "/pub/home/GNSS/products/mgex/", igs_productCompany = "gbm";// set path of products
QString gbm_short_path = "/pub/home/GNSS/products/mgex/", gbm_productCompany = "gbm";// set path of products
QString igs_path_string = "", igs_erp_name = "";
//net file path
igs_path_string.append(igs_short_path);
igs_path_string.append(QString::number(GPS_Week));
igs_path_string.append("/");
// file name
igs_erp_name.append(igs_productCompany);
igs_erp_name.append(QString::number(GPS_Week));
igs_erp_name.append(QString::number(GPS_day));
igs_erp_name.append(".erp.Z");
// down load begin
bool is_down_igs = false;
QString disPlayQTextEdit = "download start!";
autoScrollTextEdit(mp_QTextEditforDisplay, disPlayQTextEdit);// display for QTextEdit
QString igs_erp_path = igs_path_string + igs_erp_name,
igs_temp_local_file = store_floder_path + igs_erp_name;
if(!ftpClient.FtpGet(igs_erp_path, igs_temp_local_file))
{
disPlayQTextEdit = "download: " + igs_erp_path + " bad!";
autoScrollTextEdit(mp_QTextEditforDisplay, disPlayQTextEdit);// display for QTextEdit
is_down_igs = false;
}
else
{
disPlayQTextEdit = "download: " + igs_erp_path + " success!";
autoScrollTextEdit(mp_QTextEditforDisplay, disPlayQTextEdit);// display for QTextEdit
is_down_igs = true;
}
// save products file to fileList
QString temp_local_file;
if(is_down_igs)
temp_local_file = igs_temp_local_file;
// umcompress ".Z"
QFileInfo fileinfo(temp_local_file);
if(0 != fileinfo.size())
{
MyCompress compress;
compress.UnCompress(temp_local_file, store_floder_path);
}
// return file path + name
int extend_name = temp_local_file.lastIndexOf(".");
erp_path_name = temp_local_file.mid(0, extend_name);
if(!is_down_igs) erp_path_name = "";
return erp_path_name;
}
//download Get sp3, clk file
// productType: "sp3", "clk"
// GPS_Week, GPS_Day: is GPS week and day.
// fileList: if fileList least 3. down new product and change fileList
QStringList QPPPModel::downProducts(QString store_floder_path, int GPS_Week, int GPS_day, QString productType)
{
QString igs_short_path = "/pub/home/GNSS/products/mgex/", igs_productCompany = "gbm";// set path of products
QString gbm_short_path = "/pub/home/GNSS/products/mgex/", gbm_productCompany = "gbm";// set path of products
QStringList fileList;
fileList.clear();
if(!m_isConnect) return fileList;
//get fileList
QStringList net_fileList, igs_net_fileList;
net_fileList.clear();
igs_net_fileList.clear();
QString tempStr = "", fileName = "", disPlayQTextEdit = "";
QStringList three_fileNames, igs_three_fileNames;
//download "sp3", "clk"
for(int i = -1;i < 2; i++)
{
int temp_week = GPS_Week, temp_day = GPS_day + i;
if(temp_day < 0)
{
temp_week--;
temp_day = 6;
}
else if(temp_day > 6)
{
temp_week++;
temp_day = 0;
}
// get gbm products
tempStr.append(gbm_short_path);
tempStr.append(QString::number(temp_week));
tempStr.append("/");
fileName.append(gbm_productCompany);
fileName.append(QString::number(temp_week));
fileName.append(QString::number(temp_day));
if (productType.contains("sp3", Qt::CaseInsensitive))
fileName.append(".sp3.Z");
else if (productType.contains("clk", Qt::CaseInsensitive))
fileName.append(".clk.Z");
else
return fileList;
tempStr.append(fileName); // save filename and ftp path
three_fileNames.append(fileName);
net_fileList.append(tempStr);
// clear temp data
tempStr = ""; fileName = "";
// get igs products
tempStr.append(igs_short_path);
tempStr.append(QString::number(temp_week));
tempStr.append("/");
fileName.append(igs_productCompany);
fileName.append(QString::number(temp_week));
fileName.append(QString::number(temp_day));
if (productType.contains("sp3", Qt::CaseInsensitive))
fileName.append(".sp3.Z");
else if (productType.contains("clk", Qt::CaseInsensitive))
fileName.append(".clk.Z");//.clk_30s.Z or .clk.Z
else
return fileList;
tempStr.append(fileName); // save filename and ftp path
igs_three_fileNames.append(fileName);
igs_net_fileList.append(tempStr);
// clear temp data
tempStr = ""; fileName = "";
}
// down three files
disPlayQTextEdit = "download start!";
autoScrollTextEdit(mp_QTextEditforDisplay, disPlayQTextEdit);// display for QTextEdit
for(int i = 0; i < 3;i++)
{
bool is_down_gbm = false, is_down_igs = false;
QString gbm_temp_local_file = store_floder_path, igs_temp_local_file = store_floder_path;
gbm_temp_local_file.append(three_fileNames.at(i));
igs_temp_local_file.append(igs_three_fileNames.at(i));
if(!ftpClient.FtpGet(net_fileList.at(i), gbm_temp_local_file))
{
disPlayQTextEdit = "download: " + net_fileList.at(i) + " bad!";
autoScrollTextEdit(mp_QTextEditforDisplay, disPlayQTextEdit);// display for QTextEdit
is_down_gbm = false;
if(!ftpClient.FtpGet(igs_net_fileList.at(i), igs_temp_local_file))
{
disPlayQTextEdit = "download: " + igs_net_fileList.at(i) + " bad!";
autoScrollTextEdit(mp_QTextEditforDisplay, disPlayQTextEdit);// display for QTextEdit
}
else
{
is_down_igs = true;
disPlayQTextEdit = "download: " + igs_net_fileList.at(i) + " success!";
autoScrollTextEdit(mp_QTextEditforDisplay, disPlayQTextEdit);// display for QTextEdit
}
}
else
{
disPlayQTextEdit = "download: " + net_fileList.at(i) + " success!";
autoScrollTextEdit(mp_QTextEditforDisplay, disPlayQTextEdit);// display for QTextEdit
is_down_gbm = true;
}
// save products file to fileList
QString temp_local_file;
if(is_down_gbm)
temp_local_file = gbm_temp_local_file;
else if(is_down_igs)
temp_local_file = igs_temp_local_file;
// If the download fail
if(!is_down_gbm && !is_down_igs)
{
disPlayQTextEdit = "download: gbm or igs products bad, Procedure will terminate!";
autoScrollTextEdit(mp_QTextEditforDisplay, disPlayQTextEdit);// display for QTextEdit
}
int extend_name = temp_local_file.lastIndexOf(".");
QString product_name = temp_local_file.mid(0, extend_name);
// umcompress ".Z"
QFileInfo fileinfo(temp_local_file);
if(0 != fileinfo.size())
{
MyCompress compress;
if(compress.UnCompress(temp_local_file, store_floder_path))
fileList.append(product_name);
else
fileList.clear();
}
}//for(int i = 0; i < 3;i++)
return fileList;
}
// dowload CNT products, this product update only one day
QStringList QPPPModel::downCNTProducts(QString store_floder_path, int GPS_Week, int GPS_day, QString productType)
{
QString cnt_short_path = "/PRODUCTS/REAL_TIME/", cnt_productCompany = "cnt";// set path of products
QStringList fileList;
fileList.clear();
if(!m_isConnectCNT) return fileList;
//get fileList
QString tempStr = "", fileName = "", disPlayQTextEdit = "", net_path = "", local_path = "";
bool is_down_cnt = false;
// get cnt products
tempStr.append(cnt_short_path);
fileName.append(cnt_productCompany);
fileName.append(QString::number(GPS_Week));
fileName.append(QString::number(GPS_day));
if (productType.contains("sp3", Qt::CaseInsensitive))
fileName.append(".sp3.gz");
else if (productType.contains("clk", Qt::CaseInsensitive))
fileName.append(".clk.gz");
else
return fileList;
tempStr.append(fileName); // save filename and ftp path
net_path = tempStr;
local_path = store_floder_path + fileName;
if(!ftpClient.FtpGet(net_path, local_path))
{
is_down_cnt = false;
disPlayQTextEdit = "download: " + net_path + " bad!";
autoScrollTextEdit(mp_QTextEditforDisplay, disPlayQTextEdit);// display for QTextEdit
}
else
{
is_down_cnt = true;
disPlayQTextEdit = "download: " + net_path + " success!";
autoScrollTextEdit(mp_QTextEditforDisplay, disPlayQTextEdit);// display for QTextEdit
}
if(!is_down_cnt)
{
disPlayQTextEdit = "download: cnt products bad, Procedure will terminate!, Please wait 24 hours!";
autoScrollTextEdit(mp_QTextEditforDisplay, disPlayQTextEdit);// display for QTextEdit
}
else
{
int extend_name = local_path.lastIndexOf(".");
QString product_name = local_path.mid(0, extend_name);
// umcompress ".Z"
QFileInfo fileinfo(local_path);
if(0 != fileinfo.size())
{
MyCompress compress;
if(compress.UnCompress(local_path, store_floder_path))
fileList.append(product_name);
else
fileList.clear();
}
}
return fileList;
}
//Destructor
QPPPModel::~QPPPModel()
{
}
//Setting up the file system. SystemStr:"G"(Turn on the GPS system);"GR":(Turn on the GPS+GLONASS system);"GRCE"(all open), etc.
//GPS, GLONASS, BDS, and Galieo are used respectively: the letters G, R, C, E
bool QPPPModel::setSatlitSys(QString SystemStr)
{
bool IsGood = QBaseObject::setSatlitSys(SystemStr);
//Set to read O files
m_ReadOFileClass.setSatlitSys(SystemStr);
//Set to read Sp3
m_ReadSP3Class.setSatlitSys(SystemStr);
//Set to read Clk files
m_ReadClkClass.setSatlitSys(SystemStr);
//Setting up the receiver satellite antenna system
m_ReadAntClass.setSatlitSys(SystemStr);
//Set kalman filtering system
m_KalmanClass.setSatlitSys(SystemStr);
//Set the system of m_writeFileClass
m_writeFileClass.setSatlitSys(SystemStr);
//Set the system of m_SRIFAlgorithm
m_SRIFAlgorithm.setSatlitSys(SystemStr);
return IsGood;
}
//Obtain the coordinates of the epoch satellite from the SP3 data data
void QPPPModel::getSP3Pos(double GPST,int PRN,char SatType,double *p_XYZ,double *pdXYZ, double *pSp3Clk)
{
m_ReadSP3Class.getPrcisePoint(PRN,SatType,GPST,p_XYZ,pdXYZ, pSp3Clk);
}
//Get clock error from CLK data
void QPPPModel::getCLKData(int PRN,char SatType,double GPST,double *pCLKT)
{
m_ReadClkClass.getStaliteClk(PRN,SatType,GPST,pCLKT);
}
//Earth autobiography correction
double QPPPModel::getSagnac(double X,double Y,double Z,double *approxRecvXYZ)
{//Calculate the autobiographic correction of the earth
double dltaP = M_We*((X - approxRecvXYZ[0])*Y - (Y - approxRecvXYZ[1])*X)/M_C;
return -dltaP;//Returns the opposite number such that p = p' + dltaP; can be added directly
}
void QPPPModel::getWight(SatlitData &tempSatlitData)
{
double E = tempSatlitData.EA[0]*MM_PI/180;
double SatWight = qSin(E)*qSin(E) / M_Zgama_P_square;//Set the weight of the satellite
switch (tempSatlitData.SatType) {
case 'R': SatWight = 0.75*SatWight; break;
case 'C': case 'E': SatWight = 0.3*SatWight; break;
default:
break;
}
//Five satellites with poor GEO orbit in front of Beidou
if(tempSatlitData.SatType == 'C' && tempSatlitData.PRN <= 5)
SatWight = 0.01*SatWight;
tempSatlitData.SatWight = SatWight;//Set the weight of the satellite debug by xiaogongwei 2019.04.24
}
//Computational relativistic effect
double QPPPModel::getRelativty(char SatType, double *pSatXYZ,double *pRecXYZ,double *pSatdXYZ)
{
/*double c = 299792458.0;
double dltaP = -2*(pSatXYZ[0]*pSatdXYZ[0] + pSatdXYZ[1]*pdXYZ[1] + pSatXYZ[2]*pSatdXYZ[2]) / c;*/
double b[3] = {0},a = 0,R = 0,Rs = 0,Rr = 0,v_light = 299792458.0,dltaP = 0;
b[0] = pRecXYZ[0] - pSatXYZ[0];
b[1] = pRecXYZ[1] - pSatXYZ[1];
b[2] = pRecXYZ[2] - pSatXYZ[2];
a = pSatXYZ[0]*pSatdXYZ[0] + pSatXYZ[1]*pSatdXYZ[1] + pSatXYZ[2]*pSatdXYZ[2];
R=qCmpGpsT.norm(b,3);
Rs = qCmpGpsT.norm(pSatXYZ,3);
Rr = qCmpGpsT.norm(pRecXYZ,3);
double oldM_GM = 3.986005e14, old_We = 7.2921151467E-5;// GPS
switch(SatType)
{
case 'G': oldM_GM = 3.986005e14; old_We = 7.2921151467E-5; break;
case 'R': oldM_GM = 3.9860044E14; old_We = 7.292115E-5; break;
case 'E': oldM_GM = 3.986004418E14; old_We = 7.2921151467E-5; break;
case 'C': oldM_GM = 3.986004418E14; old_We = 7.292115E-5; break;
}
double gravity_delay = 0.0;
gravity_delay = -(2*oldM_GM/(v_light*v_light))*qLn((Rs+Rr+R)/(Rs+Rr-R));
dltaP=-2*a/M_C + gravity_delay;
return dltaP;//m
}
//Calculate EA, E: satellite elevation angle, A: azimuth
void QPPPModel::getSatEA(double X,double Y,double Z,double *approxRecvXYZ,double *EA)
{//Calculate EA//BUG occurs, because when calculating XYZ to BLH, L (earth longitude) is actually opposite when y < 0, x > 0.L = -atan(y/x) error should be L = -atan(-y/x)
double pSAZ[3] = {0};
qCmpGpsT.XYZ2SAZ(X,Y,Z,pSAZ,approxRecvXYZ);//BUG occurs
EA[0] = (MM_PI/2 - pSAZ[2])*360/(2*MM_PI);
EA[1] = pSAZ[1]*360/(2*MM_PI);
}
//Using the Sass model There are other models and projection functions that can be used, as well as the GPT2 model.
// ZHD_s: GNSS signal direction dry delay, ZHD: Station zenith direction dry delay, ZPD: GNSS signal direction total delay
void QPPPModel::getTropDelay(double MJD,int TDay,double E,double *pBLH,double *mf, double *ZHD_s, double *ZPD, double *ZHD)
{
//double GPT2_Trop = m_ReadTropClass.getGPT2SasstaMDelay(MJD,TDay,E,pBLH,mf);//The GPT2 model only returns the dry delay estimate and the wet delay function.
double tropDelayH = 0, tropDelayP = 0, tropDelayZHD = 0;
if(m_TropDelay.mid(0,1).compare("U") == 0)
{
tropDelayH = m_ReadTropClass.getUNB3mDelay(pBLH,TDay,E,mf, &tropDelayP, &tropDelayZHD);//Total delay of the UNB3M model
}
else if(m_TropDelay.mid(0,1).compare("S") == 0)
{
tropDelayH = m_ReadTropClass.getGPT2SasstaMDelay(MJD,TDay,E,pBLH,mf, &tropDelayP, &tropDelayZHD);//GPT2 model total delay
}
else
{
tropDelayH = m_ReadTropClass.getGPT2HopfieldDelay(MJD,TDay,E,pBLH,mf, &tropDelayP, &tropDelayZHD);//GPT2 model total delay
}
// juge tropDely is nan or no Meaningless
if(qAbs(tropDelayH) > 100 || qAbs(pBLH[2]) > 50000)
tropDelayH = 1e-6;
else if(!isnormal(tropDelayH))
tropDelayH = 1e-6;
if(qAbs(tropDelayP) > 100 || qAbs(pBLH[2]) > 50000)
tropDelayP = 1e-6;
else if(!isnormal(tropDelayP))
tropDelayP = 1e-6;
if(qAbs(tropDelayZHD) > 100 || qAbs(pBLH[2]) > 50000)
tropDelayZHD = 1e-6;
else if(!isnormal(tropDelayZHD))
tropDelayZHD = 1e-6;
if(ZHD) *ZHD = tropDelayZHD;
if(ZHD_s) *ZHD_s = tropDelayH;
if(ZPD) *ZPD = tropDelayP;
return ;
}
//Calculate the receivers L1 and L2 phase center correction PCO + PCV, L1Offset and L2Offset represent the distance correction of the line of sight direction
bool QPPPModel::getRecvOffset(double *EA,char SatType,double &L1Offset,double &L2Offset, QVector<QString> FrqFlag)
{
if (m_ReadAntClass.getRecvL12(EA[0],EA[1],SatType,L1Offset,L2Offset, FrqFlag))
return true;
else
{
L1Offset = 0; L2Offset = 0;
return false;
}
}
//Calculate the satellite PCO+PCV correction, because the satellite G1 and G2 frequencies are the same, so the two bands change exactly the same; StaPos and RecPos, satellite and receiver WGS84 coordinates (unit m)
//L12Offset
bool QPPPModel::getSatlitOffset(int Year,int Month,int Day,int Hours,int Minutes,double Seconds,int PRN,char SatType,double *StaPos,double *RecPos,
double *L12Offset, QVector<QString> FrqFlag)
{
bool isGood = m_ReadAntClass.getSatOffSet(Year,Month,Day,Hours,Minutes,Seconds,PRN,SatType,StaPos,RecPos, L12Offset, FrqFlag);//pXYZ saves satellite coordinates
if(isGood)
return true;
{
L12Offset[0] = 0; L12Offset[1] = 0;
return false;
}
}
//Calculate the correction of the tide in the direction of the line of sight (unit m)
double QPPPModel::getTideEffect(int Year,int Month,int Day,int Hours,int Minutes,double Seconds,
double *pXYZ,double *EA,double *psunpos/* =NULL */, double *pmoonpos /* = NULL */,double gmst /* = 0 */,QString StationName /* = "" */)
{
return m_TideEffectClass.getAllTideEffect(Year,Month,Day,Hours,Minutes,Seconds,pXYZ,EA,psunpos,pmoonpos,gmst,StationName);
}
//SatPos and RecPos represent the satellite and receiver WGS84 coordinates. Return to the weekly (unit week) range [-0.5 +0.5]
double QPPPModel::getWindup(int Year,int Month,int Day,int Hours,int Minutes,double Seconds,double *StaPos,double *RecPos,double &phw,double *psunpos)
{
return m_WinUpClass.getWindUp(Year,Month,Day,Hours,Minutes,Seconds,StaPos,RecPos,phw,psunpos);
}
//Detect cycle hops: return pLP is a three-dimensional array, the first is the W-M combination (N2-N1 < 3.5) The second number ionospheric residual (<0.3) The third is (lamt2*N2-lamt1*N1 < 3.5)
bool QPPPModel::CycleSlip(const SatlitData &oneSatlitData,double *pLP)
{//
if (oneSatlitData.L1*oneSatlitData.L2*oneSatlitData.C1*oneSatlitData.C2 == 0)//Determine whether it is dual-frequency data
return false;
double F1 = oneSatlitData.Frq[0],F2 = oneSatlitData.Frq[1];//Get the frequency of this satellite
double Lamta1 = M_C/F1,Lamta2 = M_C/F2;
//MW Combination(1)
// double NL12 = ((F1-F2)/(F1+F2))*(oneSatlitData.C1/Lamta1 + oneSatlitData.C2/Lamta2) - (oneSatlitData.L1 - oneSatlitData.L2);
//MW Combination(2)
double lamdaMW = M_C/(F1 - F2);
double NL12 = (oneSatlitData.L1 - oneSatlitData.L2) - (F1*oneSatlitData.C1 + F2*oneSatlitData.C2)/((F1+F2)*lamdaMW);
double IocL = Lamta1*oneSatlitData.L1 - Lamta2*oneSatlitData.L2;//Ionospheric delayed residual
double IocLP = IocL+(oneSatlitData.C1 - oneSatlitData.C2);
pLP[0] = NL12;
pLP[1] =IocL;
pLP[2] = IocLP;
return true;
}
//Save the phase entanglement of the previous epoch
double QPPPModel::getPreEpochWindUp(QVector< SatlitData > &prevEpochSatlitData,int PRN,char SatType)
{
int preEopchLen = prevEpochSatlitData.length();
if (0 == preEopchLen) return 0;
for (int i = 0;i < preEopchLen;i++)
{
SatlitData oneSatalite = prevEpochSatlitData.at(i);
if (PRN == oneSatalite.PRN&&oneSatalite.SatType == SatType)
return oneSatalite.AntWindup;
}
return 0;
}
//Repair receiver clock jump
void QPPPModel::reciveClkRapaire(QVector< SatlitData > &prevEpochSatlitData,QVector< SatlitData > &epochSatlitData)
{
int preEpochLen = prevEpochSatlitData.length();
int epochLen = epochSatlitData.length();
if(preEpochLen == 0 || epochLen == 0) return ;
// clock jump repair Debug by xiaogongwei 2019.03.30
double sum_S = 0.0, k1 = 0.01*M_C, M = 0.0, jump = 0.0;// for repair clock
int clock_num = 0, check_sat_num = 0;// for repair clock
for (int i = 0;i < epochLen;i++)
{
SatlitData epochData = epochSatlitData.at(i);
for (int j = 0;j < preEpochLen;j++)
{
SatlitData preEpochData = prevEpochSatlitData.at(j);
if (epochData.PRN == preEpochData.PRN&&epochData.SatType == preEpochData.SatType)
{
check_sat_num++;
double Lamta1 = M_C / preEpochData.Frq[0], Lamta2 = M_C / preEpochData.Frq[1];
double IocL1 = Lamta1*preEpochData.L1 - Lamta2*preEpochData.L2,
IocL2 = Lamta1*epochData.L1 - Lamta2*epochData.L2;//Ionospheric delayed residual
if(qAbs(IocL2 - IocL1) < M_IR)
{
double dP3 = epochData.PP3 - preEpochData.PP3, dL3 = epochData.LL3 - preEpochData.LL3;
double Si = (dP3 - dL3);// (m)
// judge clock jump type
if(qAbs(dP3) >= 0.001*M_C && m_clock_jump_type == 0)
m_clock_jump_type = 1;
if(qAbs(dL3) >= 0.001*M_C && m_clock_jump_type == 0)
m_clock_jump_type = 2;
if(qAbs(Si) >= 0.001*M_C)
{
sum_S += Si;
clock_num++;
}
}
}
}
}
// repair clock
double jump_pro = 0.0;
if(check_sat_num != 0) jump_pro = (double)clock_num / check_sat_num;
if(jump_pro > 0.8)
{
M = 1e3*sum_S / (M_C*clock_num);// unit:ms
if(qAbs(qRound(M) - M) <= 1e-5)
jump = qRound(M);
else
jump = 0;
}
if(jump != 0)
{
for (int i = 0;i < epochLen;i++)
{
SatlitData tempSatlitData = epochSatlitData[i];
double F1 = tempSatlitData.Frq[0],F2 = tempSatlitData.Frq[1];
double Lamta1 = M_C/F1,Lamta2 = M_C/F2;
double alpha1 = (F1*F1)/(F1*F1 - F2*F2),alpha2 = (F2*F2)/(F1*F1 - F2*F2);
if(m_clock_jump_type == 1)
{// clock jump type I
tempSatlitData.L1 = tempSatlitData.L1 + 1e-3*jump*M_C / Lamta1;
tempSatlitData.L2 = tempSatlitData.L2 + 1e-3*jump*M_C / Lamta2;
tempSatlitData.LL3 = alpha1*(tempSatlitData.L1 + tempSatlitData.L1Offset + tempSatlitData.SatL1Offset - tempSatlitData.AntWindup)*Lamta1
- alpha2*(tempSatlitData.L2 + tempSatlitData.L2Offset + tempSatlitData.SatL2Offset - tempSatlitData.AntWindup)*Lamta2;//Eliminate ionospheric carrier LL3
}
else if(m_clock_jump_type == 2)
{// clock jump type II
tempSatlitData.C1 = tempSatlitData.C1 - 1e-3*jump*M_C / Lamta1;
tempSatlitData.C2 = tempSatlitData.C2 - 1e-3*jump*M_C / Lamta2;
tempSatlitData.PP3 = alpha1*(tempSatlitData.C1 + Lamta1*tempSatlitData.L1Offset + Lamta1*tempSatlitData.SatL1Offset)
- alpha2*(tempSatlitData.C2 + Lamta2 *tempSatlitData.L2Offset + Lamta2*tempSatlitData.SatL2Offset);//Eliminate ionospheric carrier PP3
}
epochSatlitData[i] = tempSatlitData;
}
}
}
//Screening satellites that do not have missing data and detect cycle slips, high quality (height angles, ranging codes, etc.)
void QPPPModel::getGoodSatlite(QVector< SatlitData > &prevEpochSatlitData,QVector< SatlitData > &epochSatlitData,double eleAngle)
{
int preEpochLen = prevEpochSatlitData.length();
int epochLen = epochSatlitData.length();
if(epochLen == 0) return ;
reciveClkRapaire(prevEpochSatlitData, epochSatlitData);// Rapaire recive Clk
//Cycle slip detection
QVector< int > CycleFlag;//Record the position of the weekly jump
CycleFlag.resize(epochLen);
for (int i = 0;i < epochLen;i++) CycleFlag[i] = 0;
for (int i = 0;i < epochLen;i++)
{
SatlitData epochData = epochSatlitData.at(i);
//Data is not 0
if (!(epochData.L1&&epochData.L2&&epochData.C1&&epochData.C2)) // debug xiaogongwei 2018.11.16
{
QString errorline;
ErrorMsg(errorline);
epochData.badMsg.append("Lack of observations"+errorline);
m_writeFileClass.allBadSatlitData.append(epochData);
CycleFlag[i] = -1;
}
//The corrections are not zero
if (!(epochData.X&&epochData.Y&&epochData.Z&&epochData.StaClock)) // debug xiaogongwei 2018.11.16
{
QString errorline;
ErrorMsg(errorline);
epochData.badMsg.append("Can't calculate the orbit and clock offset"+errorline);
m_writeFileClass.allBadSatlitData.append(epochData);
CycleFlag[i] = -1;
}
//Quality control (height angle, pseudorange difference)
if (epochData.EA[0] < eleAngle)
{
QString errorline;
ErrorMsg(errorline);
epochData.badMsg.append("elevation angle is " + QString::number(epochData.EA[0],'f',2)
+ " less " + QString::number(eleAngle,'f',2) +errorline);
m_writeFileClass.allBadSatlitData.append(epochData);
CycleFlag[i] = -1;
}
if(qAbs(epochData.C1 - epochData.C2) > 50)
{
QString errorline;
ErrorMsg(errorline);
epochData.badMsg.append("C1-C2>50"+errorline);
m_writeFileClass.allBadSatlitData.append(epochData);
CycleFlag[i] = -1;
}
// signal intensity
if(epochData.SigInten >0 && epochData.SigInten < 0)
{
QString errorline;
ErrorMsg(errorline);
epochData.badMsg.append("Signal intensity is less"+errorline);
m_writeFileClass.allBadSatlitData.append(epochData);
CycleFlag[i] = -1;
}
//Cycle slip detection
for (int j = 0;j < preEpochLen;j++)//(jump == 0) not happen clock jump && (jump == 0)
{
SatlitData preEpochData = prevEpochSatlitData.at(j);
if (epochData.PRN == preEpochData.PRN&&epochData.SatType == preEpochData.SatType)
{//Need to judge the system
double epochLP[3]={0},preEpochLP[3]={0},diffLP[3]={0};
CycleSlip(epochData,epochLP);
CycleSlip(preEpochData,preEpochLP);
for (int n = 0;n < 3;n++)
diffLP[n] = qAbs(epochLP[n] - preEpochLP[n]);
//Determine the weekly jump threshold based on experience.
// diffLP[2] No longer use 2011.08.24, diffLP[1] The ionospheric residual threshold is set to 0.1m
if (diffLP[0] > 5 ||diffLP[1] > M_IR||diffLP[2] > 99999 || qAbs(epochData.AntWindup - preEpochData.AntWindup) > 0.3)
{//Weekly jump
QString errorline;
ErrorMsg(errorline);
epochData.badMsg.append("Cycle slip detection, Ionospheric residual: "+ QString::number(diffLP[1],'f',4)+errorline);
m_writeFileClass.allBadSatlitData.append(epochData);
CycleFlag[i] = -1;//Save the weekly jump satellite logo
}
break;
}
else
{
continue;
}
}
}
//Remove low quality and weekly hop satellites
QVector< SatlitData > tempEpochSatlitData;
for (int i = 0;i < epochLen;i++)
{
if (CycleFlag.at(i) != -1)
{
tempEpochSatlitData.append(epochSatlitData.at(i));
}
}
epochSatlitData = tempEpochSatlitData;
}
void QPPPModel::saveResult2Class(VectorXd X, double *spp_vct, GPSPosTime epochTime, QVector< SatlitData > epochResultSatlitData,
int epochNum, MatrixXd *P)
{
//Store coordinate data
RecivePos epochRecivePos;
epochTime.epochNum = epochNum;
epochRecivePos.UTCtime = epochTime;
epochRecivePos.totolEpochStalitNum = epochResultSatlitData.length();
epochRecivePos.dX = X[0];
epochRecivePos.dY = X[1];
epochRecivePos.dZ = X[2];
epochRecivePos.spp_pos[0] = spp_vct[0];
epochRecivePos.spp_pos[1] = spp_vct[1];
epochRecivePos.spp_pos[2] = spp_vct[2];
if(!m_IS_MAX_OBS) m_writeFileClass.allReciverPos.append(epochRecivePos);
//Save wet delay and receiver clock error
double epoch_ZHD = 0.0;
int const_num = 4 + m_sys_num;
if(epochResultSatlitData.length() >= m_minSatFlag) epoch_ZHD = epochResultSatlitData.at(0).UTCTime.TropZHD;
ClockData epochRecClock;
epochRecClock.UTCTime= epochRecivePos.UTCtime;
if(X(3) == 0)
epochRecClock.ZTD_W = 0;
else
epochRecClock.ZTD_W = X(3) + epoch_ZHD;//Storage zenith wet delay + zenith dry delay
// save clock
memset(epochRecClock.clockData, 0, 6*sizeof(double));
//Stores the receiver skew of the first system, and the relative offset of its other systems GCRE
for(int i = 0;i < m_sys_str.length();i++)
{
switch (m_sys_str.at(i).toLatin1()) {
case 'G':
epochRecClock.clockData[0] = X(4+i);
break;
case 'C':
epochRecClock.clockData[1] = X(4+i);
break;
case 'R':
epochRecClock.clockData[2] = X(4+i);
break;
case 'E':
epochRecClock.clockData[3] = X(4+i);
break;
default:
break;
}
}
if(!m_IS_MAX_OBS) m_writeFileClass.allClock.append(epochRecClock);
if(getPPPModel() == PPP_MODEL::PPP_NOCombination)
{
int sat_num = epochResultSatlitData.length();
//Save satellite ambiguity
Ambiguity oneSatAmb;
for (int i = 0;i < sat_num;i++)
{
SatlitData oneSat = epochResultSatlitData.at(i);
oneSatAmb.PRN = oneSat.PRN;
oneSatAmb.SatType = oneSat.SatType;
oneSatAmb.UTCTime = epochRecClock.UTCTime;
oneSatAmb.isIntAmb = false;
memcpy(oneSatAmb.EA, oneSat.EA, 2*sizeof(double));
oneSatAmb.ionL1 = X(i+const_num);
oneSatAmb.Amb1 = X(i+const_num+sat_num);
oneSatAmb.Amb2 = X(i+const_num+2*sat_num);
oneSatAmb.Amb = 0.0;
epochResultSatlitData[i].ionL1 = X(i+const_num);
epochResultSatlitData[i].Amb1 = X(i+const_num+sat_num);
epochResultSatlitData[i].Amb2 = X(i+const_num+2*sat_num);
epochResultSatlitData[i].Amb = 0.0;
oneSatAmb.UTCTime.epochNum = epochNum;
if(!m_IS_MAX_OBS) m_writeFileClass.allAmbiguity.append(oneSatAmb);
}
}
else if(getPPPModel() == PPP_MODEL::PPP_Combination)
{
//Save satellite ambiguity
Ambiguity oneSatAmb;
for (int i = 0;i < epochResultSatlitData.length();i++)
{
SatlitData oneSat = epochResultSatlitData.at(i);
oneSatAmb.PRN = oneSat.PRN;
oneSatAmb.SatType = oneSat.SatType;
oneSatAmb.UTCTime = epochRecClock.UTCTime;
oneSatAmb.isIntAmb = false;
memcpy(oneSatAmb.EA, oneSat.EA, 2*sizeof(double));
oneSatAmb.ionL1 = 0.0;
oneSatAmb.Amb1 = 0.0;
oneSatAmb.Amb2 = 0.0;
oneSatAmb.Amb = X(i+const_num);
epochResultSatlitData[i].ionL1 = 0.0;
epochResultSatlitData[i].Amb1 = 0.0;
epochResultSatlitData[i].Amb2 = 0.0;
epochResultSatlitData[i].Amb = X(i+const_num);
oneSatAmb.UTCTime.epochNum = epochNum;
if(!m_IS_MAX_OBS) m_writeFileClass.allAmbiguity.append(oneSatAmb);
}
}
// save used satlite Information
if(!m_IS_MAX_OBS) m_writeFileClass.allPPPSatlitData.append(epochResultSatlitData);
// save solver X
if(!m_IS_MAX_OBS) m_writeFileClass.allSolverX.append(X);
// save P matrix
if(!m_IS_MAX_OBS)
{
if(P)
m_writeFileClass.allSloverQ.append(*P);
else
m_writeFileClass.allSloverQ.append(MatrixXd::Identity(32,32) * 1e10);
}
// Real time write to file add by xiaogongwei 2019.09.24
if(m_IS_MAX_OBS)
{
if(P)
m_QRTWrite2File.writeRecivePos2Txt(epochRecivePos, P);
else
{
MatrixXd tempP = MatrixXd::Identity(32,32) * 1e10;
m_QRTWrite2File.writeRecivePos2Txt(epochRecivePos, &tempP);
}
m_QRTWrite2File.writePPP2Txt(epochResultSatlitData);
m_QRTWrite2File.writeClockZTDW2Txt(epochRecClock);
QVector<SatlitData>::iterator iter;
for (iter=m_writeFileClass.allBadSatlitData.end()-1;iter>=m_writeFileClass.allBadSatlitData.begin();iter--)
{
SatlitData tempBadSat = *iter;
if(epochNum != tempBadSat.UTCTime.epochNum)
break;
m_QRTWrite2File.writeBadSatliteData(tempBadSat);
if(iter == m_writeFileClass.allBadSatlitData.begin())
break;
}
m_writeFileClass.allBadSatlitData.clear();
}// end of if(m_IS_MAX_OBS)
}
void QPPPModel::writeResult2File()
{
QString product_path = m_run_floder, ambiguit_floder;
// product name
QString Product_name = "IGS";
if(m_Sp3FileNames.length() > 0)
{
QString sp3name_path = m_Sp3FileNames.at(0);
int index_p = sp3name_path.lastIndexOf("/");// get sp3 name
QString sp3name = sp3name_path.mid(index_p+1);
Product_name = sp3name.mid(0,3).toUpper();
}
QString floder_name = Product_name + "Products_" + m_Solver_Method + "_" + m_PPPModel_Str + "_Static_" + m_sys_str + PATHSEG; //+ "_1e8" + "_1e8_new"
if(m_isKinematic)
floder_name = Product_name + "Products_" + m_Solver_Method + "_" + m_PPPModel_Str + "_Kinematic_" + m_sys_str +PATHSEG;
product_path.append(floder_name);
m_floder_name = floder_name;
// save images path
m_save_images_path = product_path;
ambiguit_floder = product_path + QString("Ambiguity") + PATHSEG;
m_writeFileClass.WriteEpochPRN(product_path, "Epoch_PRN.txt");
m_writeFileClass.writeRecivePos2Txt(product_path, "position.txt");
m_writeFileClass.writePPP2Txt(product_path, "Satellite_info.ppp");
m_writeFileClass.writeClockZTDW2Txt(product_path, "ZTDW_Clock.txt");
m_writeFileClass.writeAmbiguity2Txt(ambiguit_floder);//The path is .//Ambiguity//
m_writeFileClass.writeRecivePosKML(product_path, "position.kml");// gernerate KML
m_writeFileClass.writeBadSatliteData(product_path, "bad_satellites.txt");// Writing Eliminated Satellites into File
}
// Get operation results( clear QWrite2File::allPPPSatlitData Because the amount of data is too large.)
void QPPPModel::getRunResult(PlotGUIData &plotData)
{
int dataLen = m_writeFileClass.allReciverPos.length();
if(dataLen == 0 || !m_isRuned) return ;
if(!m_save_images_path.isEmpty()) plotData.save_file_path = m_save_images_path;
for(int i = 0;i < dataLen;i++)
{
plotData.X.append(m_writeFileClass.allReciverPos.at(i).dX);
plotData.Y.append(m_writeFileClass.allReciverPos.at(i).dY);
plotData.Z.append(m_writeFileClass.allReciverPos.at(i).dZ);
plotData.spp_X.append(m_writeFileClass.allReciverPos.at(i).spp_pos[0]);
plotData.spp_Y.append(m_writeFileClass.allReciverPos.at(i).spp_pos[1]);
plotData.spp_Z.append(m_writeFileClass.allReciverPos.at(i).spp_pos[2]);
plotData.clockData.append(m_writeFileClass.allClock.at(i).clockData[0]);// GPS clock
plotData.clockData_bias_1.append(m_writeFileClass.allClock.at(i).clockData[1]);//clock bias maybe is zero
plotData.clockData_bias_2.append(m_writeFileClass.allClock.at(i).clockData[2]);//clock bias maybe is zero
plotData.clockData_bias_3.append(m_writeFileClass.allClock.at(i).clockData[3]);//clock bias maybe is zero
plotData.ZTD_W.append(m_writeFileClass.allClock.at(i).ZTD_W);
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/guoxianwei/gnss-tjppp.git
[email protected]:guoxianwei/gnss-tjppp.git
guoxianwei
gnss-tjppp
GNSS TJPPP
master

搜索帮助