├── .github └── workflows │ ├── check-links.yml │ └── linting.yml ├── .lycheeignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md └── assets └── docs ├── calibration-frames-cheatsheet.pdf └── idas-test-report.pdf /.github/workflows/check-links.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunohodov/awesome-astrophotography/HEAD/.github/workflows/check-links.yml -------------------------------------------------------------------------------- /.github/workflows/linting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunohodov/awesome-astrophotography/HEAD/.github/workflows/linting.yml -------------------------------------------------------------------------------- /.lycheeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunohodov/awesome-astrophotography/HEAD/.lycheeignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunohodov/awesome-astrophotography/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunohodov/awesome-astrophotography/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunohodov/awesome-astrophotography/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunohodov/awesome-astrophotography/HEAD/README.md -------------------------------------------------------------------------------- /assets/docs/calibration-frames-cheatsheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunohodov/awesome-astrophotography/HEAD/assets/docs/calibration-frames-cheatsheet.pdf -------------------------------------------------------------------------------- /assets/docs/idas-test-report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lunohodov/awesome-astrophotography/HEAD/assets/docs/idas-test-report.pdf --------------------------------------------------------------------------------