File: grailCdr2SatelliteTracking.cpp

package info (click to toggle)
groops 0%2Bgit20250907%2Bds-1
  • links: PTS, VCS
  • area: non-free
  • in suites: forky, sid
  • size: 11,140 kB
  • sloc: cpp: 135,607; fortran: 1,603; makefile: 20
file content (215 lines) | stat: -rw-r--r-- 7,287 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
/***********************************************/
/**
* @file grailCdr2SatelliteTracking.cpp
*
* @brief read CDR GRAIL data.
*
* @author Beate Klinger
* @date 2013-01-22
*
*/
/***********************************************/

// Latex documentation
#define DOCSTRING docstring
static const char *docstring = R"(
This program converts low-low satellite data measured by the K-band ranging system
from the GRAIL format into \file{instrument file (SATELLITETRACKING)}{instrument}.
The \config{inputfile}s contain also corrections for antenna offsets
and the so called light time correction.
The corrections can be stored in additional files in the same format as the observations.
If a phase break is found an artificial gap is created.
)";

/***********************************************/

#include "programs/program.h"
#include "base/string.h"
#include "files/fileInstrument.h"

/***** CLASS ***********************************/

/** @brief read CDR GRAIL data.
* @ingroup programsConversionGroup */
class GrailCdr2SatelliteTracking
{
  Double timeBias;

  void readFile(const FileName fileName,
                SatelliteTrackingArc &arc,
                SatelliteTrackingArc &arcAntenna,
                SatelliteTrackingArc &arcLight,
                SatelliteTrackingArc &arcTemperature);

public:
  void run(Config &config, Parallel::CommunicatorPtr comm);
};

GROOPS_REGISTER_PROGRAM(GrailCdr2SatelliteTracking, SINGLEPROCESS, "read CDR GRAIL data", Conversion, Instrument)

/***********************************************/

void GrailCdr2SatelliteTracking::run(Config &config, Parallel::CommunicatorPtr /*comm*/)
{
  try
  {
    FileName outName, antCentrName, lighttimeName, temperatureName;
    std::vector<FileName> fileNames;

    readConfig(config, "outputfileSatelliteTracking", outName,         Config::OPTIONAL, "", "");
    readConfig(config, "outputfileAntCentr",          antCentrName,    Config::OPTIONAL, "", "");
    readConfig(config, "outputfileLighttime",         lighttimeName,   Config::OPTIONAL, "", "");
    readConfig(config, "outputfileTemperature",       temperatureName, Config::OPTIONAL, "", "");
    readConfig(config, "approximateTimeBias",         timeBias,        Config::DEFAULT,  "0.0", "[seconds]");
    readConfig(config, "inputfile",                   fileNames,       Config::MUSTSET,  "", "");
    if(isCreateSchema(config)) return;

    logStatus<<"read input files"<<Log::endl;
    SatelliteTrackingArc arcSST, arcAntenna, arcLight, arcTemperature;
    for(auto &fileName : fileNames)
    {
      logStatus<<"read file <"<<fileName<<">"<<Log::endl;
      readFile(fileName, arcSST, arcAntenna, arcLight, arcTemperature);
    }

    Arc::printStatistics(arcSST);

    // Daten speichern
    // ---------------
    if(!outName.empty())
    {
      logStatus<<"write data to <"<<outName<<">"<<Log::endl;
      InstrumentFile::write(outName, arcSST);
    }
    if(!antCentrName.empty())
    {
      logStatus<<"write antenna center correction to <"<<antCentrName<<">"<<Log::endl;
      InstrumentFile::write(antCentrName, arcAntenna);
    }
    if(!lighttimeName.empty())
    {
      logStatus<<"write light time correction to <"<<lighttimeName<<">"<<Log::endl;
      InstrumentFile::write(lighttimeName, arcLight);
    }
    if(!temperatureName.empty())
    {
      logStatus<<"write temperature correction to <"<<temperatureName<<">"<<Log::endl;
      InstrumentFile::write(temperatureName, arcTemperature);
    }
  }
  catch(std::exception &e)
  {
    GROOPS_RETHROW(e)
  }
}

/***********************************************/

