jancami / edibles

Software for EDIBLES and LIPS data analysis.
MIT License
7 stars 11 forks source link

_getObsListFilteredByObsLogParameters returns empty Series #144

Closed H-MacI closed 4 years ago

H-MacI commented 4 years ago

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) ??

github-actions[bot] commented 4 years ago

Branch issue-144-_getObsListFilteredByObsLogParameters_returns_empty_Series created!

H-MacI commented 4 years ago

Error solved.