Skip to content

Commit 3aad4b3

Browse files
authored
Making the spacing consistent in constants.py
The spacing in the dictionaries did not match.
1 parent 93bc1d8 commit 3aad4b3

1 file changed

Lines changed: 14 additions & 14 deletions

File tree

gnss_lib_py/utils/constants.py

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -83,23 +83,23 @@
8383
TROPO_DELAY_C3 = 1.33e-4
8484
"""float : Third coefficient of simplified tropospheric delay model developed in [1]_."""
8585

86-
CONSTELLATION_CHARS = {'G':'gps',
87-
'R':'glonass',
88-
'S':'sbas',
89-
'C':'beidou',
90-
'E':'galileo',
91-
'J':'qzss',
92-
'I':'irnss',
86+
CONSTELLATION_CHARS = {'G' : 'gps',
87+
'R' : 'glonass',
88+
'S' : 'sbas',
89+
'C' : 'beidou',
90+
'E' : 'galileo',
91+
'J' : 'qzss',
92+
'I' : 'irnss',
9393
}
9494
"""dict : Satellite System identifier from Rinex specification p13 in [2]_."""
9595

96-
CONSTELLATION_ANDROID = {1 :'gps',
97-
3 :'glonass',
98-
2 :'sbas',
99-
5 :'beidou',
100-
6 :'galileo',
101-
4 :'qzss',
102-
7 :'irnss',
96+
CONSTELLATION_ANDROID = {1 : 'gps',
97+
3 : 'glonass',
98+
2 : 'sbas',
99+
5 : 'beidou',
100+
6 : 'galileo',
101+
4 : 'qzss',
102+
7 : 'irnss',
103103
0 : 'unknown',
104104
}
105105
"""dict : Satellite System identifier from GNSSStatus specification [3]_."""

0 commit comments

Comments
 (0)