File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
1
"""Star charts and maps"""
2
2
3
- __version__ = "0.3.1 "
3
+ __version__ = "0.3.2 "
4
4
5
5
from .base import StarPlot # noqa: F401
6
6
from .zenith import ZenithPlot # noqa: F401
Original file line number Diff line number Diff line change @@ -165,9 +165,10 @@ def _plot_stars(self):
165
165
for m in stardata ["magnitude" ][bright_stars ]:
166
166
if m < 2 :
167
167
sizes .append ((8 - m ) ** 2.56 * (self ._size_multiplier ** 2 ))
168
+ elif m < 8 :
169
+ sizes .append ((8 - m ) ** 1.38 * (self ._size_multiplier ** 2 ))
168
170
else :
169
- # sizes.append((1 + self.limiting_magnitude - m) ** 2 * self._size_multiplier)
170
- sizes .append ((8 - m ) ** 1.36 * (self ._size_multiplier ** 2 ))
171
+ sizes .append (self ._size_multiplier ** 2 )
171
172
172
173
# Draw stars
173
174
if self .style .star .marker .visible :
You can’t perform that action at this time.
0 commit comments