├── .flake8 ├── .github └── workflows │ ├── black.yml │ ├── flake8.yml │ ├── tests.yml │ └── update.yaml ├── .gitignore ├── LICENSE ├── Makefile ├── docs ├── README.md ├── about.md ├── figures │ ├── tess_1_archive.png │ ├── tess_1_predict.png │ ├── tess_4_separation.png │ ├── tess_accuracy.png │ └── tess_camera.png ├── images │ └── logo.png ├── tutorial.ipynb ├── tutorial.md ├── tutorial2.ipynb ├── tutorial2.md ├── tutorial3.ipynb ├── tutorial3.md ├── tutorial3_files │ └── tutorial3_10_0.png └── tutorial_files │ ├── tutorial_14_1.png │ ├── tutorial_18_1.png │ ├── tutorial_21_1.png │ ├── tutorial_24_0.png │ ├── tutorial_36_0.png │ └── tutorial_40_0.png ├── mkdocs.yml ├── poetry.lock ├── pyproject.toml ├── src └── tesswcs │ ├── __init__.py │ ├── data │ ├── TESS_wcs_M.json.bz2 │ ├── TESS_wcs_Ms.json.bz2 │ ├── TESS_wcs_data.json.bz2 │ ├── TESS_wcs_offset_weights.json.bz2 │ ├── TESS_wcs_sip.json.bz2 │ ├── TESS_wcs_xcent.json.bz2 │ ├── TESS_wcs_xs.json.bz2 │ ├── TESS_wcs_ycent.json.bz2 │ ├── TESS_wcs_ys.json.bz2 │ └── pointings.csv │ ├── database.py │ ├── locate.py │ ├── tesswcs.py │ └── utils.py └── tests ├── __init__.py ├── test_locate.py └── test_tesswcs.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/black.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/.github/workflows/black.yml -------------------------------------------------------------------------------- /.github/workflows/flake8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/.github/workflows/flake8.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.github/workflows/update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/.github/workflows/update.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/Makefile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/docs/about.md -------------------------------------------------------------------------------- /docs/figures/tess_1_archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/docs/figures/tess_1_archive.png -------------------------------------------------------------------------------- /docs/figures/tess_1_predict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/docs/figures/tess_1_predict.png -------------------------------------------------------------------------------- /docs/figures/tess_4_separation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/docs/figures/tess_4_separation.png -------------------------------------------------------------------------------- /docs/figures/tess_accuracy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/docs/figures/tess_accuracy.png -------------------------------------------------------------------------------- /docs/figures/tess_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/docs/figures/tess_camera.png -------------------------------------------------------------------------------- /docs/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/docs/images/logo.png -------------------------------------------------------------------------------- /docs/tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/docs/tutorial.ipynb -------------------------------------------------------------------------------- /docs/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/docs/tutorial.md -------------------------------------------------------------------------------- /docs/tutorial2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/docs/tutorial2.ipynb -------------------------------------------------------------------------------- /docs/tutorial2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/docs/tutorial2.md -------------------------------------------------------------------------------- /docs/tutorial3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/docs/tutorial3.ipynb -------------------------------------------------------------------------------- /docs/tutorial3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/docs/tutorial3.md -------------------------------------------------------------------------------- /docs/tutorial3_files/tutorial3_10_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/docs/tutorial3_files/tutorial3_10_0.png -------------------------------------------------------------------------------- /docs/tutorial_files/tutorial_14_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/docs/tutorial_files/tutorial_14_1.png -------------------------------------------------------------------------------- /docs/tutorial_files/tutorial_18_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/docs/tutorial_files/tutorial_18_1.png -------------------------------------------------------------------------------- /docs/tutorial_files/tutorial_21_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/docs/tutorial_files/tutorial_21_1.png -------------------------------------------------------------------------------- /docs/tutorial_files/tutorial_24_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/docs/tutorial_files/tutorial_24_0.png -------------------------------------------------------------------------------- /docs/tutorial_files/tutorial_36_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/docs/tutorial_files/tutorial_36_0.png -------------------------------------------------------------------------------- /docs/tutorial_files/tutorial_40_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/docs/tutorial_files/tutorial_40_0.png -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/tesswcs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/src/tesswcs/__init__.py -------------------------------------------------------------------------------- /src/tesswcs/data/TESS_wcs_M.json.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/src/tesswcs/data/TESS_wcs_M.json.bz2 -------------------------------------------------------------------------------- /src/tesswcs/data/TESS_wcs_Ms.json.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/src/tesswcs/data/TESS_wcs_Ms.json.bz2 -------------------------------------------------------------------------------- /src/tesswcs/data/TESS_wcs_data.json.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/src/tesswcs/data/TESS_wcs_data.json.bz2 -------------------------------------------------------------------------------- /src/tesswcs/data/TESS_wcs_offset_weights.json.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/src/tesswcs/data/TESS_wcs_offset_weights.json.bz2 -------------------------------------------------------------------------------- /src/tesswcs/data/TESS_wcs_sip.json.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/src/tesswcs/data/TESS_wcs_sip.json.bz2 -------------------------------------------------------------------------------- /src/tesswcs/data/TESS_wcs_xcent.json.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/src/tesswcs/data/TESS_wcs_xcent.json.bz2 -------------------------------------------------------------------------------- /src/tesswcs/data/TESS_wcs_xs.json.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/src/tesswcs/data/TESS_wcs_xs.json.bz2 -------------------------------------------------------------------------------- /src/tesswcs/data/TESS_wcs_ycent.json.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/src/tesswcs/data/TESS_wcs_ycent.json.bz2 -------------------------------------------------------------------------------- /src/tesswcs/data/TESS_wcs_ys.json.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/src/tesswcs/data/TESS_wcs_ys.json.bz2 -------------------------------------------------------------------------------- /src/tesswcs/data/pointings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/src/tesswcs/data/pointings.csv -------------------------------------------------------------------------------- /src/tesswcs/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/src/tesswcs/database.py -------------------------------------------------------------------------------- /src/tesswcs/locate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/src/tesswcs/locate.py -------------------------------------------------------------------------------- /src/tesswcs/tesswcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/src/tesswcs/tesswcs.py -------------------------------------------------------------------------------- /src/tesswcs/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/src/tesswcs/utils.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_locate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/tests/test_locate.py -------------------------------------------------------------------------------- /tests/test_tesswcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tessgi/tesswcs/HEAD/tests/test_tesswcs.py --------------------------------------------------------------------------------