Will Waalkes
Will Waalkes
Updated the notebook to use phoenix models instead of blackbody spectra.
Updates to reflect updated lightkurve
Running the MCMC example (https://fleck.readthedocs.io/en/latest/fleck/bayes/mcmc.html) and there are issues with lightkurve. `search_lightcurvefile()` is deprecated and needs to be changed to `search_lightcurve()` Also some issue with the files downloaded in the...
In /fleck/jax.py line 609, temp_cmap is defined as: ``` log_temps = np.log10(self.temperature) def temp_cmap(x): return to_hex( plt.cm.YlOrRd_r( (np.log10(x) - min(log_temps)) / (max(log_temps) - min(log_temps)) * 0.6 + 0.4 ) )...