├── .flake8 ├── .github ├── dependabot.yml └── workflows │ ├── ci_tests.yml │ └── publish.yml ├── .gitignore ├── .readthedocs.yaml ├── CHANGES.rst ├── CITATION.bib ├── LICENSE.rst ├── MANIFEST.in ├── README.rst ├── astroplan ├── __init__.py ├── constraints.py ├── exceptions.py ├── moon.py ├── observer.py ├── periodic.py ├── plots │ ├── __init__.py │ ├── finder.py │ ├── mplstyles.py │ ├── sky.py │ ├── tests │ │ ├── __init__.py │ │ ├── baseline_images │ │ │ └── test_image_example.png │ │ └── test_sky.py │ └── time_dependent.py ├── scheduling.py ├── target.py ├── tests │ ├── __init__.py │ ├── test_constraints.py │ ├── test_moon.py │ ├── test_observer.py │ ├── test_periodic.py │ ├── test_scheduling.py │ ├── test_target.py │ └── test_utils.py └── utils.py ├── conftest.py ├── docs ├── Makefile ├── _templates │ ├── autosummary │ │ ├── base.rst │ │ ├── class.rst │ │ └── module.rst │ └── layout.html ├── api.rst ├── changelog.rst ├── conf.py ├── faq │ ├── contribute.rst │ ├── iers.rst │ ├── index.rst │ ├── precision.rst │ └── terminology.rst ├── getting_started.rst ├── index.rst ├── installation.rst ├── make.bat ├── references.txt ├── robots.txt └── tutorials │ ├── constraints.rst │ ├── index.rst │ ├── periodic.rst │ ├── plots.rst │ ├── scheduling.rst │ ├── speed.rst │ └── summer_triangle.rst ├── licenses └── README.rst ├── pyproject.toml └── tox.ini /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/.github/workflows/ci_tests.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /CITATION.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/CITATION.bib -------------------------------------------------------------------------------- /LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/LICENSE.rst -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/README.rst -------------------------------------------------------------------------------- /astroplan/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/astroplan/__init__.py -------------------------------------------------------------------------------- /astroplan/constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/astroplan/constraints.py -------------------------------------------------------------------------------- /astroplan/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/astroplan/exceptions.py -------------------------------------------------------------------------------- /astroplan/moon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/astroplan/moon.py -------------------------------------------------------------------------------- /astroplan/observer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/astroplan/observer.py -------------------------------------------------------------------------------- /astroplan/periodic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/astroplan/periodic.py -------------------------------------------------------------------------------- /astroplan/plots/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/astroplan/plots/__init__.py -------------------------------------------------------------------------------- /astroplan/plots/finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/astroplan/plots/finder.py -------------------------------------------------------------------------------- /astroplan/plots/mplstyles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/astroplan/plots/mplstyles.py -------------------------------------------------------------------------------- /astroplan/plots/sky.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/astroplan/plots/sky.py -------------------------------------------------------------------------------- /astroplan/plots/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /astroplan/plots/tests/baseline_images/test_image_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/astroplan/plots/tests/baseline_images/test_image_example.png -------------------------------------------------------------------------------- /astroplan/plots/tests/test_sky.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/astroplan/plots/tests/test_sky.py -------------------------------------------------------------------------------- /astroplan/plots/time_dependent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/astroplan/plots/time_dependent.py -------------------------------------------------------------------------------- /astroplan/scheduling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/astroplan/scheduling.py -------------------------------------------------------------------------------- /astroplan/target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/astroplan/target.py -------------------------------------------------------------------------------- /astroplan/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /astroplan/tests/test_constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/astroplan/tests/test_constraints.py -------------------------------------------------------------------------------- /astroplan/tests/test_moon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/astroplan/tests/test_moon.py -------------------------------------------------------------------------------- /astroplan/tests/test_observer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/astroplan/tests/test_observer.py -------------------------------------------------------------------------------- /astroplan/tests/test_periodic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/astroplan/tests/test_periodic.py -------------------------------------------------------------------------------- /astroplan/tests/test_scheduling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/astroplan/tests/test_scheduling.py -------------------------------------------------------------------------------- /astroplan/tests/test_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/astroplan/tests/test_target.py -------------------------------------------------------------------------------- /astroplan/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/astroplan/tests/test_utils.py -------------------------------------------------------------------------------- /astroplan/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/astroplan/utils.py -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/conftest.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_templates/autosummary/base.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/docs/_templates/autosummary/base.rst -------------------------------------------------------------------------------- /docs/_templates/autosummary/class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/docs/_templates/autosummary/class.rst -------------------------------------------------------------------------------- /docs/_templates/autosummary/module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/docs/_templates/autosummary/module.rst -------------------------------------------------------------------------------- /docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/docs/_templates/layout.html -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/faq/contribute.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/docs/faq/contribute.rst -------------------------------------------------------------------------------- /docs/faq/iers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/docs/faq/iers.rst -------------------------------------------------------------------------------- /docs/faq/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/docs/faq/index.rst -------------------------------------------------------------------------------- /docs/faq/precision.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/docs/faq/precision.rst -------------------------------------------------------------------------------- /docs/faq/terminology.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/docs/faq/terminology.rst -------------------------------------------------------------------------------- /docs/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/docs/getting_started.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/references.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/docs/references.txt -------------------------------------------------------------------------------- /docs/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/docs/robots.txt -------------------------------------------------------------------------------- /docs/tutorials/constraints.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/docs/tutorials/constraints.rst -------------------------------------------------------------------------------- /docs/tutorials/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/docs/tutorials/index.rst -------------------------------------------------------------------------------- /docs/tutorials/periodic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/docs/tutorials/periodic.rst -------------------------------------------------------------------------------- /docs/tutorials/plots.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/docs/tutorials/plots.rst -------------------------------------------------------------------------------- /docs/tutorials/scheduling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/docs/tutorials/scheduling.rst -------------------------------------------------------------------------------- /docs/tutorials/speed.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/docs/tutorials/speed.rst -------------------------------------------------------------------------------- /docs/tutorials/summer_triangle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/docs/tutorials/summer_triangle.rst -------------------------------------------------------------------------------- /licenses/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/licenses/README.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/astropy/astroplan/HEAD/tox.ini --------------------------------------------------------------------------------