├── .DS_Store ├── .flake8 ├── .github └── workflows │ ├── publish-to-pypi.yml │ └── python-package.yml ├── .gitignore ├── .gitmodules ├── .readthedocs.yml ├── CHANGES.rst ├── CITATION.cff ├── LICENSE.txt ├── MANIFEST ├── README.rst ├── binder └── requirements.txt ├── docs ├── Makefile ├── _templates │ └── autosummary │ │ ├── base.rst │ │ ├── class.rst │ │ └── module.rst ├── conf.py ├── eazy │ ├── api.rst │ ├── filters.rst │ ├── install.rst │ ├── photoz.rst │ ├── templates.rst │ └── zout_columns.rst ├── examples │ ├── HDFN-demo.ipynb │ ├── Riverside-demo.ipynb │ ├── compare_sps_algorithm.ipynb │ └── dash_viewer.png ├── index.rst ├── make.bat └── rtd-pip-requirements ├── eazy ├── __init__.py ├── data │ ├── DLAcoeff.txt │ ├── LAFcoeff.txt │ ├── alpha_lyr_stis_008.fits │ ├── emlines_info.dat │ ├── spectra_kc13_12_tweak.params │ └── zphot.param.default ├── filters.py ├── hdf5.py ├── igm.py ├── param.py ├── photoz.py ├── sps.py ├── templates.py ├── tests │ ├── __init__.py │ ├── test_filters.py │ ├── test_igm.py │ ├── test_param.py │ ├── test_photoz.py │ ├── test_templates.py │ └── test_utils.py ├── utils.py └── visualization.py ├── pyproject.toml ├── requirements.txt ├── scripts ├── README.rst ├── nmf.py ├── photoz.py ├── run.py └── sps.py └── setup.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/.DS_Store -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/publish-to-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/.github/workflows/publish-to-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/MANIFEST -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/README.rst -------------------------------------------------------------------------------- /binder/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/binder/requirements.txt -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_templates/autosummary/base.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/docs/_templates/autosummary/base.rst -------------------------------------------------------------------------------- /docs/_templates/autosummary/class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/docs/_templates/autosummary/class.rst -------------------------------------------------------------------------------- /docs/_templates/autosummary/module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/docs/_templates/autosummary/module.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/eazy/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/docs/eazy/api.rst -------------------------------------------------------------------------------- /docs/eazy/filters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/docs/eazy/filters.rst -------------------------------------------------------------------------------- /docs/eazy/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/docs/eazy/install.rst -------------------------------------------------------------------------------- /docs/eazy/photoz.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/docs/eazy/photoz.rst -------------------------------------------------------------------------------- /docs/eazy/templates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/docs/eazy/templates.rst -------------------------------------------------------------------------------- /docs/eazy/zout_columns.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/docs/eazy/zout_columns.rst -------------------------------------------------------------------------------- /docs/examples/HDFN-demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/docs/examples/HDFN-demo.ipynb -------------------------------------------------------------------------------- /docs/examples/Riverside-demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/docs/examples/Riverside-demo.ipynb -------------------------------------------------------------------------------- /docs/examples/compare_sps_algorithm.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/docs/examples/compare_sps_algorithm.ipynb -------------------------------------------------------------------------------- /docs/examples/dash_viewer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/docs/examples/dash_viewer.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/rtd-pip-requirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/docs/rtd-pip-requirements -------------------------------------------------------------------------------- /eazy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/eazy/__init__.py -------------------------------------------------------------------------------- /eazy/data/DLAcoeff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/eazy/data/DLAcoeff.txt -------------------------------------------------------------------------------- /eazy/data/LAFcoeff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/eazy/data/LAFcoeff.txt -------------------------------------------------------------------------------- /eazy/data/alpha_lyr_stis_008.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/eazy/data/alpha_lyr_stis_008.fits -------------------------------------------------------------------------------- /eazy/data/emlines_info.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/eazy/data/emlines_info.dat -------------------------------------------------------------------------------- /eazy/data/spectra_kc13_12_tweak.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/eazy/data/spectra_kc13_12_tweak.params -------------------------------------------------------------------------------- /eazy/data/zphot.param.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/eazy/data/zphot.param.default -------------------------------------------------------------------------------- /eazy/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/eazy/filters.py -------------------------------------------------------------------------------- /eazy/hdf5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/eazy/hdf5.py -------------------------------------------------------------------------------- /eazy/igm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/eazy/igm.py -------------------------------------------------------------------------------- /eazy/param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/eazy/param.py -------------------------------------------------------------------------------- /eazy/photoz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/eazy/photoz.py -------------------------------------------------------------------------------- /eazy/sps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/eazy/sps.py -------------------------------------------------------------------------------- /eazy/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/eazy/templates.py -------------------------------------------------------------------------------- /eazy/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eazy/tests/test_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/eazy/tests/test_filters.py -------------------------------------------------------------------------------- /eazy/tests/test_igm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/eazy/tests/test_igm.py -------------------------------------------------------------------------------- /eazy/tests/test_param.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/eazy/tests/test_param.py -------------------------------------------------------------------------------- /eazy/tests/test_photoz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/eazy/tests/test_photoz.py -------------------------------------------------------------------------------- /eazy/tests/test_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/eazy/tests/test_templates.py -------------------------------------------------------------------------------- /eazy/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/eazy/tests/test_utils.py -------------------------------------------------------------------------------- /eazy/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/eazy/utils.py -------------------------------------------------------------------------------- /eazy/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/eazy/visualization.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/scripts/README.rst -------------------------------------------------------------------------------- /scripts/nmf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/scripts/nmf.py -------------------------------------------------------------------------------- /scripts/photoz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/scripts/photoz.py -------------------------------------------------------------------------------- /scripts/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/scripts/run.py -------------------------------------------------------------------------------- /scripts/sps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/scripts/sps.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbrammer/eazy-py/HEAD/setup.py --------------------------------------------------------------------------------