void GrailCdr2SatelliteTracking::readFile(const FileName fileName, SatelliteTrackingArc &arc, SatelliteTrackingArc &arcAntenna, SatelliteTrackingArc &arcLight, SatelliteTrackingArc &arcTemperature)
{
  try
  {
    SatelliteTrackingEpoch epoch, epochAntenna, epochLight, epochTemperature;

    InFile file(fileName);
    if(!file.good())
    {
      logWarning<<"cannot open file: "<<fileName.str()<<", continue..."<<Log::endl;
      return;
    }
    file.exceptions(std::ios::badbit|std::ios::failbit);

    // Header einlesen
    UInt numberOfRecords = 0;
    std::string line;
    for(;;)
    {
      getline(file, line);
      if(line.find("NUMBER OF DATA RECORDS")==0)
        numberOfRecords = String::toInt(line.substr(31, 10));
      // Header fertig ?
      if(line.find("END OF HEADER")==0)
        break;
    }

    // Eigentliche Daten einlesen
    for(UInt i=0; i<numberOfRecords; i++)
    {
      std::string line;
      try
      {
        getline(file, line);
      }
      catch(std::exception &/*e*/)
      {
        break;
      }

      std::stringstream ss(line);

      // time (TDB) >> seconds past 12:00:00 noon 01-Jan-2000
      Int32 seconds;
      ss>>seconds;
      epoch.time            = timeTT2GPS(mjd2time(51544.5)+seconds2time(seconds+timeBias));
      epochLight.time       = epoch.time;
      epochAntenna.time     = epoch.time;
      epochTemperature.time = epoch.time;

      // range, range rate, range acceleration
      ss>>epoch.range>>epoch.rangeRate>>epoch.rangeAcceleration;

      // ionospheric range correction
      Double iono;
      ss>>iono;

      // time of flight correction
      ss>>epochLight.range>>epochLight.rangeRate>>epochLight.rangeAcceleration;

      // Ka-band antenna offset correction
      ss>>epochAntenna.range>>epochAntenna.rangeRate>>epochAntenna.rangeAcceleration;

      Double dummy1, dummy2, dummy3, dummy4;
      ss>>dummy1>>dummy2>>dummy3>>dummy4;

      // data quality flags
      Byte flag0, flag1, flag2, flag3, flag4, flag5, flag6, flag7;
      ss>>flag0>>flag1>>flag2>>flag3>>flag4>>flag5>>flag6>>flag7;

      // Ka-band temperature correction
      ss>>dummy1>>epochTemperature.range>>epochTemperature.rangeRate>>epochTemperature.rangeAcceleration;

      Bool phasebreak = ((flag7 & 1) == 1);
      if(phasebreak)
      logWarning<<epoch.time.dateTimeStr()<<": flag="<<Int(flag7)<<Log::endl;

      // Sprünge in den Daten suchen
      if(arc.size() && (epoch.time <= arc.at(arc.size()-1).time))
          throw(Exception("epoch.time <= arc.at(arc.size()-1).time"));
      if(phasebreak || (arc.size() && ((epoch.time-arc.at(arc.size()-1).time).seconds()<=5.1) && (fabs(epoch.range - arc.at(arc.size()-1).range)>80)) ||
        (arc.size() && ((epoch.time-arc.at(arc.size()-1).time).seconds()<=5.1) && (fabs(epoch.rangeRate - arc.at(arc.size()-1).rangeRate)>0.5)) ||
        (arc.size() && ((epoch.time-arc.at(arc.size()-1).time).seconds()<=5.1) && (fabs(epoch.rangeAcceleration - arc.at(arc.size()-1).rangeAcceleration)>0.0009)))
      {
        logWarning<<epoch.time.dateTimeStr()<<": phase break? (epoch.range - arc.at(arc.size()-1).range) = "<<epoch.range - arc.at(arc.size()-1).range<<Log::endl;
        arc.remove(arc.size()-1);
        arcAntenna.remove(arcAntenna.size()-1);
        arcLight.remove(arcLight.size()-1);
        arcTemperature.remove(arcTemperature.size()-1);
        continue;
      }
      else
      {
        arc.push_back(epoch);
        arcAntenna.push_back(epochAntenna);
        arcLight.push_back(epochLight);
        arcTemperature.push_back(epochTemperature);
      }
    }
  }

  catch(std::exception &e)
  {
    GROOPS_RETHROW(e)
  }
}

/***********************************************/