├── .gitignore ├── .readthedocs.yaml ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── README.rst ├── docs ├── Makefile ├── authors.rst ├── conf.py ├── contributing.rst ├── galight.data_process.rst ├── galight.fitting_process.rst ├── galight.fitting_specify.rst ├── galight.rst ├── galight.tools.rst ├── history.rst ├── index.rst ├── installation.rst ├── make.bat └── usage.rst ├── figs ├── est_bkgstd.png ├── find_PSF.png ├── fitting_result.png └── fitting_sets.png ├── galight ├── __init__.py ├── data_process.py ├── fitting_process.py ├── fitting_specify.py ├── hsc_utils │ ├── __init__.py │ ├── hsc_image.py │ └── hsc_psf.py └── tools │ ├── __init__.py │ ├── astro_tools.py │ ├── asymmetry_tools.py │ ├── cutout_tools.py │ ├── measure_tools.py │ └── plot_tools.py ├── requirements.txt ├── setup.cfg ├── setup.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/galight.data_process.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/docs/galight.data_process.rst -------------------------------------------------------------------------------- /docs/galight.fitting_process.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/docs/galight.fitting_process.rst -------------------------------------------------------------------------------- /docs/galight.fitting_specify.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/docs/galight.fitting_specify.rst -------------------------------------------------------------------------------- /docs/galight.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/docs/galight.rst -------------------------------------------------------------------------------- /docs/galight.tools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/docs/galight.tools.rst -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../HISTORY.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /figs/est_bkgstd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/figs/est_bkgstd.png -------------------------------------------------------------------------------- /figs/find_PSF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/figs/find_PSF.png -------------------------------------------------------------------------------- /figs/fitting_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/figs/fitting_result.png -------------------------------------------------------------------------------- /figs/fitting_sets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/figs/fitting_sets.png -------------------------------------------------------------------------------- /galight/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/galight/__init__.py -------------------------------------------------------------------------------- /galight/data_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/galight/data_process.py -------------------------------------------------------------------------------- /galight/fitting_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/galight/fitting_process.py -------------------------------------------------------------------------------- /galight/fitting_specify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/galight/fitting_specify.py -------------------------------------------------------------------------------- /galight/hsc_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/galight/hsc_utils/__init__.py -------------------------------------------------------------------------------- /galight/hsc_utils/hsc_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/galight/hsc_utils/hsc_image.py -------------------------------------------------------------------------------- /galight/hsc_utils/hsc_psf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/galight/hsc_utils/hsc_psf.py -------------------------------------------------------------------------------- /galight/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/galight/tools/__init__.py -------------------------------------------------------------------------------- /galight/tools/astro_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/galight/tools/astro_tools.py -------------------------------------------------------------------------------- /galight/tools/asymmetry_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/galight/tools/asymmetry_tools.py -------------------------------------------------------------------------------- /galight/tools/cutout_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/galight/tools/cutout_tools.py -------------------------------------------------------------------------------- /galight/tools/measure_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/galight/tools/measure_tools.py -------------------------------------------------------------------------------- /galight/tools/plot_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/galight/tools/plot_tools.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | universal = 1 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartoon/galight/HEAD/tox.ini --------------------------------------------------------------------------------