Brett M. Morris
Brett M. Morris
### Background I'm working on simultaneously fitting optical transits, eclipses and reflected light phase curves of exoplanets via `exoplanet`, and `exoplanet` has been working beautifully (so thanks again!). I've written...
The astroquery API allows for users to submit cached alias queries like this: ``` from astroquery.ipac.nexsci.nasa_exoplanet_archive import NasaExoplanetArchive aliases = NasaExoplanetArchive.query_aliases( "HAT-P-11", cache=True ) ``` but the function doesn't do...
Thanks again for this great package. It appears that the current implementation of `CBVCorrector` searches MAST for a target with a matching name, then searches the local caches for the...
Thanks so much for developing this incredible tool. #### Problem description The current implementation of `LightCurve.from_pandas()` does not return a LightCurve, but an `astropy.timeseries.sampled.TimeSeries` object. #### Example ```python import pandas...
This is a little tutorial for creating your own Python object from scratch, building a `LightCurve` object and some related methods on it. This closes #408 (thanks for the tip,...
@bsipocz requests a `next_eclipse()` function, that calls both `next_primary_eclipse_time` and `next_secondary_eclipse_time` functions and returns a list with both, or even returns a `Table` with a time columns and a P...
Here take a first crack at the `NonFixedTarget` object. My goal was to forge ahead towards a `NonFixedTarget` framework that is flexible enough to easily build on top of. This...
Hi astroplanners (@eteq @cdeil @adrn @jberlanga @ejeschke @kvyh @stephtdouglas @StuartLittlefair @bsipocz; sorry if I'm missing someone or spamming everyone), @kelle attended this summer's dotastro meeting, and says that she thinks...
(You can assign this issue to me!) Make a function that unpacks coordinates from `FixedTarget`s (like [here](https://github.com/bmorris3/astroplan/blob/vectorize/astroplan/core.py#L268), for example) that can take a time as an argument, so that `NonFixedTarget`s...
Thanks for this great package! Would it be possible to support `np.trapz` in the allowed callable functions? I'd be happy to contribute if it's possible, and any tips for how...