esheldon / fitsio

A python package for FITS input/output wrapping cfitsio
GNU General Public License v2.0
134 stars 58 forks source link

Return table data in order requested by user #368

Closed esheldon closed 1 year ago

esheldon commented 1 year ago

closes #367

If the users sends rows = [3, 1] the old code returned data for [1, 3]. The data are now returned as requested.

Also previously duplicate rows were removed, no longer.