Sam Lee
Sam Lee
I have updated the `filter_by_priority` helper to handle both author and exptime. Ping me if there is there is interests in incorporating it into `lightkurve` Example usage: ``` filter_by_priority(sr, author_priority=['SPOC',...
I also feel we should sit with it a while to see if it's worth supporting it. I feel the complexity is not necessarily just in the codes, but also...
@barentsen this item is to look into possibility of an (interim) MAST query caching until astroquery supports MAST query caching, right? Thoughts: - `request-cache` can be useful in `astroquery` layer...
My use case is to pull data Gaia catalog for interactive uses. The warning just creates noises for end users. I could silence those warnings on end. But it seems...
The issue lies in `_query_mast()`: https://github.com/lightkurve/lightkurve/blob/3a0e979041e5944cd32e7552923090bce44d8c63/src/lightkurve/search.py#L1116-L1118 - For a TIC with ID fewer than 9 digits, e.g., `TIC74534430`, the logic will zero-pad it, `074534430` in the example, as the exact...
@scfleming I don't exactly know what we do is a query based on Object column. At `astroquery` level, the MAST access API that we use, for `TIC12345`, the `astroquery` call...
The current logic (zero-padding target_name) for search by TESs / Kepler / K2 ids was introduced last year, focusing on solve issues arised in Kepler / K2 in PR https://github.com/lightkurve/lightkurve/pull/796...
As a workaround, one can create a generic adaptor function ```python def clip_by_ylim(lc, ylim_func): ymin, ymax = ylim_func(lc) return lc[(lc.flux >= ymin) & (lc.flux
I might be to able to a stab at this one in next 2 weeks if there are still interests. I have a side project that access VSX data so...
@ColinLittlefield Glad to hear that things worked out on your side!