2017-04-12 15:04:51 +00:00
|
|
|
/*!
|
|
|
|
* \file observables_dump_reader.h
|
|
|
|
* \brief Helper file for unit testing
|
|
|
|
* \author Javier Arribas, 2017. jarribas(at)cttc.es
|
|
|
|
*
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
*
|
2018-05-13 20:49:11 +00:00
|
|
|
* Copyright (C) 2010-2018 (see AUTHORS file for a list of contributors)
|
2017-04-12 15:04:51 +00:00
|
|
|
*
|
|
|
|
* GNSS-SDR is a software defined Global Navigation
|
|
|
|
* Satellite Systems receiver
|
|
|
|
*
|
|
|
|
* This file is part of GNSS-SDR.
|
|
|
|
*
|
|
|
|
* GNSS-SDR is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* GNSS-SDR is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2018-05-13 20:49:11 +00:00
|
|
|
* along with GNSS-SDR. If not, see <https://www.gnu.org/licenses/>.
|
2017-04-12 15:04:51 +00:00
|
|
|
*
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GNSS_SDR_OBSERVABLES_DUMP_READER_H
|
|
|
|
#define GNSS_SDR_OBSERVABLES_DUMP_READER_H
|
|
|
|
|
2018-08-10 19:16:10 +00:00
|
|
|
#include <cstdint>
|
2017-04-12 15:04:51 +00:00
|
|
|
#include <fstream>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2019-02-22 09:47:24 +00:00
|
|
|
class Observables_Dump_Reader
|
2017-04-12 15:04:51 +00:00
|
|
|
{
|
|
|
|
public:
|
2019-02-22 09:47:24 +00:00
|
|
|
Observables_Dump_Reader(int n_channels);
|
|
|
|
~Observables_Dump_Reader();
|
2017-04-12 15:04:51 +00:00
|
|
|
bool read_binary_obs();
|
|
|
|
bool restart();
|
2018-08-10 19:16:10 +00:00
|
|
|
int64_t num_epochs();
|
2017-04-12 15:04:51 +00:00
|
|
|
bool open_obs_file(std::string out_file);
|
2018-06-19 15:51:22 +00:00
|
|
|
void close_obs_file();
|
2017-04-12 15:04:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
//dump variables
|
|
|
|
|
|
|
|
double* RX_time;
|
|
|
|
double* TOW_at_current_symbol_s;
|
|
|
|
double* Carrier_Doppler_hz;
|
|
|
|
double* Acc_carrier_phase_hz;
|
|
|
|
double* Pseudorange_m;
|
|
|
|
double* PRN;
|
2017-07-28 16:24:36 +00:00
|
|
|
double* valid;
|
2017-04-12 15:04:51 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
int n_channels;
|
|
|
|
std::string d_dump_filename;
|
|
|
|
std::ifstream d_dump_file;
|
|
|
|
};
|
|
|
|
|
2018-03-03 01:03:39 +00:00
|
|
|
#endif //GNSS_SDR_OBSERVABLES_DUMP_READER_H
|