You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For use the program I had to modify the code like this:
diff --git a/main.cpp b/main.cpp
--- a/main.cpp
+++ b/main.cpp
@@ -10,7 +10,7 @@
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
- testMain();// test some classes and functions
+ //testMain();// test some classes and functions
MainWindow wnd;
wnd.show();
Two subsequent sp3 files product of CODE centre have an epoch equal:
the last of first file and the first of second file. This produce an
problem in the program that it not find the correct epoch at boundary
of the files. To overcome the problem I made the following change:
diff --git a/QReadSP3.cpp b/QReadSP3.cpp
--- a/QReadSP3.cpp
+++ b/QReadSP3.cpp
@@ -260,7 +260,10 @@ void QReadSP3::readFileData2Vec(QStringList SP3FileNames)
}
tempLine = sp3file.readLine();//Read a row of coordinate data
}
- m_allEpochData.append(epochData);//Save a file data
+ if (!m_allEpochData.empty() && m_allEpochData.back().GPSTime == epochData.GPSTime)
+ m_allEpochData.back() = epochData;//Replace equal GPSTime data
+ else
+ m_allEpochData.append(epochData);//Save a file data
}//End of reading file
sp3file.close();
}//for (int i = 0;i < SP3FileNames.length();i++)//Read multiple files at the end
I attach a test case with sp3 and clk CODE files. test_data.zip
In the this test case the station geno have:
C 8 C2I L2I D2I S2I C7I L7I D7I S7I
observations for BeiDou costellation.
With the change from 2-7-6 to 2-6-7 in frequences selection the BeiDou observations
not are most used.
The text was updated successfully, but these errors were encountered:
Dear LucaFibbi,
Thank you for your contribution to MG-APP. These questions are very important, thank you again.
Some observaion type mybe missing in BDS (SYS / # / OBS TYPES in RINEX). so, I use C1I replace C2I, C7I replace C6I.
Below is detaill code. I have updated MG-APP according to your question.
To compile on my platform (Ubuntu 18.04) I had to modify the code like this:
For use the program I had to modify the code like this:
Two subsequent sp3 files product of CODE centre have an epoch equal:
the last of first file and the first of second file. This produce an
problem in the program that it not find the correct epoch at boundary
of the files. To overcome the problem I made the following change:
I attach a test case with sp3 and clk CODE files.
test_data.zip
In the this test case the station geno have:
C 8 C2I L2I D2I S2I C7I L7I D7I S7I
observations for BeiDou costellation.
With the change from 2-7-6 to 2-6-7 in frequences selection the BeiDou observations
not are most used.
The text was updated successfully, but these errors were encountered: