We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f25eacd commit 3517cb5Copy full SHA for 3517cb5
src/starplot/__init__.py
@@ -1,6 +1,6 @@
1
"""Star charts and maps"""
2
3
-__version__ = "0.3.3"
+__version__ = "0.3.4"
4
5
from .base import StarPlot # noqa: F401
6
from .zenith import ZenithPlot # noqa: F401
src/starplot/map.py
@@ -194,7 +194,7 @@ def _plot_milky_way(self):
194
)
195
196
def _plot_stars(self):
197
- stardata = stars.load()
+ stardata = stars.load(self.limiting_magnitude)
198
eph = load(self.ephemeris)
199
earth = eph["earth"]
200
nearby_stars_df = stardata[
tests/test_map.py
@@ -38,7 +38,7 @@ def map_plot_stereo_north():
38
ra_max=20,
39
dec_min=30,
40
dec_max=55,
41
- limiting_magnitude=12.0,
+ limiting_magnitude=8.0,
42
style=styles.MAP_BLUE_LIGHT,
43
resolution=2000,
44
0 commit comments