starplot 0.10.2__tar.gz → 0.11.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (194) hide show
  1. starplot-0.11.0/.github/ISSUE_TEMPLATE/bug_report.md +30 -0
  2. starplot-0.11.0/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
  3. {starplot-0.10.2 → starplot-0.11.0}/.github/workflows/test.yml +1 -0
  4. {starplot-0.10.2 → starplot-0.11.0}/.gitignore +7 -0
  5. starplot-0.11.0/CODE_OF_CONDUCT.md +128 -0
  6. starplot-0.11.0/CONTRIBUTING.md +72 -0
  7. {starplot-0.10.2 → starplot-0.11.0}/Makefile +3 -2
  8. {starplot-0.10.2 → starplot-0.11.0}/PKG-INFO +7 -3
  9. {starplot-0.10.2 → starplot-0.11.0}/README.md +6 -2
  10. {starplot-0.10.2 → starplot-0.11.0}/docs/about.md +1 -1
  11. {starplot-0.10.2 → starplot-0.11.0}/docs/changelog.md +19 -1
  12. {starplot-0.10.2 → starplot-0.11.0}/docs/custom/main.html +1 -1
  13. {starplot-0.10.2 → starplot-0.11.0}/docs/data-sources.md +1 -1
  14. starplot-0.11.0/docs/examples/map-comet-neowise.md +20 -0
  15. starplot-0.11.0/docs/examples/map-milky-way-stars.md +15 -0
  16. {starplot-0.10.2 → starplot-0.11.0}/docs/examples.md +22 -14
  17. {starplot-0.10.2 → starplot-0.11.0}/docs/index.md +3 -3
  18. {starplot-0.10.2 → starplot-0.11.0}/docs/reference-models.md +9 -0
  19. {starplot-0.10.2 → starplot-0.11.0}/docs/tutorial/05.md +1 -1
  20. {starplot-0.10.2 → starplot-0.11.0}/docs/tutorial/09.md +1 -1
  21. starplot-0.11.0/examples/examples.py +39 -0
  22. starplot-0.10.2/examples/map_hale_bopp.py → starplot-0.11.0/examples/map_comet_neowise.py +11 -18
  23. starplot-0.11.0/examples/map_milky_way_stars.py +47 -0
  24. {starplot-0.10.2 → starplot-0.11.0}/examples/map_orion.py +1 -1
  25. {starplot-0.10.2 → starplot-0.11.0}/examples/map_sagittarius.py +2 -3
  26. {starplot-0.10.2 → starplot-0.11.0}/examples/star_chart_basic.py +4 -3
  27. {starplot-0.10.2 → starplot-0.11.0}/examples/star_chart_detail.py +4 -3
  28. {starplot-0.10.2 → starplot-0.11.0}/hash_checks/hashlock.yml +29 -25
  29. {starplot-0.10.2 → starplot-0.11.0}/hash_checks/map_checks.py +33 -2
  30. {starplot-0.10.2 → starplot-0.11.0}/hash_checks/zenith_checks.py +1 -0
  31. starplot-0.11.0/src/starplot/__init__.py +17 -0
  32. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/base.py +26 -5
  33. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/data/__init__.py +12 -1
  34. starplot-0.11.0/src/starplot/data/bigsky.py +97 -0
  35. starplot-0.10.2/src/starplot/data/library/stars.tycho-1.gz.parquet → starplot-0.11.0/src/starplot/data/library/stars.bigsky.mag11.parquet +0 -0
  36. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/data/stars.py +30 -16
  37. starplot-0.11.0/src/starplot/data/utils.py +27 -0
  38. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/map.py +210 -77
  39. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/models/__init__.py +1 -0
  40. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/models/base.py +17 -0
  41. starplot-0.11.0/src/starplot/models/constellation.py +72 -0
  42. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/models/star.py +8 -0
  43. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/optic.py +2 -2
  44. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/plotters/stars.py +25 -5
  45. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/projections.py +11 -0
  46. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/styles/base.py +71 -4
  47. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/styles/ext/antique.yml +16 -0
  48. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/styles/ext/blue_dark.yml +16 -1
  49. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/styles/ext/blue_light.yml +18 -0
  50. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/styles/ext/blue_medium.yml +18 -0
  51. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/styles/ext/cb_wong.yml +20 -1
  52. starplot-0.11.0/src/starplot/styles/ext/color_print.yml +108 -0
  53. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/styles/ext/grayscale.yml +18 -0
  54. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/styles/ext/grayscale_dark.yml +20 -4
  55. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/styles/ext/nord.yml +21 -4
  56. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/styles/ext/optic.yml +1 -1
  57. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/styles/extensions.py +1 -0
  58. starplot-0.11.0/tests/test_data.py +12 -0
  59. {starplot-0.10.2 → starplot-0.11.0}/tests/test_models.py +21 -1
  60. {starplot-0.10.2 → starplot-0.11.0}/tests/test_stars.py +3 -3
  61. {starplot-0.10.2 → starplot-0.11.0}/tutorial/tutorial_02.py +2 -1
  62. {starplot-0.10.2 → starplot-0.11.0}/tutorial/tutorial_03.py +2 -1
  63. {starplot-0.10.2 → starplot-0.11.0}/tutorial/tutorial_05.py +1 -1
  64. {starplot-0.10.2 → starplot-0.11.0}/tutorial/tutorial_06.py +1 -1
  65. {starplot-0.10.2 → starplot-0.11.0}/tutorial/tutorial_08.py +1 -1
  66. starplot-0.10.2/docs/examples/map-hale-bopp-comet.md +0 -20
  67. starplot-0.10.2/examples/examples.py +0 -20
  68. starplot-0.10.2/scripts/tycho1_geopack.py +0 -33
  69. starplot-0.10.2/src/starplot/__init__.py +0 -9
  70. starplot-0.10.2/src/starplot/data/library/readme.md +0 -9
  71. {starplot-0.10.2 → starplot-0.11.0}/.dockerignore +0 -0
  72. {starplot-0.10.2 → starplot-0.11.0}/.github/workflows/docs.yml +0 -0
  73. {starplot-0.10.2 → starplot-0.11.0}/.github/workflows/release.yml +0 -0
  74. {starplot-0.10.2 → starplot-0.11.0}/Dockerfile +0 -0
  75. {starplot-0.10.2 → starplot-0.11.0}/LICENSE +0 -0
  76. {starplot-0.10.2 → starplot-0.11.0}/docs/coming-soon.md +0 -0
  77. {starplot-0.10.2 → starplot-0.11.0}/docs/css/extra.css +0 -0
  78. {starplot-0.10.2 → starplot-0.11.0}/docs/data/.keep +0 -0
  79. {starplot-0.10.2 → starplot-0.11.0}/docs/examples/map-big-dipper.md +0 -0
  80. {starplot-0.10.2 → starplot-0.11.0}/docs/examples/map-big.md +0 -0
  81. {starplot-0.10.2 → starplot-0.11.0}/docs/examples/map-orion.md +0 -0
  82. {starplot-0.10.2 → starplot-0.11.0}/docs/examples/map-orthographic.md +0 -0
  83. {starplot-0.10.2 → starplot-0.11.0}/docs/examples/map-sagittarius.md +0 -0
  84. {starplot-0.10.2 → starplot-0.11.0}/docs/examples/optic-m45.md +0 -0
  85. {starplot-0.10.2 → starplot-0.11.0}/docs/examples/optic-moon-saturn.md +0 -0
  86. {starplot-0.10.2 → starplot-0.11.0}/docs/examples/optic-orion.md +0 -0
  87. {starplot-0.10.2 → starplot-0.11.0}/docs/examples/optic-solar-eclipse.md +0 -0
  88. {starplot-0.10.2 → starplot-0.11.0}/docs/examples/star-chart-basic.md +0 -0
  89. {starplot-0.10.2 → starplot-0.11.0}/docs/examples/star-chart-detail.md +0 -0
  90. {starplot-0.10.2 → starplot-0.11.0}/docs/gallery.md +0 -0
  91. {starplot-0.10.2 → starplot-0.11.0}/docs/images/banner.png +0 -0
  92. {starplot-0.10.2 → starplot-0.11.0}/docs/images/banner.svg +0 -0
  93. {starplot-0.10.2 → starplot-0.11.0}/docs/images/banner.vectornator +0 -0
  94. {starplot-0.10.2 → starplot-0.11.0}/docs/images/celestial-globe.svg +0 -0
  95. {starplot-0.10.2 → starplot-0.11.0}/docs/images/examples/.keep +0 -0
  96. {starplot-0.10.2 → starplot-0.11.0}/docs/images/favicon.png +0 -0
  97. {starplot-0.10.2 → starplot-0.11.0}/docs/images/favicon.svg +0 -0
  98. {starplot-0.10.2 → starplot-0.11.0}/docs/images/logo.png +0 -0
  99. {starplot-0.10.2 → starplot-0.11.0}/docs/images/logo.svg +0 -0
  100. {starplot-0.10.2 → starplot-0.11.0}/docs/images/logo.vectornator +0 -0
  101. {starplot-0.10.2 → starplot-0.11.0}/docs/images/logo2.png +0 -0
  102. {starplot-0.10.2 → starplot-0.11.0}/docs/images/logo2.vectornator +0 -0
  103. {starplot-0.10.2 → starplot-0.11.0}/docs/images/mono.png +0 -0
  104. {starplot-0.10.2 → starplot-0.11.0}/docs/images/mono.svg +0 -0
  105. {starplot-0.10.2 → starplot-0.11.0}/docs/images/star.svg +0 -0
  106. {starplot-0.10.2 → starplot-0.11.0}/docs/images/tutorial/.keep +0 -0
  107. {starplot-0.10.2 → starplot-0.11.0}/docs/installation.md +0 -0
  108. {starplot-0.10.2 → starplot-0.11.0}/docs/license.md +0 -0
  109. {starplot-0.10.2 → starplot-0.11.0}/docs/reference-callables.md +0 -0
  110. {starplot-0.10.2 → starplot-0.11.0}/docs/reference-data.md +0 -0
  111. {starplot-0.10.2 → starplot-0.11.0}/docs/reference-mapplot.md +0 -0
  112. {starplot-0.10.2 → starplot-0.11.0}/docs/reference-ongc.md +0 -0
  113. {starplot-0.10.2 → starplot-0.11.0}/docs/reference-opticplot.md +0 -0
  114. {starplot-0.10.2 → starplot-0.11.0}/docs/reference-selecting-objects.md +0 -0
  115. {starplot-0.10.2 → starplot-0.11.0}/docs/reference-styling.md +0 -0
  116. {starplot-0.10.2 → starplot-0.11.0}/docs/robots.txt +0 -0
  117. {starplot-0.10.2 → starplot-0.11.0}/docs/tutorial/01.md +0 -0
  118. {starplot-0.10.2 → starplot-0.11.0}/docs/tutorial/02.md +0 -0
  119. {starplot-0.10.2 → starplot-0.11.0}/docs/tutorial/03.md +0 -0
  120. {starplot-0.10.2 → starplot-0.11.0}/docs/tutorial/04.md +0 -0
  121. {starplot-0.10.2 → starplot-0.11.0}/docs/tutorial/06.md +0 -0
  122. {starplot-0.10.2 → starplot-0.11.0}/docs/tutorial/07.md +0 -0
  123. {starplot-0.10.2 → starplot-0.11.0}/docs/tutorial/08.md +0 -0
  124. {starplot-0.10.2 → starplot-0.11.0}/docs/tutorial.md +0 -0
  125. {starplot-0.10.2 → starplot-0.11.0}/examples/map_big.py +0 -0
  126. {starplot-0.10.2 → starplot-0.11.0}/examples/map_big_dipper.py +0 -0
  127. {starplot-0.10.2 → starplot-0.11.0}/examples/map_orthographic.py +0 -0
  128. {starplot-0.10.2 → starplot-0.11.0}/examples/optic_m45.py +0 -0
  129. {starplot-0.10.2 → starplot-0.11.0}/examples/optic_moon_saturn.py +0 -0
  130. {starplot-0.10.2 → starplot-0.11.0}/examples/optic_orion_nebula.py +0 -0
  131. {starplot-0.10.2 → starplot-0.11.0}/examples/optic_solar_eclipse.py +0 -0
  132. {starplot-0.10.2 → starplot-0.11.0}/hash_checks/__init__.py +0 -0
  133. {starplot-0.10.2 → starplot-0.11.0}/hash_checks/data/.keep +0 -0
  134. {starplot-0.10.2 → starplot-0.11.0}/hash_checks/hashio.py +0 -0
  135. {starplot-0.10.2 → starplot-0.11.0}/hash_checks/optic_checks.py +0 -0
  136. {starplot-0.10.2 → starplot-0.11.0}/hash_checks/template.html +0 -0
  137. {starplot-0.10.2 → starplot-0.11.0}/mkdocs.yml +0 -0
  138. {starplot-0.10.2 → starplot-0.11.0}/pyproject.toml +0 -0
  139. {starplot-0.10.2 → starplot-0.11.0}/requirements-dev.txt +0 -0
  140. {starplot-0.10.2 → starplot-0.11.0}/requirements.txt +0 -0
  141. {starplot-0.10.2 → starplot-0.11.0}/scripts/constellation_hips.py +0 -0
  142. {starplot-0.10.2 → starplot-0.11.0}/scripts/download_cons.py +0 -0
  143. {starplot-0.10.2 → starplot-0.11.0}/scripts/ecliptic.py +0 -0
  144. {starplot-0.10.2 → starplot-0.11.0}/scripts/gallery.py +0 -0
  145. {starplot-0.10.2 → starplot-0.11.0}/scripts/geopack.py +0 -0
  146. {starplot-0.10.2 → starplot-0.11.0}/scripts/gpack_constellations.py +0 -0
  147. {starplot-0.10.2 → starplot-0.11.0}/scripts/hip.py +0 -0
  148. {starplot-0.10.2 → starplot-0.11.0}/scripts/hip_parquet.py +0 -0
  149. {starplot-0.10.2 → starplot-0.11.0}/scripts/ipy.py +0 -0
  150. {starplot-0.10.2 → starplot-0.11.0}/scripts/moonphases.py +0 -0
  151. {starplot-0.10.2 → starplot-0.11.0}/scripts/ongc_docdata.py +0 -0
  152. {starplot-0.10.2 → starplot-0.11.0}/scripts/ongc_geopack.py +0 -0
  153. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/callables.py +0 -0
  154. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/data/bayer.py +0 -0
  155. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/data/constellations.py +0 -0
  156. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/data/dsos.py +0 -0
  157. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/data/ecliptic.py +0 -0
  158. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/data/library/constellation_borders_inv.gpkg +0 -0
  159. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/data/library/constellation_lines_hips.json +0 -0
  160. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/data/library/constellation_lines_inv.gpkg +0 -0
  161. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/data/library/constellations.gpkg +0 -0
  162. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/data/library/constellations_hip.fab +0 -0
  163. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/data/library/de421_2001.bsp +0 -0
  164. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/data/library/de440s.bsp +0 -0
  165. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/data/library/milkyway.gpkg +0 -0
  166. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/data/library/milkyway_inv.gpkg +0 -0
  167. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/data/library/ongc.gpkg.zip +0 -0
  168. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/data/library/stars.hipparcos.parquet +0 -0
  169. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/data/messier.py +0 -0
  170. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/geod.py +0 -0
  171. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/mixins.py +0 -0
  172. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/models/dso.py +0 -0
  173. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/models/moon.py +0 -0
  174. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/models/objects.py +0 -0
  175. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/models/planet.py +0 -0
  176. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/models/sun.py +0 -0
  177. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/optics.py +0 -0
  178. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/plotters/__init__.py +0 -0
  179. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/plotters/dsos.py +0 -0
  180. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/styles/__init__.py +0 -0
  181. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/styles/ext/map.yml +0 -0
  182. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/styles/helpers.py +0 -0
  183. {starplot-0.10.2 → starplot-0.11.0}/src/starplot/utils.py +0 -0
  184. {starplot-0.10.2 → starplot-0.11.0}/tests/__init__.py +0 -0
  185. {starplot-0.10.2 → starplot-0.11.0}/tests/data/.keep +0 -0
  186. {starplot-0.10.2 → starplot-0.11.0}/tests/test_constellations.py +0 -0
  187. {starplot-0.10.2 → starplot-0.11.0}/tests/test_map.py +0 -0
  188. {starplot-0.10.2 → starplot-0.11.0}/tests/test_optic.py +0 -0
  189. {starplot-0.10.2 → starplot-0.11.0}/tests/test_styles.py +0 -0
  190. {starplot-0.10.2 → starplot-0.11.0}/tests/test_utils.py +0 -0
  191. {starplot-0.10.2 → starplot-0.11.0}/tests/utils.py +0 -0
  192. {starplot-0.10.2 → starplot-0.11.0}/tutorial/build.py +0 -0
  193. {starplot-0.10.2 → starplot-0.11.0}/tutorial/tutorial_04.py +0 -0
  194. {starplot-0.10.2 → starplot-0.11.0}/tutorial/tutorial_07.py +0 -0
