RXTEMissionTable

class gdt.missions.rxte.asm.missiontable.RXTEMissionTable(times, dwell_seq_nums, dwell_ids)[source]

Bases: object

The Mission Table containing the times of each dwell, the dwell sequence number, and dwell ID.

Parameters:
  • times – Times of each dwell

  • dwell_seq_nums – The dwell sequence numbers

  • dwell_ids – The dwell IDs

Methods Summary

get_dwell_file(t0)

Parse the file name for the dwell file for a given t0

get_dwell_ids(t0)

Select the record corresponding to t0.

open()

Open/read the mission table.

Methods Documentation

classmethod get_dwell_file(t0)[source]

Parse the file name for the dwell file for a given t0

Parameters:

t0 (float) – The trigger time

Returns:

(str) – The dwell filename.

classmethod get_dwell_ids(t0)[source]

Select the record corresponding to t0.

Parameters:

t0 (float) – The trigger time

Returns:

(tuple) – (Dwell time, sequence number, ID)

classmethod open()[source]

Open/read the mission table.

Returns:

(RXTEMissionTable)