@@ -889,6 +889,60 @@ transition callback functions. There are a number of examples of this in the ka
889
889
and this should serve as your starting point. The Ska team will be happy to assist
890
890
you if this is not enough.
891
891
892
+ Filtered Event History
893
+ ----------------------
894
+
895
+ In some cases you may want to use a filtered event history, most commonly to see the
896
+ originally planned commands and states following an SCS-107 event. Since SCS-107 stops
897
+ the observing loads, commands in those loads like the ObsID update and science
898
+ instrument commanding stop appearing in the kadi command history and states.
899
+
900
+ Filtering the Chandra command events is done by specifying the ``event_filter `` argument
901
+ to any of |get_cmds |, |get_states |, |get_continuity |,
902
+ :func: `~kadi.commands.observations.get_observations `,
903
+ :func: `~kadi.commands.observations.get_starcats `, and
904
+ :func: `~kadi.commands.observations.get_starcats_as_table `. This filter allows for
905
+ dynamically excluding command events from the flight Command Events sheet or whatever
906
+ scenario you have chosen.
907
+
908
+ The ``event_filter `` argument takes a single callable function or a list of functions.
909
+ Each function must take a single argument, an Command Events Table object, and return a
910
+ boolean mask indicating whether each row (command event) in the table should be included
911
+ when generating the final commands. The functions are applied in order, and the command
912
+ event is included if any of the functions return ``True ``.
913
+
914
+ Filtering within last 30 days
915
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
916
+ If the events you want to filter occurred within the last 30 days, you can use any of
917
+ the supported functions (listed above) directly, for example::
918
+
919
+ >>> from kadi.commands import filter_scs107_events
920
+ >>> obss_planned = get_observations(start, stop, event_filter=filter_scs107_events)
921
+
922
+ Filtering events older than 30 days
923
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
924
+ By default, the commands archive dynamically applies the event history from the last 30
925
+ days when constructing the command history from backstop files. Beyond 30 days, the
926
+ commands are taken from a static HDF5 archive file. To filter events older than 30
927
+ days, you need to make kadi pretend that the "current time" is actually a date in the
928
+ past.
929
+
930
+ For example, to get the "as-planned" observations covering two SCS-107 runs in the
931
+ beginning of 2025, you can use the following code. This uses the
932
+ :func: `~kadi.commands.set_time_now ` context manager to temporarily set the current time
933
+ to a date in the past, and the :func: `~kadi.commands.filter_scs107_events ` function to
934
+ filter out the SCS-107 events::
935
+
936
+ >>> from kadi.commands import filter_scs107_events, set_time_now
937
+ >>> with set_time_now("2025:015"):
938
+ ... obss_planned = get_observations(
939
+ ... "2024:365", "2025:015", event_filter=filter_scs107_events
940
+ ... )
941
+
942
+ For a custom filter you can use :func: `~kadi.commands.filter_cmd_events_by_event `, or
943
+ build your own filtering function that takes a command events table as input returns a
944
+ boolean numpy array mask.
945
+
892
946
Commands archive details
893
947
------------------------
894
948
0 commit comments