solo-spice / sospice

Python data analysis tools for the SPICE extreme-UV spectrometer on Solar Orbiter
BSD 3-Clause "New" or "Revised" License
12 stars 5 forks source link

More catalog search functionalities #10

Closed ebuchlin closed 1 year ago

ebuchlin commented 1 year ago

find_file() should be extended to search e.g. by pointing, wavelength, and/or offer a generic interface to search in the catalog, if searching in the underlying pandas.DataFrame is too complicated for users. An option could be to use (or tell users to use) pandas.DataFrame.query(), e.g.

catalog.query("LEVEL=='L2' & NAXIS1 < 100 & 600 < CRVAL1 < 700")
ebuchlin commented 1 year ago

Implemented, merged on develop branch.