@@ -0,0 +1,30 @@
1
+ ---
2
+ name: Bug report
3
+ about: Create a report to help us improve
4
+ title: ''
5
+ labels: ''
6
+ assignees: ''
7
+
8
+ ---
9
+
10
+ **Describe the bug**
11
+ A clear and concise description of what the bug is (i.e. what you expected to happen and what actually happened instead).
12
+
13
+ **To Reproduce**
14
+ Share code that triggers the bug
15
+
16
+ **Expected behavior**
17
+ A clear and concise description of what you expected to happen.
18
+
19
+ **Screenshots**
20
+ If applicable, add screenshots to help explain your problem.
21
+
22
+ **Environment Details (please complete the following information):**
23
+ - Starplot version
24
+ - Python version
25
+ - Matplotlib version
26
+ - OS: [e.g. macOS, Ubuntu, Windows, etc]
27
+
28
+
29
+ **Additional context**
30
+ Add any other context about the problem here.
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: Feature request
3
+ about: Suggest an idea for this project
4
+ title: ''
5
+ labels: ''
6
+ assignees: ''
7
+
8
+ ---
9
+
10
+ **Is your feature request related to a problem? Please describe.**
11
+ A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12
+
13
+ **Describe the solution you'd like**
14
+ A clear and concise description of what you want to happen.
15
+
16
+ **Describe alternatives you've considered**
17
+ A clear and concise description of any alternative solutions or features you've considered.
18
+
19
+ **Additional context**
20
+ Add any other context or screenshots about the feature request here.
@@ -6,6 +6,7 @@ on:
6
6
  types: [opened, reopened, synchronize]
