starplot 0.15.8__tar.gz → 0.16.1__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.
Potentially problematic release.
This version of starplot might be problematic. Click here for more details.
- {starplot-0.15.8 → starplot-0.16.1}/CITATION.cff +2 -2
- {starplot-0.15.8 → starplot-0.16.1}/CONTRIBUTING.md +5 -4
- {starplot-0.15.8 → starplot-0.16.1}/Dockerfile +1 -6
- {starplot-0.15.8 → starplot-0.16.1}/Makefile +1 -5
- {starplot-0.15.8 → starplot-0.16.1}/PKG-INFO +18 -11
- {starplot-0.15.8 → starplot-0.16.1}/README.md +14 -8
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/constellation_borders.json +21 -11
- {starplot-0.15.8 → starplot-0.16.1}/docs/about.md +1 -1
- {starplot-0.15.8 → starplot-0.16.1}/docs/changelog.md +20 -0
- starplot-0.16.1/docs/coming-soon.md +66 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/css/extra.css +65 -10
- starplot-0.16.1/docs/custom/main.html +58 -0
- starplot-0.16.1/docs/examples/horizon-gradient.md +16 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/examples/map-big-dipper.md +2 -2
- starplot-0.16.1/docs/examples/map-carina-nebula.md +15 -0
- starplot-0.16.1/docs/examples/map-cassiopeia.md +12 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/examples/map-milky-way-stars.md +2 -2
- {starplot-0.15.8 → starplot-0.16.1}/docs/examples/star-chart-detail.md +1 -1
- {starplot-0.15.8 → starplot-0.16.1}/docs/examples.md +45 -33
- {starplot-0.15.8 → starplot-0.16.1}/docs/index.md +5 -2
- {starplot-0.15.8 → starplot-0.16.1}/docs/installation.md +6 -18
- starplot-0.16.1/docs/migration-guides/0.16.0.md +118 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/reference-callables.md +6 -9
- starplot-0.16.1/docs/reference-mapplot.md +92 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/reference-models.md +8 -1
- {starplot-0.15.8 → starplot-0.16.1}/docs/reference-opticplot.md +18 -10
- {starplot-0.15.8 → starplot-0.16.1}/docs/reference-selecting-objects.md +2 -2
- starplot-0.16.1/docs/reference-settings.md +42 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/reference-styling.md +163 -113
- starplot-0.16.1/docs/reference-zenithplot.md +7 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/tutorial/01.md +11 -2
- {starplot-0.15.8 → starplot-0.16.1}/docs/tutorial/02.md +15 -17
- {starplot-0.15.8 → starplot-0.16.1}/docs/tutorial/03.md +11 -2
- starplot-0.16.1/docs/tutorial/04.md +47 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/tutorial/05.md +15 -6
- {starplot-0.15.8 → starplot-0.16.1}/docs/tutorial/06.md +11 -2
- {starplot-0.15.8 → starplot-0.16.1}/docs/tutorial/07.md +11 -2
- {starplot-0.15.8 → starplot-0.16.1}/docs/tutorial/08.md +11 -2
- {starplot-0.15.8 → starplot-0.16.1}/docs/tutorial/09.md +13 -2
- {starplot-0.15.8 → starplot-0.16.1}/examples/examples.py +5 -0
- {starplot-0.15.8 → starplot-0.16.1}/examples/horizon_double_cluster.py +26 -14
- starplot-0.16.1/examples/horizon_gradient.py +44 -0
- {starplot-0.15.8 → starplot-0.16.1}/examples/horizon_sgr.py +11 -9
- {starplot-0.15.8 → starplot-0.16.1}/examples/map_big.py +2 -2
- {starplot-0.15.8 → starplot-0.16.1}/examples/map_big_dipper.py +7 -7
- starplot-0.16.1/examples/map_canis_major.py +31 -0
- starplot-0.16.1/examples/map_carina.py +95 -0
- starplot-0.16.1/examples/map_cas.py +59 -0
- {starplot-0.15.8 → starplot-0.16.1}/examples/map_milky_way_stars.py +2 -2
- {starplot-0.15.8 → starplot-0.16.1}/examples/map_orion.py +2 -2
- {starplot-0.15.8 → starplot-0.16.1}/examples/map_orthographic.py +10 -8
- {starplot-0.15.8 → starplot-0.16.1}/examples/map_sagittarius.py +2 -2
- {starplot-0.15.8 → starplot-0.16.1}/examples/optic_m45.py +11 -6
- {starplot-0.15.8 → starplot-0.16.1}/examples/optic_moon_saturn.py +10 -10
- {starplot-0.15.8 → starplot-0.16.1}/examples/optic_orion_nebula.py +13 -8
- starplot-0.16.1/examples/optic_solar_eclipse.py +47 -0
- {starplot-0.15.8 → starplot-0.16.1}/examples/star_chart_basic.py +10 -6
- {starplot-0.15.8 → starplot-0.16.1}/examples/star_chart_detail.py +10 -7
- {starplot-0.15.8 → starplot-0.16.1}/hash_checks/hashlock.yml +60 -44
- {starplot-0.15.8 → starplot-0.16.1}/hash_checks/horizon_checks.py +45 -7
- {starplot-0.15.8 → starplot-0.16.1}/hash_checks/map_checks.py +93 -19
- {starplot-0.15.8 → starplot-0.16.1}/hash_checks/optic_checks.py +58 -36
- starplot-0.16.1/hash_checks/zenith_checks.py +72 -0
- {starplot-0.15.8 → starplot-0.16.1}/mkdocs.yml +3 -0
- {starplot-0.15.8 → starplot-0.16.1}/pyproject.toml +3 -2
- starplot-0.16.1/requirements.txt +17 -0
- starplot-0.16.1/scripts/polaris.py +63 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/__init__.py +7 -2
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/base.py +57 -60
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/cli.py +3 -3
- starplot-0.16.1/src/starplot/config.py +56 -0
- starplot-0.16.1/src/starplot/data/__init__.py +13 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/data/bigsky.py +3 -3
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/data/db.py +2 -2
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/data/library/sky.db +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/geometry.py +48 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/horizon.py +194 -90
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/map.py +71 -168
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/mixins.py +0 -55
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/models/dso.py +10 -2
- starplot-0.16.1/src/starplot/observer.py +71 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/optic.py +61 -26
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/plotters/__init__.py +2 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/plotters/constellations.py +4 -6
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/plotters/dsos.py +3 -2
- starplot-0.16.1/src/starplot/plotters/gradients.py +153 -0
- starplot-0.16.1/src/starplot/plotters/legend.py +247 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/plotters/milkyway.py +8 -5
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/plotters/stars.py +5 -3
- starplot-0.16.1/src/starplot/projections.py +178 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/base.py +98 -22
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/ext/antique.yml +0 -1
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/ext/blue_dark.yml +0 -1
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/ext/blue_gold.yml +60 -52
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/ext/blue_light.yml +0 -1
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/ext/blue_medium.yml +7 -7
- starplot-0.16.1/src/starplot/styles/ext/blue_night.yml +178 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/ext/cb_wong.yml +0 -1
- starplot-0.16.1/src/starplot/styles/ext/gradient_presets.yml +158 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/ext/grayscale.yml +0 -1
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/ext/grayscale_dark.yml +0 -1
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/ext/nord.yml +0 -1
- starplot-0.16.1/src/starplot/styles/extensions.py +119 -0
- starplot-0.16.1/src/starplot/zenith.py +174 -0
- {starplot-0.15.8 → starplot-0.16.1}/tests/test_data.py +3 -3
- {starplot-0.15.8 → starplot-0.16.1}/tests/test_map.py +9 -9
- {starplot-0.15.8 → starplot-0.16.1}/tests/test_models.py +12 -12
- starplot-0.16.1/tests/test_observer.py +55 -0
- starplot-0.16.1/tests/test_optic.py +73 -0
- {starplot-0.15.8 → starplot-0.16.1}/tests/test_styles.py +18 -0
- {starplot-0.15.8 → starplot-0.16.1}/tutorial/tutorial_02.py +10 -6
- {starplot-0.15.8 → starplot-0.16.1}/tutorial/tutorial_03.py +12 -9
- {starplot-0.15.8 → starplot-0.16.1}/tutorial/tutorial_04.py +2 -2
- {starplot-0.15.8 → starplot-0.16.1}/tutorial/tutorial_05.py +12 -7
- {starplot-0.15.8 → starplot-0.16.1}/tutorial/tutorial_06.py +12 -21
- {starplot-0.15.8 → starplot-0.16.1}/tutorial/tutorial_07.py +11 -7
- {starplot-0.15.8 → starplot-0.16.1}/tutorial/tutorial_08.py +10 -6
- starplot-0.15.8/docs/coming-soon.md +0 -16
- starplot-0.15.8/docs/custom/main.html +0 -58
- starplot-0.15.8/docs/reference-mapplot.md +0 -19
- starplot-0.15.8/docs/reference-settings.md +0 -21
- starplot-0.15.8/docs/tutorial/04.md +0 -32
- starplot-0.15.8/examples/map_canis_major.py +0 -28
- starplot-0.15.8/examples/optic_solar_eclipse.py +0 -36
- starplot-0.15.8/hash_checks/zenith_checks.py +0 -47
- starplot-0.15.8/requirements.txt +0 -16
- starplot-0.15.8/src/starplot/data/__init__.py +0 -13
- starplot-0.15.8/src/starplot/projections.py +0 -78
- starplot-0.15.8/src/starplot/settings.py +0 -26
- starplot-0.15.8/src/starplot/styles/extensions.py +0 -29
- starplot-0.15.8/tests/test_optic.py +0 -33
- {starplot-0.15.8 → starplot-0.16.1}/.dockerignore +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/.github/FUNDING.yml +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/.github/workflows/docs.yml +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/.github/workflows/release.yml +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/.github/workflows/test.yml +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/.gitignore +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/CODE_OF_CONDUCT.md +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/LICENSE +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/constellations.json +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/and.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/ant.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/aps.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/aql.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/aqr.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/ara.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/ari.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/aur.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/boo.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/cae.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/cam.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/cap.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/car.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/cas.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/cen.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/cep.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/cet.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/cha.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/cir.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/cma.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/cmi.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/cnc.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/col.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/com.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/cra.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/crb.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/crt.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/cru.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/crv.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/cvn.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/cyg.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/del.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/dor.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/dra.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/equ.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/eri.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/for.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/gem.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/gru.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/her.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/hor.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/hya.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/hyi.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/ind.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/lac.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/leo.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/lep.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/lib.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/lmi.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/lup.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/lyn.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/lyr.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/men.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/mic.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/mon.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/mus.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/nor.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/oct.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/oph.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/ori.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/pav.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/peg.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/per.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/phe.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/pic.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/psa.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/psc.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/pup.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/pyx.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/ret.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/scl.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/sco.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/sct.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/ser1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/ser2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/sex.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/sge.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/sgr.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/tau.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/tel.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/tra.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/tri.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/tuc.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/uma.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/umi.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/vel.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/vir.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/vol.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/iau/vul.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/milkyway.json +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/NGC.csv +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/addendum.csv +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/Antlia_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/C9_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/Cepheus_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/CoronaAustralis_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/Cygnus_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/Cygnus_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/Cygnus_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC0059_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC0059_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC0063_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC0341_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC0348_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC0348_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC0348_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC0359A_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC0405_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC0405_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC0405_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC0410_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC0410_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC0417_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC0417_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC0423_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC0424_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC0424_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC0426_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC0431_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC0432_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC0434_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC0434_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC0434_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC0435_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC0443_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC0443_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC0443_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC0444_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC0444_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC0446_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC0446_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC0447_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC0447_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC0466_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC1274_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC1284_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC1284_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC1287_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC1287_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC1396_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC1396_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC1470_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC1805_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC1805_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC1848_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC1848_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC2087_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC2128_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC2128_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC2128_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC2162_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC2162_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC2162_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC2177_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC2177_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC2177_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC2220_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC2220_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC2599_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC2599_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC2872_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC2872_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC2944_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC2944_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC2944_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC2948_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC2966_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC4592_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC4592_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC4601_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC4628_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC4628_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC4628_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC4684_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC4701_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC4706_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC4706_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC4812_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC4954_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC4955_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC5068_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC5068_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC5070_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC5076_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC5146_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC5146_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/IC5148_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/LBN1032_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/LBN1032_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/LBN1032_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/LBN1037_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/LBN1037_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/LMC_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/LMC_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/M045_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/M045_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/M045_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC0246_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC0248_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC0248_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC0248_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC0249_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC0249_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC0261_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC0261_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC0281_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC0281_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC0281_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC0456_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC0456_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC0460_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC0460_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC0595_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC0595_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC0604_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC0604_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC0650_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC0650_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC0650_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1333_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1333_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1360_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1360_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1491_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1491_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1491_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1499_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1499_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1514_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1514_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1555_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1555_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1579_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1579_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1579_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1624_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1624_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1624_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1714_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1714_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1714_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1715_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1722_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1727_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1727_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1736_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1736_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1736_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1737_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1737_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1743_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1743_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1745_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1748_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1748_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1760_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1760_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1760_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1763_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1769_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1770_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1770_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1773_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1773_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1788_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1788_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1788_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1829_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1829_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1833_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1833_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1858_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1858_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1858_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1869_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1871_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1871_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1874_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1895_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1895_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1909_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1909_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1910_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1914_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1914_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1918_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1919_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1920_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1920_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1931_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1931_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1934_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1934_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1934_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1945_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1948_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1952_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1952_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1955_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1955_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1955_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1968_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1974_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1976_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1976_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC1976_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2014_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2014_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2014_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2018_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2018_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2020_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2023_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2023_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2024_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2024_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2032_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2032_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2040_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2048_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2048_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2064_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2068_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2068_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2068_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2070_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2070_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2071_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2071_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2074_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2074_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2075_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2077_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2077_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2078_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2078_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2081_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2103_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2103_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2113_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2122_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2122_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2122_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2149_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2149_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2163_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2163_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2170_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2170_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2174_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2174_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2174_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2182_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2182_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2183_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2183_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2185_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2237_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2237_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2245_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2245_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2245_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2247_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2247_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2247_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2261_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2264_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2264_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2264_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2282_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2316_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2316_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2327_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2327_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2359_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2359_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2359_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2467_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2467_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2467_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2579_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2579_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2579_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2626_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2736_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC2736_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC3199_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC3199_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC3199_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC3247_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC3247_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC3372_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC3372_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC3372_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC3503_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC3503_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC3572_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC3572_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC3572_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC3579_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC3579_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC3579_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC3603_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC5367_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC5367_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC5367_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6164_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6164_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6165_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6188_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6188_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6334_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6334_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6334_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6357_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6357_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6357_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6514_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6514_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6514_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6523_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6523_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6523_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6559_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6559_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6589_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6589_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6590_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6590_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6611_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6611_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6611_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6618_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6618_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6618_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6727_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6727_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6729_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6823_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6823_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6847_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6888_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6960_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6960_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6992_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC6992_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC7000_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC7000_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC7000_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC7023_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC7023_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC7023_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC7129_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC7129_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC7129_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC7380_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC7380_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC7380_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC7538_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC7538_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC7635_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC7635_lv3.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC7822_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/NGC7822_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/Orion_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/Orion_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/Puppis_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/Scorpion_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/Scorpion_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/Vela_lv1.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/ongc/outlines/Vela_lv2.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/raw/star_designations.csv +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/readme.md +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/scripts/bigsky_mag11.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/scripts/constellations.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/scripts/data_settings.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/scripts/db.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/scripts/docdata.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/scripts/dsos.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/data/scripts/star_designations.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/data/.keep +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/data/constellations.md +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/data/dsos.md +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/data/star-catalogs.md +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/data/star-designations.md +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/data-explorer.md +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/data-sources.md +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/examples/horizon-double-cluster.md +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/examples/horizon-sgr.md +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/examples/map-big.md +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/examples/map-canis-major.md +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/examples/map-comet-neowise.md +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/examples/map-orion.md +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/examples/map-orthographic.md +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/examples/map-sagittarius.md +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/examples/optic-m45.md +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/examples/optic-moon-saturn.md +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/examples/optic-orion.md +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/examples/optic-solar-eclipse.md +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/examples/star-chart-basic.md +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/images/banner.png +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/images/banner.svg +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/images/banner.vectornator +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/images/celestial-globe.svg +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/images/cover-front-sm-360.png +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/images/discord.svg +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/images/examples/.keep +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/images/favicon.png +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/images/favicon.svg +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/images/logo.png +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/images/logo.svg +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/images/logo.vectornator +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/images/logo2.png +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/images/logo2.vectornator +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/images/logo500.png +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/images/mono.png +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/images/mono.svg +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/images/star.svg +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/images/tutorial/.keep +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/license.md +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/publications.md +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/reference-horizonplot.md +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/reference-ongc.md +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/robots.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/snippets/_newsletter.html +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/docs/tutorial.md +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/examples/map_comet_neowise.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/hash_checks/__init__.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/hash_checks/data/.keep +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/hash_checks/hashio.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/hash_checks/template.html +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/requirements-dev.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/scripts/deprecated/create_db.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/scripts/deprecated/gpack_constellations.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/scripts/deprecated/hip_parquet.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/scripts/deprecated/ongc_geopack.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/scripts/deprecated/star_designations.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/scripts/download_cons.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/scripts/ecliptic.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/scripts/geopack.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/scripts/ongc_docdata.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/scripts/pq_stars.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/scripts/starnames.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/scripts/voronoi.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/callables.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/coordinates.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/data/constellation_lines.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/data/constellation_stars.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/data/constellations.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/data/dsos.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/data/ecliptic.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/data/library/bigsky.0.4.0.stars.mag11.parquet +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/data/library/de421_2001.bsp +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/data/stars.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/data/utils.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/geod.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/models/__init__.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/models/base.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/models/constellation.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/models/moon.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/models/objects.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/models/planet.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/models/star.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/models/sun.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/optics.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/plotters/experimental.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/profile.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/__init__.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/ext/color_print.yml +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/ext/map.yml +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/ext/optic.yml +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/fonts-library/gfs-didot/DESCRIPTION.en_us.html +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/fonts-library/gfs-didot/GFSDidot-Regular.ttf +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/fonts-library/gfs-didot/METADATA.pb +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/fonts-library/gfs-didot/OFL.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/fonts-library/hind/DESCRIPTION.en_us.html +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/fonts-library/hind/Hind-Bold.ttf +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/fonts-library/hind/Hind-Light.ttf +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/fonts-library/hind/Hind-Medium.ttf +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/fonts-library/hind/Hind-Regular.ttf +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/fonts-library/hind/Hind-SemiBold.ttf +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/fonts-library/hind/METADATA.pb +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/fonts-library/hind/OFL.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/fonts-library/inter/Inter-Black.ttf +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/fonts-library/inter/Inter-BlackItalic.ttf +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/fonts-library/inter/Inter-Bold.ttf +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/fonts-library/inter/Inter-BoldItalic.ttf +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/fonts-library/inter/Inter-ExtraBold.ttf +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/fonts-library/inter/Inter-ExtraBoldItalic.ttf +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/fonts-library/inter/Inter-ExtraLight.ttf +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/fonts-library/inter/Inter-ExtraLightItalic.ttf +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/fonts-library/inter/Inter-Italic.ttf +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/fonts-library/inter/Inter-Light.ttf +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/fonts-library/inter/Inter-LightItalic.ttf +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/fonts-library/inter/Inter-Medium.ttf +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/fonts-library/inter/Inter-MediumItalic.ttf +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/fonts-library/inter/Inter-Regular.ttf +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/fonts-library/inter/Inter-SemiBold.ttf +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/fonts-library/inter/Inter-SemiBoldItalic.ttf +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/fonts-library/inter/Inter-Thin.ttf +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/fonts-library/inter/Inter-ThinItalic.ttf +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/fonts-library/inter/LICENSE.txt +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/fonts.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/helpers.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/styles/markers.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/utils.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/src/starplot/warnings.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/tests/__init__.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/tests/data/.keep +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/tests/test_constellations.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/tests/test_stars.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/tests/test_utils.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/tests/utils.py +0 -0
- {starplot-0.15.8 → starplot-0.16.1}/tutorial/build.py +0 -0
|
@@ -1,14 +1,12 @@
|
|
|
1
1
|
# Contributing to Starplot
|
|
2
2
|
|
|
3
|
-
_Work in progress_
|
|
4
|
-
|
|
5
3
|
## Ways to Contribute
|
|
6
4
|
|
|
7
5
|
There are many ways to contribute to Starplot:
|
|
8
6
|
|
|
9
7
|
- Fix typos or clarify documentation
|
|
10
8
|
- Find and fix bugs
|
|
11
|
-
- Implement a feature on the [roadmap](https://
|
|
9
|
+
- Implement a feature on the [roadmap](https://trello.com/b/sUksygn4/starplot-roadmap)
|
|
12
10
|
- Propose a new feature by [opening an issue](https://github.com/steveberardi/starplot/issues)
|
|
13
11
|
|
|
14
12
|
|
|
@@ -41,7 +39,11 @@ When you're new to a codebase it's usually good to start by just checking out th
|
|
|
41
39
|
There are also a few other `make` commands that are useful when developing locally:
|
|
42
40
|
|
|
43
41
|
- `make scratchpad` will run `scripts/scratchpad.py` inside the docker container. The `scratchpad.py` file is not checked in to the repo (so you'll have to create it on your machine), but it's a way to run code with the current state of Starplot on your machine -- very helpful when trying things out.
|
|
42
|
+
- `make profile` will run `scripts/scratchpad.py` through Python's [built-in profiler](https://docs.python.org/3/library/profile.html#module-cProfile) and then start a [snakeviz](https://jiffyclub.github.io/snakeviz/) webserver locally to let you explore the call stack and see runtimes of everything. This can be very helpful when trying to find bottlenecks in code.
|
|
44
43
|
- `make shell` will open a Python shell on the Docker container
|
|
44
|
+
- `make format` will format the code with our standard formatter
|
|
45
|
+
- `make lint` will check for lint (e.g. unused imports) and `make lint ARGS=--fix` can usually autofix things
|
|
46
|
+
- `make docs-serve` will build the docs and start a local webserver for them
|
|
45
47
|
|
|
46
48
|
## Tests
|
|
47
49
|
|
|
@@ -62,7 +64,6 @@ Starplot also has a collection of "hash checks" (located in `hash_checks`). Each
|
|
|
62
64
|
|
|
63
65
|
These hash checks help test things that are hard (or extremely tedious) to test. As a graphics library, Starplot has a LOT of possible uses and output so the hash checks help make some testing easier to manage.
|
|
64
66
|
|
|
65
|
-
_Work in progress_
|
|
66
67
|
|
|
67
68
|
## Code of Conduct
|
|
68
69
|
|
|
@@ -16,7 +16,7 @@ endif
|
|
|
16
16
|
DOCKER_RUN=docker run --rm $(DR_ARGS) -v $(shell pwd):/starplot starplot-dev bash -c
|
|
17
17
|
DOCKER_BUILDER=starplot-builder
|
|
18
18
|
|
|
19
|
-
DOCKER_BUILD_PYTHON=docker build -t starplot-$(PYTHON_VERSION) $(DOCKER_BUILD_ARGS) --build-arg="PYTHON_VERSION=$(PYTHON_VERSION)"
|
|
19
|
+
DOCKER_BUILD_PYTHON=docker build -t starplot-$(PYTHON_VERSION) $(DOCKER_BUILD_ARGS) --build-arg="PYTHON_VERSION=$(PYTHON_VERSION)" .
|
|
20
20
|
DOCKER_RUN_PYTHON_TEST=docker run --rm $(DR_ARGS) starplot-$(PYTHON_VERSION)
|
|
21
21
|
|
|
22
22
|
export PYTHONPATH=./src/
|
|
@@ -28,10 +28,6 @@ build:
|
|
|
28
28
|
touch -a .env
|
|
29
29
|
$(DOCKER_BUILD_PYTHON)
|
|
30
30
|
|
|
31
|
-
docker-multi-arch:
|
|
32
|
-
docker buildx inspect $(DOCKER_BUILDER) && echo "Builder already exists!" || docker buildx create --name $(DOCKER_BUILDER) --bootstrap --use
|
|
33
|
-
docker buildx build --push --platform linux/arm64/v8,linux/amd64 --tag sberardi/starplot-base:latest --target base .
|
|
34
|
-
|
|
35
31
|
lint:
|
|
36
32
|
$(DOCKER_RUN) "ruff check src/ tests/ hash_checks/ $(ARGS)"
|
|
37
33
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: starplot
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.16.1
|
|
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>
|
|
@@ -14,7 +14,8 @@ License-File: LICENSE
|
|
|
14
14
|
Requires-Dist: matplotlib >= 3.8.0
|
|
15
15
|
Requires-Dist: numpy >= 1.26.2
|
|
16
16
|
Requires-Dist: pandas >= 1.4.0
|
|
17
|
-
Requires-Dist: pydantic >= 2.
|
|
17
|
+
Requires-Dist: pydantic >= 2.10.6
|
|
18
|
+
Requires-Dist: pydantic-settings >= 2.10.1
|
|
18
19
|
Requires-Dist: shapely >= 2.0.1
|
|
19
20
|
Requires-Dist: skyfield >= 1.41
|
|
20
21
|
Requires-Dist: cartopy >= 0.21.1
|
|
@@ -25,7 +26,7 @@ Requires-Dist: pyarrow >= 14.0.2
|
|
|
25
26
|
Requires-Dist: pyogrio >= 0.10.0
|
|
26
27
|
Requires-Dist: rtree >= 1.2.0
|
|
27
28
|
Requires-Dist: requests >= 2.31.0
|
|
28
|
-
Requires-Dist: duckdb
|
|
29
|
+
Requires-Dist: duckdb >= 1.1.3
|
|
29
30
|
Requires-Dist: ibis-framework[duckdb, geospatial] < 11
|
|
30
31
|
Project-URL: Documentation, https://starplot.dev
|
|
31
32
|
Project-URL: Home, https://starplot.dev
|
|
@@ -65,18 +66,23 @@ To create a star chart for tonight's sky as seen from [Palomar Mountain](https:/
|
|
|
65
66
|
|
|
66
67
|
```python
|
|
67
68
|
from datetime import datetime
|
|
68
|
-
from
|
|
69
|
-
import starplot as sp
|
|
69
|
+
from zoneinfo import ZoneInfo
|
|
70
70
|
|
|
71
|
-
|
|
71
|
+
from starplot import ZenithPlot, Observer, styles, _
|
|
72
72
|
|
|
73
|
-
|
|
74
|
-
|
|
73
|
+
tz = ZoneInfo("America/Los_Angeles")
|
|
74
|
+
dt = datetime.now(tz).replace(hour=22)
|
|
75
|
+
|
|
76
|
+
observer = Observer(
|
|
77
|
+
dt=dt,
|
|
75
78
|
lat=33.363484,
|
|
76
79
|
lon=-116.836394,
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
+
)
|
|
81
|
+
|
|
82
|
+
p = ZenithPlot(
|
|
83
|
+
observer=observer,
|
|
84
|
+
style=styles.PlotStyle().extend(
|
|
85
|
+
styles.extensions.BLUE_MEDIUM,
|
|
80
86
|
),
|
|
81
87
|
resolution=4096,
|
|
82
88
|
autoscale=True,
|
|
@@ -84,6 +90,7 @@ p = sp.MapPlot(
|
|
|
84
90
|
p.constellations()
|
|
85
91
|
p.stars(where=[_.magnitude < 4.6])
|
|
86
92
|
p.constellation_labels()
|
|
93
|
+
p.horizon()
|
|
87
94
|
p.export("starchart.png")
|
|
88
95
|
```
|
|
89
96
|
|
|
@@ -32,18 +32,23 @@ To create a star chart for tonight's sky as seen from [Palomar Mountain](https:/
|
|
|
32
32
|
|
|
33
33
|
```python
|
|
34
34
|
from datetime import datetime
|
|
35
|
-
from
|
|
36
|
-
import starplot as sp
|
|
35
|
+
from zoneinfo import ZoneInfo
|
|
37
36
|
|
|
38
|
-
|
|
37
|
+
from starplot import ZenithPlot, Observer, styles, _
|
|
39
38
|
|
|
40
|
-
|
|
41
|
-
|
|
39
|
+
tz = ZoneInfo("America/Los_Angeles")
|
|
40
|
+
dt = datetime.now(tz).replace(hour=22)
|
|
41
|
+
|
|
42
|
+
observer = Observer(
|
|
43
|
+
dt=dt,
|
|
42
44
|
lat=33.363484,
|
|
43
45
|
lon=-116.836394,
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
46
|
+
)
|
|
47
|
+
|
|
48
|
+
p = ZenithPlot(
|
|
49
|
+
observer=observer,
|
|
50
|
+
style=styles.PlotStyle().extend(
|
|
51
|
+
styles.extensions.BLUE_MEDIUM,
|
|
47
52
|
),
|
|
48
53
|
resolution=4096,
|
|
49
54
|
autoscale=True,
|
|
@@ -51,6 +56,7 @@ p = sp.MapPlot(
|
|
|
51
56
|
p.constellations()
|
|
52
57
|
p.stars(where=[_.magnitude < 4.6])
|
|
53
58
|
p.constellation_labels()
|
|
59
|
+
p.horizon()
|
|
54
60
|
p.export("starchart.png")
|
|
55
61
|
```
|
|
56
62
|
|
|
@@ -4,11 +4,13 @@
|
|
|
4
4
|
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
|
|
5
5
|
"features": [
|
|
6
6
|
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 344.4653, 35.1682 ], [ 344.3429, 53.168 ] ] } },
|
|
7
|
-
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 344.3429, 53.168 ], [ 351.4529, 53.187 ], [ 351.4657, 50.687 ], [ 355.2706, 50.6929 ], [ 355.2761, 48.6929 ], [
|
|
7
|
+
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 344.3429, 53.168 ], [ 351.4529, 53.187 ], [ 351.4657, 50.687 ], [ 355.2706, 50.6929 ], [ 355.2761, 48.6929 ], [ 360, 48.6929 ] ] } },
|
|
8
|
+
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0, 48.6949 ], [ 4.1464, 48.6949 ], [ 4.1433, 46.6949 ], [ 14.7761, 46.6758 ], [ 14.7889, 48.6757 ], [ 18.5884, 48.6633 ], [ 18.6059, 50.6632 ], [ 22.4079, 50.6479 ] ] } },
|
|
8
9
|
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 22.4079, 50.6479 ], [ 26.9685, 50.6257 ], [ 26.9314, 47.6258 ], [ 32.6215, 47.5928 ], [ 32.6738, 51.0926 ], [ 39.8855, 51.0424 ], [ 39.6793, 37.2932 ] ] } },
|
|
9
10
|
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 39.6793, 37.2932 ], [ 31.8711, 37.3471 ], [ 31.8543, 35.5971 ], [ 22.9108, 35.6453 ], [ 22.8974, 33.6454 ] ] } },
|
|
10
11
|
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 22.8974, 33.6454 ], [ 12.4431, 33.6819 ], [ 12.4135, 24.4319 ], [ 14.4241, 24.4266 ], [ 14.4148, 21.6766 ], [ 3.7399, 21.6952 ] ] } },
|
|
11
|
-
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 3.7399, 21.6952 ], [ 3.7406, 22.6952 ], [ 2.61, 22.6958 ], [ 2.6128, 28.6958 ], [ 1.6062, 28.696 ], [ 1.607, 32.0294 ], [
|
|
12
|
+
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 3.7399, 21.6952 ], [ 3.7406, 22.6952 ], [ 2.61, 22.6958 ], [ 2.6128, 28.6958 ], [ 1.6062, 28.696 ], [ 1.607, 32.0294 ], [ 0, 32.0294 ] ] } },
|
|
13
|
+
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 360, 32.0285 ], [ 357.8287, 32.0285 ], [ 357.8281, 32.7785 ], [ 354.0492, 32.7746 ], [ 354.0442, 35.1913 ], [ 344.4653, 35.1682 ] ] } },
|
|
12
14
|
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 141.9043, -24.5425 ], [ 141.7716, -37.292 ] ] } },
|
|
13
15
|
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 141.7716, -37.292 ], [ 141.7341, -40.2919 ], [ 166.4565, -40.4246 ] ] } },
|
|
14
16
|
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 166.4565, -40.4246 ], [ 166.4794, -35.6747 ] ] } },
|
|
@@ -101,7 +103,8 @@
|
|
|
101
103
|
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 135.2437, -75.4955 ], [ 169.857, -75.684 ] ] } },
|
|
102
104
|
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 169.857, -75.684 ], [ 170.0848, -64.6843 ] ] } },
|
|
103
105
|
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 344.3429, 53.168 ], [ 344.304, 56.918 ] ] } },
|
|
104
|
-
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 344.304, 56.918 ], [ 344.2691, 59.7512 ], [ 348.8597, 59.7647 ], [ 348.8165, 63.6813 ], [ 355.2176, 63.6929 ], [ 355.1979, 66.6929 ], [
|
|
106
|
+
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 344.304, 56.918 ], [ 344.2691, 59.7512 ], [ 348.8597, 59.7647 ], [ 348.8165, 63.6813 ], [ 355.2176, 63.6929 ], [ 355.1979, 66.6929 ], [ 360, 66.6929 ] ] } },
|
|
107
|
+
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0, 66.6924 ], [ 6.7638, 66.6924 ], [ 6.9229, 77.6923 ], [ 55.3087, 77.4163 ] ] } },
|
|
105
108
|
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 48.9009, 57.4685 ], [ 38.7623, 57.5513 ], [ 38.8024, 59.0512 ], [ 30.7956, 59.1046 ], [ 30.7736, 58.1047 ], [ 27.5952, 58.1227 ], [ 27.5336, 54.6229 ], [ 22.456, 54.6478 ], [ 22.4079, 50.6479 ] ] } },
|
|
106
109
|
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 166.4565, -40.4246 ], [ 166.3373, -57.1744 ] ] } },
|
|
107
110
|
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 170.0848, -64.6843 ], [ 179.0574, -64.6958 ] ] } },
|
|
@@ -113,14 +116,17 @@
|
|
|
113
116
|
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 225.6308, -29.9949 ], [ 190.4174, -30.1864 ], [ 190.4272, -33.6864 ], [ 185.3874, -33.6939 ], [ 185.3903, -35.6939 ], [ 180.0, -35.6747 ] ] } },
|
|
114
117
|
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 180.0, -35.6747 ], [ 166.4794, -35.6747 ] ] } },
|
|
115
118
|
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 300.5733, 59.8511 ], [ 300.4852, 61.8506 ], [ 306.8119, 61.9144 ], [ 306.5174, 67.413 ], [ 310.334, 67.449 ], [ 309.573, 75.4455 ], [ 301.8734, 75.3709 ], [ 300.6738, 80.3648 ], [ 313.7059, 80.4868 ], [ 308.721, 86.4656 ] ] } },
|
|
116
|
-
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 308.721, 86.4656 ], [ 308.3314, 86.6306 ], [ 343.5107, 86.8369 ], [ 339.261, 88.6639 ], [
|
|
119
|
+
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 308.721, 86.4656 ], [ 308.3314, 86.6306 ], [ 343.5107, 86.8369 ], [ 339.261, 88.6639 ], [ 360, 88.6639 ] ] } },
|
|
120
|
+
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0, 88.6092 ], [ 0.9483, 88.6092 ], [ 24.7077, 88.3564 ], [ 57.6647, 88.0063 ], [ 135.8325, 87.5689 ], [ 130.4028, 86.0975 ] ] } },
|
|
117
121
|
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 344.304, 56.918 ], [ 335.9109, 56.8826 ], [ 335.9313, 55.6326 ], [ 333.1376, 55.6178 ], [ 333.1747, 53.3679 ], [ 330.6392, 53.3533 ] ] } },
|
|
118
122
|
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 330.6392, 53.3533 ], [ 330.6022, 55.4365 ], [ 309.8314, 55.2753 ], [ 309.6238, 61.3577 ], [ 308.6608, 61.3486 ], [ 308.7166, 59.9322 ], [ 300.5733, 59.8511 ] ] } },
|
|
119
|
-
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 359.1033, -6.3042 ], [
|
|
123
|
+
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 359.1033, -6.3042 ], [ 360, -6.3042 ] ] } },
|
|
124
|
+
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0, -6.3075 ], [ 6.5927, -6.3075 ], [ 6.6013, 0.6925 ], [ 6.6038, 2.6925 ], [ 31.6153, 2.5979 ], [ 31.6652, 10.5144 ] ] } },
|
|
120
125
|
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 50.9464, 10.3632 ], [ 50.853, 0.447 ], [ 50.8367, -1.303 ] ] } },
|
|
121
126
|
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 50.8367, -1.303 ], [ 41.3392, -1.221 ], [ 41.1488, -23.8536 ] ] } },
|
|
122
|
-
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 41.1488, -23.8536 ], [ 26.466, -23.7563 ], [ 26.4589, -24.
|
|
123
|
-
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [
|
|
127
|
+
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 41.1488, -23.8536 ], [ 26.466, -23.7563 ], [ 26.4589, -24.8042 ] ] } },
|
|
128
|
+
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0, -24.8042 ], [ 26.4589, -24.8042 ] ] } },
|
|
129
|
+
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 359.1106, -24.8042 ], [ 360, -24.8042 ] ] } },
|
|
124
130
|
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 111.6521, -82.7759 ], [ 180.0, -83.0 ] ] } },
|
|
125
131
|
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 180.0, -83.0 ], [ 209.1111, -83.1201 ] ] } },
|
|
126
132
|
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 207.7814, -75.6236 ], [ 180.0, -75.684 ] ] } },
|
|
@@ -245,7 +251,8 @@
|
|
|
245
251
|
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 232.5499, -60.4355 ], [ 249.0347, -60.2645 ] ] } },
|
|
246
252
|
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 248.5706, -45.7671 ], [ 248.4948, -42.2675 ], [ 242.1528, -42.3367 ] ] } },
|
|
247
253
|
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 274.1951, -74.9745 ], [ 323.1848, -74.4545 ] ] } },
|
|
248
|
-
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 351.9978, -74.
|
|
254
|
+
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 351.9978, -74.304 ], [ 360, -74.304 ] ] } },
|
|
255
|
+
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0, -74.304 ], [ 1.5663, -74.304 ] ] } },
|
|
249
256
|
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 240.387, -3.6026 ], [ 245.6384, -3.5462 ], [ 245.6026, -0.2964 ], [ 245.5586, 3.7034 ] ] } },
|
|
250
257
|
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 281.4586, 6.3792 ], [ 275.2746, 6.3048 ], [ 275.296, 4.5549 ], [ 277.9211, 4.5866 ], [ 277.9392, 3.0867 ], [ 275.3142, 3.055 ], [ 275.3506, 0.0552 ], [ 269.101, -0.0206 ], [ 269.1497, -4.0204 ], [ 271.1497, -3.9961 ], [ 271.2237, -9.9956 ], [ 266.7238, -10.0502 ], [ 266.7447, -11.7168 ], [ 265.4944, -11.7319 ], [ 265.4735, -10.0654 ], [ 259.2221, -10.1404 ], [ 259.2974, -16.14 ], [ 265.8002, -16.0619 ] ] } },
|
|
251
258
|
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 265.8002, -16.0619 ], [ 266.0018, -30.0607 ] ] } },
|
|
@@ -253,11 +260,14 @@
|
|
|
253
260
|
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 70.8524, 0.2375 ], [ 71.034, 15.7365 ], [ 76.2889, 15.6755 ], [ 76.2953, 16.1755 ], [ 81.7987, 16.1101 ], [ 81.7922, 15.6101 ], [ 85.7936, 15.5619 ], [ 85.7551, 12.5622 ], [ 88.2554, 12.5319 ], [ 88.3272, 18.0314 ], [ 87.327, 18.0435 ], [ 87.3938, 22.8765 ], [ 90.144, 22.8431 ] ] } },
|
|
254
261
|
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 307.4588, -56.5886 ], [ 272.6723, -56.9838 ] ] } },
|
|
255
262
|
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 317.1788, 20.0046 ], [ 320.1884, 20.0291 ], [ 320.1517, 24.0289 ], [ 322.662, 24.0482 ], [ 322.6202, 28.5481 ] ] } },
|
|
256
|
-
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 3.7399, 21.6952 ], [ 3.7341, 13.1952 ], [ 1.6032, 13.196 ], [ 1.6027, 10.696 ], [
|
|
263
|
+
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 3.7399, 21.6952 ], [ 3.7341, 13.1952 ], [ 1.6032, 13.196 ], [ 1.6027, 10.696 ], [ 0, 10.696 ] ] } },
|
|
264
|
+
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 360, 10.6958 ], [ 359.0971, 10.6958 ], [ 359.098, 8.1958 ], [ 342.8214, 8.1622 ], [ 342.8422, 2.6622 ] ] } },
|
|
257
265
|
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 42.6284, 31.1865 ], [ 42.6665, 34.5197 ], [ 40.4024, 34.5375 ], [ 40.4347, 37.2874 ], [ 39.6793, 37.2932 ] ] } },
|
|
258
266
|
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 69.4869, 30.9219 ], [ 52.4267, 31.1004 ] ] } },
|
|
259
|
-
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 351.7685, -56.3127 ], [ 351.7784, -57.
|
|
260
|
-
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [
|
|
267
|
+
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 351.7685, -56.3127 ], [ 351.7784, -57.8484 ], [ 360, -57.8484 ] ] } },
|
|
268
|
+
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 0, -57.8484 ], [ 21.2062, -57.8484 ] ] } },
|
|
269
|
+
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 26.3507, -39.3726 ], [ 0.6029, -39.3128 ], [ 0, -39.3128 ] ] } },
|
|
270
|
+
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 351.6927, -39.3128 ], [ 360, -39.3128 ] ] } },
|
|
261
271
|
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 98.9372, -64.107 ], [ 102.7033, -64.1519 ] ] } },
|
|
262
272
|
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 90.7489, -50.7545 ], [ 90.9518, -43.0058 ] ] } },
|
|
263
273
|
{ "type": "Feature", "properties": { }, "geometry": { "type": "LineString", "coordinates": [ [ 22.8974, 33.6454 ], [ 22.8664, 28.6454 ], [ 26.7647, 28.6263 ], [ 26.7447, 25.6263 ] ] } },
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
👷 **Work In Progress** 🚧 Starplot is still very much a work in progress, and under active development. We try to follow [semantic versioning](https://semver.org/), which means that [_anything_ can change between versions before `1.0.0`](https://semver.org/#spec-item-4).
|
|
6
6
|
|
|
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!
|
|
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 (2026+). 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
9
|
--8<-- "docs/snippets/_newsletter.html"
|
|
10
10
|
|
|
@@ -1,4 +1,24 @@
|
|
|
1
|
+
## v0.16.x
|
|
2
|
+
[Migration Guide](migration-guides/0.16.0.md)
|
|
3
|
+
|
|
4
|
+
- Adds support for gradient backgrounds
|
|
5
|
+
- Refactors projections, allowing you to change central RA/DEC
|
|
6
|
+
- Adds equidistant and oblique Mercator projections
|
|
7
|
+
- Introduces an Observer model to encapsulate a time and place
|
|
8
|
+
- Makes zenith plots a separate plot type
|
|
9
|
+
- Adds a function for plotting a star magnitude scale (experimental, feedback wanted!)
|
|
10
|
+
- Adds more location options for legends and allows separate X/Y padding
|
|
11
|
+
- Adds a `settings` class for managing global settings
|
|
12
|
+
- Adds a global setting for how text is rendered in SVG exports
|
|
13
|
+
- Adds more options for plotting gridlines on horizon plots
|
|
14
|
+
- Adds a `common_names` field to deep sky objects
|
|
15
|
+
- Added more public properties to plots (including `magnitude_range` and `alt`/`az` for optic plots)
|
|
16
|
+
- Adds the `BLUE_NIGHT` plot style
|
|
17
|
+
- [**v0.16.1**] Fixes constellation borders and Milky Way outline when they cross the first point of Aries (RA=0)
|
|
18
|
+
|
|
1
19
|
## v0.15.x
|
|
20
|
+
[Documentation](https://archives.starplot.dev/0.15.8/)
|
|
21
|
+
|
|
2
22
|
- Replaces data backend with DuckDB + Ibis, making plotting 2-3x faster and object lookup up to 10x faster
|
|
3
23
|
- Changes default unit of right ascension to degrees (0...360)
|
|
4
24
|
- Improves performance of constellation label placement
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
<table class="table-coming-soon">
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
<tr>
|
|
6
|
+
<td>v0.17</td>
|
|
7
|
+
|
|
8
|
+
<td>
|
|
9
|
+
<h4>⭐ Next Release ⭐</h4>
|
|
10
|
+
<ul>
|
|
11
|
+
<li>Custom star catalogs</li>
|
|
12
|
+
<li>Custom sky cultures (constellations, star names)</li>
|
|
13
|
+
</ul>
|
|
14
|
+
|
|
15
|
+
</td>
|
|
16
|
+
<td></td>
|
|
17
|
+
</tr>
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
<tr>
|
|
21
|
+
<td>v0.18</td>
|
|
22
|
+
|
|
23
|
+
<td>
|
|
24
|
+
<ul>
|
|
25
|
+
<li>Support for more coordinate systems</li>
|
|
26
|
+
</ul>
|
|
27
|
+
|
|
28
|
+
</td>
|
|
29
|
+
|
|
30
|
+
<td></td>
|
|
31
|
+
|
|
32
|
+
</tr>
|
|
33
|
+
|
|
34
|
+
<tr>
|
|
35
|
+
<td>v0.18+</td>
|
|
36
|
+
|
|
37
|
+
<td>
|
|
38
|
+
<ul>
|
|
39
|
+
<li>Planet moons</li>
|
|
40
|
+
<li>Comet model</li>
|
|
41
|
+
<li>Area-based labeling</li>
|
|
42
|
+
<li>Improved line labeling</li>
|
|
43
|
+
</ul>
|
|
44
|
+
|
|
45
|
+
</td>
|
|
46
|
+
|
|
47
|
+
<td></td>
|
|
48
|
+
|
|
49
|
+
</tr>
|
|
50
|
+
|
|
51
|
+
<tr class="blue-box">
|
|
52
|
+
<td colspan="3">
|
|
53
|
+
<em>See more details on the <a href="https://trello.com/b/sUksygn4/starplot-roadmap">Public Roadmap</a> 🚀 </em>
|
|
54
|
+
</td>
|
|
55
|
+
</tr>
|
|
56
|
+
</table>
|
|
57
|
+
|
|
58
|
+
**Help us launch these features sooner by [becoming a contributor](https://github.com/steveberardi/starplot/blob/main/CONTRIBUTING.md)!**
|
|
59
|
+
|
|
60
|
+
<br/>
|
|
61
|
+
|
|
62
|
+
--8<-- "docs/snippets/_newsletter.html"
|
|
63
|
+
|
|
64
|
+
<br/>
|
|
65
|
+
<br/>
|
|
66
|
+
<br/>
|
|
@@ -5,8 +5,6 @@
|
|
|
5
5
|
--md-primary-fg-color--light: hsl(209, 53%, 70%);
|
|
6
6
|
--md-primary-bg-color--light: hsl(209, 78%, 90%);
|
|
7
7
|
--md-primary-fg-color--dark: hsl(209, 53%, 27%);
|
|
8
|
-
|
|
9
|
-
/* --md-accent-fg-color: hsl(209, 73%, 47%); */
|
|
10
8
|
}
|
|
11
9
|
|
|
12
10
|
.md-typeset h1,
|
|
@@ -20,16 +18,25 @@
|
|
|
20
18
|
}
|
|
21
19
|
|
|
22
20
|
.doc-heading {
|
|
23
|
-
|
|
21
|
+
display: flex;
|
|
22
|
+
align-items: center;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.doc-heading span {
|
|
26
|
+
margin-left: 8px;
|
|
24
27
|
}
|
|
25
28
|
|
|
26
29
|
.doc-heading code {
|
|
27
|
-
padding: 0.5rem;
|
|
28
|
-
width: 100%;
|
|
29
|
-
display: inline-block;
|
|
30
30
|
font-weight: 600;
|
|
31
31
|
}
|
|
32
32
|
|
|
33
|
+
code.doc-symbol {
|
|
34
|
+
border-radius: 8px;
|
|
35
|
+
font-size: 0.6em;
|
|
36
|
+
padding: 2px 6px;
|
|
37
|
+
margin: 6px 4px;
|
|
38
|
+
}
|
|
39
|
+
|
|
33
40
|
.fg-primary {
|
|
34
41
|
color: var(--md-primary-fg-color);
|
|
35
42
|
}
|
|
@@ -76,6 +83,8 @@
|
|
|
76
83
|
}
|
|
77
84
|
|
|
78
85
|
[data-md-color-scheme=default] {
|
|
86
|
+
--doc-symbol-class-bg-color: hsl(209, 74%, 90%);
|
|
87
|
+
|
|
79
88
|
.doc-function .doc-heading {
|
|
80
89
|
background-color: hsl(209, 53%, 81%);
|
|
81
90
|
}
|
|
@@ -90,6 +99,9 @@
|
|
|
90
99
|
}
|
|
91
100
|
}
|
|
92
101
|
[data-md-color-scheme=slate] {
|
|
102
|
+
|
|
103
|
+
--md-typeset-a-color: hsl(209, 63%, 65%);
|
|
104
|
+
|
|
93
105
|
.doc-function .doc-heading {
|
|
94
106
|
background-color: hsl(209, 53%, 21%);
|
|
95
107
|
}
|
|
@@ -349,10 +361,10 @@ code.raw {
|
|
|
349
361
|
}
|
|
350
362
|
|
|
351
363
|
.tutorial-top-nav {
|
|
352
|
-
border
|
|
353
|
-
border-
|
|
354
|
-
padding:
|
|
355
|
-
margin-bottom:
|
|
364
|
+
border: 1px solid hsl(216, 50%, 84%);
|
|
365
|
+
border-radius: 8px;
|
|
366
|
+
padding: 10px 14px;
|
|
367
|
+
margin-bottom: 28px;
|
|
356
368
|
|
|
357
369
|
background-color: var(--doc-symbol-class-bg-color);
|
|
358
370
|
p {
|
|
@@ -501,3 +513,46 @@ td[data-column-id=bayer] {
|
|
|
501
513
|
grid-template-columns: 1fr 3fr;
|
|
502
514
|
}
|
|
503
515
|
}
|
|
516
|
+
|
|
517
|
+
.blue-box {
|
|
518
|
+
/* border: 1px solid hsl(216, 50%, 84%); */
|
|
519
|
+
border-radius: 8px;
|
|
520
|
+
padding: 20px 24px;
|
|
521
|
+
margin-bottom: 40px;
|
|
522
|
+
background-color: rgba(143, 181, 255, 0.15);
|
|
523
|
+
font-size: 1.25em;
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
.table-coming-soon {
|
|
527
|
+
background-color: var(--md-default-bg-color);
|
|
528
|
+
border: 1px solid hsl(209, 53%, 56%) !important;
|
|
529
|
+
border-radius: 10px;
|
|
530
|
+
border-collapse: collapse;
|
|
531
|
+
display: inline-block;
|
|
532
|
+
max-width: 100%;
|
|
533
|
+
overflow: auto;
|
|
534
|
+
touch-action: auto;
|
|
535
|
+
|
|
536
|
+
tr {
|
|
537
|
+
border-top: 1px solid hsl(209, 53%, 56%) !important;
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
tr:first-child {
|
|
541
|
+
border-top: none !important;
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
tr:last-child {
|
|
545
|
+
border-bottom: none !important;
|
|
546
|
+
border-left: none !important;
|
|
547
|
+
border-right: none !important;
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
td {
|
|
551
|
+
/* border-top: 1px solid hsl(209, 53%, 56%) !important; */
|
|
552
|
+
padding: 8px 16px;
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
ul, h4 {
|
|
556
|
+
margin-top: 0;
|
|
557
|
+
}
|
|
558
|
+
}
|
|
@@ -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 %}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: Horizon Gradient
|
|
3
|
+
---
|
|
4
|
+
[:octicons-arrow-left-24: Back to Examples](/examples)
|
|
5
|
+
|
|
6
|
+
# Horizon Gradient {.example-header}
|
|
7
|
+
|
|
8
|
+

|
|
9
|
+
|
|
10
|
+
This plot shows what was in the sky when looking south from Stonehaugh, England on July 26, 2025 at 11pm BST. A color gradient has been applied for visual effect.
|
|
11
|
+
|
|
12
|
+
Learn more about using gradient backgrounds by reading the docs on the [style's background color](/reference-styling/#starplot.PlotStyle.background_color).
|
|
13
|
+
|
|
14
|
+
```python
|
|
15
|
+
--8<-- "examples/horizon_gradient.py"
|
|
16
|
+
```
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
---
|
|
2
|
-
title:
|
|
2
|
+
title: The Big Dipper with Custom Markers
|
|
3
3
|
---
|
|
4
4
|
[:octicons-arrow-left-24: Back to Examples](/examples)
|
|
5
5
|
|
|
6
|
-
#
|
|
6
|
+
# The Big Dipper with Custom Markers {.example-header}
|
|
7
7
|
|
|
8
8
|

|
|
9
9
|
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: Carina Nebula + Clusters
|
|
3
|
+
---
|
|
4
|
+
[:octicons-arrow-left-24: Back to Examples](/examples)
|
|
5
|
+
|
|
6
|
+
# Carina Nebula + Clusters {.example-header}
|
|
7
|
+
|
|
8
|
+

|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
```python
|
|
12
|
+
--8<-- "examples/map_carina.py"
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
---
|
|
2
|
-
title:
|
|
2
|
+
title: The Milky Way
|
|
3
3
|
---
|
|
4
4
|
[:octicons-arrow-left-24: Back to Examples](/examples)
|
|
5
5
|
|
|
6
|
-
#
|
|
6
|
+
# The Milky Way {.example-header}
|
|
7
7
|
|
|
8
8
|

|
|
9
9
|
|
|
@@ -8,7 +8,7 @@ title: Star Chart with More Detail
|
|
|
8
8
|
|
|
9
9
|

|
|
10
10
|
|
|
11
|
-
Building on the first example, you can also plot additional objects and even customize their style. Here's an example that plots a bunch of extra stuff (including the Milky Way,
|
|
11
|
+
Building on the first example, you can also plot additional objects and even customize their style. Here's an example that plots a bunch of extra stuff (including the Milky Way, ecliptic, Deep Sky Objects, and more). It also demonstrates how you can plot your own markers, like the dashed yellow circle around the [Coma Star Cluster](https://en.wikipedia.org/wiki/Coma_Star_Cluster) (Melotte 111):
|
|
12
12
|
|
|
13
13
|
```python
|
|
14
14
|
--8<-- "examples/star_chart_detail.py"
|