starry icon indicating copy to clipboard operation
starry copied to clipboard

Tools for mapping stars and planets.

Results 30 starry issues
Sort by recently updated
recently updated
newest added

I'm running into a strange issue with amplitudes of gravity darkened maps that is leading to unexpected behavior when performing fits. Here is an attached MWE of the issue: ```...

bug

I recently installed starry using pip. When I try to run 'import starry', I get the following error: File "/Users/jahlers/starry/starry/_core/ops/filter.py", line 10, in from ..._c_ops import STARRY_OREN_NAYAR_DEG ModuleNotFoundError: No module...

bug

**Is your feature request related to a problem? Please describe.** When fitting lightcurves to spherical harmonics in some experiments, significant fractions of the posterior maps are unphysical with minimum ~~fluxes~~intensities...

enhancement

**Describe the bug** Trying to compute the flux of any star or system with a star that includes non-uniform limb darkening (any udeg > 0) gives me a lengthy traceback...

bug

**Is your feature request related to a problem? Please describe.** The multi-wavelength feature does not allow one to fit for differences in the radius ratio at different wavelengths. This makes...

enhancement

Two things we need to fix: - `theano` doesn't work with newer versions of numpy. We need to pin it to something like `numpy==1.20.3` in the setup file. If I...

bug

Commits that skip CI still trigger the ReadTheDocs build, which can't find the notebook artifacts and report a failed build. The docs are still up to date with the last...

``` python map33 = starry.Map(udeg=2, gdeg=2,oblate=True) map33.omega=0.2 map33.beta=0.23 map33.wav=510 map33.tpole=7500 map33.f = (1-2/(0.2**2 + 2)) map33[1] = 0.2 map33[2] = 0.2 star = starry.Primary(map33, m=1, r=1) planet = starry.kepler.Secondary(map=starry.Map(ydeg=1), m=0,...

bug

Hello, thank you for this project and for making it open-source! I realize some benefits of assert statements in source code. However, looking at some SO answers, for example [here](https://stackoverflow.com/questions/9097706/why-assert-is-not-largely-used),...

Currently, the `Map` class is generated from a [class factory](https://github.com/rodluger/starry/blob/dc5119e6ffde04f1ac7854628495602e3199ff86/starry/maps.py#L3037), so it's not directly picklable. I think it would be [straightforward](https://stackoverflow.com/a/11526524) to fix this. _Originally posted by @rodluger in https://github.com/rodluger/starry/issues/292#issuecomment-922473636_