2017-04-20 14:10:12 +00:00
|
|
|
/*!
|
2017-04-21 09:34:23 +00:00
|
|
|
* \file rtklib_ionex.h
|
2017-04-20 14:10:12 +00:00
|
|
|
* \brief ionex functions
|
|
|
|
* \authors <ul>
|
|
|
|
* <li> 2007-2013, T. Takasu
|
|
|
|
* <li> 2017, Javier Arribas
|
|
|
|
* <li> 2017, Carles Fernandez
|
|
|
|
* </ul>
|
|
|
|
*
|
|
|
|
* This is a derived work from RTKLIB http://www.rtklib.com/
|
|
|
|
* The original source code at https://github.com/tomojitakasu/RTKLIB is
|
|
|
|
* released under the BSD 2-clause license with an additional exclusive clause
|
|
|
|
* that does not apply here. This additional clause is reproduced below:
|
|
|
|
*
|
|
|
|
* " The software package includes some companion executive binaries or shared
|
|
|
|
* libraries necessary to execute APs on Windows. These licenses succeed to the
|
|
|
|
* original ones of these software. "
|
|
|
|
*
|
|
|
|
* Neither the executive binaries nor the shared libraries are required by, used
|
|
|
|
* or included in GNSS-SDR.
|
|
|
|
*
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
* Copyright (C) 2007-2013, T. Takasu
|
|
|
|
* Copyright (C) 2017, Javier Arribas
|
|
|
|
* Copyright (C) 2017, Carles Fernandez
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are
|
|
|
|
* met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2017-04-21 09:34:23 +00:00
|
|
|
*
|
|
|
|
* References:
|
|
|
|
* [1] S.Schear, W.Gurtner and J.Feltens, IONEX: The IONosphere Map EXchange
|
|
|
|
* Format Version 1, February 25, 1998
|
|
|
|
* [2] S.Schaer, R.Markus, B.Gerhard and A.S.Timon, Daily Global Ionosphere
|
2019-07-20 10:55:46 +00:00
|
|
|
* Maps based on GPS Carrier Phase Data Routinely produced by CODE
|
2017-04-21 09:34:23 +00:00
|
|
|
* Analysis Center, Proceeding of the IGS Analysis Center Workshop, 1996
|
|
|
|
*
|
2017-04-23 19:10:32 +00:00
|
|
|
*----------------------------------------------------------------------------*/
|
2017-04-21 09:34:23 +00:00
|
|
|
|
|
|
|
#ifndef GNSS_SDR_RTKLIB_IONEX_H_
|
|
|
|
#define GNSS_SDR_RTKLIB_IONEX_H_
|
2017-04-20 14:10:12 +00:00
|
|
|
|
2017-04-24 22:48:13 +00:00
|
|
|
#include "rtklib.h"
|
2017-04-20 14:10:12 +00:00
|
|
|
|
2018-03-03 01:03:39 +00:00
|
|
|
const double VAR_NOTEC = 30.0 * 30.0; /* variance of no tec */
|
|
|
|
const double MIN_EL = 0.0; /* min elevation angle (rad) */
|
|
|
|
const double MIN_HGT = -1000.0; /* min user height (m) */
|
2017-04-20 14:10:12 +00:00
|
|
|
|
|
|
|
int getindex(double value, const double *range);
|
|
|
|
|
|
|
|
int nitem(const double *range);
|
|
|
|
int dataindex(int i, int j, int k, const int *ndata);
|
|
|
|
tec_t *addtec(const double *lats, const double *lons, const double *hgts,
|
2018-03-03 01:03:39 +00:00
|
|
|
double rb, nav_t *nav);
|
2017-04-20 14:10:12 +00:00
|
|
|
void readionexdcb(FILE *fp, double *dcb, double *rms);
|
|
|
|
double readionexh(FILE *fp, double *lats, double *lons, double *hgts,
|
2018-03-03 01:03:39 +00:00
|
|
|
double *rb, double *nexp, double *dcb, double *rms);
|
2017-04-20 14:10:12 +00:00
|
|
|
int readionexb(FILE *fp, const double *lats, const double *lons,
|
2018-03-03 01:03:39 +00:00
|
|
|
const double *hgts, double rb, double nexp, nav_t *nav);
|
2017-04-20 14:10:12 +00:00
|
|
|
void combtec(nav_t *nav);
|
|
|
|
void readtec(const char *file, nav_t *nav, int opt);
|
|
|
|
int interptec(const tec_t *tec, int k, const double *posp, double *value,
|
2018-03-03 01:03:39 +00:00
|
|
|
double *rms);
|
2017-04-20 14:10:12 +00:00
|
|
|
|
|
|
|
int iondelay(gtime_t time, const tec_t *tec, const double *pos,
|
2018-03-03 01:03:39 +00:00
|
|
|
const double *azel, int opt, double *delay, double *var);
|
2017-04-20 14:10:12 +00:00
|
|
|
int iontec(gtime_t time, const nav_t *nav, const double *pos,
|
2018-03-03 01:03:39 +00:00
|
|
|
const double *azel, int opt, double *delay, double *var);
|
2017-04-20 14:10:12 +00:00
|
|
|
|
2020-01-26 21:23:22 +00:00
|
|
|
#endif // GNSS_SDR_RTKLIB_IONEX_H_
|