7
7
  branches:
8
8
  - main
9
+ - develop
9
10
 
10
11
  jobs:
11
12
  test-lint-build:
@@ -8,6 +8,11 @@ hip_main.dat
8
8
  hip8.dat
9
9
  CometEls.txt
10
10
 
11
+ # Big Sky - Full Catalog
12
+ # we ignore this because of its size (50+ MB)
13
+ bigsky.stars.csv.gz
14
+ stars.bigsky.parquet
15
+
11
16
  hash_checks/data/*.png
12
17
  hash_checks/results.html
13
18
 
@@ -17,7 +22,9 @@ raw/
17
22
 
18
23
  # Documentation Generated Files
19
24
  examples/*.png
25
+ examples/*.jpg
20
26
  docs/images/examples/*.png
27
+ docs/images/examples/*.jpg
21
28
  tutorial/*.png
22
29
  docs/images/tutorial/*.png
23
30
  docs/data/*.json
@@ -0,0 +1,128 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our
6
+ community a harassment-free experience for everyone, regardless of age, body
7
+ size, visible or invisible disability, ethnicity, sex characteristics, gender
8
+ identity and expression, level of experience, education, socio-economic status,
9
+ nationality, personal appearance, race, religion, or sexual identity
10
+ and orientation.
11
+
12
+ We pledge to act and interact in ways that contribute to an open, welcoming,
13
+ diverse, inclusive, and healthy community.
14
+
15
+ ## Our Standards
16
+
17
+ Examples of behavior that contributes to a positive environment for our
18
+ community include:
19
+
20
+ * Demonstrating empathy and kindness toward other people
21
+ * Being respectful of differing opinions, viewpoints, and experiences
22
+ * Giving and gracefully accepting constructive feedback
23
+ * Accepting responsibility and apologizing to those affected by our mistakes,
24
+ and learning from the experience
25
+ * Focusing on what is best not just for us as individuals, but for the
26
+ overall community
27
+
28
+ Examples of unacceptable behavior include:
29
+
30
+ * The use of sexualized language or imagery, and sexual attention or
31
+ advances of any kind
32
+ * Trolling, insulting or derogatory comments, and personal or political attacks
33
+ * Public or private harassment
34
+ * Publishing others' private information, such as a physical or email
35
+ address, without their explicit permission
36
+ * Other conduct which could reasonably be considered inappropriate in a
37
+ professional setting
38
+
39
+ ## Enforcement Responsibilities
40
+
41
+ Community leaders are responsible for clarifying and enforcing our standards of
42
+ acceptable behavior and will take appropriate and fair corrective action in
43
+ response to any behavior that they deem inappropriate, threatening, offensive,
44
+ or harmful.
45
+
46
+ Community leaders have the right and responsibility to remove, edit, or reject
47
+ comments, commits, code, wiki edits, issues, and other contributions that are
48
+ not aligned to this Code of Conduct, and will communicate reasons for moderation
49
+ decisions when appropriate.
50
+
51
+ ## Scope
52
+
53
+ This Code of Conduct applies within all community spaces, and also applies when
54
+ an individual is officially representing the community in public spaces.
55
+ Examples of representing our community include using an official e-mail address,
56
+ posting via an official social media account, or acting as an appointed
57
+ representative at an online or offline event.
58
+
59
+ ## Enforcement
60
+
61
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
62
+ reported to the community leaders responsible for enforcement at
63
+ https://steveberardi.com/contact/.
64
+ All complaints will be reviewed and investigated promptly and fairly.
65
+
66
+ All community leaders are obligated to respect the privacy and security of the
67
+ reporter of any incident.
68
+
69
+ ## Enforcement Guidelines
70
+
71
+ Community leaders will follow these Community Impact Guidelines in determining
72
+ the consequences for any action they deem in violation of this Code of Conduct:
73
+
74
+ ### 1. Correction
75
+
76
+ **Community Impact**: Use of inappropriate language or other behavior deemed
77
+ unprofessional or unwelcome in the community.
78
+
79
+ **Consequence**: A private, written warning from community leaders, providing
80
+ clarity around the nature of the violation and an explanation of why the
81
+ behavior was inappropriate. A public apology may be requested.
82
+
83
+ ### 2. Warning
84
+
85
+ **Community Impact**: A violation through a single incident or series
86
+ of actions.
87
+
88
+ **Consequence**: A warning with consequences for continued behavior. No
89
+ interaction with the people involved, including unsolicited interaction with
90
+ those enforcing the Code of Conduct, for a specified period of time. This
91
+ includes avoiding interactions in community spaces as well as external channels
92
+ like social media. Violating these terms may lead to a temporary or
93
+ permanent ban.
94
+
95
+ ### 3. Temporary Ban
96
+
97
+ **Community Impact**: A serious violation of community standards, including
98
+ sustained inappropriate behavior.
99
+
100
+ **Consequence**: A temporary ban from any sort of interaction or public
101
+ communication with the community for a specified period of time. No public or
102
+ private interaction with the people involved, including unsolicited interaction
103
+ with those enforcing the Code of Conduct, is allowed during this period.
104
+ Violating these terms may lead to a permanent ban.
105
+
106
+ ### 4. Permanent Ban
107
+
108
+ **Community Impact**: Demonstrating a pattern of violation of community
109
+ standards, including sustained inappropriate behavior, harassment of an
110
+ individual, or aggression toward or disparagement of classes of individuals.
111
+
112
+ **Consequence**: A permanent ban from any sort of public interaction within
113
+ the community.
114
+
115
+ ## Attribution
116
+
117
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
118
+ version 2.0, available at
119
+ https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
120
+
121
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct
122
+ enforcement ladder](https://github.com/mozilla/diversity).
123
+
124
+ [homepage]: https://www.contributor-covenant.org
125
+
126
+ For answers to common questions about this code of conduct, see the FAQ at
127
+ https://www.contributor-covenant.org/faq. Translations are available at
128
+ https://www.contributor-covenant.org/translations.
@@ -0,0 +1,72 @@
1
+ # Contributing to Starplot
2
+
3
+ _Work in progress_
4
+
5
+ ## Ways to Contribute
6
+
7
+ There are many ways to contribute to Starplot:
8
+
9
+ - Fix typos or clarify documentation
10
+ - Find and fix bugs
11
+ - Implement a feature on the [roadmap](https://starplot.notion.site/aaa0dd71c17943f89850c9a8c43ade50)
12
+ - Propose a new feature by [opening an issue](https://github.com/steveberardi/starplot/issues)
13
+
14
+
15
+ ## Git Workflow
16
+
17
+ If you're new to contributing to open source projects or git in general, then here's a basic overview of the workflow you should follow for contributing code:
18
+
19
+ 1. Fork the main starplot repository
20
+ 2. Clone the repository to your local machine
21
+ 3. Create a new branch on your forked version
22
+ 4. Commit changes to your fork's branch
23
+ 5. Open a pull request from your fork's branch into Starplot's `develop` branch ([here's an example](https://github.com/steveberardi/starplot/pull/89))
24
+ 6. Wait for someone to review your PR (usually a few days to a week)
25
+
26
+
27
+ ## Getting Started
28
+
29
+ The repository has a few helpers for developing locally:
30
+
31
+ - `Makefile` with commands for various tasks (running tests, etc)
32
+ - `Dockerfile` for running Starplot in an isolated environment
33
+ - `scripts/scratchpad.py` for running scratch code
34
+
35
+ When you're new to a codebase it's usually good to start by just checking out the code, building the development environment and running the tests. So, here's how to do that:
36
+
37
+ 1. `make build` will build a Docker container with Starplot's source code mounted as a volume and will also install all of Starplot's dependencies (e.g. GDAL, Matplotlib, Skyfield, etc) - _this requires Docker to be installed first_
38
+ 2. `make test` will run all the unit tests inside the Docker container
39
+ 3. `make check-hashes` will run all the image hash checks and create an HTML file with the results (more on this below)
40
+
41
+ There are also a few other `make` commands that are useful when developing locally:
42
+
43
+ - `make scratchpad` will run `scripts/scratchpad.py` inside the docker container. The `scratchpad.py` file is not checked in to the repo (so you'll have to create it on your machine), but it's a way to run code with the current state of Starplot on your machine -- very helpful when trying things out.
44
+ - `make shell` will open a Python shell on the Docker container
45
+
46
+ ## Tests
47
+
48
+ ### Unit Tests
49
+
50
+ All unit tests are located in `tests/` and can be run with the command `make test`
51
+
52
+ ### Hash Checks
53
+
54
+ Starplot also has a collection of "hash checks" (located in `hash_checks`). Each of these checks does the following:
55
+
56
+ 1. Create a plot that uses some functionality to test
57
+ 2. Export the plot to a PNG file
58
+ 3. Calculate a perceptual hash of the file
59
+ 4. If the name of that check is in the `hash_checks/hashlock.yml` file, then compare the calculated hash with the hash in the hashlock file. If they're equal then that check is a PASS. If they're not equal, then the check is a FAIL. If the check's name is not in the lock file, then it'll be reported as "NEW"
60
+ 5. You can run all the hash checks with the command `make check-hashes`
61
+ 6. After the command finishes, it'll output a summary of the results, but for more details you can open the `hash_checks/results.html` file in a browser which shows all the images
62
+
63
+ These hash checks help test things that are hard (or extremely tedious) to test. As a graphics library, Starplot has a LOT of possible uses and output so the hash checks help make some testing easier to manage.
64
+
65
+ _Work in progress_
66
+
67
+ ## Code of Conduct
68
+
69
+ Starplot supports peace and equality. Please be nice to eachother and respect that we all have different ideas and ways of thinking about things. At the end of the day, we're just here to make maps of the sky.
70
+
71
+ Please review our complete Code of Conduct [here](CODE_OF_CONDUCT.md).
72
+
@@ -13,7 +13,7 @@ else
13
13
  SCRATCH_ARGS=
14
14
  endif
15
15
 
16
- DOCKER_RUN=docker run --rm $(DR_ARGS) -v $(shell pwd):/starplot starplot-dev bash -c
16
+ DOCKER_RUN=docker run --rm --env-file ./.env $(DR_ARGS) -v $(shell pwd):/starplot starplot-dev bash -c
17
17
  DOCKER_BUILDER=starplot-builder
18
18
 
19
19
  DOCKER_BUILD_PYTHON=docker build -t starplot-$(PYTHON_VERSION) $(DOCKER_BUILD_ARGS) --build-arg="PYTHON_VERSION=$(PYTHON_VERSION)" --target dev .
@@ -25,6 +25,7 @@ export PYTHONPATH=./src/
25
25
  build: PYTHON_VERSION=3.11.7
26
26
  build: DOCKER_BUILD_ARGS=-t starplot-dev
27
27
  build:
28
+ touch -a .env
28
29
  $(DOCKER_BUILD_PYTHON)
29
30
 
30
31
  docker-multi-arch:
@@ -59,7 +60,7 @@ scratchpad:
59
60
  $(DOCKER_RUN) "python $(SCRATCH_ARGS) scripts/scratchpad.py"
60
61
 
61
62
  examples:
62
- $(DOCKER_RUN) "cd examples && python examples.py"
63
+ $(DOCKER_RUN) "cd examples && rm -f *.png && rm -f *.jpg && python examples.py"
63
64
 
64
65
  tutorial:
65
66
  $(DOCKER_RUN) "cd tutorial && python build.py"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: starplot
3
- Version: 0.10.2
3
+ Version: 0.11.0
4
4
  Summary: Star charts and maps
5
5
  Keywords: astronomy,stars,charts,maps,constellations
6
6
  Author-email: Steve Berardi <hello@steveberardi.com>
@@ -43,7 +43,7 @@ Project-URL: Source, https://github.com/steveberardi/starplot
43
43
  - 🔭 **Optic Plots** - simulates what you'll see through an optic (e.g. binoculars, telescope) from a time/location
44
44
  - 🪐 **Planets and Deep Sky Objects (DSOs)**
45
45
  - 🎨 **Custom Styles** - for all objects
46
- - 📥 **Export** - png, svg
46
+ - 📥 **Export** - png, svg, jpeg
47
47
  - 🧭 **Label Collision Avoidance**
48
48
 
49
49
  ## Examples
@@ -97,7 +97,11 @@ For a demo of Starplot's zenith plots, check out:
97
97
 
98
98
  Chat with other starplotters on our Discord server:
99
99
 
100
- https://discord.gg/bwazdyD7
100
+ https://discord.gg/WewJJjshFu
101
+
102
+ ## Contributing
103
+
104
+ Contributing to Starplot is welcome and very much appreciated! Please see [here](CONTRIBUTING.md) for details.
101
105
 
102
106
  ## Core Dependencies
103
107
 
@@ -11,7 +11,7 @@
11
11
  - 🔭 **Optic Plots** - simulates what you'll see through an optic (e.g. binoculars, telescope) from a time/location
12
12
  - 🪐 **Planets and Deep Sky Objects (DSOs)**
13
13
  - 🎨 **Custom Styles** - for all objects
14
- - 📥 **Export** - png, svg
14
+ - 📥 **Export** - png, svg, jpeg
15
15
  - 🧭 **Label Collision Avoidance**
16
16
 
17
17
  ## Examples
@@ -65,7 +65,11 @@ For a demo of Starplot's zenith plots, check out:
65
65
 
66
66
  Chat with other starplotters on our Discord server:
67
67
 
68
- https://discord.gg/bwazdyD7
68
+ https://discord.gg/WewJJjshFu
69
+
70
+ ## Contributing
71
+
72
+ Contributing to Starplot is welcome and very much appreciated! Please see [here](CONTRIBUTING.md) for details.
69
73
 
70
74
  ## Core Dependencies
71
75
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  **Starplot** is a Python library for creating star charts and maps. It lets you create zenith plots that show the whole sky from a time/place, map plots that show more detail of an area, and optic plots that simulate the field of view from a particular optic (e.g. telescope, binoculars, or a camera).
4
4
 
5
- Join other starplotters on [Discord :fontawesome-brands-discord:{ .fg-primary }](https://discord.gg/bwazdyD7)
5
+ Join other starplotters on [Discord :fontawesome-brands-discord:{ .fg-primary }](https://discord.gg/WewJJjshFu)
6
6
 
7
7
  ---
8
8
 
@@ -1,5 +1,21 @@
1
1
 
2
+ ## v0.11.x
3
+
4
+ - Replaces Tycho-1 stars with an abridged version of the [Big Sky Catalog](https://github.com/steveberardi/bigsky)
5
+ - Adds style option for a star's edge color (previously this was forced to be the background color)
6
+ - Adds cardinal direction labels to the horizon plotting function
7
+ - Removes behavior that automatically plots the cardinal direction border on zenith plots
8
+ - Adds function for plotting the zenith
9
+ - Adds support for downloading the full [Big Sky Catalog](https://github.com/steveberardi/bigsky) (2.5+ million stars)
10
+ - Various (minor) plotting optimizations
11
+ - Increases star sizes on map plots
12
+ - Adds TYC id to stars (if available)
13
+ - Adds the following projections: Robinson, Lambert Azimuthal Equal-Area
14
+ - Adds a constellation model, allowing you to selectively plot objects by their constellation
15
+
2
16
  ## v0.10.x
17
+ [Documentation](https://archives.starplot.dev/0.10.2/)
18
+
3
19
  - Adds function for plotting text
4
20
  - Adds `where` kwarg to star/DSO plotting functions to selectively plot stars
5
21
  - Adds easier way to override style properties on plotting functions - thanks to Graham Schmidt
@@ -14,7 +30,7 @@
14
30
  - [**v0.10.1**]
15
31
  - Fixes bug with plotting planets as true apparent size
16
32
  - Adds lat/lon kwargs to Sun/Moon/Planet models to allow _apparent_ RA/DEC calculation
17
-
33
+ - [**v0.10.2**] Fixes a few issues with plotting legends
18
34
 
19
35
  ## v0.9.x
20
36
  [Documentation](https://archives.starplot.dev/0.9.1/)
@@ -40,3 +56,5 @@
40
56
  - [**v0.8.2**] Fixes a small bug in determining if a RA/DEC is in bounds of a plot
41
57
  - [**v0.8.3**] More consistent polygon/circle sizing across projections
42
58
  - [**v0.8.4**] Fixes a small bug in plotting text labels of DSOs, which prevented some styles from getting applied
59
+
60
+ <br/><br/>
@@ -6,7 +6,7 @@
6
6
  <meta property="og:type" content="website" />
7
7
  <meta property="og:description" content="Star charts and maps in Python"/>
8
8
  <meta property="og:url" content="https://starplot.dev" />
9
- <meta property="og:image" content="https://starplot.dev/images/examples/star_chart_basic.png" />
9
+ <meta property="og:image" content="https://archives.starplot.dev/static/map-orion.png" />
10
10
 
11
11
  <!-- Plausible -->
12
12
  <script defer data-domain="starplot.dev" src="https://plausible.io/js/script.js"></script>
@@ -1,7 +1,7 @@
1
1
 
2
2
  ### **Stars**
3
3
  - An Extended Hipparcos Compilation (XHIP); Anderson E., Francis C. (2012) [VizieR V/137D](http://cdsarc.u-strasbg.fr/viz-bin/Cat?V/137D)
4
- - [Tycho-1 Catalogue](https://www.cosmos.esa.int/web/hipparcos/catalogues)
4
+ - [Big Sky Catalog](https://github.com/steveberardi/bigsky) - compilation of Hipparcos, Tycho-1, Tycho-2 in Epoch J2000
5
5
 
6
6
  ### **Constellation Lines**
7
7
  - [IAU Constellation page](http://www.iau.org/public/themes/constellations/) (via [d3-celestial](https://github.com/ofrohn/d3-celestial))
@@ -0,0 +1,20 @@
1
+ ---
2
+ title: Comet NEOWISE
3
+ ---
4
+ [:octicons-arrow-left-24: Back to Examples](/examples)
5
+
6
+ # Map of Comet NEOWISE {.example-header}
7
+
8
+ ![map-comet-neowise](/images/examples/map_comet_neowise.png)
9
+
10
+ Here's an example that uses [Skyfield](https://rhodesmill.org/skyfield/) to get some data on the comet [NEOWISE](https://en.wikipedia.org/wiki/Comet_NEOWISE) ☄️ and then uses that data to plot the comet's location in the sky in July 2020:
11
+
12
+ !!! star "Note"
13
+
14
+ Skyfield is a required dependency of Starplot (and a very important one!), so if you have Starplot installed, then Skyfield should be installed too.
15
+
16
+
17
+ ```python
18
+ --8<-- "examples/map_comet_neowise.py"
19
+ ```
20
+
@@ -0,0 +1,15 @@
1
+ ---
2
+ title: Stars of the Milky Way
3
+ ---
4
+ [:octicons-arrow-left-24: Back to Examples](/examples)
5
+
6
+ # Stars of the Milky Way {.example-header}
7
+
8
+ ![map-milky-way-stars](/images/examples/map_milky_way_stars.png)
9
+
10
+
11
+ ```python
12
+ --8<-- "examples/map_milky_way_stars.py"
13
+ ```
14
+
15
+
@@ -5,14 +5,14 @@
5
5
 
6
6
  <li>
7
7
  <a href="/examples/star-chart-basic">
8
- <img src="/images/examples/star_chart_basic.png" alt="Basic Star Chart" class="off-glb"/>
8
+ <img src="/images/examples/star_chart_basic-sm.png" alt="Basic Star Chart" class="off-glb"/>
9
9
 
10
10
  <p class="example-card-title">Basic Star Chart</p>
11
11
  </a>
12
12
  </li>
13
13
  <li>
14
14
  <a href="/examples/star-chart-detail">
15
- <img src="/images/examples/star_chart_detail.png" alt="Detailed Star Chart" class="off-glb"/>
15
+ <img src="/images/examples/star_chart_detail-sm.png" alt="Detailed Star Chart" class="off-glb"/>
16
16
 
17
17
  <p class="example-card-title">Detailed Star Chart</p>
18
18
  </a>
@@ -20,7 +20,7 @@
20
20
 
21
21
  <li>
22
22
  <a href="/examples/map-orion">
23
- <img src="/images/examples/map_orion.png" alt="Map of Orion" class="off-glb"/>
23
+ <img src="/images/examples/map_orion-sm.png" alt="Map of Orion" class="off-glb"/>
24
24
 
25
25
  <p class="example-card-title">Map of Orion</p>
26
26
  </a>
@@ -28,7 +28,7 @@
28
28
 
29
29
  <li>
30
30
  <a href="/examples/map-big">
31
- <img src="/images/examples/map_big.png" alt="Big Map" class="off-glb"/>
31
+ <img src="/images/examples/map_big-sm.png" alt="Big Map" class="off-glb"/>
32
32
 
33
33
  <p class="example-card-title">Big Map</p>
34
34
  </a>
@@ -36,7 +36,7 @@
36
36
 
37
37
  <li>
38
38
  <a href="/examples/optic-m45">
39
- <img src="/images/examples/optic_m45.png" alt="Optic Plot of the Pleiades" class="off-glb" loading="lazy"/>
39
+ <img src="/images/examples/optic_m45-sm.png" alt="Optic Plot of the Pleiades" class="off-glb" loading="lazy"/>
40
40
 
41
41
  <p class="example-card-title">Optic Plot of the Pleiades</p>
42
42
  </a>
@@ -44,31 +44,39 @@
44
44
 
45
45
  <li>
46
46
  <a href="/examples/optic-orion">
47
- <img src="/images/examples/optic_orion_nebula.png" alt="Optic Plot of the Orion Nebula" class="off-glb" loading="lazy"/>
47
+ <img src="/images/examples/optic_orion_nebula-sm.png" alt="Optic Plot of the Orion Nebula" class="off-glb" loading="lazy"/>
48
48
 
49
49
  <p class="example-card-title">Optic Plot of the Orion Nebula</p>
50
50
  </a>
51
51
  </li>
52
52
 
53
+ <li>
54
+ <a href="/examples/map-milky-way-stars">
55
+ <img src="/images/examples/map_milky_way_stars-sm.png" alt="Stars of the Milky Way class="off-glb"/>
56
+
57
+ <p class="example-card-title">Milky Way Stars</p>
58
+ </a>
59
+ </li>
60
+
53
61
  <li>
54
62
  <a href="/examples/map-big-dipper">
55
- <img src="/images/examples/map_big_dipper.png" alt="Map of the Big Dipper" class="off-glb" loading="lazy"/>
63
+ <img src="/images/examples/map_big_dipper-sm.png" alt="Map of the Big Dipper" class="off-glb" loading="lazy"/>
56
64
 
57
65
  <p class="example-card-title">Map of the Big Dipper</p>
58
66
  </a>
59
67
  </li>
60
68
 
61
69
  <li>
62
- <a href="/examples/map-hale-bopp-comet">
63
- <img src="/images/examples/map_hale_bopp.png" alt="Map of Hale-Bopp in 1997" class="off-glb" loading="lazy"/>
70
+ <a href="/examples/map-comet-neowise">
71
+ <img src="/images/examples/map_comet_neowise-sm.png" alt="Map of Comet NEOWISE in 2020" class="off-glb" loading="lazy"/>
64
72
 
65
- <p class="example-card-title">Map of Hale-Bopp in 1997</p>
73
+ <p class="example-card-title">Comet NEOWISE</p>
66
74
  </a>
67
75
  </li>
68
76
 
69
77
  <li>
70
78
  <a href="/examples/map-sagittarius">
71
- <img src="/images/examples/map_sagittarius.png" alt="Map of Sagittarius" class="off-glb" loading="lazy"/>
79
+ <img src="/images/examples/map_sagittarius-sm.png" alt="Map of Sagittarius" class="off-glb" loading="lazy"/>
72
80
 
73
81
  <p class="example-card-title">Map of Sagittarius</p>
74
82
  </a>
@@ -76,7 +84,7 @@
76
84
 
77
85
  <li>
78
86
  <a href="/examples/map-orthographic">
79
- <img src="/images/examples/map_orthographic.png" alt="Orthographic Map" class="off-glb" loading="lazy"/>
87
+ <img src="/images/examples/map_orthographic-sm.png" alt="Orthographic Map" class="off-glb" loading="lazy"/>
80
88
 
81
89
  <p class="example-card-title">Orthographic Map</p>
82
90
  </a>
@@ -84,7 +92,7 @@
84
92
 
85
93
  <li>
86
94
  <a href="/examples/optic-solar-eclipse">
87
- <img src="/images/examples/optic_solar_eclipse.png" alt="Total Solar Eclipse 2024" class="off-glb" loading="lazy"/>
95
+ <img src="/images/examples/optic_solar_eclipse-sm.png" alt="Total Solar Eclipse 2024" class="off-glb" loading="lazy"/>
88
96
 
89
97
  <p class="example-card-title">Total Solar Eclipse 2024</p>
90
98
  </a>
@@ -92,7 +100,7 @@
92
100
 
93
101
  <li>
94
102
  <a href="/examples/optic-moon-saturn">
95
- <img src="/images/examples/optic_moon_saturn.png" alt="Moon and Saturn Conjunction" class="off-glb" loading="lazy"/>
103
+ <img src="/images/examples/optic_moon_saturn-sm.png" alt="Moon and Saturn Conjunction" class="off-glb" loading="lazy"/>
96
104
 
97
105
  <p class="example-card-title">Moon and Saturn Conjunction</p>
98
106
  </a>
@@ -14,7 +14,7 @@ Starplot is a Python library for creating star charts and maps.
14
14
 
15
15
  - ⭐ **Zenith Plots** - showing the stars from a specific time/location
16
16
 
17
- - 🗺️ **Map Plots** - including North/South polar and Mercator projections
17
+ - 🗺️ **Map Plots** - including stereographic and perspective projections
18
18
 
19
19
  - 🔭 **Optic Plots** - simulates what you'll see through an optic (e.g. telescope) from a time/location
20
20
 
@@ -22,11 +22,11 @@ Starplot is a Python library for creating star charts and maps.
22
22
 
23
23
  - 🎨 **Custom Styles** - for all objects
24
24
 
25
- - 📥 **Export** - png, svg
25
+ - 📥 **Export** - png, svg, jpeg
26
26
 
27
27
  - 🧭 **Label Collision Avoidance**
28
28
 
29
- Join other starplotters on [Discord :fontawesome-brands-discord:{ .fg-primary }](https://discord.gg/bwazdyD7)
29
+ Join other starplotters on [Discord :fontawesome-brands-discord:{ .fg-primary }](https://discord.gg/WewJJjshFu)
30
30
 
31
31
  *Example charts and maps created with Starplot:*
32
32
  <!-- {.text-subtitle} -->
@@ -15,6 +15,15 @@ Starplot has models to represent some of the objects you can plot, including sta
15
15
  show_docstring_attributes: true
16
16
  members_order: source
17
17
 
18
+
19
+ ::: starplot.Constellation
20
+ options:
21
+ inherited_members: true
22
+ docstring_section_style: list
23
+ show_root_heading: true
24
+ show_docstring_attributes: true
25
+ members_order: source
26
+
18
27
  ::: starplot.DSO
19
28
  options:
20
29
  inherited_members: true
@@ -30,7 +30,7 @@ Line 15 is where we create the instance of an `OpticPlot`. Most of the kwargs ar
30
30
 
31
31
  The `ra`/`dec` you specify for the target will be the center of the plot.
32
32
 
33
- On line 31, we plot stars down to magnitude 14, but we also specify the [star catalog](/reference-data/#starplot.data.stars.StarCatalog) to use. By default, Starplot uses the Hipparcos catalog, but it also has the Tycho-1 catalog built-in which has many more stars.
33
+ On line 31, we plot stars down to magnitude 14, but we also specify the [star catalog](/reference-data/#starplot.data.stars.StarCatalog) to use. By default, Starplot uses the Hipparcos catalog, but it also has the [Big Sky Catalog](https://github.com/steveberardi/bigsky) built-in which has many more stars.
34
34
 
35
35
  *In the [next section](06.md), we'll learn how to be more selective of objects to plot...*
36
36
 
@@ -14,7 +14,7 @@ The purpose of the tutorial was just to give you an intro to some of Starplot's
14
14
  - [MapPlot](/reference-mapplot/)
15
15
  - [OpticPlot](/reference-opticplot/)
16
16
  - [Styling](/reference-styling/)
17
- - [Join other Starplotters on Discord](https://discord.gg/bwazdyD7)
17
+ - [Join other Starplotters on Discord](https://discord.gg/WewJJjshFu)
18
18
  - Find a bug? Please [open an issue](https://github.com/steveberardi/starplot/issues) on GitHub, thanks!
19
19
 
20
20
  <br/>