rinex/bibliography.rs
1#![allow(dead_code)]
2
3/// Important articles and references that proved useful when designing this library
4pub enum Bibliography {
5 /// RINEX V2.11 specifications by IGS.
6 /// [DOI](https://files.igs.org/pub/data/format/rinex211.pdf).
7 RINEX211,
8
9 /// RINEX V3 specifications by IGS.
10 /// [DOI](https://files.igs.org/pub/data/format/rinex300.pdf).
11 RINEX3,
12
13 /// RINEX V4 specifications by IGS.
14 /// [DOI](https://files.igs.org/pub/data/format/rinex_4.00.pdf).
15 RINEX4,
16
17 /// J. Lesouple, 2019: *Estimation Parcimonieuse de Biais Multitrajets pour Systemes GNSS*.
18 /// Pseudo range calculation method on page 50.
19 /// Kepler Solver on page 159.
20 /// Elevation and Azimuth angles determination, page 160.
21 /// [DOI](http://perso.recherche.enac.fr/~julien.lesouple/fr/publication/thesis/THESIS.pdf?fbclid=IwAR3WlHm0eP7ygRzywbL07Ig-JawvsdCEdvz1umJJaRRXVO265J9cp931YyI)
22 JLe19,
23
24 /// ESA NAVIPedia: *Combining Pairs of signals and clock definitions*.
25 /// [DOI](https://gssc.esa.int/navipedia/index.php/Combining_pairs_of_signals_and_clock_definition)
26 ESAGnssCombination,
27
28 /// ASCE Appendix 3: *Calculation of Satellite Position from Ephemeris Data*.
29 /// [DOI](https://ascelibrary.org/doi/pdf/10.1061/9780784411506.ap03).
30 AsceAppendix3,
31
32 /// ESA GNSS Data Processing Book Vol. I.
33 /// [DOI](https://gssc.esa.int/navipedia/GNSS_Book/ESA_GNSS-Book_TM-23_Vol_I.pdf).
34 ESABookVol1,
35
36 /// ESA GNSS Data Processing Book Vol. II.
37 /// [DOI](https://gssc.esa.int/navipedia/GNSS_Book/ESA_GNSS-Book_TM-23_Vol_II.pdf).
38 ESABookVol2,
39
40 /// E. Schönemann, M. Becker, T. Springer, 2011:
41 /// *A new Approach for GNSS Analysis in a Multi-GNSS and Multi-Signal Environment*.
42 /// [DOI](https://www.degruyter.com/document/doi/10.2478/v10156-010-0023-2/pdf).
43 GeoScienceJournal1,
44
45 /// V. Pinazo Garcia, N. Woodhouse:
46 /// *Multipath Analysis Using Code-Minus-Carrier technique in
47 /// GNSS antennas*.
48 /// [DOI](https://cdn.taoglas.com/wp-content/uploads/pdf/Multipath-Analysis-Using-Code-Minus-Carrier-Technique-in-GNSS-Antennas-_WhitePaper_VP__Final-1.pdf).
49 MpTaoglas,
50
51 /// BeiDou Navigation Satellite System Signal In Space Interface Control Document(BDS-3)
52 /// [B1I](http://www.beidou.gov.cn/xt/gfxz/201902/P020190227593621142475.pdf)
53 /// [B1c](http://www.beidou.gov.cn/xt/gfxz/201712/P020171226741342013031.pdf)
54 /// [B2a](http://www.beidou.gov.cn/xt/gfxz/201712/P020171226742357364174.pdf)
55 /// [B2b](http://www.beidou.gov.cn/xt/gfxz/202008/P020230516558683155109.pdf)
56 /// [B3I](http://www.beidou.gov.cn/xt/gfxz/201802/P020180209623601401189.pdf)
57 BeiDouICD,
58}