starplot 0.15.5__tar.gz → 0.15.7__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 (728) hide show
  1. starplot-0.15.7/CITATION.cff +24 -0
  2. {starplot-0.15.5 → starplot-0.15.7}/Makefile +1 -1
  3. {starplot-0.15.5 → starplot-0.15.7}/PKG-INFO +3 -2
  4. {starplot-0.15.5 → starplot-0.15.7}/docs/about.md +1 -1
  5. {starplot-0.15.5 → starplot-0.15.7}/docs/changelog.md +8 -0
  6. {starplot-0.15.5 → starplot-0.15.7}/docs/coming-soon.md +7 -0
  7. {starplot-0.15.5 → starplot-0.15.7}/docs/css/extra.css +80 -0
  8. starplot-0.15.7/docs/custom/main.html +58 -0
  9. {starplot-0.15.5 → starplot-0.15.7}/docs/examples.md +23 -2
  10. starplot-0.15.7/docs/images/cover-front-sm-360.png +0 -0
  11. starplot-0.15.7/docs/images/discord.svg +1 -0
  12. {starplot-0.15.5 → starplot-0.15.7}/docs/index.md +3 -2
  13. starplot-0.15.7/docs/publications.md +31 -0
  14. {starplot-0.15.5 → starplot-0.15.7}/docs/reference-selecting-objects.md +12 -0
  15. starplot-0.15.7/docs/snippets/_newsletter.html +25 -0
  16. {starplot-0.15.5 → starplot-0.15.7}/docs/tutorial/09.md +2 -0
  17. {starplot-0.15.5 → starplot-0.15.7}/docs/tutorial.md +2 -1
  18. {starplot-0.15.5 → starplot-0.15.7}/examples/examples.py +1 -0
  19. {starplot-0.15.5 → starplot-0.15.7}/hash_checks/hashlock.yml +36 -36
  20. {starplot-0.15.5 → starplot-0.15.7}/hash_checks/map_checks.py +16 -13
  21. {starplot-0.15.5 → starplot-0.15.7}/hash_checks/optic_checks.py +1 -1
  22. {starplot-0.15.5 → starplot-0.15.7}/mkdocs.yml +1 -0
  23. {starplot-0.15.5 → starplot-0.15.7}/requirements.txt +2 -2
  24. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/__init__.py +1 -1
  25. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/base.py +12 -3
  26. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/data/constellations.py +19 -5
  27. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/data/dsos.py +17 -4
  28. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/data/library/sky.db +0 -0
  29. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/data/stars.py +15 -4
  30. starplot-0.15.7/src/starplot/models/base.py +94 -0
  31. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/models/constellation.py +14 -26
  32. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/models/dso.py +54 -41
  33. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/models/moon.py +6 -28
  34. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/models/planet.py +2 -18
  35. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/models/star.py +25 -36
  36. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/models/sun.py +2 -18
  37. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/optic.py +3 -1
  38. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/optics.py +81 -40
  39. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/plotters/constellations.py +15 -10
  40. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/plotters/dsos.py +26 -11
  41. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/plotters/stars.py +18 -3
  42. {starplot-0.15.5 → starplot-0.15.7}/tests/test_models.py +25 -0
  43. starplot-0.15.5/docs/custom/main.html +0 -13
  44. starplot-0.15.5/src/starplot/models/base.py +0 -48
  45. {starplot-0.15.5 → starplot-0.15.7}/.dockerignore +0 -0
  46. {starplot-0.15.5 → starplot-0.15.7}/.github/FUNDING.yml +0 -0
  47. {starplot-0.15.5 → starplot-0.15.7}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
  48. {starplot-0.15.5 → starplot-0.15.7}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
  49. {starplot-0.15.5 → starplot-0.15.7}/.github/workflows/docs.yml +0 -0
  50. {starplot-0.15.5 → starplot-0.15.7}/.github/workflows/release.yml +0 -0
  51. {starplot-0.15.5 → starplot-0.15.7}/.github/workflows/test.yml +0 -0
  52. {starplot-0.15.5 → starplot-0.15.7}/.gitignore +0 -0
  53. {starplot-0.15.5 → starplot-0.15.7}/CODE_OF_CONDUCT.md +0 -0
  54. {starplot-0.15.5 → starplot-0.15.7}/CONTRIBUTING.md +0 -0
  55. {starplot-0.15.5 → starplot-0.15.7}/Dockerfile +0 -0
  56. {starplot-0.15.5 → starplot-0.15.7}/LICENSE +0 -0
  57. {starplot-0.15.5 → starplot-0.15.7}/README.md +0 -0
  58. {starplot-0.15.5 → starplot-0.15.7}/data/raw/constellation_borders.json +0 -0
  59. {starplot-0.15.5 → starplot-0.15.7}/data/raw/constellations.json +0 -0
  60. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/and.txt +0 -0
  61. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/ant.txt +0 -0
  62. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/aps.txt +0 -0
  63. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/aql.txt +0 -0
  64. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/aqr.txt +0 -0
  65. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/ara.txt +0 -0
  66. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/ari.txt +0 -0
  67. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/aur.txt +0 -0
  68. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/boo.txt +0 -0
  69. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/cae.txt +0 -0
  70. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/cam.txt +0 -0
  71. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/cap.txt +0 -0
  72. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/car.txt +0 -0
  73. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/cas.txt +0 -0
  74. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/cen.txt +0 -0
  75. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/cep.txt +0 -0
  76. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/cet.txt +0 -0
  77. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/cha.txt +0 -0
  78. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/cir.txt +0 -0
  79. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/cma.txt +0 -0
  80. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/cmi.txt +0 -0
  81. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/cnc.txt +0 -0
  82. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/col.txt +0 -0
  83. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/com.txt +0 -0
  84. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/cra.txt +0 -0
  85. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/crb.txt +0 -0
  86. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/crt.txt +0 -0
  87. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/cru.txt +0 -0
  88. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/crv.txt +0 -0
  89. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/cvn.txt +0 -0
  90. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/cyg.txt +0 -0
  91. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/del.txt +0 -0
  92. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/dor.txt +0 -0
  93. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/dra.txt +0 -0
  94. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/equ.txt +0 -0
  95. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/eri.txt +0 -0
  96. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/for.txt +0 -0
  97. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/gem.txt +0 -0
  98. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/gru.txt +0 -0
  99. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/her.txt +0 -0
  100. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/hor.txt +0 -0
  101. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/hya.txt +0 -0
  102. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/hyi.txt +0 -0
  103. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/ind.txt +0 -0
  104. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/lac.txt +0 -0
  105. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/leo.txt +0 -0
  106. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/lep.txt +0 -0
  107. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/lib.txt +0 -0
  108. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/lmi.txt +0 -0
  109. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/lup.txt +0 -0
  110. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/lyn.txt +0 -0
  111. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/lyr.txt +0 -0
  112. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/men.txt +0 -0
  113. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/mic.txt +0 -0
  114. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/mon.txt +0 -0
  115. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/mus.txt +0 -0
  116. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/nor.txt +0 -0
  117. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/oct.txt +0 -0
  118. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/oph.txt +0 -0
  119. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/ori.txt +0 -0
  120. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/pav.txt +0 -0
  121. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/peg.txt +0 -0
  122. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/per.txt +0 -0
  123. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/phe.txt +0 -0
  124. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/pic.txt +0 -0
  125. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/psa.txt +0 -0
  126. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/psc.txt +0 -0
  127. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/pup.txt +0 -0
  128. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/pyx.txt +0 -0
  129. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/ret.txt +0 -0
  130. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/scl.txt +0 -0
  131. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/sco.txt +0 -0
  132. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/sct.txt +0 -0
  133. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/ser1.txt +0 -0
  134. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/ser2.txt +0 -0
  135. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/sex.txt +0 -0
  136. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/sge.txt +0 -0
  137. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/sgr.txt +0 -0
  138. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/tau.txt +0 -0
  139. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/tel.txt +0 -0
  140. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/tra.txt +0 -0
  141. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/tri.txt +0 -0
  142. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/tuc.txt +0 -0
  143. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/uma.txt +0 -0
  144. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/umi.txt +0 -0
  145. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/vel.txt +0 -0
  146. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/vir.txt +0 -0
  147. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/vol.txt +0 -0
  148. {starplot-0.15.5 → starplot-0.15.7}/data/raw/iau/vul.txt +0 -0
  149. {starplot-0.15.5 → starplot-0.15.7}/data/raw/milkyway.json +0 -0
  150. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/NGC.csv +0 -0
  151. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/addendum.csv +0 -0
  152. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/Antlia_lv1.txt +0 -0
  153. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/C9_lv2.txt +0 -0
  154. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/Cepheus_lv1.txt +0 -0
  155. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/CoronaAustralis_lv1.txt +0 -0
  156. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/Cygnus_lv1.txt +0 -0
  157. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/Cygnus_lv2.txt +0 -0
  158. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/Cygnus_lv3.txt +0 -0
  159. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC0059_lv1.txt +0 -0
  160. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC0059_lv2.txt +0 -0
  161. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC0063_lv2.txt +0 -0
  162. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC0341_lv1.txt +0 -0
  163. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC0348_lv1.txt +0 -0
  164. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC0348_lv2.txt +0 -0
  165. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC0348_lv3.txt +0 -0
  166. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC0359A_lv1.txt +0 -0
  167. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC0405_lv1.txt +0 -0
  168. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC0405_lv2.txt +0 -0
  169. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC0405_lv3.txt +0 -0
  170. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC0410_lv2.txt +0 -0
  171. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC0410_lv3.txt +0 -0
  172. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC0417_lv2.txt +0 -0
  173. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC0417_lv3.txt +0 -0
  174. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC0423_lv2.txt +0 -0
  175. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC0424_lv1.txt +0 -0
  176. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC0424_lv2.txt +0 -0
  177. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC0426_lv2.txt +0 -0
  178. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC0431_lv2.txt +0 -0
  179. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC0432_lv3.txt +0 -0
  180. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC0434_lv1.txt +0 -0
  181. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC0434_lv2.txt +0 -0
  182. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC0434_lv3.txt +0 -0
  183. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC0435_lv2.txt +0 -0
  184. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC0443_lv1.txt +0 -0
  185. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC0443_lv2.txt +0 -0
  186. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC0443_lv3.txt +0 -0
  187. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC0444_lv1.txt +0 -0
  188. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC0444_lv2.txt +0 -0
  189. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC0446_lv1.txt +0 -0
  190. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC0446_lv2.txt +0 -0
  191. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC0447_lv1.txt +0 -0
  192. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC0447_lv2.txt +0 -0
  193. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC0466_lv2.txt +0 -0
  194. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC1274_lv3.txt +0 -0
  195. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC1284_lv1.txt +0 -0
  196. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC1284_lv2.txt +0 -0
  197. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC1287_lv1.txt +0 -0
  198. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC1287_lv2.txt +0 -0
  199. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC1396_lv1.txt +0 -0
  200. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC1396_lv2.txt +0 -0
  201. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC1470_lv2.txt +0 -0
  202. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC1805_lv1.txt +0 -0
  203. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC1805_lv2.txt +0 -0
  204. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC1848_lv1.txt +0 -0
  205. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC1848_lv2.txt +0 -0
  206. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC2087_lv1.txt +0 -0
  207. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC2128_lv1.txt +0 -0
  208. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC2128_lv2.txt +0 -0
  209. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC2128_lv3.txt +0 -0
  210. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC2162_lv1.txt +0 -0
  211. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC2162_lv2.txt +0 -0
  212. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC2162_lv3.txt +0 -0
  213. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC2177_lv1.txt +0 -0
  214. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC2177_lv2.txt +0 -0
  215. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC2177_lv3.txt +0 -0
  216. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC2220_lv2.txt +0 -0
  217. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC2220_lv3.txt +0 -0
  218. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC2599_lv2.txt +0 -0
  219. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC2599_lv3.txt +0 -0
  220. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC2872_lv2.txt +0 -0
  221. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC2872_lv3.txt +0 -0
  222. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC2944_lv1.txt +0 -0
  223. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC2944_lv2.txt +0 -0
  224. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC2944_lv3.txt +0 -0
  225. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC2948_lv3.txt +0 -0
  226. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC2966_lv2.txt +0 -0
  227. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC4592_lv1.txt +0 -0
  228. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC4592_lv2.txt +0 -0
  229. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC4601_lv2.txt +0 -0
  230. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC4628_lv1.txt +0 -0
  231. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC4628_lv2.txt +0 -0
  232. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC4628_lv3.txt +0 -0
  233. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC4684_lv2.txt +0 -0
  234. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC4701_lv2.txt +0 -0
  235. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC4706_lv2.txt +0 -0
  236. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC4706_lv3.txt +0 -0
  237. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC4812_lv3.txt +0 -0
  238. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC4954_lv2.txt +0 -0
  239. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC4955_lv2.txt +0 -0
  240. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC5068_lv1.txt +0 -0
  241. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC5068_lv2.txt +0 -0
  242. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC5070_lv2.txt +0 -0
  243. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC5076_lv2.txt +0 -0
  244. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC5146_lv1.txt +0 -0
  245. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC5146_lv2.txt +0 -0
  246. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/IC5148_lv2.txt +0 -0
  247. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/LBN1032_lv1.txt +0 -0
  248. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/LBN1032_lv2.txt +0 -0
  249. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/LBN1032_lv3.txt +0 -0
  250. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/LBN1037_lv2.txt +0 -0
  251. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/LBN1037_lv3.txt +0 -0
  252. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/LMC_lv1.txt +0 -0
  253. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/LMC_lv2.txt +0 -0
  254. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/M045_lv1.txt +0 -0
  255. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/M045_lv2.txt +0 -0
  256. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/M045_lv3.txt +0 -0
  257. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC0246_lv2.txt +0 -0
  258. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC0248_lv1.txt +0 -0
  259. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC0248_lv2.txt +0 -0
  260. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC0248_lv3.txt +0 -0
  261. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC0249_lv1.txt +0 -0
  262. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC0249_lv2.txt +0 -0
  263. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC0261_lv1.txt +0 -0
  264. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC0261_lv2.txt +0 -0
  265. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC0281_lv1.txt +0 -0
  266. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC0281_lv2.txt +0 -0
  267. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC0281_lv3.txt +0 -0
  268. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC0456_lv1.txt +0 -0
  269. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC0456_lv2.txt +0 -0
  270. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC0460_lv1.txt +0 -0
  271. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC0460_lv2.txt +0 -0
  272. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC0595_lv2.txt +0 -0
  273. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC0595_lv3.txt +0 -0
  274. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC0604_lv2.txt +0 -0
  275. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC0604_lv3.txt +0 -0
  276. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC0650_lv1.txt +0 -0
  277. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC0650_lv2.txt +0 -0
  278. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC0650_lv3.txt +0 -0
  279. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1333_lv1.txt +0 -0
  280. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1333_lv2.txt +0 -0
  281. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1360_lv1.txt +0 -0
  282. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1360_lv2.txt +0 -0
  283. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1491_lv1.txt +0 -0
  284. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1491_lv2.txt +0 -0
  285. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1491_lv3.txt +0 -0
  286. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1499_lv1.txt +0 -0
  287. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1499_lv2.txt +0 -0
  288. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1514_lv1.txt +0 -0
  289. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1514_lv2.txt +0 -0
  290. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1555_lv1.txt +0 -0
  291. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1555_lv2.txt +0 -0
  292. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1579_lv1.txt +0 -0
  293. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1579_lv2.txt +0 -0
  294. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1579_lv3.txt +0 -0
  295. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1624_lv1.txt +0 -0
  296. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1624_lv2.txt +0 -0
  297. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1624_lv3.txt +0 -0
  298. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1714_lv1.txt +0 -0
  299. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1714_lv2.txt +0 -0
  300. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1714_lv3.txt +0 -0
  301. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1715_lv2.txt +0 -0
  302. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1722_lv2.txt +0 -0
  303. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1727_lv1.txt +0 -0
  304. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1727_lv2.txt +0 -0
  305. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1736_lv1.txt +0 -0
  306. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1736_lv2.txt +0 -0
  307. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1736_lv3.txt +0 -0
  308. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1737_lv1.txt +0 -0
  309. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1737_lv2.txt +0 -0
  310. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1743_lv2.txt +0 -0
  311. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1743_lv3.txt +0 -0
  312. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1745_lv2.txt +0 -0
  313. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1748_lv2.txt +0 -0
  314. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1748_lv3.txt +0 -0
  315. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1760_lv1.txt +0 -0
  316. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1760_lv2.txt +0 -0
  317. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1760_lv3.txt +0 -0
  318. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1763_lv3.txt +0 -0
  319. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1769_lv3.txt +0 -0
  320. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1770_lv1.txt +0 -0
  321. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1770_lv2.txt +0 -0
  322. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1773_lv2.txt +0 -0
  323. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1773_lv3.txt +0 -0
  324. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1788_lv1.txt +0 -0
  325. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1788_lv2.txt +0 -0
  326. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1788_lv3.txt +0 -0
  327. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1829_lv1.txt +0 -0
  328. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1829_lv2.txt +0 -0
  329. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1833_lv1.txt +0 -0
  330. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1833_lv2.txt +0 -0
  331. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1858_lv1.txt +0 -0
  332. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1858_lv2.txt +0 -0
  333. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1858_lv3.txt +0 -0
  334. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1869_lv2.txt +0 -0
  335. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1871_lv1.txt +0 -0
  336. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1871_lv2.txt +0 -0
  337. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1874_lv2.txt +0 -0
  338. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1895_lv2.txt +0 -0
  339. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1895_lv3.txt +0 -0
  340. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1909_lv1.txt +0 -0
  341. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1909_lv2.txt +0 -0
  342. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1910_lv2.txt +0 -0
  343. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1914_lv1.txt +0 -0
  344. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1914_lv2.txt +0 -0
  345. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1918_lv2.txt +0 -0
  346. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1919_lv1.txt +0 -0
  347. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1920_lv1.txt +0 -0
  348. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1920_lv2.txt +0 -0
  349. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1931_lv2.txt +0 -0
  350. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1931_lv3.txt +0 -0
  351. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1934_lv1.txt +0 -0
  352. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1934_lv2.txt +0 -0
  353. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1934_lv3.txt +0 -0
  354. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1945_lv2.txt +0 -0
  355. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1948_lv2.txt +0 -0
  356. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1952_lv2.txt +0 -0
  357. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1952_lv3.txt +0 -0
  358. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1955_lv1.txt +0 -0
  359. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1955_lv2.txt +0 -0
  360. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1955_lv3.txt +0 -0
  361. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1968_lv3.txt +0 -0
  362. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1974_lv3.txt +0 -0
  363. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1976_lv1.txt +0 -0
  364. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1976_lv2.txt +0 -0
  365. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC1976_lv3.txt +0 -0
  366. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2014_lv1.txt +0 -0
  367. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2014_lv2.txt +0 -0
  368. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2014_lv3.txt +0 -0
  369. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2018_lv2.txt +0 -0
  370. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2018_lv3.txt +0 -0
  371. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2020_lv2.txt +0 -0
  372. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2023_lv2.txt +0 -0
  373. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2023_lv3.txt +0 -0
  374. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2024_lv2.txt +0 -0
  375. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2024_lv3.txt +0 -0
  376. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2032_lv2.txt +0 -0
  377. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2032_lv3.txt +0 -0
  378. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2040_lv3.txt +0 -0
  379. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2048_lv2.txt +0 -0
  380. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2048_lv3.txt +0 -0
  381. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2064_lv2.txt +0 -0
  382. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2068_lv1.txt +0 -0
  383. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2068_lv2.txt +0 -0
  384. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2068_lv3.txt +0 -0
  385. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2070_lv2.txt +0 -0
  386. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2070_lv3.txt +0 -0
  387. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2071_lv2.txt +0 -0
  388. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2071_lv3.txt +0 -0
  389. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2074_lv2.txt +0 -0
  390. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2074_lv3.txt +0 -0
  391. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2075_lv2.txt +0 -0
  392. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2077_lv2.txt +0 -0
  393. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2077_lv3.txt +0 -0
  394. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2078_lv2.txt +0 -0
  395. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2078_lv3.txt +0 -0
  396. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2081_lv3.txt +0 -0
  397. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2103_lv2.txt +0 -0
  398. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2103_lv3.txt +0 -0
  399. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2113_lv2.txt +0 -0
  400. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2122_lv1.txt +0 -0
  401. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2122_lv2.txt +0 -0
  402. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2122_lv3.txt +0 -0
  403. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2149_lv1.txt +0 -0
  404. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2149_lv2.txt +0 -0
  405. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2163_lv1.txt +0 -0
  406. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2163_lv2.txt +0 -0
  407. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2170_lv1.txt +0 -0
  408. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2170_lv2.txt +0 -0
  409. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2174_lv1.txt +0 -0
  410. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2174_lv2.txt +0 -0
  411. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2174_lv3.txt +0 -0
  412. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2182_lv1.txt +0 -0
  413. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2182_lv2.txt +0 -0
  414. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2183_lv1.txt +0 -0
  415. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2183_lv2.txt +0 -0
  416. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2185_lv2.txt +0 -0
  417. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2237_lv1.txt +0 -0
  418. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2237_lv2.txt +0 -0
  419. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2245_lv1.txt +0 -0
  420. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2245_lv2.txt +0 -0
  421. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2245_lv3.txt +0 -0
  422. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2247_lv1.txt +0 -0
  423. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2247_lv2.txt +0 -0
  424. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2247_lv3.txt +0 -0
  425. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2261_lv2.txt +0 -0
  426. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2264_lv1.txt +0 -0
  427. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2264_lv2.txt +0 -0
  428. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2264_lv3.txt +0 -0
  429. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2282_lv2.txt +0 -0
  430. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2316_lv1.txt +0 -0
  431. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2316_lv2.txt +0 -0
  432. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2327_lv2.txt +0 -0
  433. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2327_lv3.txt +0 -0
  434. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2359_lv1.txt +0 -0
  435. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2359_lv2.txt +0 -0
  436. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2359_lv3.txt +0 -0
  437. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2467_lv1.txt +0 -0
  438. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2467_lv2.txt +0 -0
  439. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2467_lv3.txt +0 -0
  440. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2579_lv1.txt +0 -0
  441. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2579_lv2.txt +0 -0
  442. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2579_lv3.txt +0 -0
  443. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2626_lv2.txt +0 -0
  444. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2736_lv1.txt +0 -0
  445. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC2736_lv2.txt +0 -0
  446. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC3199_lv1.txt +0 -0
  447. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC3199_lv2.txt +0 -0
  448. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC3199_lv3.txt +0 -0
  449. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC3247_lv2.txt +0 -0
  450. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC3247_lv3.txt +0 -0
  451. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC3372_lv1.txt +0 -0
  452. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC3372_lv2.txt +0 -0
  453. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC3372_lv3.txt +0 -0
  454. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC3503_lv2.txt +0 -0
  455. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC3503_lv3.txt +0 -0
  456. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC3572_lv1.txt +0 -0
  457. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC3572_lv2.txt +0 -0
  458. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC3572_lv3.txt +0 -0
  459. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC3579_lv1.txt +0 -0
  460. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC3579_lv2.txt +0 -0
  461. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC3579_lv3.txt +0 -0
  462. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC3603_lv3.txt +0 -0
  463. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC5367_lv1.txt +0 -0
  464. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC5367_lv2.txt +0 -0
  465. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC5367_lv3.txt +0 -0
  466. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6164_lv1.txt +0 -0
  467. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6164_lv2.txt +0 -0
  468. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6165_lv2.txt +0 -0
  469. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6188_lv1.txt +0 -0
  470. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6188_lv2.txt +0 -0
  471. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6334_lv1.txt +0 -0
  472. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6334_lv2.txt +0 -0
  473. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6334_lv3.txt +0 -0
  474. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6357_lv1.txt +0 -0
  475. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6357_lv2.txt +0 -0
  476. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6357_lv3.txt +0 -0
  477. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6514_lv1.txt +0 -0
  478. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6514_lv2.txt +0 -0
  479. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6514_lv3.txt +0 -0
  480. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6523_lv1.txt +0 -0
  481. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6523_lv2.txt +0 -0
  482. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6523_lv3.txt +0 -0
  483. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6559_lv2.txt +0 -0
  484. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6559_lv3.txt +0 -0
  485. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6589_lv2.txt +0 -0
  486. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6589_lv3.txt +0 -0
  487. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6590_lv2.txt +0 -0
  488. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6590_lv3.txt +0 -0
  489. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6611_lv1.txt +0 -0
  490. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6611_lv2.txt +0 -0
  491. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6611_lv3.txt +0 -0
  492. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6618_lv1.txt +0 -0
  493. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6618_lv2.txt +0 -0
  494. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6618_lv3.txt +0 -0
  495. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6727_lv2.txt +0 -0
  496. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6727_lv3.txt +0 -0
  497. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6729_lv3.txt +0 -0
  498. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6823_lv1.txt +0 -0
  499. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6823_lv2.txt +0 -0
  500. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6847_lv1.txt +0 -0
  501. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6888_lv3.txt +0 -0
  502. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6960_lv2.txt +0 -0
  503. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6960_lv3.txt +0 -0
  504. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6992_lv2.txt +0 -0
  505. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC6992_lv3.txt +0 -0
  506. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC7000_lv1.txt +0 -0
  507. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC7000_lv2.txt +0 -0
  508. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC7000_lv3.txt +0 -0
  509. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC7023_lv1.txt +0 -0
  510. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC7023_lv2.txt +0 -0
  511. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC7023_lv3.txt +0 -0
  512. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC7129_lv1.txt +0 -0
  513. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC7129_lv2.txt +0 -0
  514. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC7129_lv3.txt +0 -0
  515. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC7380_lv1.txt +0 -0
  516. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC7380_lv2.txt +0 -0
  517. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC7380_lv3.txt +0 -0
  518. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC7538_lv2.txt +0 -0
  519. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC7538_lv3.txt +0 -0
  520. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC7635_lv2.txt +0 -0
  521. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC7635_lv3.txt +0 -0
  522. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC7822_lv1.txt +0 -0
  523. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/NGC7822_lv2.txt +0 -0
  524. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/Orion_lv1.txt +0 -0
  525. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/Orion_lv2.txt +0 -0
  526. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/Puppis_lv1.txt +0 -0
  527. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/Scorpion_lv1.txt +0 -0
  528. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/Scorpion_lv2.txt +0 -0
  529. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/Vela_lv1.txt +0 -0
  530. {starplot-0.15.5 → starplot-0.15.7}/data/raw/ongc/outlines/Vela_lv2.txt +0 -0
  531. {starplot-0.15.5 → starplot-0.15.7}/data/raw/star_designations.csv +0 -0
  532. {starplot-0.15.5 → starplot-0.15.7}/data/readme.md +0 -0
  533. {starplot-0.15.5 → starplot-0.15.7}/data/scripts/bigsky_mag11.py +0 -0
  534. {starplot-0.15.5 → starplot-0.15.7}/data/scripts/constellations.py +0 -0
  535. {starplot-0.15.5 → starplot-0.15.7}/data/scripts/data_settings.py +0 -0
  536. {starplot-0.15.5 → starplot-0.15.7}/data/scripts/db.py +0 -0
  537. {starplot-0.15.5 → starplot-0.15.7}/data/scripts/docdata.py +0 -0
  538. {starplot-0.15.5 → starplot-0.15.7}/data/scripts/dsos.py +0 -0
  539. {starplot-0.15.5 → starplot-0.15.7}/data/scripts/star_designations.py +0 -0
  540. {starplot-0.15.5 → starplot-0.15.7}/docs/data/.keep +0 -0
  541. {starplot-0.15.5 → starplot-0.15.7}/docs/data/constellations.md +0 -0
  542. {starplot-0.15.5 → starplot-0.15.7}/docs/data/dsos.md +0 -0
  543. {starplot-0.15.5 → starplot-0.15.7}/docs/data/star-catalogs.md +0 -0
  544. {starplot-0.15.5 → starplot-0.15.7}/docs/data/star-designations.md +0 -0
  545. {starplot-0.15.5 → starplot-0.15.7}/docs/data-explorer.md +0 -0
  546. {starplot-0.15.5 → starplot-0.15.7}/docs/data-sources.md +0 -0
  547. {starplot-0.15.5 → starplot-0.15.7}/docs/examples/horizon-double-cluster.md +0 -0
  548. {starplot-0.15.5 → starplot-0.15.7}/docs/examples/horizon-sgr.md +0 -0
  549. {starplot-0.15.5 → starplot-0.15.7}/docs/examples/map-big-dipper.md +0 -0
  550. {starplot-0.15.5 → starplot-0.15.7}/docs/examples/map-big.md +0 -0
  551. {starplot-0.15.5 → starplot-0.15.7}/docs/examples/map-canis-major.md +0 -0
  552. {starplot-0.15.5 → starplot-0.15.7}/docs/examples/map-comet-neowise.md +0 -0
  553. {starplot-0.15.5 → starplot-0.15.7}/docs/examples/map-milky-way-stars.md +0 -0
  554. {starplot-0.15.5 → starplot-0.15.7}/docs/examples/map-orion.md +0 -0
  555. {starplot-0.15.5 → starplot-0.15.7}/docs/examples/map-orthographic.md +0 -0
  556. {starplot-0.15.5 → starplot-0.15.7}/docs/examples/map-sagittarius.md +0 -0
  557. {starplot-0.15.5 → starplot-0.15.7}/docs/examples/optic-m45.md +0 -0
  558. {starplot-0.15.5 → starplot-0.15.7}/docs/examples/optic-moon-saturn.md +0 -0
  559. {starplot-0.15.5 → starplot-0.15.7}/docs/examples/optic-orion.md +0 -0
  560. {starplot-0.15.5 → starplot-0.15.7}/docs/examples/optic-solar-eclipse.md +0 -0
  561. {starplot-0.15.5 → starplot-0.15.7}/docs/examples/star-chart-basic.md +0 -0
  562. {starplot-0.15.5 → starplot-0.15.7}/docs/examples/star-chart-detail.md +0 -0
  563. {starplot-0.15.5 → starplot-0.15.7}/docs/images/banner.png +0 -0
  564. {starplot-0.15.5 → starplot-0.15.7}/docs/images/banner.svg +0 -0
  565. {starplot-0.15.5 → starplot-0.15.7}/docs/images/banner.vectornator +0 -0
  566. {starplot-0.15.5 → starplot-0.15.7}/docs/images/celestial-globe.svg +0 -0
  567. {starplot-0.15.5 → starplot-0.15.7}/docs/images/examples/.keep +0 -0
  568. {starplot-0.15.5 → starplot-0.15.7}/docs/images/favicon.png +0 -0
  569. {starplot-0.15.5 → starplot-0.15.7}/docs/images/favicon.svg +0 -0
  570. {starplot-0.15.5 → starplot-0.15.7}/docs/images/logo.png +0 -0
  571. {starplot-0.15.5 → starplot-0.15.7}/docs/images/logo.svg +0 -0
  572. {starplot-0.15.5 → starplot-0.15.7}/docs/images/logo.vectornator +0 -0
  573. {starplot-0.15.5 → starplot-0.15.7}/docs/images/logo2.png +0 -0
  574. {starplot-0.15.5 → starplot-0.15.7}/docs/images/logo2.vectornator +0 -0
  575. {starplot-0.15.5 → starplot-0.15.7}/docs/images/logo500.png +0 -0
  576. {starplot-0.15.5 → starplot-0.15.7}/docs/images/mono.png +0 -0
  577. {starplot-0.15.5 → starplot-0.15.7}/docs/images/mono.svg +0 -0
  578. {starplot-0.15.5 → starplot-0.15.7}/docs/images/star.svg +0 -0
  579. {starplot-0.15.5 → starplot-0.15.7}/docs/images/tutorial/.keep +0 -0
  580. {starplot-0.15.5 → starplot-0.15.7}/docs/installation.md +0 -0
  581. {starplot-0.15.5 → starplot-0.15.7}/docs/license.md +0 -0
  582. {starplot-0.15.5 → starplot-0.15.7}/docs/reference-callables.md +0 -0
  583. {starplot-0.15.5 → starplot-0.15.7}/docs/reference-horizonplot.md +0 -0
  584. {starplot-0.15.5 → starplot-0.15.7}/docs/reference-mapplot.md +0 -0
  585. {starplot-0.15.5 → starplot-0.15.7}/docs/reference-models.md +0 -0
  586. {starplot-0.15.5 → starplot-0.15.7}/docs/reference-ongc.md +0 -0
  587. {starplot-0.15.5 → starplot-0.15.7}/docs/reference-opticplot.md +0 -0
  588. {starplot-0.15.5 → starplot-0.15.7}/docs/reference-settings.md +0 -0
  589. {starplot-0.15.5 → starplot-0.15.7}/docs/reference-styling.md +0 -0
  590. {starplot-0.15.5 → starplot-0.15.7}/docs/robots.txt +0 -0
  591. {starplot-0.15.5 → starplot-0.15.7}/docs/tutorial/01.md +0 -0
  592. {starplot-0.15.5 → starplot-0.15.7}/docs/tutorial/02.md +0 -0
  593. {starplot-0.15.5 → starplot-0.15.7}/docs/tutorial/03.md +0 -0
  594. {starplot-0.15.5 → starplot-0.15.7}/docs/tutorial/04.md +0 -0
  595. {starplot-0.15.5 → starplot-0.15.7}/docs/tutorial/05.md +0 -0
  596. {starplot-0.15.5 → starplot-0.15.7}/docs/tutorial/06.md +0 -0
  597. {starplot-0.15.5 → starplot-0.15.7}/docs/tutorial/07.md +0 -0
  598. {starplot-0.15.5 → starplot-0.15.7}/docs/tutorial/08.md +0 -0
  599. {starplot-0.15.5 → starplot-0.15.7}/examples/horizon_double_cluster.py +0 -0
  600. {starplot-0.15.5 → starplot-0.15.7}/examples/horizon_sgr.py +0 -0
  601. {starplot-0.15.5 → starplot-0.15.7}/examples/map_big.py +0 -0
  602. {starplot-0.15.5 → starplot-0.15.7}/examples/map_big_dipper.py +0 -0
  603. {starplot-0.15.5 → starplot-0.15.7}/examples/map_canis_major.py +0 -0
  604. {starplot-0.15.5 → starplot-0.15.7}/examples/map_comet_neowise.py +0 -0
  605. {starplot-0.15.5 → starplot-0.15.7}/examples/map_milky_way_stars.py +0 -0
  606. {starplot-0.15.5 → starplot-0.15.7}/examples/map_orion.py +0 -0
  607. {starplot-0.15.5 → starplot-0.15.7}/examples/map_orthographic.py +0 -0
  608. {starplot-0.15.5 → starplot-0.15.7}/examples/map_sagittarius.py +0 -0
  609. {starplot-0.15.5 → starplot-0.15.7}/examples/optic_m45.py +0 -0
  610. {starplot-0.15.5 → starplot-0.15.7}/examples/optic_moon_saturn.py +0 -0
  611. {starplot-0.15.5 → starplot-0.15.7}/examples/optic_orion_nebula.py +0 -0
  612. {starplot-0.15.5 → starplot-0.15.7}/examples/optic_solar_eclipse.py +0 -0
  613. {starplot-0.15.5 → starplot-0.15.7}/examples/star_chart_basic.py +0 -0
  614. {starplot-0.15.5 → starplot-0.15.7}/examples/star_chart_detail.py +0 -0
  615. {starplot-0.15.5 → starplot-0.15.7}/hash_checks/__init__.py +0 -0
  616. {starplot-0.15.5 → starplot-0.15.7}/hash_checks/data/.keep +0 -0
  617. {starplot-0.15.5 → starplot-0.15.7}/hash_checks/hashio.py +0 -0
  618. {starplot-0.15.5 → starplot-0.15.7}/hash_checks/horizon_checks.py +0 -0
  619. {starplot-0.15.5 → starplot-0.15.7}/hash_checks/template.html +0 -0
  620. {starplot-0.15.5 → starplot-0.15.7}/hash_checks/zenith_checks.py +0 -0
  621. {starplot-0.15.5 → starplot-0.15.7}/pyproject.toml +0 -0
  622. {starplot-0.15.5 → starplot-0.15.7}/requirements-dev.txt +0 -0
  623. {starplot-0.15.5 → starplot-0.15.7}/scripts/deprecated/create_db.py +0 -0
  624. {starplot-0.15.5 → starplot-0.15.7}/scripts/deprecated/gpack_constellations.py +0 -0
  625. {starplot-0.15.5 → starplot-0.15.7}/scripts/deprecated/hip_parquet.py +0 -0
  626. {starplot-0.15.5 → starplot-0.15.7}/scripts/deprecated/ongc_geopack.py +0 -0
  627. {starplot-0.15.5 → starplot-0.15.7}/scripts/deprecated/star_designations.py +0 -0
  628. {starplot-0.15.5 → starplot-0.15.7}/scripts/download_cons.py +0 -0
  629. {starplot-0.15.5 → starplot-0.15.7}/scripts/ecliptic.py +0 -0
  630. {starplot-0.15.5 → starplot-0.15.7}/scripts/geopack.py +0 -0
  631. {starplot-0.15.5 → starplot-0.15.7}/scripts/ongc_docdata.py +0 -0
  632. {starplot-0.15.5 → starplot-0.15.7}/scripts/pq_stars.py +0 -0
  633. {starplot-0.15.5 → starplot-0.15.7}/scripts/starnames.py +0 -0
  634. {starplot-0.15.5 → starplot-0.15.7}/scripts/voronoi.py +0 -0
  635. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/callables.py +0 -0
  636. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/cli.py +0 -0
  637. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/coordinates.py +0 -0
  638. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/data/__init__.py +0 -0
  639. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/data/bigsky.py +0 -0
  640. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/data/constellation_lines.py +0 -0
  641. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/data/constellation_stars.py +0 -0
  642. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/data/db.py +0 -0
  643. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/data/ecliptic.py +0 -0
  644. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/data/library/bigsky.0.4.0.stars.mag11.parquet +0 -0
  645. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/data/library/de421_2001.bsp +0 -0
  646. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/data/utils.py +0 -0
  647. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/geod.py +0 -0
  648. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/geometry.py +0 -0
  649. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/horizon.py +0 -0
  650. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/map.py +0 -0
  651. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/mixins.py +0 -0
  652. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/models/__init__.py +0 -0
  653. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/models/objects.py +0 -0
  654. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/plotters/__init__.py +0 -0
  655. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/plotters/experimental.py +0 -0
  656. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/plotters/milkyway.py +0 -0
  657. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/profile.py +0 -0
  658. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/projections.py +0 -0
  659. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/settings.py +0 -0
  660. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/__init__.py +0 -0
  661. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/base.py +0 -0
  662. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/ext/antique.yml +0 -0
  663. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/ext/blue_dark.yml +0 -0
  664. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/ext/blue_gold.yml +0 -0
  665. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/ext/blue_light.yml +0 -0
  666. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/ext/blue_medium.yml +0 -0
  667. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/ext/cb_wong.yml +0 -0
  668. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/ext/color_print.yml +0 -0
  669. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/ext/grayscale.yml +0 -0
  670. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/ext/grayscale_dark.yml +0 -0
  671. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/ext/map.yml +0 -0
  672. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/ext/nord.yml +0 -0
  673. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/ext/optic.yml +0 -0
  674. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/extensions.py +0 -0
  675. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/fonts-library/gfs-didot/DESCRIPTION.en_us.html +0 -0
  676. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/fonts-library/gfs-didot/GFSDidot-Regular.ttf +0 -0
  677. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/fonts-library/gfs-didot/METADATA.pb +0 -0
  678. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/fonts-library/gfs-didot/OFL.txt +0 -0
  679. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/fonts-library/hind/DESCRIPTION.en_us.html +0 -0
  680. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/fonts-library/hind/Hind-Bold.ttf +0 -0
  681. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/fonts-library/hind/Hind-Light.ttf +0 -0
  682. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/fonts-library/hind/Hind-Medium.ttf +0 -0
  683. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/fonts-library/hind/Hind-Regular.ttf +0 -0
  684. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/fonts-library/hind/Hind-SemiBold.ttf +0 -0
  685. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/fonts-library/hind/METADATA.pb +0 -0
  686. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/fonts-library/hind/OFL.txt +0 -0
  687. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/fonts-library/inter/Inter-Black.ttf +0 -0
  688. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/fonts-library/inter/Inter-BlackItalic.ttf +0 -0
  689. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/fonts-library/inter/Inter-Bold.ttf +0 -0
  690. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/fonts-library/inter/Inter-BoldItalic.ttf +0 -0
  691. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/fonts-library/inter/Inter-ExtraBold.ttf +0 -0
  692. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/fonts-library/inter/Inter-ExtraBoldItalic.ttf +0 -0
  693. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/fonts-library/inter/Inter-ExtraLight.ttf +0 -0
  694. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/fonts-library/inter/Inter-ExtraLightItalic.ttf +0 -0
  695. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/fonts-library/inter/Inter-Italic.ttf +0 -0
  696. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/fonts-library/inter/Inter-Light.ttf +0 -0
  697. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/fonts-library/inter/Inter-LightItalic.ttf +0 -0
  698. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/fonts-library/inter/Inter-Medium.ttf +0 -0
  699. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/fonts-library/inter/Inter-MediumItalic.ttf +0 -0
  700. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/fonts-library/inter/Inter-Regular.ttf +0 -0
  701. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/fonts-library/inter/Inter-SemiBold.ttf +0 -0
  702. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/fonts-library/inter/Inter-SemiBoldItalic.ttf +0 -0
  703. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/fonts-library/inter/Inter-Thin.ttf +0 -0
  704. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/fonts-library/inter/Inter-ThinItalic.ttf +0 -0
  705. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/fonts-library/inter/LICENSE.txt +0 -0
  706. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/fonts.py +0 -0
  707. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/helpers.py +0 -0
  708. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/styles/markers.py +0 -0
  709. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/utils.py +0 -0
  710. {starplot-0.15.5 → starplot-0.15.7}/src/starplot/warnings.py +0 -0
  711. {starplot-0.15.5 → starplot-0.15.7}/tests/__init__.py +0 -0
  712. {starplot-0.15.5 → starplot-0.15.7}/tests/data/.keep +0 -0
  713. {starplot-0.15.5 → starplot-0.15.7}/tests/test_constellations.py +0 -0
  714. {starplot-0.15.5 → starplot-0.15.7}/tests/test_data.py +0 -0
  715. {starplot-0.15.5 → starplot-0.15.7}/tests/test_map.py +0 -0
  716. {starplot-0.15.5 → starplot-0.15.7}/tests/test_optic.py +0 -0
  717. {starplot-0.15.5 → starplot-0.15.7}/tests/test_stars.py +0 -0
  718. {starplot-0.15.5 → starplot-0.15.7}/tests/test_styles.py +0 -0
  719. {starplot-0.15.5 → starplot-0.15.7}/tests/test_utils.py +0 -0
  720. {starplot-0.15.5 → starplot-0.15.7}/tests/utils.py +0 -0
  721. {starplot-0.15.5 → starplot-0.15.7}/tutorial/build.py +0 -0
  722. {starplot-0.15.5 → starplot-0.15.7}/tutorial/tutorial_02.py +0 -0
  723. {starplot-0.15.5 → starplot-0.15.7}/tutorial/tutorial_03.py +0 -0
  724. {starplot-0.15.5 → starplot-0.15.7}/tutorial/tutorial_04.py +0 -0
  725. {starplot-0.15.5 → starplot-0.15.7}/tutorial/tutorial_05.py +0 -0
  726. {starplot-0.15.5 → starplot-0.15.7}/tutorial/tutorial_06.py +0 -0
  727. {starplot-0.15.5 → starplot-0.15.7}/tutorial/tutorial_07.py +0 -0
  728. {starplot-0.15.5 → starplot-0.15.7}/tutorial/tutorial_08.py +0 -0
@@ -0,0 +1,24 @@
1
+ cff-version: 1.2.0
2
+ title: Starplot
3
+ message: >-
4
+ If you use this software, please cite it using the
5
+ metadata from this file.
6
+ type: software
7
+ authors:
8
+ - given-names: Steve
9
+ family-names: Berardi
10
+ orcid: https://orcid.org/0009-0005-6106-1450
11
+ repository-code: 'https://github.com/steveberardi/starplot'
12
+ url: 'https://starplot.dev'
13
+ abstract: >-
14
+ Starplot is a Python library for creating star charts and
15
+ maps of the sky
16
+ keywords:
17
+ - astronomy
18
+ - maps
19
+ - charts
20
+ - graphs
21
+ - plotting
22
+ license: MIT
23
+ version: 0.15.6
24
+ date-released: '2025-03-30'
@@ -152,7 +152,7 @@ flit-install:
152
152
  # ------------------------------------------------------------------
153
153
  # Utils
154
154
  ephemeris:
155
- $(DOCKER_RUN) "python -m jplephem excerpt 2001/1/1 2050/1/1 $(DE421_URL) de421sub.bsp"
155
+ $(DOCKER_RUN) "python -m jplephem excerpt 2025/1/1 2050/1/1 $(DE421_URL) de421sub.bsp"
156
156
 
