Last change
on this file since 10576 was 7523, checked in by stuerze, 9 years ago |
minor changes to add receiver information in sinex troposphere file header
|
File size:
526 bytes
|
Rev | Line | |
---|
[5909] | 1 | #ifndef PPPCRDFILE_H
|
---|
| 2 | #define PPPCRDFILE_H
|
---|
| 3 |
|
---|
| 4 | #include <string>
|
---|
| 5 | #include <vector>
|
---|
| 6 | #include "newmat.h"
|
---|
| 7 |
|
---|
| 8 | namespace BNC_PPP {
|
---|
| 9 |
|
---|
| 10 | class t_pppCrdFile {
|
---|
| 11 | public:
|
---|
| 12 | class t_staInfo {
|
---|
| 13 | public:
|
---|
| 14 | t_staInfo() {
|
---|
| 15 | _xyz.ReSize(3); _xyz = 0.0;
|
---|
| 16 | _neuAnt.ReSize(3); _neuAnt = 0.0;
|
---|
| 17 | }
|
---|
| 18 | std::string _name;
|
---|
| 19 | std::string _antenna;
|
---|
[7523] | 20 | std::string _receiver;
|
---|
[5909] | 21 | ColumnVector _xyz;
|
---|
| 22 | ColumnVector _neuAnt;
|
---|
| 23 | };
|
---|
| 24 |
|
---|
| 25 | static void readCrdFile(const std::string& fileName, std::vector<t_staInfo>& staInfoVec);
|
---|
| 26 | };
|
---|
| 27 |
|
---|
| 28 | }
|
---|
| 29 |
|
---|
| 30 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.