You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""A simple function that analyses an input dataframe NANU collection and outputs a list of SVs that should be excluded for the entered epoch+offset
77
+
defget_bad_sv_from_nanu_df(
78
+
nanu_df: _pd.DataFrame, up_to_epoch: _Union[_np.datetime64, datetime, str], offset_days: int
79
+
) ->list:
80
+
"""A simple function that analyses an input dataframe NANU collection and outputs a list of SVs that should be
81
+
excluded for the entered epoch+offset
76
82
77
-
:param _pd.DataFrame nanu_df: a dataframe returned by the collect_nanus_to_df, effectively a _pd.DataFrame call on a list of parsed dicts or a parsed dict
78
-
:param _Union[_np.datetime64, str] datetime: epoch to analyse NANUs up to
83
+
:param _pd.DataFrame nanu_df: a dataframe returned by the collect_nanus_to_df, effectively a _pd.DataFrame call on
84
+
a list of parsed dicts or a parsed dict
85
+
:param _Union[_np.datetime64, datetime, str] up_to_epoch: epoch to analyse NANUs up to
79
86
:param int offset_days: an offset or a length of a planned processing session in days
80
-
:return list: a list of SVs that should not be used for the specified timeperiod. FIXME Potentially needs to be int?
87
+
:return list[str]: a list of SVs that should not be used for the specified timeperiod. FIXME Potentially needs to
0 commit comments