├── .gitignore ├── LICENSE ├── README.md ├── astrometry.py ├── extract_sources.py ├── get_catalog_data.py ├── get_transformation.py ├── photometry.py ├── required_software.txt ├── sample_images ├── sample_file.fits ├── sample_file_input.png ├── sample_file_photometry_result.png ├── sample_file_result.png ├── sample_run.gif └── targets.csv ├── settings.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaswenzl/astrometry/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaswenzl/astrometry/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaswenzl/astrometry/HEAD/README.md -------------------------------------------------------------------------------- /astrometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaswenzl/astrometry/HEAD/astrometry.py -------------------------------------------------------------------------------- /extract_sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaswenzl/astrometry/HEAD/extract_sources.py -------------------------------------------------------------------------------- /get_catalog_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaswenzl/astrometry/HEAD/get_catalog_data.py -------------------------------------------------------------------------------- /get_transformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaswenzl/astrometry/HEAD/get_transformation.py -------------------------------------------------------------------------------- /photometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaswenzl/astrometry/HEAD/photometry.py -------------------------------------------------------------------------------- /required_software.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaswenzl/astrometry/HEAD/required_software.txt -------------------------------------------------------------------------------- /sample_images/sample_file.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaswenzl/astrometry/HEAD/sample_images/sample_file.fits -------------------------------------------------------------------------------- /sample_images/sample_file_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaswenzl/astrometry/HEAD/sample_images/sample_file_input.png -------------------------------------------------------------------------------- /sample_images/sample_file_photometry_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaswenzl/astrometry/HEAD/sample_images/sample_file_photometry_result.png -------------------------------------------------------------------------------- /sample_images/sample_file_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaswenzl/astrometry/HEAD/sample_images/sample_file_result.png -------------------------------------------------------------------------------- /sample_images/sample_run.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaswenzl/astrometry/HEAD/sample_images/sample_run.gif -------------------------------------------------------------------------------- /sample_images/targets.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaswenzl/astrometry/HEAD/sample_images/targets.csv -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaswenzl/astrometry/HEAD/settings.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukaswenzl/astrometry/HEAD/setup.py --------------------------------------------------------------------------------