Closed MicheleCeresoli closed 1 year ago
The get_segment_boundaries function doesn't merge the times when the start time of a descriptor equals the end time of another descriptor. Indeed, calling:
get_segment_boundaries
desclist = [ Ephemerides.DAFSegmentDescriptor(2, 1.0, 1.6, 31008, 1, -1, 1, 1) Ephemerides.DAFSegmentDescriptor(2, 1.6, 2.0, 31008, 1, -1, 1, 1) ] ts, te = Ephemerides.get_segment_boundaries(desclist)
Returns:
ts = [1.0, 1.6] te = [1.6, 2.0]
To-Do:
The
get_segment_boundaries
function doesn't merge the times when the start time of a descriptor equals the end time of another descriptor. Indeed, calling:Returns:
To-Do: