starplot 0.18.2__tar.gz → 0.19.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 (312) hide show
  1. {starplot-0.18.2 → starplot-0.19.0}/CITATION.cff +2 -2
  2. {starplot-0.18.2 → starplot-0.19.0}/PKG-INFO +5 -3
  3. {starplot-0.18.2 → starplot-0.19.0}/README.md +3 -2
  4. starplot-0.19.0/data/raw/translations/es/constellation_names.csv +90 -0
  5. starplot-0.19.0/data/raw/translations/es/dso_names.csv +153 -0
  6. starplot-0.19.0/data/raw/translations/es/other_terms.csv +43 -0
  7. starplot-0.19.0/data/raw/translations/es/star_names.csv +427 -0
  8. starplot-0.19.0/data/scripts/db.py +42 -0
  9. {starplot-0.18.2 → starplot-0.19.0}/data/scripts/translations.py +7 -1
  10. {starplot-0.18.2 → starplot-0.19.0}/docs/changelog.md +12 -1
  11. {starplot-0.18.2 → starplot-0.19.0}/docs/coming-soon.md +5 -5
  12. {starplot-0.18.2 → starplot-0.19.0}/docs/index.md +1 -1
  13. {starplot-0.18.2 → starplot-0.19.0}/docs/installation.md +7 -2
  14. starplot-0.19.0/docs/reference-collisions.md +16 -0
  15. {starplot-0.18.2 → starplot-0.19.0}/docs/reference-horizonplot.md +2 -0
  16. {starplot-0.18.2 → starplot-0.19.0}/docs/reference-localization.md +1 -0
  17. {starplot-0.18.2 → starplot-0.19.0}/docs/reference-mapplot.md +2 -0
  18. {starplot-0.18.2 → starplot-0.19.0}/docs/reference-models.md +6 -10
  19. {starplot-0.18.2 → starplot-0.19.0}/docs/reference-opticplot.md +2 -0
  20. starplot-0.19.0/docs/reference-positions.md +32 -0
  21. {starplot-0.18.2 → starplot-0.19.0}/docs/reference-styling.md +1 -0
  22. starplot-0.19.0/docs/reference-zenithplot.md +9 -0
  23. {starplot-0.18.2 → starplot-0.19.0}/examples/examples.py +1 -1
  24. {starplot-0.18.2 → starplot-0.19.0}/examples/galaxy_custom_marker.py +0 -2
  25. {starplot-0.18.2 → starplot-0.19.0}/examples/horizon_double_cluster.py +1 -1
  26. {starplot-0.18.2 → starplot-0.19.0}/examples/horizon_gradient.py +4 -1
  27. {starplot-0.18.2 → starplot-0.19.0}/examples/horizon_sgr.py +1 -1
  28. {starplot-0.18.2 → starplot-0.19.0}/examples/map_big.py +3 -3
  29. {starplot-0.18.2 → starplot-0.19.0}/examples/map_canis_major.py +1 -1
  30. {starplot-0.18.2 → starplot-0.19.0}/examples/map_carina.py +3 -3
  31. {starplot-0.18.2 → starplot-0.19.0}/examples/map_cas.py +13 -9
  32. {starplot-0.18.2 → starplot-0.19.0}/examples/map_orion.py +3 -6
  33. {starplot-0.18.2 → starplot-0.19.0}/examples/map_orthographic.py +15 -3
  34. {starplot-0.18.2 → starplot-0.19.0}/examples/map_sagittarius.py +2 -3
  35. {starplot-0.18.2 → starplot-0.19.0}/examples/star_chart_detail.py +10 -2
  36. {starplot-0.18.2 → starplot-0.19.0}/examples/star_chart_french.py +4 -1
  37. {starplot-0.18.2 → starplot-0.19.0}/hash_checks/hashio.py +6 -4
  38. {starplot-0.18.2 → starplot-0.19.0}/hash_checks/hashlock.yml +19 -11
  39. {starplot-0.18.2 → starplot-0.19.0}/hash_checks/horizon_checks.py +7 -5
  40. {starplot-0.18.2 → starplot-0.19.0}/hash_checks/map_checks.py +72 -18
  41. {starplot-0.18.2 → starplot-0.19.0}/hash_checks/zenith_checks.py +13 -4
  42. {starplot-0.18.2 → starplot-0.19.0}/mkdocs.yml +2 -0
  43. {starplot-0.18.2 → starplot-0.19.0}/pyproject.toml +1 -0
  44. starplot-0.19.0/src/starplot/__init__.py +58 -0
  45. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/config.py +1 -0
  46. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/data/__init__.py +3 -5
  47. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/data/catalogs.py +23 -11
  48. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/data/db.py +1 -7
  49. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/data/library/constellation_names.parquet +0 -0
  50. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/data/library/dso_names.parquet +0 -0
  51. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/data/library/star_designations.parquet +0 -0
  52. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/data/translations.py +45 -0
  53. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/models/__init__.py +3 -1
  54. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/models/constellation.py +7 -1
  55. starplot-0.19.0/src/starplot/models/milky_way.py +30 -0
  56. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/models/observer.py +11 -2
  57. starplot-0.19.0/src/starplot/plots/__init__.py +6 -0
  58. {starplot-0.18.2/src/starplot → starplot-0.19.0/src/starplot/plots}/base.py +74 -439
  59. {starplot-0.18.2/src/starplot → starplot-0.19.0/src/starplot/plots}/horizon.py +12 -10
  60. {starplot-0.18.2/src/starplot → starplot-0.19.0/src/starplot/plots}/map.py +10 -7
  61. {starplot-0.18.2/src/starplot → starplot-0.19.0/src/starplot/plots}/optic.py +21 -30
  62. {starplot-0.18.2/src/starplot → starplot-0.19.0/src/starplot/plots}/zenith.py +31 -8
  63. starplot-0.19.0/src/starplot/plotters/__init__.py +9 -0
  64. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/plotters/arrow.py +1 -1
  65. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/plotters/constellations.py +46 -61
  66. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/plotters/dsos.py +33 -16
  67. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/plotters/experimental.py +0 -1
  68. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/plotters/milkyway.py +15 -6
  69. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/plotters/stars.py +19 -36
  70. starplot-0.19.0/src/starplot/plotters/text.py +464 -0
  71. starplot-0.19.0/src/starplot/styles/__init__.py +6 -0
  72. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/styles/base.py +20 -18
  73. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/styles/ext/antique.yml +2 -2
  74. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/styles/ext/blue_dark.yml +0 -1
  75. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/styles/ext/color_print.yml +2 -2
  76. {starplot-0.18.2 → starplot-0.19.0}/tests/test_languages.py +3 -0
  77. {starplot-0.18.2 → starplot-0.19.0}/tests/test_map.py +38 -2
  78. {starplot-0.18.2 → starplot-0.19.0}/tutorial/tutorial_03.py +6 -2
  79. {starplot-0.18.2 → starplot-0.19.0}/tutorial/tutorial_06.py +3 -3
  80. starplot-0.18.2/data/scripts/db.py +0 -92
  81. starplot-0.18.2/docs/reference-zenithplot.md +0 -7
  82. starplot-0.18.2/src/starplot/__init__.py +0 -52
  83. starplot-0.18.2/src/starplot/data/library/sky.db +0 -0
  84. starplot-0.18.2/src/starplot/plotters/__init__.py +0 -7
  85. starplot-0.18.2/src/starplot/styles/__init__.py +0 -6
  86. {starplot-0.18.2 → starplot-0.19.0}/.dockerignore +0 -0
  87. {starplot-0.18.2 → starplot-0.19.0}/.github/FUNDING.yml +0 -0
  88. {starplot-0.18.2 → starplot-0.19.0}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
  89. {starplot-0.18.2 → starplot-0.19.0}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
  90. {starplot-0.18.2 → starplot-0.19.0}/.github/workflows/docs.yml +0 -0
  91. {starplot-0.18.2 → starplot-0.19.0}/.github/workflows/release.yml +0 -0
  92. {starplot-0.18.2 → starplot-0.19.0}/.github/workflows/test.yml +0 -0
  93. {starplot-0.18.2 → starplot-0.19.0}/.gitignore +0 -0
  94. {starplot-0.18.2 → starplot-0.19.0}/CODE_OF_CONDUCT.md +0 -0
  95. {starplot-0.18.2 → starplot-0.19.0}/CONTRIBUTING.md +0 -0
  96. {starplot-0.18.2 → starplot-0.19.0}/Dockerfile +0 -0
  97. {starplot-0.18.2 → starplot-0.19.0}/LICENSE +0 -0
  98. {starplot-0.18.2 → starplot-0.19.0}/Makefile +0 -0
  99. {starplot-0.18.2 → starplot-0.19.0}/data/raw/constellation_borders.json +0 -0
  100. {starplot-0.18.2 → starplot-0.19.0}/data/raw/constellations.json +0 -0
  101. {starplot-0.18.2 → starplot-0.19.0}/data/raw/milkyway.json +0 -0
  102. {starplot-0.18.2 → starplot-0.19.0}/data/raw/star_designations.csv +0 -0
  103. {starplot-0.18.2 → starplot-0.19.0}/data/raw/translations/constellation_names.csv +0 -0
  104. {starplot-0.18.2 → starplot-0.19.0}/data/raw/translations/dso_names.csv +0 -0
  105. {starplot-0.18.2 → starplot-0.19.0}/data/raw/translations/en-us/constellation_names.csv +0 -0
  106. {starplot-0.18.2 → starplot-0.19.0}/data/raw/translations/en-us/dso_names.csv +0 -0
  107. {starplot-0.18.2 → starplot-0.19.0}/data/raw/translations/en-us/other_terms.csv +0 -0
  108. {starplot-0.18.2 → starplot-0.19.0}/data/raw/translations/en-us/star_names.csv +0 -0
  109. {starplot-0.18.2 → starplot-0.19.0}/data/raw/translations/fa/constellation_names.csv +0 -0
  110. {starplot-0.18.2 → starplot-0.19.0}/data/raw/translations/fa/dso_names.csv +0 -0
  111. {starplot-0.18.2 → starplot-0.19.0}/data/raw/translations/fa/other_terms.csv +0 -0
  112. {starplot-0.18.2 → starplot-0.19.0}/data/raw/translations/fa/star_names.csv +0 -0
  113. {starplot-0.18.2 → starplot-0.19.0}/data/raw/translations/fr/constellation_names.csv +0 -0
  114. {starplot-0.18.2 → starplot-0.19.0}/data/raw/translations/fr/dso_names.csv +0 -0
  115. {starplot-0.18.2 → starplot-0.19.0}/data/raw/translations/fr/other_terms.csv +0 -0
  116. {starplot-0.18.2 → starplot-0.19.0}/data/raw/translations/fr/star_names.csv +0 -0
  117. {starplot-0.18.2 → starplot-0.19.0}/data/raw/translations/lt/constellation_names.csv +0 -0
  118. {starplot-0.18.2 → starplot-0.19.0}/data/raw/translations/lt/dso_names.csv +0 -0
  119. {starplot-0.18.2 → starplot-0.19.0}/data/raw/translations/lt/other_terms.csv +0 -0
  120. {starplot-0.18.2 → starplot-0.19.0}/data/raw/translations/lt/readme.md +0 -0
  121. {starplot-0.18.2 → starplot-0.19.0}/data/raw/translations/lt/star_names.csv +0 -0
  122. {starplot-0.18.2 → starplot-0.19.0}/data/raw/translations/other_terms.csv +0 -0
  123. {starplot-0.18.2 → starplot-0.19.0}/data/raw/translations/readme.md +0 -0
  124. {starplot-0.18.2 → starplot-0.19.0}/data/raw/translations/star_names.csv +0 -0
  125. {starplot-0.18.2 → starplot-0.19.0}/data/raw/translations/zh-cn/constellation_names.csv +0 -0
  126. {starplot-0.18.2 → starplot-0.19.0}/data/raw/translations/zh-cn/dso_names.csv +0 -0
  127. {starplot-0.18.2 → starplot-0.19.0}/data/raw/translations/zh-cn/other_terms.csv +0 -0
  128. {starplot-0.18.2 → starplot-0.19.0}/data/raw/translations/zh-cn/star_names.csv +0 -0
  129. {starplot-0.18.2 → starplot-0.19.0}/data/raw/translations/zh-tw/constellation_names.csv +0 -0
  130. {starplot-0.18.2 → starplot-0.19.0}/data/raw/translations/zh-tw/dso_names.csv +0 -0
  131. {starplot-0.18.2 → starplot-0.19.0}/data/raw/translations/zh-tw/other_terms.csv +0 -0
  132. {starplot-0.18.2 → starplot-0.19.0}/data/raw/translations/zh-tw/readme.md +0 -0
  133. {starplot-0.18.2 → starplot-0.19.0}/data/raw/translations/zh-tw/star_names.csv +0 -0
  134. {starplot-0.18.2 → starplot-0.19.0}/data/readme.md +0 -0
  135. {starplot-0.18.2 → starplot-0.19.0}/data/scripts/constellation_names.py +0 -0
  136. {starplot-0.18.2 → starplot-0.19.0}/data/scripts/data_settings.py +0 -0
  137. {starplot-0.18.2 → starplot-0.19.0}/data/scripts/docdata.py +0 -0
  138. {starplot-0.18.2 → starplot-0.19.0}/data/scripts/dso_names.py +0 -0
  139. {starplot-0.18.2 → starplot-0.19.0}/data/scripts/star_designations.py +0 -0
  140. {starplot-0.18.2 → starplot-0.19.0}/docs/about.md +0 -0
  141. {starplot-0.18.2 → starplot-0.19.0}/docs/css/extra.css +0 -0
  142. {starplot-0.18.2 → starplot-0.19.0}/docs/custom/main.html +0 -0
  143. {starplot-0.18.2 → starplot-0.19.0}/docs/data/building.md +0 -0
  144. {starplot-0.18.2 → starplot-0.19.0}/docs/data/constellations.md +0 -0
  145. {starplot-0.18.2 → starplot-0.19.0}/docs/data/dsos.md +0 -0
  146. {starplot-0.18.2 → starplot-0.19.0}/docs/data/overview.md +0 -0
  147. {starplot-0.18.2 → starplot-0.19.0}/docs/data/stars.md +0 -0
  148. {starplot-0.18.2 → starplot-0.19.0}/docs/data-explorer.md +0 -0
  149. {starplot-0.18.2 → starplot-0.19.0}/docs/data-sources.md +0 -0
  150. {starplot-0.18.2 → starplot-0.19.0}/docs/examples/horizon-double-cluster.md +0 -0
  151. {starplot-0.18.2 → starplot-0.19.0}/docs/examples/horizon-gradient.md +0 -0
  152. {starplot-0.18.2 → starplot-0.19.0}/docs/examples/horizon-sgr.md +0 -0
  153. {starplot-0.18.2 → starplot-0.19.0}/docs/examples/map-big-dipper.md +0 -0
  154. {starplot-0.18.2 → starplot-0.19.0}/docs/examples/map-big.md +0 -0
  155. {starplot-0.18.2 → starplot-0.19.0}/docs/examples/map-canis-major.md +0 -0
  156. {starplot-0.18.2 → starplot-0.19.0}/docs/examples/map-carina-nebula.md +0 -0
  157. {starplot-0.18.2 → starplot-0.19.0}/docs/examples/map-cassiopeia.md +0 -0
  158. {starplot-0.18.2 → starplot-0.19.0}/docs/examples/map-custom-marker.md +0 -0
  159. {starplot-0.18.2 → starplot-0.19.0}/docs/examples/map-milky-way-stars.md +0 -0
  160. {starplot-0.18.2 → starplot-0.19.0}/docs/examples/map-orion.md +0 -0
  161. {starplot-0.18.2 → starplot-0.19.0}/docs/examples/map-orthographic.md +0 -0
  162. {starplot-0.18.2 → starplot-0.19.0}/docs/examples/map-sagittarius.md +0 -0
  163. {starplot-0.18.2 → starplot-0.19.0}/docs/examples/optic-iss-transit.md +0 -0
  164. {starplot-0.18.2 → starplot-0.19.0}/docs/examples/optic-m45.md +0 -0
  165. {starplot-0.18.2 → starplot-0.19.0}/docs/examples/optic-moon-saturn.md +0 -0
  166. {starplot-0.18.2 → starplot-0.19.0}/docs/examples/optic-orion.md +0 -0
  167. {starplot-0.18.2 → starplot-0.19.0}/docs/examples/optic-solar-eclipse.md +0 -0
  168. {starplot-0.18.2 → starplot-0.19.0}/docs/examples/star-chart-basic.md +0 -0
  169. {starplot-0.18.2 → starplot-0.19.0}/docs/examples/star-chart-detail.md +0 -0
  170. {starplot-0.18.2 → starplot-0.19.0}/docs/examples/star-chart-french.md +0 -0
  171. {starplot-0.18.2 → starplot-0.19.0}/docs/examples.md +0 -0
  172. {starplot-0.18.2 → starplot-0.19.0}/docs/images/celestial-globe.svg +0 -0
  173. {starplot-0.18.2 → starplot-0.19.0}/docs/images/cover-front-sm-360.png +0 -0
  174. {starplot-0.18.2 → starplot-0.19.0}/docs/images/discord.svg +0 -0
  175. {starplot-0.18.2 → starplot-0.19.0}/docs/images/examples/.keep +0 -0
  176. {starplot-0.18.2 → starplot-0.19.0}/docs/images/favicon.png +0 -0
  177. {starplot-0.18.2 → starplot-0.19.0}/docs/images/logo-2400px.png +0 -0
  178. {starplot-0.18.2 → starplot-0.19.0}/docs/images/logo-original/banner.png +0 -0
  179. {starplot-0.18.2 → starplot-0.19.0}/docs/images/logo-original/banner.svg +0 -0
  180. {starplot-0.18.2 → starplot-0.19.0}/docs/images/logo-original/banner.vectornator +0 -0
  181. {starplot-0.18.2 → starplot-0.19.0}/docs/images/logo-original/logo.png +0 -0
  182. {starplot-0.18.2 → starplot-0.19.0}/docs/images/logo-original/logo.svg +0 -0
  183. {starplot-0.18.2 → starplot-0.19.0}/docs/images/logo-original/logo.vectornator +0 -0
  184. {starplot-0.18.2 → starplot-0.19.0}/docs/images/logo-original/logo2.png +0 -0
  185. {starplot-0.18.2 → starplot-0.19.0}/docs/images/logo.svg +0 -0
  186. {starplot-0.18.2 → starplot-0.19.0}/docs/images/logo2.vectornator +0 -0
  187. {starplot-0.18.2 → starplot-0.19.0}/docs/images/logo500.png +0 -0
  188. {starplot-0.18.2 → starplot-0.19.0}/docs/images/mono-2400px.png +0 -0
  189. {starplot-0.18.2 → starplot-0.19.0}/docs/images/mono.png +0 -0
  190. {starplot-0.18.2 → starplot-0.19.0}/docs/images/mono.svg +0 -0
  191. {starplot-0.18.2 → starplot-0.19.0}/docs/images/star.svg +0 -0
  192. {starplot-0.18.2 → starplot-0.19.0}/docs/images/tutorial/.keep +0 -0
  193. {starplot-0.18.2 → starplot-0.19.0}/docs/license.md +0 -0
  194. {starplot-0.18.2 → starplot-0.19.0}/docs/migration-guides/0.16.0.md +0 -0
  195. {starplot-0.18.2 → starplot-0.19.0}/docs/object-names/constellations.md +0 -0
  196. {starplot-0.18.2 → starplot-0.19.0}/docs/object-names/dsos.md +0 -0
  197. {starplot-0.18.2 → starplot-0.19.0}/docs/object-names/stars.md +0 -0
  198. {starplot-0.18.2 → starplot-0.19.0}/docs/reference-callables.md +0 -0
  199. {starplot-0.18.2 → starplot-0.19.0}/docs/reference-ongc.md +0 -0
  200. {starplot-0.18.2 → starplot-0.19.0}/docs/reference-selecting-objects.md +0 -0
  201. {starplot-0.18.2 → starplot-0.19.0}/docs/reference-settings.md +0 -0
  202. {starplot-0.18.2 → starplot-0.19.0}/docs/robots.txt +0 -0
  203. {starplot-0.18.2 → starplot-0.19.0}/docs/showcase.md +0 -0
  204. {starplot-0.18.2 → starplot-0.19.0}/docs/snippets/_newsletter.html +0 -0
  205. {starplot-0.18.2 → starplot-0.19.0}/docs/tutorial/01.md +0 -0
  206. {starplot-0.18.2 → starplot-0.19.0}/docs/tutorial/02.md +0 -0
  207. {starplot-0.18.2 → starplot-0.19.0}/docs/tutorial/03.md +0 -0
  208. {starplot-0.18.2 → starplot-0.19.0}/docs/tutorial/04.md +0 -0
  209. {starplot-0.18.2 → starplot-0.19.0}/docs/tutorial/05.md +0 -0
  210. {starplot-0.18.2 → starplot-0.19.0}/docs/tutorial/06.md +0 -0
  211. {starplot-0.18.2 → starplot-0.19.0}/docs/tutorial/07.md +0 -0
  212. {starplot-0.18.2 → starplot-0.19.0}/docs/tutorial/08.md +0 -0
  213. {starplot-0.18.2 → starplot-0.19.0}/docs/tutorial/09.md +0 -0
  214. {starplot-0.18.2 → starplot-0.19.0}/docs/tutorial.md +0 -0
  215. {starplot-0.18.2 → starplot-0.19.0}/examples/map_big_dipper.py +0 -0
  216. {starplot-0.18.2 → starplot-0.19.0}/examples/map_milky_way_stars.py +0 -0
  217. {starplot-0.18.2 → starplot-0.19.0}/examples/optic_iss_transit.py +0 -0
  218. {starplot-0.18.2 → starplot-0.19.0}/examples/optic_m45.py +0 -0
  219. {starplot-0.18.2 → starplot-0.19.0}/examples/optic_moon_saturn.py +0 -0
  220. {starplot-0.18.2 → starplot-0.19.0}/examples/optic_orion_nebula.py +0 -0
  221. {starplot-0.18.2 → starplot-0.19.0}/examples/optic_solar_eclipse.py +0 -0
  222. {starplot-0.18.2 → starplot-0.19.0}/examples/star_chart_basic.py +0 -0
  223. {starplot-0.18.2 → starplot-0.19.0}/hash_checks/__init__.py +0 -0
  224. {starplot-0.18.2 → starplot-0.19.0}/hash_checks/data/.keep +0 -0
  225. {starplot-0.18.2 → starplot-0.19.0}/hash_checks/optic_checks.py +0 -0
  226. {starplot-0.18.2 → starplot-0.19.0}/hash_checks/template.html +0 -0
  227. {starplot-0.18.2 → starplot-0.19.0}/requirements-dev.txt +0 -0
  228. {starplot-0.18.2 → starplot-0.19.0}/requirements.txt +0 -0
  229. {starplot-0.18.2 → starplot-0.19.0}/scripts/ecliptic.py +0 -0
  230. {starplot-0.18.2 → starplot-0.19.0}/scripts/marimo.py +0 -0
  231. {starplot-0.18.2 → starplot-0.19.0}/scripts/voronoi.py +0 -0
  232. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/callables.py +0 -0
  233. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/cli.py +0 -0
  234. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/coordinates.py +0 -0
  235. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/data/constellations.py +0 -0
  236. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/data/dsos.py +0 -0
  237. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/data/ecliptic.py +0 -0
  238. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/data/library/readme.md +0 -0
  239. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/data/stars.py +0 -0
  240. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/data/utils.py +0 -0
  241. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/geod.py +0 -0
  242. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/geometry.py +0 -0
  243. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/mixins.py +0 -0
  244. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/models/base.py +0 -0
  245. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/models/comet.py +0 -0
  246. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/models/dso.py +0 -0
  247. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/models/moon.py +0 -0
  248. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/models/objects.py +0 -0
  249. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/models/optics.py +0 -0
  250. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/models/planet.py +0 -0
  251. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/models/satellite.py +0 -0
  252. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/models/star.py +0 -0
  253. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/models/sun.py +0 -0
  254. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/plotters/gradients.py +0 -0
  255. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/plotters/legend.py +0 -0
  256. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/profile.py +0 -0
  257. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/projections.py +0 -0
  258. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/styles/ext/blue_gold.yml +0 -0
  259. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/styles/ext/blue_light.yml +0 -0
  260. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/styles/ext/blue_medium.yml +0 -0
  261. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/styles/ext/blue_night.yml +0 -0
  262. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/styles/ext/cb_wong.yml +0 -0
  263. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/styles/ext/gradient_presets.yml +0 -0
  264. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/styles/ext/grayscale.yml +0 -0
  265. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/styles/ext/grayscale_dark.yml +0 -0
  266. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/styles/ext/map.yml +0 -0
  267. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/styles/ext/nord.yml +0 -0
  268. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/styles/ext/optic.yml +0 -0
  269. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/styles/ext/publication.yml +0 -0
  270. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/styles/extensions.py +0 -0
  271. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/styles/fonts-library/gfs-didot/DESCRIPTION.en_us.html +0 -0
  272. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/styles/fonts-library/gfs-didot/GFSDidot-Regular.ttf +0 -0
  273. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/styles/fonts-library/gfs-didot/METADATA.pb +0 -0
  274. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/styles/fonts-library/gfs-didot/OFL.txt +0 -0
  275. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/styles/fonts-library/inter/Inter-Bold.ttf +0 -0
  276. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/styles/fonts-library/inter/Inter-BoldItalic.ttf +0 -0
  277. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/styles/fonts-library/inter/Inter-ExtraBold.ttf +0 -0
  278. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/styles/fonts-library/inter/Inter-ExtraLight.ttf +0 -0
  279. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/styles/fonts-library/inter/Inter-ExtraLightItalic.ttf +0 -0
  280. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/styles/fonts-library/inter/Inter-Italic.ttf +0 -0
  281. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/styles/fonts-library/inter/Inter-Light.ttf +0 -0
  282. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/styles/fonts-library/inter/Inter-LightItalic.ttf +0 -0
  283. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/styles/fonts-library/inter/Inter-Regular.ttf +0 -0
  284. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/styles/fonts-library/inter/Inter-SemiBold.ttf +0 -0
  285. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/styles/fonts-library/inter/Inter-SemiBoldItalic.ttf +0 -0
  286. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/styles/fonts-library/inter/LICENSE.txt +0 -0
  287. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/styles/fonts.py +0 -0
  288. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/styles/helpers.py +0 -0
  289. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/styles/markers.py +0 -0
  290. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/utils.py +0 -0
  291. {starplot-0.18.2 → starplot-0.19.0}/src/starplot/warnings.py +0 -0
  292. {starplot-0.18.2 → starplot-0.19.0}/tests/__init__.py +0 -0
  293. {starplot-0.18.2 → starplot-0.19.0}/tests/data/.keep +0 -0
  294. {starplot-0.18.2 → starplot-0.19.0}/tests/data/comets.txt +0 -0
  295. {starplot-0.18.2 → starplot-0.19.0}/tests/test_catalogs.py +0 -0
  296. {starplot-0.18.2 → starplot-0.19.0}/tests/test_comets.py +0 -0
  297. {starplot-0.18.2 → starplot-0.19.0}/tests/test_data.py +0 -0
  298. {starplot-0.18.2 → starplot-0.19.0}/tests/test_models.py +0 -0
  299. {starplot-0.18.2 → starplot-0.19.0}/tests/test_observer.py +0 -0
  300. {starplot-0.18.2 → starplot-0.19.0}/tests/test_optic.py +0 -0
  301. {starplot-0.18.2 → starplot-0.19.0}/tests/test_satellite.py +0 -0
  302. {starplot-0.18.2 → starplot-0.19.0}/tests/test_settings.py +0 -0
  303. {starplot-0.18.2 → starplot-0.19.0}/tests/test_stars.py +0 -0
  304. {starplot-0.18.2 → starplot-0.19.0}/tests/test_styles.py +0 -0
  305. {starplot-0.18.2 → starplot-0.19.0}/tests/test_utils.py +0 -0
  306. {starplot-0.18.2 → starplot-0.19.0}/tests/utils.py +0 -0
  307. {starplot-0.18.2 → starplot-0.19.0}/tutorial/build.py +0 -0
  308. {starplot-0.18.2 → starplot-0.19.0}/tutorial/tutorial_02.py +0 -0
  309. {starplot-0.18.2 → starplot-0.19.0}/tutorial/tutorial_04.py +0 -0
  310. {starplot-0.18.2 → starplot-0.19.0}/tutorial/tutorial_05.py +0 -0
  311. {starplot-0.18.2 → starplot-0.19.0}/tutorial/tutorial_07.py +0 -0
  312. {starplot-0.18.2 → starplot-0.19.0}/tutorial/tutorial_08.py +0 -0
@@ -20,5 +20,5 @@ keywords:
20
20
  - graphs
21
21
  - plotting
22
22
  license: MIT
23
- version: 0.18.2
24
- date-released: '2026-01-10'
23
+ version: 0.18.3
24
+ date-released: '2026-01-16'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: starplot
3
- Version: 0.18.2
3
+ Version: 0.19.0
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>
@@ -11,6 +11,7 @@ Classifier: Programming Language :: Python :: 3.10
11
11
  Classifier: Programming Language :: Python :: 3.11
12
12
  Classifier: Programming Language :: Python :: 3.12
13
13
  Classifier: Programming Language :: Python :: 3.13
14
+ Classifier: Framework :: Matplotlib
14
15
  License-File: LICENSE
15
16
  Requires-Dist: matplotlib >= 3.8.0
16
17
  Requires-Dist: numpy >= 1.26.2
@@ -39,7 +40,7 @@ Project-URL: Source, https://github.com/steveberardi/starplot
39
40
  ![License](https://img.shields.io/github/license/steveberardi/starplot?style=for-the-badge&color=8b63b0)
40
41
  ![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/steveberardi/starplot/test.yml?style=for-the-badge&color=88b063)
41
42
 
42
- **Starplot** is a Python library for creating star charts and maps of the sky.
43
+ **Starplot** is a Python library for creating star charts and maps of the sky
43
44
 
44
45
  - 🗺️ **Maps** - including 10+ customizable projections
45
46
  - ⭐ **Zenith Charts** - shows the entire sky at a specific time and place
@@ -52,7 +53,7 @@ Project-URL: Source, https://github.com/steveberardi/starplot
52
53
  - 🚀 **Data Backend** - powered by DuckDB + Ibis for fast object lookup
53
54
  - 📓 **Custom Data Catalogs** - with helpers for building and optimizing
54
55
  - 🧭 **Label Collision Avoidance** - ensuring all labels are readable
55
- - 🌐 **Localization** - label translations for French, Chinese, and Persian (coming soon!)
56
+ - 🌐 **Localization** - label translations for Chinese, French, Lithuanian, Persian, and Spanish
56
57
 
57
58
  ## Examples
58
59
  *Zenith chart of the stars from a specific time/location:*
@@ -135,6 +136,7 @@ See more details on the [Public Roadmap](https://trello.com/b/sUksygn4/starplot-
135
136
  - [starplot-hyg](https://github.com/steveberardi/starplot-hyg)
136
137
  - [starplot-gaia-dr3](https://github.com/steveberardi/starplot-gaia-dr3)
137
138
  - [starplot-hyperleda](https://github.com/steveberardi/starplot-hyperleda)
139
+ - [starplot-milkyway](https://github.com/steveberardi/starplot-milkyway)
138
140
 
139
141
  ## License
140
142
  [MIT License](https://github.com/steveberardi/starplot/blob/main/LICENSE)
@@ -4,7 +4,7 @@
4
4
  ![License](https://img.shields.io/github/license/steveberardi/starplot?style=for-the-badge&color=8b63b0)
5
5
  ![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/steveberardi/starplot/test.yml?style=for-the-badge&color=88b063)
6
6
 
7
- **Starplot** is a Python library for creating star charts and maps of the sky.
7
+ **Starplot** is a Python library for creating star charts and maps of the sky
8
8
 
9
9
  - 🗺️ **Maps** - including 10+ customizable projections
10
10
  - ⭐ **Zenith Charts** - shows the entire sky at a specific time and place
@@ -17,7 +17,7 @@
17
17
  - 🚀 **Data Backend** - powered by DuckDB + Ibis for fast object lookup
18
18
  - 📓 **Custom Data Catalogs** - with helpers for building and optimizing
19
19
  - 🧭 **Label Collision Avoidance** - ensuring all labels are readable
20
- - 🌐 **Localization** - label translations for French, Chinese, and Persian (coming soon!)
20
+ - 🌐 **Localization** - label translations for Chinese, French, Lithuanian, Persian, and Spanish
21
21
 
22
22
  ## Examples
23
23
  *Zenith chart of the stars from a specific time/location:*
@@ -100,6 +100,7 @@ See more details on the [Public Roadmap](https://trello.com/b/sUksygn4/starplot-
100
100
  - [starplot-hyg](https://github.com/steveberardi/starplot-hyg)
101
101
  - [starplot-gaia-dr3](https://github.com/steveberardi/starplot-gaia-dr3)
102
102
  - [starplot-hyperleda](https://github.com/steveberardi/starplot-hyperleda)
103
+ - [starplot-milkyway](https://github.com/steveberardi/starplot-milkyway)
103
104
 
104
105
  ## License
105
106
  [MIT License](https://github.com/steveberardi/starplot/blob/main/LICENSE)
@@ -0,0 +1,90 @@
1
+ iau_id,English,Español
2
+ and,Andromeda,Andrómeda
3
+ ant,Antlia,Antlia
4
+ aps,Apus,Apus
5
+ aql,Aquila,Aquila
6
+ aqr,Aquarius,Acuario
7
+ ara,Ara,Ara
8
+ ari,Aries,Aries
9
+ aur,Auriga,Auriga
10
+ boo,Bootes,Bootes
11
+ cae,Caelum,Caelum
12
+ cam,Camelopardalis,Camelopardalis
13
+ cap,Capricornus,Capricornio
14
+ car,Carina,Carina
15
+ cas,Cassiopeia,Casiopea
16
+ cen,Centaurus,Centaurus
17
+ cep,Cepheus,Cepheus
18
+ cet,Cetus,Cetus
19
+ cha,Chamaeleon,Chamaeleon
20
+ cir,Circinus,Circinus
21
+ cma,Canis Major,Canis Major
22
+ cmi,Canis Minor,Canis Minor
23
+ cnc,Cancer,Cáncer
24
+ col,Columba,Columba
25
+ com,Coma Berenices,Coma Berenices
26
+ cra,Corona Australis,Corona Australis
27
+ crb,Corona Borealis,Corona Borealis
28
+ crt,Crater,Crater
29
+ cru,Crux,Crux
30
+ crv,Corvus,Corvus
31
+ cvn,Canes Venatici,Canes Venatici
32
+ cyg,Cygnus,Cygnus
33
+ del,Delphinus,Delphinus
34
+ dor,Dorado,Dorado
35
+ dra,Draco,Draco
36
+ equ,Equuleus,Equuleus
37
+ eri,Eridanus,Eridanus
38
+ for,Fornax,Fornax
39
+ gem,Gemini,Géminis
40
+ gru,Grus,Grus
41
+ her,Hercules,Hércules
42
+ hor,Horologium,Horologium
43
+ hya,Hydra,Hydra
44
+ hyi,Hydrus,Hydrus
45
+ ind,Indus,Indus
46
+ lac,Lacerta,Lacerta
47
+ leo,Leo,Leo
48
+ lep,Lepus,Lepus
49
+ lib,Libra,Libra
50
+ lmi,Leo Minor,Leo Minor
51
+ lup,Lupus,Lupus
52
+ lyn,Lynx,Lynx
53
+ lyr,Lyra,Lyra
54
+ men,Mensa,Mensa
55
+ mic,Microscopium,Microscopium
56
+ mon,Monoceros,Monoceros
57
+ mus,Musca,Musca
58
+ nor,Norma,Norma
59
+ oct,Octans,Octans
60
+ oph,Ophiuchus,Ophiuchus
61
+ ori,Orion,Orión
62
+ pav,Pavo,Pavo
63
+ peg,Pegasus,Pegaso
64
+ per,Perseus,Perseo
65
+ phe,Phoenix,Phoenix
66
+ pic,Pictor,Pictor
67
+ psa,Piscis Austrinus,Piscis Austrinus
68
+ psc,Pisces,Piscis
69
+ pup,Puppis,Puppis
70
+ pyx,Pyxis,Pyxis
71
+ ret,Reticulum,Reticulum
72
+ scl,Sculptor,Sculptor
73
+ sco,Scorpius,Escorpio
74
+ sct,Scutum,Scutum
75
+ ser1,Serpens Caput,Serpens Caput
76
+ ser2,Serpens Cauda,Serpens Cauda
77
+ sex,Sextans,Sextans
78
+ sge,Sagitta,Sagitta
79
+ sgr,Sagittarius,Sagitario
80
+ tau,Taurus,Tauro
81
+ tel,Telescopium,Telescopium
82
+ tra,Triangulum Australe,Triangulum Australe
83
+ tri,Triangulum,Triangulum
84
+ tuc,Tucana,Tucana
85
+ uma,Ursa Major,Osa Mayor
86
+ umi,Ursa Minor,Osa Menor
87
+ vel,Vela,Vela
88
+ vir,Virgo,Virgo
89
+ vol,Volans,Volans
90
+ vul,Vulpecula,Vulpecula
@@ -0,0 +1,153 @@
1
+ open_ngc_name,English,Español
2
+ IC0348,Omi Per Cloud,Nube Omi Per
3
+ IC0349,Barnard's Merope Nebula,Nebulosa Merope de Barnard
4
+ IC0405,Flaming Star Nebula,Nebulosa Estrella Llameante
5
+ IC0434,"Flame Nebula, Orion B","Nebulosa Flama, Orion B"
6
+ IC0443,Gem A,Gem A
7
+ IC1318,Gamma Cygni Nebula,Nebulosa Gamma Cygni
8
+ IC2220,Toby Jug Nebula,Nebulosa Jarra Toby
9
+ IC2391,Omicron Velorum Cluster,Cúmulo Omicron Velorum
10
+ IC2431 NED02,Browning,Galaxias Browning
11
+ IC2574,Coddington's Nebula,Nebulosa Coddington
12
+ IC2602,Theta Carinae Cluster,Cúmulo Theta Carinae
13
+ IC2944,lam Cen Nebula,Nebulosa lambda Centauri
14
+ IC4604,rho Oph Nebula,Nebulosa rho Ophiuchi
15
+ IC4703,"Eagle Nebula, Star Queen","Nebulosa del Águila, Estrella Reina"
16
+ IC4715,Small Sagittarius Star Cloud,Pequeña Nube Estelar de Sagittarius
17
+ IC5070,Pelican Nebula,Nebulosa Pelícano
18
+ IC5146,Cocoon Nebula,Nebulosa Capullo
19
+ NGC0040,Bow-Tie nebula,Nebulosa Moño de Corbata
20
+ NGC0104,47 Tucanae,47 Tucanae
21
+ NGC0224,Andromeda Galaxy,Galaxia de Andrómeda
22
+ NGC0246,"Skull Nebula, Caldwell 56",Nebulosa Cráneo
23
+ NGC0253,Sculptor Galaxy,Galaxia de Sculptor
24
+ NGC0292,Small Magellanic Cloud,Pequeña Nube de Magallanes
25
+ NGC0457,Owl Cluster,Cúmulo Búho
26
+ NGC0598,"Triangulum Galaxy, Triangulum Pinwheel",Galaxia Triangulum
27
+ NGC0650,"Barbell Nebula, Cork Nebula, Little Dumbbell Nebula",Nebulosa Barbell
28
+ NGC0869,h Persei Cluster,Cúmulo h Persei
29
+ NGC0884,chi Persei Cluster,Cúmulo chi Persei
30
+ NGC1049,Fornax Dwarf Cluster 3,Cúmulo Enano Fornax 3
31
+ NGC1275,Perseus A,Perseus A
32
+ NGC1316,Fornax A,Fornax A
33
+ NGC1317,Fornax B,Fornax B
34
+ NGC1432,Maia Nebula,Nebulosa Maia
35
+ NGC1435,Merope Nebula,Nebulosa Merope
36
+ NGC1499,California Nebula,Nebulosa de California
37
+ NGC1555,"Hind's Nebula, Hind's Variable Nebula",Nebulosa Variable de Hind
38
+ NGC1909,the Witch Head Nebula,Nebulosa Cabeza de Bruja
39
+ NGC1952,Crab Nebula,Nebulosa del Cangrejo
40
+ NGC1976,"Great Orion Nebula, Orion Nebula",Grean Nebulosa de Orión
41
+ NGC1977,the Running Man Nebula,Nebulosa del Hombre Corriendo
42
+ NGC1980,Lower Sword,Espada Inferior
43
+ NGC1981,Upper Sword,Espada Superior
44
+ NGC1982,Mairan's Nebula,Nebulosa de Mairan
45
+ NGC1990,Alnilam,Alnilam
46
+ NGC2070,"30 Dor Cluster, Tarantula Nebula",Nebulosa Tarántula
47
+ NGC2174,Monkey Head Nebula,Nebulosa Cabeza de Mono
48
+ NGC2237,Rosette A,Roseta A
49
+ NGC2238,Rosette Nebula,Nebulosa Roseta
50
+ NGC2246,Rosette B,Roseta B
51
+ NGC2261,Hubble's Nebula,Nebulosa de Hubble
52
+ NGC2264,Christmas Tree Cluster,Cúmulo Árbol de Navidad
53
+ NGC2301,Great Bird Cluster,Cúmulo del Gran Pájaro
54
+ NGC2360,Caroline's Cluster,Cúmulo de Caroline
55
+ NGC2392,Eskimo Nebula,Nebulosa Esquimal
56
+ NGC2537,"Bear Claw Nebula, Bear-Paw Galaxy","Nebulosa Garra de Oso, Galaxia Pata de Oso"
57
+ NGC2573,Polarissima Australis,Polarissima Australis
58
+ NGC2632,"Beehive, Praesepe Cluster","Colmena, Cúmulo del Pesebre"
59
+ NGC2685,Helix Galaxy,Galaxia Hélice
60
+ NGC2736,Pencil Nebula,Nebulosa del Lápiz
61
+ NGC3031,Bode's Galaxy,Galaxia de Bode
62
+ NGC3034,Cigar Galaxy,Galaxia Cigarro
63
+ NGC3115,Spindle Galaxy,Galaxia del Huso
64
+ NGC3132,Eight-Burst Nebula,Nebulosa Ocho Estallidos
65
+ NGC3172,Polarissima Borealis,Polarissima Borealis
66
+ NGC3242,Jupiter's Ghost Nebula,Fantasma de Júpiter
67
+ NGC3372,"Carina Nebula, eta Car Nebula",Nebulosa de eta Carinae
68
+ NGC3532,Wishing Well Cluster,Cúmulo del Pozo de los Deseos
69
+ NGC3561,the Guitar,La Guitarra
70
+ NGC3587,Owl Nebula,Nebulosa del Búho
71
+ NGC3766,Pearl Cluster,Cúmulo de las Perlas
72
+ NGC3918,Blue Planetary,Planetaria Azul
73
+ NGC3928,Miniature Spiral,Espiral Miniatura
74
+ NGC4038,Antennae Galaxies,Galaxia Antenas
75
+ NGC4039,Antennae Galaxies,Galaxia Antenas
76
+ NGC4194,Medusa Galaxy Merger,Fusión de Galaxias Medusa
77
+ NGC4254,"Coma Pinwheel, Virgo Cluster Pinwheel",Molinillo de Coma
78
+ NGC4435,Eyes,Ojos
79
+ NGC4438,Eyes,Ojos
80
+ NGC4486,Virgo Galaxy,Galaxia de Virgo
81
+ NGC4565,Needle Galaxy,Galaxia de la Aguja
82
+ NGC4567,"Butterfly Galaxies, Siamese Twins","Galaxias Mariposa, Siamesas"
83
+ NGC4568,"Butterfly Galaxies, Siamese Twins","Galaxias Mariposa, Siamesas"
84
+ NGC4594,Sombrero Galaxy,Galaxia del Sombrero
85
+ NGC4609,Coalsack Cluster,Cúmulo del Saco de Carbón
86
+ NGC4631,Whale Galaxy,Galaxia de la Ballena
87
+ NGC4651,Umbrella Galaxy,Galaxia del Paraguas
88
+ NGC4676,Mice Galaxy,Galaxia de los Ratones
89
+ NGC4755,"Herschel's Jewel Box, kappa Crucis Cluster","Cofre de Joyas, Cúmulo de kappa Crucis"
90
+ NGC4826,"Black Eye Galaxy, Evil Eye Galaxy","Galaxia del Ojo Negro, Galaxia del Mal de Ojo"
91
+ NGC4990,Cocoon Galaxy,Galaxia del Capullo
92
+ NGC5055,Sunflower Galaxy,Galaxia del Girasol
93
+ NGC5128,Centaurus A,Centaurus A
94
+ NGC5139,Omega Centauri,Omega Centauri
95
+ NGC5194,Whirlpool Galaxy,Galaxia Remolino
96
+ NGC5236,Southern Pinwheel Galaxy,Galaxia del Molinete Austral
97
+ NGC6087,S Normae Cluster,Cúmulo de S Normae
98
+ NGC6188,Firebird Nebula,Nebulosa del Pájaro de Fuego
99
+ NGC6205,Hercules Globular Cluster,Cúmulo de Hércules
100
+ NGC6302,"Bug Nebula, Butterfly Nebula",Nebulosa del Bicho
101
+ NGC6309,Box Nebula,Nebulosa de la Caja
102
+ NGC6357,the War and Peace Nebula,Nebulosa de la Guerra y la Paz
103
+ NGC6369,Little Ghost Nebula,Nebulosa Pequeño Fantasma
104
+ NGC6405,Butterfly Cluster,Cúmulo de la Mariposa
105
+ NGC6445,Little Gem,Pequeña Gema
106
+ NGC6475,Ptolemy's Cluster,Cúmulo de Ptolomeo
107
+ NGC6514,Trifid Nebula,Nebulosa Trífida
108
+ NGC6523,Lagoon Nebula,Nebulosa de la Laguna
109
+ NGC6537,Red Spider Nebula,Nebulosa de la Araña Roja
110
+ NGC6543,Cat's Eye Nebula,Nebulosa Ojo de Gato
111
+ NGC6611,Eagle Nebula,Nebulosa del Águila
112
+ NGC6618,"Checkmark Nebula, Lobster Nebula, Swan Nebula, omega Nebula",Nebulosa del Cisne
113
+ NGC6705,Wild Duck Cluster,Cúmulo Patos Salvajes
114
+ NGC6720,Ring Nebula,Nebulosa del Anillo
115
+ NGC6741,Phantom Streak Nebula,Nebulosa de la Raya Fantasma
116
+ NGC6818,Little Gem Nebula,Nebulosa Pequeña Gema
117
+ NGC6819,Foxhead Cluster,Cúmulo Cabeza de Zorro
118
+ NGC6822,Barnard's Galaxy,Galaxia de Barnard
119
+ NGC6826,Blinking Planetary,Planetaria Parpadeante
120
+ NGC6853,Dumbbell Nebula,Nebulosa de las Pesas
121
+ NGC6888,Crescent Nebula,Nebulosa Creciente
122
+ NGC6905,Blue Flash Nebula,Nebulosa Flash Azul
123
+ NGC6946,Fireworks Galaxy,Galaxia Fuegos Artificiales
124
+ NGC6960,"Veil Nebula, Filamentary Nebula, Western Veil",Nebulosa del Velo
125
+ NGC6992,"Eastern Veil, Network Nebula",Velo Oriental
126
+ NGC6995,"Eastern Veil, Network Nebula",Velo Oriental
127
+ NGC7000,North America Nebula,Nebulosa Norteamérica
128
+ NGC7009,Saturn Nebula,Nebulosa Saturno
129
+ NGC7023,Iris Nebula,Nebulosa del Iris
130
+ NGC7114,Schmidt's Nova Cygni,Nova Cygni de Schmidt
131
+ NGC7293,Helix Nebula,Nebulosa Hélice
132
+ NGC7635,Bubble Nebula,Nebulosa de la Burbuja
133
+ NGC7662,Copeland's Blue Snowball,Bola de Nieve Azul de Copeland
134
+ B033,Horsehead Nebula,Nebulosa Cabeza de Caballo
135
+ C009,Cave Nebula,Nebulosa de la Cueva
136
+ C014,"Double Cluster, h & chi Persei",Cúmulo Doble
137
+ C041,Hyades,Híades
138
+ C099,Coalsack Nebula,Saco de Carbón
139
+ Cl399,"Brocchi's Cluster, Al Sufi's Cluster, Coathanger Asterism",Cúmulo de Brocchi
140
+ ESO056-115,"Large Magellanic Cloud, Nubecula Major",Gran Nube de Magallanes
141
+ ESO097-013,Circinus Galaxy,Galaxia de Circinus
142
+ ESO270-017,Fourcade-Figueroa,Fourcade-Figueroa
143
+ ESO351-030,Sculptor Dwarf Elliptical,Enana Elíptica de Sculptor
144
+ ESO356-004,Fornax Dwarf Spheroidal,Enana Esferoidal de Fornax
145
+ HCG079,Seyfert's Sextet,Sexteto de Seyfert
146
+ HCG092,Stephan's Quintet,Quinteto de Stephan
147
+ Mel022,Pleiades,Pléyades
148
+ Mel111,Coma Star Cluster,Cúmulo Estelar de Coma
149
+ PGC000143,Wolf-Lundmark-Melotte Galaxy,Galaxia Wolf-Lundmark-Melotte
150
+ PGC029653,Sextans A,Sextans A
151
+ PGC088608,Sextans Dwarf Spheroidal,Enana Esferoidal de Sextans
152
+ UGC05373,Sextans B,Sextans B
153
+ UGC05470,Leo I,Leo I
@@ -0,0 +1,43 @@
1
+ English,Español
2
+ star,estrella
3
+ deep sky object,objeto de cielo profundo
4
+ open cluster,cúmulo abierto
5
+ globular cluster,cúmulo globular
6
+ nebula,nebulosa
7
+ galaxy,galaxia
8
+ dark nebula,nebulosa oscura
9
+ association of stars,asociación estelar
10
+ double star,estrella doble
11
+ emission nebula,nebulosa de emisión
12
+ galaxy pair,galaxia doble
13
+ galaxy triplet,galaxia triple
14
+ galaxy cluster,cúmulo de galaxias
15
+ group of galaxies,grupo de galaxias
16
+ hii ionized region,región ionizada hii
17
+ nova star,estrella nova
18
+ planetary nebula,nebulosa planetaria
19
+ reflection nebula,nebulosa de reflexión
20
+ star cluster nebula,nebulosa de cúmulo abierto
21
+ supernova remnant,remanente de supernova
22
+ unknown,desconocido
23
+ Mercury,Mercurio
24
+ Venus,Venus
25
+ Mars,Marte
26
+ Jupiter,Júpiter
27
+ Saturn,Saturno
28
+ Uranus,Urano
29
+ Neptune,Neptuno
30
+ Pluto,Plutón
31
+ Sun,Sol
32
+ Moon,Luna
33
+ North,Norte
34
+ East,Este
35
+ South,Sur
36
+ West,Oeste
37
+ Ecliptic,Eclíptica
38
+ Celestial Equator,Ecuador Celeste
39
+ N (abbreviation for north),N (abreviatura para norte)
40
+ E (abbreviation for east),E (abreviatura para este)
41
+ S (abbreviation for south),S (abreviatura para sur)
42
+ W (abbreviation for west),O (abreviatura para oeste)
43
+ Milky Way,Vía Láctea