├── .bandit.yaml ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml ├── labeler.yml └── workflows │ ├── check_milestone.yml │ ├── ci_workflows.yml │ ├── codeql-analysis.yml │ ├── open_actions.yml │ ├── predeps_workflow.yml │ └── publish-to-pypi.yml ├── .gitignore ├── .readthedocs.yaml ├── CHANGES.rst ├── CITATION.md ├── CODE_OF_CONDUCT.md ├── LICENSE.rst ├── MANIFEST.in ├── README.rst ├── conftest.py ├── docs ├── Makefile ├── _static │ └── stsci_logo.png ├── _templates │ └── autosummary │ │ ├── base.rst │ │ ├── class.rst │ │ └── module.rst ├── conf.py ├── index.rst ├── make.bat └── synphot │ ├── bandpass.rst │ ├── c_ext.rst │ ├── config.rst │ ├── filter_par.rst │ ├── formulae.rst │ ├── from_pysyn_iraf.rst │ ├── images │ ├── VegaPhotomSys.png │ ├── bb5000_lmcavg.png │ ├── bb5000_renorm.png │ ├── johnson_bi.png │ ├── tutorial_em_line.png │ ├── tutorial_fit_ab.png │ └── vega_spec.png │ ├── observation.rst │ ├── overview.rst │ ├── spectrum.rst │ ├── tutorials.rst │ └── units.rst ├── licenses ├── README.rst └── TYNT_LICENSE.txt ├── pyproject.toml ├── setup.cfg ├── setup.py ├── synphot ├── __init__.py ├── binning.py ├── blackbody.py ├── compat.py ├── compat_specutils.py ├── config.py ├── exceptions.py ├── filter_parameterization │ ├── __init__.py │ ├── filter_fft.py │ └── tests │ │ ├── __init__.py │ │ ├── data │ │ └── fft_test_data.fits │ │ └── test_filter_fft.py ├── include │ └── synphot_utils.h ├── models.py ├── observation.py ├── reddening.py ├── specio.py ├── spectrum.py ├── src │ └── synphot_utils.c ├── tests │ ├── __init__.py │ ├── data │ │ ├── cos_fuv_g130m_c1309_psa.fits │ │ ├── grw_70d5824_stisnic_005.fits │ │ ├── hst_acs_hrc_f555w.fits │ │ ├── hst_acs_hrc_f555w_x_grw70d5824.fits │ │ ├── hst_acs_hrc_f850lp.fits │ │ ├── k93_4500_0_5_rn_box.fits │ │ ├── milkyway_diffuse_001.fits │ │ ├── qso_template_001.dat │ │ ├── stis_fuv_f25ndq2_binset.bin │ │ ├── stis_fuv_f25ndq2_mjd58300_0822774.fits │ │ ├── us7.txt │ │ └── wfc3_ir_g141_src_003_th.fits │ ├── test_binning.py │ ├── test_blackbody.py │ ├── test_integrator.py │ ├── test_models.py │ ├── test_observation.py │ ├── test_reddening.py │ ├── test_specio.py │ ├── test_spectrum_bandpass.py │ ├── test_spectrum_misc.py │ ├── test_spectrum_source.py │ ├── test_thermal.py │ ├── test_units.py │ └── test_utils.py ├── thermal.py ├── units.py └── utils.py └── tox.ini /.bandit.yaml: -------------------------------------------------------------------------------- 1 | exclude_dirs: 2 | - synphot/tests 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/check_milestone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/.github/workflows/check_milestone.yml -------------------------------------------------------------------------------- /.github/workflows/ci_workflows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/.github/workflows/ci_workflows.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/open_actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/.github/workflows/open_actions.yml -------------------------------------------------------------------------------- /.github/workflows/predeps_workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/.github/workflows/predeps_workflow.yml -------------------------------------------------------------------------------- /.github/workflows/publish-to-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/.github/workflows/publish-to-pypi.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /CITATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/CITATION.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/LICENSE.rst -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/README.rst -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/conftest.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/stsci_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/docs/_static/stsci_logo.png -------------------------------------------------------------------------------- /docs/_templates/autosummary/base.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/docs/_templates/autosummary/base.rst -------------------------------------------------------------------------------- /docs/_templates/autosummary/class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/docs/_templates/autosummary/class.rst -------------------------------------------------------------------------------- /docs/_templates/autosummary/module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/docs/_templates/autosummary/module.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/synphot/bandpass.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/docs/synphot/bandpass.rst -------------------------------------------------------------------------------- /docs/synphot/c_ext.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/docs/synphot/c_ext.rst -------------------------------------------------------------------------------- /docs/synphot/config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/docs/synphot/config.rst -------------------------------------------------------------------------------- /docs/synphot/filter_par.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/docs/synphot/filter_par.rst -------------------------------------------------------------------------------- /docs/synphot/formulae.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/docs/synphot/formulae.rst -------------------------------------------------------------------------------- /docs/synphot/from_pysyn_iraf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/docs/synphot/from_pysyn_iraf.rst -------------------------------------------------------------------------------- /docs/synphot/images/VegaPhotomSys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/docs/synphot/images/VegaPhotomSys.png -------------------------------------------------------------------------------- /docs/synphot/images/bb5000_lmcavg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/docs/synphot/images/bb5000_lmcavg.png -------------------------------------------------------------------------------- /docs/synphot/images/bb5000_renorm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/docs/synphot/images/bb5000_renorm.png -------------------------------------------------------------------------------- /docs/synphot/images/johnson_bi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/docs/synphot/images/johnson_bi.png -------------------------------------------------------------------------------- /docs/synphot/images/tutorial_em_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/docs/synphot/images/tutorial_em_line.png -------------------------------------------------------------------------------- /docs/synphot/images/tutorial_fit_ab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/docs/synphot/images/tutorial_fit_ab.png -------------------------------------------------------------------------------- /docs/synphot/images/vega_spec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/docs/synphot/images/vega_spec.png -------------------------------------------------------------------------------- /docs/synphot/observation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/docs/synphot/observation.rst -------------------------------------------------------------------------------- /docs/synphot/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/docs/synphot/overview.rst -------------------------------------------------------------------------------- /docs/synphot/spectrum.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/docs/synphot/spectrum.rst -------------------------------------------------------------------------------- /docs/synphot/tutorials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/docs/synphot/tutorials.rst -------------------------------------------------------------------------------- /docs/synphot/units.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/docs/synphot/units.rst -------------------------------------------------------------------------------- /licenses/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/licenses/README.rst -------------------------------------------------------------------------------- /licenses/TYNT_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/licenses/TYNT_LICENSE.txt -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/setup.py -------------------------------------------------------------------------------- /synphot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/__init__.py -------------------------------------------------------------------------------- /synphot/binning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/binning.py -------------------------------------------------------------------------------- /synphot/blackbody.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/blackbody.py -------------------------------------------------------------------------------- /synphot/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/compat.py -------------------------------------------------------------------------------- /synphot/compat_specutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/compat_specutils.py -------------------------------------------------------------------------------- /synphot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/config.py -------------------------------------------------------------------------------- /synphot/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/exceptions.py -------------------------------------------------------------------------------- /synphot/filter_parameterization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/filter_parameterization/__init__.py -------------------------------------------------------------------------------- /synphot/filter_parameterization/filter_fft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/filter_parameterization/filter_fft.py -------------------------------------------------------------------------------- /synphot/filter_parameterization/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /synphot/filter_parameterization/tests/data/fft_test_data.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/filter_parameterization/tests/data/fft_test_data.fits -------------------------------------------------------------------------------- /synphot/filter_parameterization/tests/test_filter_fft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/filter_parameterization/tests/test_filter_fft.py -------------------------------------------------------------------------------- /synphot/include/synphot_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/include/synphot_utils.h -------------------------------------------------------------------------------- /synphot/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/models.py -------------------------------------------------------------------------------- /synphot/observation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/observation.py -------------------------------------------------------------------------------- /synphot/reddening.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/reddening.py -------------------------------------------------------------------------------- /synphot/specio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/specio.py -------------------------------------------------------------------------------- /synphot/spectrum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/spectrum.py -------------------------------------------------------------------------------- /synphot/src/synphot_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/src/synphot_utils.c -------------------------------------------------------------------------------- /synphot/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/tests/__init__.py -------------------------------------------------------------------------------- /synphot/tests/data/cos_fuv_g130m_c1309_psa.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/tests/data/cos_fuv_g130m_c1309_psa.fits -------------------------------------------------------------------------------- /synphot/tests/data/grw_70d5824_stisnic_005.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/tests/data/grw_70d5824_stisnic_005.fits -------------------------------------------------------------------------------- /synphot/tests/data/hst_acs_hrc_f555w.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/tests/data/hst_acs_hrc_f555w.fits -------------------------------------------------------------------------------- /synphot/tests/data/hst_acs_hrc_f555w_x_grw70d5824.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/tests/data/hst_acs_hrc_f555w_x_grw70d5824.fits -------------------------------------------------------------------------------- /synphot/tests/data/hst_acs_hrc_f850lp.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/tests/data/hst_acs_hrc_f850lp.fits -------------------------------------------------------------------------------- /synphot/tests/data/k93_4500_0_5_rn_box.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/tests/data/k93_4500_0_5_rn_box.fits -------------------------------------------------------------------------------- /synphot/tests/data/milkyway_diffuse_001.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/tests/data/milkyway_diffuse_001.fits -------------------------------------------------------------------------------- /synphot/tests/data/qso_template_001.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/tests/data/qso_template_001.dat -------------------------------------------------------------------------------- /synphot/tests/data/stis_fuv_f25ndq2_binset.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/tests/data/stis_fuv_f25ndq2_binset.bin -------------------------------------------------------------------------------- /synphot/tests/data/stis_fuv_f25ndq2_mjd58300_0822774.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/tests/data/stis_fuv_f25ndq2_mjd58300_0822774.fits -------------------------------------------------------------------------------- /synphot/tests/data/us7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/tests/data/us7.txt -------------------------------------------------------------------------------- /synphot/tests/data/wfc3_ir_g141_src_003_th.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/tests/data/wfc3_ir_g141_src_003_th.fits -------------------------------------------------------------------------------- /synphot/tests/test_binning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/tests/test_binning.py -------------------------------------------------------------------------------- /synphot/tests/test_blackbody.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/tests/test_blackbody.py -------------------------------------------------------------------------------- /synphot/tests/test_integrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/tests/test_integrator.py -------------------------------------------------------------------------------- /synphot/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/tests/test_models.py -------------------------------------------------------------------------------- /synphot/tests/test_observation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/tests/test_observation.py -------------------------------------------------------------------------------- /synphot/tests/test_reddening.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/tests/test_reddening.py -------------------------------------------------------------------------------- /synphot/tests/test_specio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/tests/test_specio.py -------------------------------------------------------------------------------- /synphot/tests/test_spectrum_bandpass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/tests/test_spectrum_bandpass.py -------------------------------------------------------------------------------- /synphot/tests/test_spectrum_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/tests/test_spectrum_misc.py -------------------------------------------------------------------------------- /synphot/tests/test_spectrum_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/tests/test_spectrum_source.py -------------------------------------------------------------------------------- /synphot/tests/test_thermal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/tests/test_thermal.py -------------------------------------------------------------------------------- /synphot/tests/test_units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/tests/test_units.py -------------------------------------------------------------------------------- /synphot/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/tests/test_utils.py -------------------------------------------------------------------------------- /synphot/thermal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/thermal.py -------------------------------------------------------------------------------- /synphot/units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/units.py -------------------------------------------------------------------------------- /synphot/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/synphot/utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spacetelescope/synphot_refactor/HEAD/tox.ini --------------------------------------------------------------------------------