Using the getObsListFilteredByObsLogParameters method in edibles_oracle, an empty list is returned in all cases. Specific use case:
oracle._getObsListFilteredByObsLogParameters(object='HD 147889', Wave=6614, MergedOnly=True). Previous brute force method of finding the matches ofa list of all files for particular object and a list of all files containing particular wavelength returned 4 files which fit these parameters.
Basic troubleshooting shows that bool_object_matches, bool_order_matches, and bool_wave_matches each return a non-zero number of files separately. Issue in line 80: ind = np.where(bool_object_matches & bool_order_matches & bool_wave_matches) ??
Description
Using the getObsListFilteredByObsLogParameters method in edibles_oracle, an empty list is returned in all cases. Specific use case: oracle._getObsListFilteredByObsLogParameters(object='HD 147889', Wave=6614, MergedOnly=True). Previous brute force method of finding the matches ofa list of all files for particular object and a list of all files containing particular wavelength returned 4 files which fit these parameters.
Basic troubleshooting shows that bool_object_matches, bool_order_matches, and bool_wave_matches each return a non-zero number of files separately. Issue in line 80: ind = np.where(bool_object_matches & bool_order_matches & bool_wave_matches) ??