157
157
  hip8:
158
158
  $(DOCKER_RUN) "python ./scripts/hip.py ./src/starplot/data/library/hip_main.dat hip8.dat 15"
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.4
2
2
  Name: starplot
3
- Version: 0.15.5
3
+ Version: 0.15.7
4
4
  Summary: Star charts and maps of the sky
5
5
  Keywords: astronomy,stars,charts,maps,constellations,sky,plotting
6
6
  Author-email: Steve Berardi <hello@steveberardi.com>
@@ -10,6 +10,7 @@ Classifier: Programming Language :: Python :: 3
10
10
  Classifier: Programming Language :: Python :: 3.10
11
11
  Classifier: Programming Language :: Python :: 3.11
12
12
  Classifier: Programming Language :: Python :: 3.12
13
+ License-File: LICENSE
13
14
  Requires-Dist: matplotlib >= 3.8.0
14
15
  Requires-Dist: numpy >= 1.26.2
15
16
  Requires-Dist: pandas >= 1.4.0
@@ -6,7 +6,7 @@
6
6
 
7
7
  However, the Starplot API becomes more stable with each new version. We anticipate that version `1.0.0` is still at least a year away. The best way to help us get there faster is to [join as a contributor](https://github.com/steveberardi/starplot/blob/main/CONTRIBUTING.md) 😃 help is wanted and very much appreciated!
8
8
 
9
- Join other starplotters on [Discord :fontawesome-brands-discord:{ .fg-primary }](https://discord.gg/WewJJjshFu)
9
+ --8<-- "docs/snippets/_newsletter.html"
10
10
 
11
11
  ---
12
12
 
@@ -16,6 +16,14 @@
16
16
  - [**v0.15.5**]
17
17
  - Fixes compatibility with Ibis 10.x
18
18
  - Fixes bug with getting star names and designations
19
+ - [**v0.15.6**]
20
+ - Removes dependency on plotting stars before constellation labels
21
+ - Fixes static constellation label plotting
22
+ - Fixes polygon clipping on optic plots
23
+ - Adds HII Regions to the `nebula()` function
24
+ - [**v0.15.7**]
25
+ - Various small changes to make it easier to build AI agents that use Starplot
26
+ - Adds a `sql` kwarg to object selection and plotting functions to allow querying by SQL
19
27
 
20
28
  ## v0.14.x
21
29
  [Documentation](https://archives.starplot.dev/0.14.0/)
@@ -1,4 +1,6 @@
1
1
 
2
+ - 🧮 Coordinate system helpers
3
+ - 🌌 Galactic coordinate system plotting
2
4
  - 🌑 Planet moons
3
5
  - ☄️ Comet model
4
6
  - ✴️ Custom markers
@@ -7,3 +9,8 @@
7
9
  <br/>
8
10
  _See more details on the [Public Roadmap :arrow_upper_right:](https://trello.com/b/sUksygn4/starplot-roadmap)_{.text-subtitle}
9
11
 
12
+ --8<-- "docs/snippets/_newsletter.html"
13
+
14
+ <br/>
15
+ <br/>
16
+ <br/>
@@ -421,3 +421,83 @@ td[data-column-id=bayer] {
421
421
  width: 100% !important;
422
422
  border: 1px solid var(--md-primary-fg-color) !important;
423
423
  }
424
+
425
+ .email-form {
426
+ padding: 4px;
427
+
428
+ h3 {
429
+ margin-top: 0;
430
+ }
431
+
432
+ .md-button {
433
+ padding: 10px 20px;
434
+ border: 1px solid hsl(209, 53%, 36%) !important;;
435
+ border-radius: 8px !important;
436
+ background-color: hsl(209, 53%, 86%);
437
+ font-size: 1em;
438
+
439
+ &:hover {
440
+ color: hsl(209, 53%, 96%) !important;
441
+ background-color: hsl(209, 53%, 26%) !important;
442
+ }
443
+ }
444
+ }
445
+
446
+ .email-form input {
447
+ font-size: 1em;
448
+ padding: 10px;
449
+ border-radius: 10px;
450
+ border: 1px solid hsl(209, 43%, 68%);
451
+ }
452
+
453
+ .mt-0 {
454
+ margin-top: 0 !important;
455
+ }
456
+
457
+ .mb-0 {
458
+ margin-bottom: 0 !important;
459
+ }
460
+
461
+ .mt-1 {
462
+ margin-top: 10px !important;
463
+ }
464
+
465
+ .divider {
466
+ padding: 8px 0;
467
+ border-top: 1px solid hsl(209, 43%, 68%);
468
+ }
469
+
470
+ .info-panel {
471
+ padding: 20px 28px;
472
+ border: 1px solid hsl(209, 43%, 68%);
473
+ border-radius: 10px;
474
+ box-shadow: 4px 4px 4px rgb(159, 159, 159);
475
+ }
476
+
477
+
478
+ [data-md-color-scheme=default] {
479
+ .bg-info {
480
+ background-color: hsl(209, 78%, 98%);
481
+ }
482
+ }
483
+
484
+ [data-md-color-scheme=slate] {
485
+ .bg-info {
486
+ background-color: hsl(209, 40%, 14%);
487
+ }
488
+ }
489
+
490
+ .mw-660 {
491
+ max-width: 660px;
492
+ }
493
+
494
+ .filter-blue {
495
+ filter: invert(35%) sepia(10%) saturate(3166%) hue-rotate(168deg) brightness(93%) contrast(91%);
496
+ }
497
+
498
+ @media screen and (min-width: 768px) {
499
+ .columns-2 {
500
+ display: grid;
501
+ grid-template-columns: 1fr 3fr;
502
+ }
503
+ }
@@ -0,0 +1,58 @@
1
+ {% extends "base.html" %}
2
+
3
+ {% block extrahead %}
4
+ <!-- OG -->
5
+ <meta property="og:title" content="Starplot" />
6
+ <meta property="og:type" content="website" />
7
+ <meta property="og:description" content="Star charts and maps of the sky in Python"/>
8
+ <meta property="og:url" content="https://starplot.dev" />
9
+ <meta property="og:image" content="https://archives.starplot.dev/static/og.png" />
10
+
11
+ <!-- Plausible -->
12
+ <script defer data-domain="starplot.dev" src="https://plausible.io/js/script.js"></script>
13
+ {% endblock %}
14
+
15
+
16
+ {% block scripts %}
17
+ {{ super() }}
18
+ <script>
19
+
20
+ document.addEventListener('DOMContentLoaded', function() {
21
+ const sidebar = document.querySelector("div.md-sidebar__scrollwrap");
22
+ const div = document.createElement("div");
23
+ const a = document.createElement("a");
24
+ const p = document.createElement("p");
25
+ const img = document.createElement("img");
26
+
27
+ img.src = "/images/cover-front-sm-360.png";
28
+ img.style.maxWidth = '100px';
29
+ // img.style.marginTop = '4px';
30
+ img.style.opacity = '90%';
31
+ img.style.marginBottom = '16px';
32
+
33
+ div.style.marginTop = '60px';
34
+ div.style.marginLeft = '10px';
35
+ div.style.marginRight = '50px';
36
+
37
+ div.style.borderTop = '1px solid #c5c5c5';
38
+ div.style.borderBottom = '1px solid #c5c5c5';
39
+
40
+ p.innerText = "Help support Starplot by purchasing the All Sky Map, which was made with Starplot!"
41
+ p.style.lineHeight = "1.25em";
42
+ p.style.fontSize = "15px";
43
+ p.classList.add("md-typeset");
44
+
45
+ a.href = "https://steveberardimaps.com/products/all-sky-map";
46
+ a.target = "_blank";
47
+
48
+ // a.innerText = "Help support Starplot by purchasing the All Sky Map!";
49
+
50
+ a.appendChild(img);
51
+ div.appendChild(p);
52
+ div.appendChild(a);
53
+ sidebar.appendChild(div);
54
+ });
55
+
56
+ </script>
57
+
58
+ {% endblock %}
@@ -74,13 +74,13 @@
74
74
  </a>
75
75
  </li>
76
76
 
77
- <li>
77
+ <!-- <li>
78
78
  <a href="/examples/map-comet-neowise/">
79
79
  <img src="/images/examples/map_comet_neowise-sm.png" alt="Map of Comet NEOWISE in 2020" class="off-glb" loading="lazy"/>
80
80
 
81
81
  <p class="example-card-title">Comet NEOWISE</p>
82
82
  </a>
83
- </li>
83
+ </li> -->
84
84
 
85
85
  <li>
86
86
  <a href="/examples/map-sagittarius/">
@@ -135,6 +135,27 @@
135
135
 
136
136
  </div>
137
137
 
138
+ <div class="info-panel bg-info columns-2" style="padding: 40px;">
139
+ <a href="https://steveberardimaps.com/products/all-sky-map" target="_blank">
140
+ <img src="/images/cover-front-sm-360.png" style="max-width: 240px; padding-right: 28px;" class="off-glb">
141
+ </a>
142
+ <div class="md-typeset">
143
+ <h2 class="mt-0">Example Publication - All Sky Map</h2>
144
+
145
+ <p>Starplot can create publication-quality maps, thanks to its ability to export SVG files. These files can then be imported into many design applications, including Adobe Illustrator and Affinity Publisher, to create high-quality printed maps, books, etc.</p>
146
+
147
+ <p>One example is the <a href="https://steveberardimaps.com/products/all-sky-map" target="_blank">All Sky Map</a>, which is a foldable map designed and created by Steve Berardi (who also created Starplot!).</p>
148
+
149
+ <p>The map was created by first writing code to generate SVG files of the map and then these were imported into Affinity Publisher to fine-tune some of the label positions and add the legend, supporting text, and create the overall page layout of the map. It was then printed on synthetic paper that is waterproof and tear-resistant!</p>
150
+
151
+ <a href="https://steveberardimaps.com/products/all-sky-map" class="md-button" target="_blank" style="align-content: center;">
152
+ Check it out
153
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="18" height="18" class="filter-blue" style="margin-left: 4px; vertical-align: text-top;"><path d="M3.75 2h3.5a.75.75 0 0 1 0 1.5h-3.5a.25.25 0 0 0-.25.25v8.5c0 .138.112.25.25.25h8.5a.25.25 0 0 0 .25-.25v-3.5a.75.75 0 0 1 1.5 0v3.5A1.75 1.75 0 0 1 12.25 14h-8.5A1.75 1.75 0 0 1 2 12.25v-8.5C2 2.784 2.784 2 3.75 2Zm6.854-1h4.146a.25.25 0 0 1 .25.25v4.146a.25.25 0 0 1-.427.177L13.03 4.03 9.28 7.78a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042l3.75-3.75-1.543-1.543A.25.25 0 0 1 10.604 1Z"></path></svg>
154
+ </a>
155
+
156
+ </div>
157
+ </div>
158
+
138
159
  <br/>
139
160
 
140
161
  Check out the [tutorial](tutorial.md) and code reference to learn more about using Starplot!
@@ -0,0 +1 @@
1
+ <?xml version="1.0" encoding="UTF-8"?><svg id="Discord-Logo" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 126.644 96"><defs><style>.cls-1{fill:#5865f2;}</style></defs><path id="Discord-Symbol-Blurple" class="cls-1" d="M81.15,0c-1.2376,2.1973-2.3489,4.4704-3.3591,6.794-9.5975-1.4396-19.3718-1.4396-28.9945,0-.985-2.3236-2.1216-4.5967-3.3591-6.794-9.0166,1.5407-17.8059,4.2431-26.1405,8.0568C2.779,32.5304-1.6914,56.3725.5312,79.8863c9.6732,7.1476,20.5083,12.603,32.0505,16.0884,2.6014-3.4854,4.8998-7.1981,6.8698-11.0623-3.738-1.3891-7.3497-3.1318-10.8098-5.1523.9092-.6567,1.7932-1.3386,2.6519-1.9953,20.281,9.547,43.7696,9.547,64.0758,0,.8587.7072,1.7427,1.3891,2.6519,1.9953-3.4601,2.0457-7.0718,3.7632-10.835,5.1776,1.97,3.8642,4.2683,7.5769,6.8698,11.0623,11.5419-3.4854,22.3769-8.9156,32.0509-16.0631,2.626-27.2771-4.496-50.9172-18.817-71.8548C98.9811,4.2684,90.1918,1.5659,81.1752.0505l-.0252-.0505ZM42.2802,65.4144c-6.2383,0-11.4159-5.6575-11.4159-12.6535s4.9755-12.6788,11.3907-12.6788,11.5169,5.708,11.4159,12.6788c-.101,6.9708-5.026,12.6535-11.3907,12.6535ZM84.3576,65.4144c-6.2637,0-11.3907-5.6575-11.3907-12.6535s4.9755-12.6788,11.3907-12.6788,11.4917,5.708,11.3906,12.6788c-.101,6.9708-5.026,12.6535-11.3906,12.6535Z"/></svg>
@@ -30,9 +30,10 @@ Starplot is a Python library for creating star charts and maps of the sky.
30
30
 
31
31
  - 🧭 **Label Collision Avoidance**
32
32
 
33
- Join other starplotters on [Discord :fontawesome-brands-discord:{ .fg-primary }](https://discord.gg/WewJJjshFu)
34
33
 
35
- <hr>
34
+ --8<-- "docs/snippets/_newsletter.html"
35
+
36
+
36
37
  *Example charts and maps created with Starplot:*
37
38
  <!-- {.text-subtitle} -->
38
39
 
@@ -0,0 +1,31 @@
1
+
2
+
3
+ <div class="info-panel bg-info columns-2" style="padding: 40px;">
4
+ <a href="https://steveberardimaps.com/products/all-sky-map" target="_blank">
5
+ <img src="/images/cover-front-sm-360.png" style="max-width: 240px; padding-right: 28px;" class="off-glb">
6
+ </a>
7
+ <div class="md-typeset">
8
+ <h2 class="mt-0">All Sky Map</h2>
9
+
10
+ <p>Starplot can create publication-quality maps, thanks to its ability to export SVG files. These files can then be imported into many design applications, including Adobe Illustrator and Affinity Publisher, to create high-quality printed maps, books, etc.</p>
11
+
12
+ <p>One example is the <a href="https://steveberardimaps.com/products/all-sky-map" target="_blank">All Sky Map</a>, which is a foldable map designed and created by Steve Berardi (who also created Starplot!).</p>
13
+
14
+ <p>The map was created by first writing code to generate SVG files of the map and then these were imported into Affinity Publisher to fine-tune some of the label positions and add the legend, supporting text, and create the overall page layout of the map. It was then printed on synthetic paper that is waterproof and tear-resistant!</p>
15
+
16
+ <a href="https://steveberardimaps.com/products/all-sky-map" class="md-button" target="_blank" style="align-content: center;">
17
+ Check it out
18
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="18" height="18" class="filter-blue" style="margin-left: 4px; vertical-align: text-top;"><path d="M3.75 2h3.5a.75.75 0 0 1 0 1.5h-3.5a.25.25 0 0 0-.25.25v8.5c0 .138.112.25.25.25h8.5a.25.25 0 0 0 .25-.25v-3.5a.75.75 0 0 1 1.5 0v3.5A1.75 1.75 0 0 1 12.25 14h-8.5A1.75 1.75 0 0 1 2 12.25v-8.5C2 2.784 2.784 2 3.75 2Zm6.854-1h4.146a.25.25 0 0 1 .25.25v4.146a.25.25 0 0 1-.427.177L13.03 4.03 9.28 7.78a.751.751 0 0 1-1.042-.018.751.751 0 0 1-.018-1.042l3.75-3.75-1.543-1.543A.25.25 0 0 1 10.604 1Z"></path></svg>
19
+ </a>
20
+
21
+ </div>
22
+ </div>
23
+
24
+ ## How to Cite Starplot
25
+
26
+ If you use Starplot to help create images for a publication, we'd greatly appreciate a citation. Please see Starplot's [GitHub repo](https://github.com/steveberardi/starplot) for an easy way to generate citations in different formats (on the [repo's homepage](https://github.com/steveberardi/starplot), look to the right side under the "About" section). We also maintain a [citation file](https://github.com/steveberardi/starplot/blob/main/CITATION.cff).
27
+
28
+ We'd also love to list your publication on this page, so if you'd like to share please [email Steve Berardi](https://steveberardi.com/contact/), or join us on our [Discord server](https://discord.gg/WewJJjshFu).
29
+
30
+
31
+ <br/><br/>
@@ -95,4 +95,16 @@ There are also a few operators you can use to combine expressions:
95
95
  _.magnitude > 8 | _.name == "Vega"
96
96
  ```
97
97
 
98
+ ## Using SQL
99
+
100
+ All functions that accept a `where` list of filters _also_ have a `sql` keyword argument that lets you write a SQL query to select objects. You can also use a combination of `where` filters and a `sql` query, but the filters in `where` will be executed _first_. The table name is always an underscore: `_`.
101
+
102
+ For example, if you want to find all stars with a magnitude less than 4, you can do:
103
+
104
+ ```python
105
+
106
+ bright_stars = Star.find(sql="select * from _ where magnitude < 4")
107
+
108
+ ```
109
+
98
110
  <br/><br/>
@@ -0,0 +1,25 @@
1
+ <div class="info-panel mw-660">
2
+ <h3 class="mt-0">📬 Join our newsletter</h3>
3
+ <ul>
4
+ <li>Get notified when there's a new version of Starplot</li>
5
+ <li>Learn about specific use cases of Starplot</li>
6
+ <li>Help us plan and prioritize features by participating in surveys</li>
7
+ </ul>
8
+ <form
9
+ action="https://buttondown.com/api/emails/embed-subscribe/starplot"
10
+ method="post"
11
+ target="popupwindow"
12
+ onsubmit="window.open('https://buttondown.com/starplot', 'popupwindow')"
13
+ class="embeddable-buttondown-form email-form"
14
+ >
15
+ <input type="email" name="email" id="bd-email" required placeholder="Your e-mail" size="32" />
16
+ <input type="submit" value="Join" class="md-button mt-1" />
17
+ </form>
18
+
19
+ <p class="mb-0">
20
+ Also join us on
21
+ <a href="https://discord.gg/WewJJjshFu"
22
+ >Discord <img src="/images/discord.svg" height="18" width="18" class="off-glb"
23
+ /></a>
24
+ </p>
25
+ </div>
@@ -20,6 +20,8 @@ The purpose of the tutorial was just to give you an intro to some of Starplot's
20
20
  - [Join other Starplotters on Discord](https://discord.gg/WewJJjshFu)
21
21
  - Find a bug? Please [open an issue](https://github.com/steveberardi/starplot/issues) on GitHub, thanks!
22
22
 
23
+ --8<-- "docs/snippets/_newsletter.html"
24
+
23
25
  <br/>
24
26
 
25
27
  ---
@@ -17,6 +17,7 @@ Here's an overview of what the tutorial covers:
17
17
 
18
18
  Estimated time to complete: 30 minutes
19
19
 
20
- <br/>
21
20
 
22
21
  [Let's Begin! :octicons-arrow-right-24:](tutorial/01.md){ .md-button .text-right }
22
+
23
+ <br/><br/><br/>
@@ -9,6 +9,7 @@ from multiprocessing import Pool
9
9
 
10
10
 
11
11
  skip = [
12
+ "map_comet_neowise.py",
12
13
  # "map_milky_way_stars.py",
13
14
  # "stuff.py",
14
15
  ]
@@ -1,11 +1,11 @@
1
1
  horizon_base:
2
- dhash: 2f83990dc60b44702e83890d461b44700383cd0d861b4460
2
+ dhash: 0687590d4409c4700683490d4419c4d006a34d0d441b4460
3
3
  filename: /starplot/hash_checks/data/horizon-base.png
4
- phash: e3b81ced14b63386
4
+ phash: e3ba1ce506e23387
5
5
  horizon_north_celestial_pole:
6
- dhash: 30aa6ad0c2728c54212a6850c272a45431aa48c8c262ac54
6
+ dhash: 30aa48d0e232a45430aa48d08232a44431aa49c8e232ac54
7
7
  filename: /starplot/hash_checks/data/horizon-north-celestial-pole.png
8
- phash: d59a38c94ad20be7
8
+ phash: d59a3ad94ad24bc2
9
9
  map_coma_berenices_dso_size:
10
10
  dhash: aa84acecc888c0c0a2848ceca888c6c08a8a92a2a882c282
11
11
  filename: /starplot/hash_checks/data/map-coma-berenices-dso-size.png
@@ -31,94 +31,94 @@ map_mollweide:
31
31
  filename: /starplot/hash_checks/data/map-mollweide.png
32
32
  phash: ebcbb69ce3249460
33
33
  map_moon_phase_waxing_crescent:
34
- dhash: 0814284d4d2814080814284d4d6814080804084d4d480408
34
+ dhash: 0814284d4d6814080814284d4d6814080804084d4d480408
35
35
  filename: /starplot/hash_checks/data/map-moon-phase-waxing-crescent.png
36
36
  phash: b3cccc3333cccc31
37
37
  map_orion_base:
38
- dhash: 18393b5e3e2f656819393b5e2e2d65681c392bce2e2f6468
38
+ dhash: 18193b5e3a2f646919393bde2a2d646958192bce2a2f6469
39
39
  filename: /starplot/hash_checks/data/map-orion-base.png
40
- phash: bf795a649504b594
40
+ phash: bf795a241784359c
41
41
  map_orion_extra:
42
- dhash: 193b1b7f3b656d17193b1b7f2b656d0f1c3b0b4e2b256c0f
42
+ dhash: 191b3b7f3b65690f1b191b7f2b25690d1c1b0b4e2b25690d
43
43
  filename: /starplot/hash_checks/data/map-orion-extra.png
44
- phash: be71e01ee117e491
44
+ phash: be71e01ee117a499
45
45
  map_plot_custom_clip_path_virgo:
46
46
  dhash: 060521339d1c04040625252f0d1c0404062525270d1c0404
47
47
  filename: /starplot/hash_checks/data/map-custom-clip-path-virgo.png
48
48
  phash: e66e8591b10d4bda
49
49
  map_plot_limit_by_geometry:
50
- dhash: 12288086440c1204a2aa8286040c124432a880c6450c1242
50
+ dhash: 12e8c086440c124422cac286040c124432e8c086450c5242
51
51
  filename: /starplot/hash_checks/data/map-limit-by-geometry.png
52
- phash: a40999be6679539a
52
+ phash: a4509bbe2ee9328e
53
53
  map_scope_bino_fov:
54
54
  dhash: 86c092848ca28400868633454d21920c868633454d21920c
55
55
  filename: /starplot/hash_checks/data/map-scope-bino-fov.png
56
56
  phash: e465997166649979
57
57
  map_stereo_base:
58
- dhash: 77766470353b5412777664f435185416777664f0b598d412
58
+ dhash: 7372647231385412737264f431185416737664f2b498d412
59
59
  filename: /starplot/hash_checks/data/map-stereo-north-base.png
60
- phash: 9dce6961c291f23a
60
+ phash: 9dce6979e81162b2
61
61
  map_with_planets:
62
62
  dhash: 639344668ddb323b629304668ddb323b2a9304668ddb323b
63
63
  filename: /starplot/hash_checks/data/map-mercator-planets.png
64
64
  phash: e8c29d89a67f5312
65
65
  map_wrapping:
66
- dhash: 0f332ccd655231150f332ccd655231150f332ccd65523115
66
+ dhash: 0f352ccd655231150f352ccd655231150f352ccd65523115
67
67
  filename: /starplot/hash_checks/data/map-wrapping.png
68
- phash: ba36d8c583c2b716
68
+ phash: ba36d8c583c2b536
69
69
  optic_camera_rotated:
70
70
  dhash: 25468b13261c1a6525468b13261c1a6525468b13261c1a65
71
71
  filename: /starplot/hash_checks/data/optic-camera-rotated-m45.png
72
- phash: bc6cc6941ed97285
72
+ phash: ac6cc6941edb7285
73
73
  optic_clipping:
74
- dhash: 70d898f062e4fc5d70d898f0eae4f85971f098f2e6e4fc71
74
+ dhash: 7099b874e2f4fc4d70d9b8f4eaf4fc5971e898f2d2f4fc71
75
75
  filename: /starplot/hash_checks/data/optic-clipping.png
76
- phash: 95696a872f9a7870
76
+ phash: 95696a87279c7871
77
77
  optic_m45_binoculars:
78
78
  dhash: 8e17237133330e4d8e17237133330e4d8e17237133330e4d
79
79
  filename: /starplot/hash_checks/data/optic-m45-binoculars.png
80
- phash: aa7b84f186d18ac7
80
+ phash: ae7b80f182d18ed3
81
81
  optic_m45_camera:
82
- dhash: 4d715151716559754d715151716559754d71515171655975
82
+ dhash: 4d717151716549754d717151716549754d71715171654975
83
83
  filename: /starplot/hash_checks/data/optic-m45-camera.png
84
- phash: ba7b846e843b84d5
84
+ phash: ae7b846e907b84c5
85
85
  optic_m45_reflector:
86
- dhash: 8e172b7123330e4d8e172b7123330e4d8e172b7123330e4d
86
+ dhash: 8e173b712b330e4d8e173b712b330e4d8e173b712b330e4d
87
87
  filename: /starplot/hash_checks/data/optic-m45-reflector.png
88
- phash: ba7b80e5c6b19a92
88
+ phash: ba7b84e086e59a93
89
89
  optic_m45_scope:
90
- dhash: 8e173b5123230e4d8e173b5123230e4d8e173b5123230e4d
90
+ dhash: 8e172b5133230e4d8e172b5133230e4d8e172b5133230e4d
91
91
  filename: /starplot/hash_checks/data/optic-m45-scope.png
92
- phash: aa7b84e586b18e93
92
+ phash: ae7b84e492b1ce83
93
93
  optic_moon_phase_full:
94
94
  dhash: 0e2b553333552b0e0e2b553333552b0e0e2b553333552b0e
95
95
  filename: /starplot/hash_checks/data/optic-moon-phase-full.png
96
- phash: fb6ba06295718725
96
+ phash: fb6fa02395658721
97
97
  optic_moon_phase_new:
98
98
  dhash: 13498e96968e491313498e96968e491313498e96968e4913
99
99
  filename: /starplot/hash_checks/data/optic-moon-phase-new.png
100
- phash: e1649e9669496766
100
+ phash: e5259ec6694c6761
101
101
  optic_moon_phase_waxing_crescent:
102
102
  dhash: 0e33454d59712b0e0e33454d59712b0e0e33454d59712b0e
103
103
  filename: /starplot/hash_checks/data/optic-moon-phase-waxing-crescent.png
104
104
  phash: bb26e4999166c699
105
105
  optic_orion_nebula_refractor:
106
- dhash: 8e1f2d7163230e4d8e1f2d7163230e4d8e1f2d7163230e4d
106
+ dhash: 8e17257163238e4d8e17257163238e4d8e17257163238e4d
107
107
  filename: /starplot/hash_checks/data/optic-orion-nebula-refractor.png
108
- phash: ae3ab065c7919e92
108
+ phash: ae3ab061c3939e96
109
109
  optic_polaris_binoculars:
110
110
  dhash: 8e172b5523338e4d8e172b5523338e4d8e172b5523338e4d
111
111
  filename: /starplot/hash_checks/data/optic-binoculars-polaris.png
112
- phash: aa7b84f182d18ed3
112
+ phash: aa7b84e186d18ed3
113
113
  optic_solar_eclipse_binoculars:
114
- dhash: 0779649a9ae461071759e49a9ae461170359c09c9cc06903
114
+ dhash: 0769f0cccccc710f0769f0cccccc710f0369c0cccccc610b
115
115
  filename: /starplot/hash_checks/data/optic-binoculars-eclipse.png
116
- phash: b1ccce3131cece31
116
+ phash: b38ccc3333cccc33
117
117
  optic_wrapping:
118
- dhash: 71f0ec92d2d8650a71e0d4aca4c4782a71e8d4aca4c4713a
118
+ dhash: 71f0ecd2dad8650a71e0d4aca4c4782a71e8d4aca4c4793a
119
119
  filename: /starplot/hash_checks/data/optic-wrapping.png
120
- phash: d1846e1b792ef138
120
+ phash: d1846e1a792ef139
121
121
  zenith_base:
122
- dhash: 1771d4b8865d338e1771d4b6865d338e1771d49e865d3b0e
122
+ dhash: 1771cc8ad67d338e1771cc86d47d338e1771c486947d3b0e
123
123
  filename: /starplot/hash_checks/data/zenith-base.png
124
- phash: ba40eb3be1788764
124
+ phash: be40fb3ee5289660
@@ -21,21 +21,21 @@ AUTO_ADJUST_SETTINGS = {"seed": 1}
21
21
 
22
22
  BASIC_DSO_TYPES = [
23
23
  # Star Clusters ----------
24
- DsoType.OPEN_CLUSTER,
25
- DsoType.GLOBULAR_CLUSTER,
24
+ DsoType.OPEN_CLUSTER.value,
25
+ DsoType.GLOBULAR_CLUSTER.value,
26
26
  # Galaxies ----------
27
- DsoType.GALAXY,
28
- DsoType.GALAXY_PAIR,
29
- DsoType.GALAXY_TRIPLET,
30
- DsoType.GROUP_OF_GALAXIES,
27
+ DsoType.GALAXY.value,
28
+ DsoType.GALAXY_PAIR.value,
29
+ DsoType.GALAXY_TRIPLET.value,
30
+ DsoType.GROUP_OF_GALAXIES.value,
31
31
  # Nebulas ----------
32
- DsoType.NEBULA,
33
- DsoType.PLANETARY_NEBULA,
34
- DsoType.EMISSION_NEBULA,
35
- DsoType.STAR_CLUSTER_NEBULA,
36
- DsoType.REFLECTION_NEBULA,
32
+ DsoType.NEBULA.value,
33
+ DsoType.PLANETARY_NEBULA.value,
34
+ DsoType.EMISSION_NEBULA.value,
35
+ DsoType.STAR_CLUSTER_NEBULA.value,
36
+ DsoType.REFLECTION_NEBULA.value,
37
37
  # Stars ----------
38
- DsoType.ASSOCIATION_OF_STARS,
38
+ DsoType.ASSOCIATION_OF_STARS.value,
39
39
  ]
40
40
 
41
41
  dt_dec_16 = datetime.now(timezone("US/Pacific")).replace(2023, 12, 16, 21, 0, 0)
@@ -87,7 +87,10 @@ def _stereo_north():
87
87
  resolution=RESOLUTION,
88
88
  autoscale=True,
89
89
  )
90
- p.stars(where=[_.magnitude < 9], bayer_labels=True)
90
+ p.stars(
91
+ sql="select * from _ where magnitude < 9",
92
+ bayer_labels=True,
93
+ )
91
94
  p.dsos(
92
95
  labels=None,
93
96
  true_size=False,
@@ -130,7 +130,7 @@ def check_optic_clipping():
130
130
  **plot_kwargs,
131
131
  )
132
132
  optic_plot.stars(where=[_.magnitude < 12])
133
- optic_plot.dsos(where=[_.magnitude < 8.1], labels=None)
133
+ optic_plot.dsos(sql="select * from _ where magnitude < 8.1", labels=None)
134
134
  optic_plot.nebula()
135
135
  optic_plot.title("Orion Nebula")
136
136
  filename = DATA_PATH / "optic-clipping.png"
@@ -22,6 +22,7 @@ nav:
22
22
  - Constellations: data/constellations.md
23
23
  - Settings: reference-settings.md
24
24
  - Data Sources: data-sources.md
25
+ - Publications: publications.md
25
26
  - License: license.md
26
27
  - Changelog: changelog.md
27
28
  - Coming Soon: coming-soon.md
@@ -2,7 +2,7 @@ matplotlib==3.10.0
2
2
  numpy==2.2.2
3
3
  pandas==2.2.3
4
4
  pydantic==2.10.6
5
- shapely==2.0.7
5
+ shapely==2.1.1
6
6
  skyfield==1.48
7
7
  cartopy==0.22.0
8
8
  geopandas==1.0.1
@@ -13,4 +13,4 @@ pyogrio==0.10.0
13
13
  rtree==1.3.0
14
14
  requests==2.31.0
15
15
  duckdb==1.1.3
16
- ibis-framework[duckdb,geospatial]==10.0.0
16
+ ibis-framework[duckdb,geospatial]==10.5.0
@@ -1,6 +1,6 @@
1
1
  """Star charts and maps of the sky"""
2
2
 
3
- __version__ = "0.15.5"
3
+ __version__ = "0.15.7"
4
4
 
5
5
  from .base import BasePlot # noqa: F401
6
6
  from .map import MapPlot, Projection # noqa: F401