Skip to content

Commit

Permalink
NPI-3669 update filter_by_svs() to make all filtering args properly o…
Browse files Browse the repository at this point in the history
…ptional
  • Loading branch information
treefern committed Dec 23, 2024
1 parent 9a6f05e commit 7a8ae97
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gnssanalysis/gn_io/sp3.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,9 +229,9 @@ def remove_offline_sats(sp3_df: _pd.DataFrame, df_friendly_name: str = ""):

def filter_by_svs(
sp3_df: _pd.DataFrame,
filter_by_count: Optional[int],
filter_by_name: Optional[list[str]],
filter_to_sat_letter: Optional[str],
filter_by_count: Optional[int] = None,
filter_by_name: Optional[list[str]] = None,
filter_to_sat_letter: Optional[str] = None,
) -> _pd.DataFrame:
"""
Utility function to trim an SP3 DataFrame down, intended for creating small sample SP3 files for
Expand Down

0 comments on commit 7a8ae97

Please sign in to comment.