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
|
/***********************************************/
/**
* @file merit2FullRate.cpp
*
* @brief Read SLR data (full-rate) from merit format.
*
* @author Barbara Suesser-Rechberger
* @date 2023-01-17
*
*/
/***********************************************/
// Latex documentation
#define DOCSTRING docstring
static const char *docstring = R"(
Converts \href{https://ilrs.gsfc.nasa.gov/data_and_products/data/npt/npt_format.html}{MERIT II file}
and writes an \file{instrument file (METEOROLOGICAL)}{instrument} including meteorological data like
temperature, air pressure and humidity as well as an \file{instrument file (SATELLITELASERRANGING)}{instrument}
including full rate data like range, accuracy, wavelength, azimuth and elevation.
)";
/***********************************************/
#include "programs/program.h"
#include "base/string.h"
#include "inputOutput/file.h"
#include "files/fileInstrument.h"
#include <string_view>
/***** CLASS ***********************************/
/** @brief Read SLR data (full-rate) from merit format.
* @ingroup programsConversionGroup */
class Merit2FullRate
{
std::vector<std::string> splitString(const std::string& str);
public:
void run(Config &config, Parallel::CommunicatorPtr comm);
};
GROOPS_REGISTER_PROGRAM(Merit2FullRate, SINGLEPROCESS, "Read SLR data (full-rate) from merit format.", Conversion, Slr, Instrument)
/***********************************************/
void Merit2FullRate::run(Config &config, Parallel::CommunicatorPtr /*comm*/)
{
try
{
FileName fileNameNormalPoints;
FileName fileNameMeteorological;
FileName fileNameIn;
readConfig(config, "outputfileNormalPoints", fileNameNormalPoints, Config::MUSTSET, "output/normalsPoints_{station}.dat", "variable {station} available");
readConfig(config, "outputfileMeteorological", fileNameMeteorological, Config::MUSTSET, "output/meteorological_{station}.dat", "variable {station} available");
readConfig(config, "inputfileSlrData", fileNameIn, Config::MUSTSET, "", "SLR MERIT II file");
if(isCreateSchema(config)) return;
logStatus<<"read file <"<<fileNameIn<<">"<<Log::endl;
InFile file(fileNameIn);
std::string line;
std::string stationMonumentNumber;
std::multimap<std::string, MeteorologicalEpoch> metEpochStations;
std::multimap<std::string, SatelliteLaserRangingEpoch> fullRateEpochStations;
std::vector<std::string> stationMonumentNumbers;
while(std::getline(file, line))
{
if(line.empty())
continue;
SatelliteLaserRangingEpoch fullRateEpoch;
MeteorologicalEpoch mEpoch;
Int normalPointWindowIndicator = String::toInt(line.substr(114, 1));
//logStatus<<"normalPointWindowIndicator: <"<< normalPointWindowIndicator<<">"<<Log::endl;
if(normalPointWindowIndicator == 0)
{
// Store different station monument numbers
std::string stationMonumentNumber = line.substr(24, 4);
if(!stationMonumentNumbers.empty())
{
if(std::find(stationMonumentNumbers.begin(), stationMonumentNumbers.end(), stationMonumentNumber) == stationMonumentNumbers.end())
stationMonumentNumbers.push_back(stationMonumentNumber);
}
else
{
stationMonumentNumbers.push_back(stationMonumentNumber);
}
Int year = String::toInt(line.substr(7,2));
year += (year <= 50) ? 2000 : 1900;
// Session time in UTC
Time sessionDate = date2time(year,1,1)+mjd2time(String::toInt(line.substr(9,3))-1);
// In merit II file the seconds are given in the units of 0.1 us
Time time = sessionDate + seconds2time(std::stod(line.substr(12,12))*1e-7);
Int epoch = String::toInt(line.substr(119,1));
Double timeOfFlight = std::stod(line.substr(45, 12))*1e-12;
switch(epoch)
{
case 0: time -= seconds2time(timeOfFlight); break; // ground receive time (at SRP) (two-way)
case 1: time -= seconds2time(0.5*timeOfFlight); break; // spacecraft bounce time (two-way)
case 2: /* standard */ break; // ground transmit time (at SRP) (two-way)
default:
logWarning<<epoch<<" Epoch Event (indicates the time event reference) not implemented"<<Log::endl;
}
// GROOPS uses GPS time
fullRateEpoch.time = timeUTC2GPS(time);
fullRateEpoch.range = 0.5*timeOfFlight*LIGHT_VELOCITY;
/* ILRS: The user of the data should interpret the value given as follows:
3000 - 9999: units are 0.1 nanometer
1000 - 2999: units are 1.0 nanometer
*/
Double transmitWavelength = std::stod(line.substr(64, 4));
if(transmitWavelength >= 3000)
fullRateEpoch.wavelength = transmitWavelength*1e-10;
else
fullRateEpoch.wavelength = transmitWavelength*1e-9;
Double passRMS = std::stod(line.substr(58, 7));
fullRateEpoch.accuracy = 0.5*passRMS*1e-12*LIGHT_VELOCITY;
fullRateEpoch.redundancy = NAN;
fullRateEpoch.window = NAN;
// Azimuth and Elevation given in 0.1 mdegrees
fullRateEpoch.azmiuth = DEG2RAD*std::stod(line.substr(32, 7))*1e-4;
fullRateEpoch.elevation = DEG2RAD*std::stod(line.substr(39, 6))*1e-4;
mEpoch.time = fullRateEpoch.time;
// surface temperature in [K]: in cstg file it is given in 0.1 degree Kelvin
mEpoch.temperature = std::stod(line.substr(73, 4))*1e-1;
// pressure in [Pa]: in cstg file it is given in 0.1 millibar = 10 Pa
mEpoch.pressure = std::stod(line.substr(68, 5))*10;
// relative humidity in percent
mEpoch.humidity = std::stod(line.substr(77, 3));
mEpoch.windSpeed = NAN;
mEpoch.solarRadiation = NAN;
mEpoch.precipitation = NAN;
fullRateEpochStations.insert({stationMonumentNumber, fullRateEpoch});
metEpochStations.insert({stationMonumentNumber, mEpoch});
} else
{
logStatus<<"File includes normal point data. Please use merit2NormalPoints conversion program!<"<<fileNameNormalPoints<<">"<<Log::endl;
}
} // while
// write results
// -------------
for(auto stationMonumentNr : stationMonumentNumbers)
{
SatelliteLaserRangingArc arcSlr;
MeteorologicalArc arcMeteorological;
for(const auto &frStat : fullRateEpochStations)
{
if(frStat.first == stationMonumentNr)
arcSlr.push_back(frStat.second);
}
for(const auto &metStat : metEpochStations)
{
if(metStat.first == stationMonumentNr)
arcMeteorological.push_back(metStat.second);
}
VariableList varList;
varList.setVariable("station", stationMonumentNr);
if(arcSlr.size())
{
logStatus<<"write normal point data to file <"<<fileNameNormalPoints(varList)<<">"<<Log::endl;
InstrumentFile::write(fileNameNormalPoints(varList), arcSlr);
Arc::printStatistics(arcSlr);
}
if(arcMeteorological.size())
{
logStatus<<"write meteorological data to file <"<<fileNameMeteorological(varList)<<">"<<Log::endl;
InstrumentFile::write(fileNameMeteorological(varList), arcMeteorological);
Arc::printStatistics(arcMeteorological);
}
}
}
catch(std::exception &e)
{
GROOPS_RETHROW(e)
}
}
/***********************************************/
|