Skip to content

Commit

Permalink
NPI-3446 Remove deprecated argument to dataframe groupby(). Value use…
Browse files Browse the repository at this point in the history
…d has same effect as default.
  • Loading branch information
treefern committed Aug 14, 2024
1 parent f4170e1 commit 2f51ab6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gnssanalysis/gn_io/sp3.py
Original file line number Diff line number Diff line change
Expand Up @@ -691,7 +691,7 @@ def clk_std_formatter(x):
"STD_Z": pos_std_formatter,
"STD_CLK": clk_std_formatter, # ditto above
}
for epoch, epoch_vals in out_df.reset_index("PRN").groupby(axis=0, level="J2000"):
for epoch, epoch_vals in out_df.reset_index("PRN").groupby(level="J2000"):
# Format and write out the epoch in the SP3 format
epoch_datetime = _gn_datetime.j2000_to_pydatetime(epoch)
frac_seconds = epoch_datetime.second + (epoch_datetime.microsecond * 1e-6)
Expand Down

0 comments on commit 2f51ab6

Please sign in to comment.