Run Segment List
Return the segments for a given timeline for a run.
Query parameters:
start
: Initial GPS time of the desired GPS interval.stop
: Final GPS time of the desired GPS interval.compact
: Return a list of segment [start, stop] list.
GET /api/v2/runs/O3b/timelines/H1_NO_STOCH_HW_INJ/segments?format=api
{
"next": null,
"previous": null,
"results_count": 4,
"results_per_page": 20,
"num_pages": 1,
"page_number": 1,
"results": [
{
"start": 1256655618,
"stop": 1258273818
},
{
"start": 1258274604,
"stop": 1258345818
},
{
"start": 1258346604,
"stop": 1258353018
},
{
"start": 1258353804,
"stop": 1269363618
}
]
}