hermpy.data.lists#

Classes#

EventList

Helper class that provides a standard way to create an ABC using

InstantEventList

Helper class that provides a standard way to create an ABC using

DurationEventList

Helper class that provides a standard way to create an ABC using

CrossingList

CrossingIntervalList

Module Contents#

class hermpy.data.lists.EventList(table: astropy.table.QTable)#

Bases: abc.ABC

Helper class that provides a standard way to create an ABC using inheritance.

table#
class hermpy.data.lists.InstantEventList(table: astropy.table.QTable, time_column: str)#

Bases: EventList

Helper class that provides a standard way to create an ABC using inheritance.

time_column#
class hermpy.data.lists.DurationEventList(table: astropy.table.QTable, start_time_column: str, end_time_column: str)#

Bases: EventList

Helper class that provides a standard way to create an ABC using inheritance.

start_time_column#
end_time_column#
class hermpy.data.lists.CrossingList#
classmethod from_csv(csv_path: pathlib.Path, time_column='UTC') InstantEventList#
class hermpy.data.lists.CrossingIntervalList#