File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-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.3 "
3
+ __version__ = "0.3.4 "
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 @@ -194,7 +194,7 @@ def _plot_milky_way(self):
194
194
)
195
195
196
196
def _plot_stars (self ):
197
- stardata = stars .load ()
197
+ stardata = stars .load (self . limiting_magnitude )
198
198
eph = load (self .ephemeris )
199
199
earth = eph ["earth" ]
200
200
nearby_stars_df = stardata [
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ def map_plot_stereo_north():
38
38
ra_max = 20 ,
39
39
dec_min = 30 ,
40
40
dec_max = 55 ,
41
- limiting_magnitude = 12 .0 ,
41
+ limiting_magnitude = 8 .0 ,
42
42
style = styles .MAP_BLUE_LIGHT ,
43
43
resolution = 2000 ,
44
44
)
You can’t perform that action at this time.
0 commit comments