BASTAcode / BASTA

BASTA: The BAyesian STellar Algorithm
https://basta.readthedocs.io/
MIT License
21 stars 3 forks source link

Fix a crash when BayestarQuery is down #28

Closed amaliestokholm closed 1 year ago

amaliestokholm commented 1 year ago

Due to a fencepost error, the code raises IndexError. Reimplement using a simpler approach. The old approach used a binary search, which is efficient, but it also did a linear search, which is slow. Replace with a single linear search.

See also: https://github.com/gregreen/dustmaps/issues/42