/*! * \file pvt_conf.h * \brief Class that contains all the configuration parameters for the PVT block * \author Carles Fernandez, 2018. cfernandez(at)cttc.es * * ----------------------------------------------------------------------------- * * GNSS-SDR is a Global Navigation Satellite System software-defined receiver. * This file is part of GNSS-SDR. * * Copyright (C) 2010-2020 (see AUTHORS file for a list of contributors) * SPDX-License-Identifier: GPL-3.0-or-later * * ----------------------------------------------------------------------------- */ #ifndef GNSS_SDR_PVT_CONF_H #define GNSS_SDR_PVT_CONF_H #include #include #include /** \addtogroup PVT * \{ */ /** \addtogroup PVT_libs * \{ */ class Pvt_Conf { public: std::map rtcm_msg_rate_ms; std::string rinex_name = std::string("-"); std::string dump_filename; std::string nmea_dump_filename; std::string nmea_dump_devname; std::string rtcm_dump_devname; std::string an_dump_devname; std::string output_path = std::string("."); std::string rinex_output_path = std::string("."); std::string gpx_output_path = std::string("."); std::string geojson_output_path = std::string("."); std::string nmea_output_file_path = std::string("."); std::string kml_output_path = std::string("."); std::string xml_output_path = std::string("."); std::string rtcm_output_file_path = std::string("."); std::string has_output_file_path = std::string("."); std::string udp_addresses; std::string udp_ports; std::string udp_eph_addresses; std::string log_source_timetag_file; uint32_t signal_enabled_flags = 0; uint32_t observable_interval_ms = 20; int32_t output_rate_ms = 0; int32_t display_rate_ms = 0; int32_t kml_rate_ms = 20; int32_t gpx_rate_ms = 20; int32_t geojson_rate_ms = 20; int32_t nmea_rate_ms = 20; int32_t rinex_version = 0; int32_t rinexobs_rate_ms = 0; int32_t an_rate_ms = 20; int32_t max_obs_block_rx_clock_offset_ms = 40; int udp_eph_port = 0; int rtk_trace_level = 0; uint16_t rtcm_tcp_port = 0; uint16_t rtcm_station_id = 0; bool flag_nmea_tty_port = false; bool flag_rtcm_server = false; bool flag_rtcm_tty_port = false; bool output_enabled = true; bool rinex_output_enabled = true; bool gpx_output_enabled = true; bool geojson_output_enabled = true; bool nmea_output_file_enabled = true; bool an_output_enabled = false; bool kml_output_enabled = true; bool xml_output_enabled = true; bool rtcm_output_file_enabled = true; bool monitor_enabled = false; bool monitor_ephemeris_enabled = false; bool protobuf_enabled = true; bool enable_rx_clock_correction = true; bool show_local_time_zone = false; bool pre_2009_file = false; bool dump = false; bool dump_mat = true; bool log_source_timetag = false; bool use_e6_for_pvt = true; bool use_has_corrections = true; bool use_unhealthy_sats = false; bool osnma_strict = false; // PVT KF parameters bool enable_pvt_kf = false; double measures_ecef_pos_sd_m = 1.0; double measures_ecef_vel_sd_ms = 0.1; double system_ecef_pos_sd_m = 0.01; double system_ecef_vel_sd_ms = 0.001; // Sensor Data parameters bool kf_use_imu_vel = false; // PVT VTL parameters bool enable_pvt_vtl = false; bool enable_pvt_output_vtl = false; bool enable_VDLL_vtl = false; bool enable_VPLL_vtl = false; bool vtl_kinematic = false; bool vtl_dump = false; std::string vtl_dump_filename; int vtl_gps_channels = 5; int vtl_gal_channels = 5; double vtl_init_pos_ecef_sd_m = 10.0; double vtl_init_vel_ecef_sd_ms = 5.0; double vtl_init_clk_b_sd_m = 100.0; double vtl_init_clk_d_sd_ms = 100.0; double vtl_sys_acc_noise_sd_ms2 = 0.1; double vtl_sys_clk_b_noise_sd_m = 0.0; double vtl_sys_clk_d_noise_sd_ms = 0.0; double vtl_meas_prange_sd_m = 7.75; double vtl_meas_prange_rate_sd_ms = 0.45; }; /** \} */ /** \} */ #endif // GNSS_SDR_PVT_CONF_H