Skip to content

Commit ffbaa7d

Browse files
committed
Update precise_ephemerides.py
Changed gnss_consts to constellations to avoid confusion with GNSS constants
1 parent 4c8747f commit ffbaa7d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

gnss_lib_py/parsers/precise_ephemerides.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -638,7 +638,7 @@ def single_gnss_from_precise_eph(navdata, sp3_parsed_file, \
638638
return navdata
639639

640640
def multi_gnss_from_precise_eph(navdata, sp3_path, clk_path, \
641-
gnss_consts, verbose = False):
641+
constellations, verbose = False):
642642
"""Compute satellite information using .sp3 and .clk for multiple GNSS
643643
644644
Parameters
@@ -649,7 +649,7 @@ def multi_gnss_from_precise_eph(navdata, sp3_path, clk_path, \
649649
File path for .sp3 file to extract precise ephemerides
650650
clk_path : path
651651
File path for .clk file to extract precise ephemerides
652-
gnss_consts : array-like
652+
constellations : array-like
653653
The GNSS constellations for which you want to extract precise
654654
ephemeris, (e.g. ['gps','glonass'])
655655
verbose : bool
@@ -664,7 +664,7 @@ def multi_gnss_from_precise_eph(navdata, sp3_path, clk_path, \
664664
"""
665665

666666
navdata_prcs_merged = NavData()
667-
for sv in gnss_consts:
667+
for sv in constellations:
668668
navdata_prcs_gnss = navdata.where('gnss_id', sv)
669669

670670
sp3_parsed_gnss = parse_sp3(sp3_path, constellation = sv)

0 commit comments

Comments
 (0)