File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 11[package ]
22name = " rinex"
3- version = " 0.18.0 "
3+ version = " 0.18.1 "
44license = " MPL-2.0"
55authors = [" Guillaume W. Bres <guillaume.bressaix@gmail.com>" ]
66description = " RINEX file parsing, analysis and production"
Original file line number Diff line number Diff line change @@ -1074,13 +1074,14 @@ impl Header {
10741074 ) {
10751075 lazy_static ! {
10761076 /*
1077- * Only GPS, Glonass, Galileo and SBAS are supported in V2 RINEX
1077+ * We support GPS, Glonass, Galileo, SBAS and BDS as per v2.11.
10781078 */
1079- static ref KNOWN_V2_CONSTELLS : [ Constellation ; 4 ] = [
1079+ static ref KNOWN_V2_CONSTELLS : [ Constellation ; 5 ] = [
10801080 Constellation :: GPS ,
10811081 Constellation :: SBAS ,
10821082 Constellation :: Glonass ,
10831083 Constellation :: Galileo ,
1084+ Constellation :: BeiDou ,
10841085 ] ;
10851086 }
10861087 let line = line. split_at ( 6 ) . 1 ;
You can’t perform that action at this time.
0 commit comments