sortAstropyTable

lsst.daf.butler.cli.utils.sortAstropyTable(table, dimensions, sort_first=None)

Sort an astropy table, with prioritization given to columns in this order: 1. the provided named columns 2. spatial and temporal columns 3. the rest of the columns

The table is sorted in-place, and is also returned for convenience.

Parameters:
tableastropy.table.Table

The table to sort

dimensionslist [Dimension]

The dimensions of the dataIds in the table (the dimensions should be the same for all the dataIds). Used to determine if the column is spatial, temporal, or neither.

sort_firstlist [str]

The names of columns that should be sorted first, before spatial and temporal columns.

Returns:
astropy.table.Table

For convenience, the table that has been sorted.