This PR fixes some minor bugs and docs issues in the starry module.
Update doc for inc argument in Map class to mention that it's initialized at 90 degrees (not 0) and that the angle is measured relative to the line of sight.
Add self.normalize=normalize in Map initialization so that it's string representation isn't None.
Fix doc mentions of relative in Ylm since we call it normalize.
In Map initialization, when in normalize=True block, cast y[(0,0)] to float as it's otherwise a JAX ArrayImpl that doesn't show the value in the string representation.
Now with changes that fix #157.
@lgrcia I've removed normalize as an Ylm initialization argument and added a .normalize() method that returns a new Ylm instance with the normalized coefficients.
This PR fixes some minor bugs and docs issues in the starry module.
inc
argument inMap
class to mention that it's initialized at 90 degrees (not 0) and that the angle is measured relative to the line of sight.self.normalize=normalize
inMap
initialization so that it's string representation isn'tNone
.relative
inYlm
since we call itnormalize
.Map
initialization, when innormalize=True
block, casty[(0,0)]
tofloat
as it's otherwise a JAXArrayImpl
that doesn't show the value in the string representation.