├── .flake8 ├── .github ├── codecov.yml └── workflows │ ├── build.yml │ ├── lint.yml │ └── rebase_checker.yaml ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── config ├── default.yaml ├── skyCatalog.yaml ├── tds.yaml └── was.yaml ├── dist ├── roman_imsim-2.0-py3-none-any.whl └── roman_imsim-2.0.tar.gz ├── pyproject.toml ├── roman_imsim ├── __init__.py ├── bandpass.py ├── detector_physics.py ├── obseq.py ├── photonOps.py ├── psf.py ├── sca.py ├── scafile.py ├── skycat.py ├── stamp.py ├── utils.py └── wcs.py ├── setup.py ├── sim.yaml └── tests └── test_imports.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DukeCosmology/roman_imsim/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DukeCosmology/roman_imsim/HEAD/.github/codecov.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DukeCosmology/roman_imsim/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DukeCosmology/roman_imsim/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/rebase_checker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DukeCosmology/roman_imsim/HEAD/.github/workflows/rebase_checker.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DukeCosmology/roman_imsim/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DukeCosmology/roman_imsim/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DukeCosmology/roman_imsim/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DukeCosmology/roman_imsim/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DukeCosmology/roman_imsim/HEAD/README.md -------------------------------------------------------------------------------- /config/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DukeCosmology/roman_imsim/HEAD/config/default.yaml -------------------------------------------------------------------------------- /config/skyCatalog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DukeCosmology/roman_imsim/HEAD/config/skyCatalog.yaml -------------------------------------------------------------------------------- /config/tds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DukeCosmology/roman_imsim/HEAD/config/tds.yaml -------------------------------------------------------------------------------- /config/was.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DukeCosmology/roman_imsim/HEAD/config/was.yaml -------------------------------------------------------------------------------- /dist/roman_imsim-2.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DukeCosmology/roman_imsim/HEAD/dist/roman_imsim-2.0-py3-none-any.whl -------------------------------------------------------------------------------- /dist/roman_imsim-2.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DukeCosmology/roman_imsim/HEAD/dist/roman_imsim-2.0.tar.gz -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DukeCosmology/roman_imsim/HEAD/pyproject.toml -------------------------------------------------------------------------------- /roman_imsim/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DukeCosmology/roman_imsim/HEAD/roman_imsim/__init__.py -------------------------------------------------------------------------------- /roman_imsim/bandpass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DukeCosmology/roman_imsim/HEAD/roman_imsim/bandpass.py -------------------------------------------------------------------------------- /roman_imsim/detector_physics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DukeCosmology/roman_imsim/HEAD/roman_imsim/detector_physics.py -------------------------------------------------------------------------------- /roman_imsim/obseq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DukeCosmology/roman_imsim/HEAD/roman_imsim/obseq.py -------------------------------------------------------------------------------- /roman_imsim/photonOps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DukeCosmology/roman_imsim/HEAD/roman_imsim/photonOps.py -------------------------------------------------------------------------------- /roman_imsim/psf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DukeCosmology/roman_imsim/HEAD/roman_imsim/psf.py -------------------------------------------------------------------------------- /roman_imsim/sca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DukeCosmology/roman_imsim/HEAD/roman_imsim/sca.py -------------------------------------------------------------------------------- /roman_imsim/scafile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DukeCosmology/roman_imsim/HEAD/roman_imsim/scafile.py -------------------------------------------------------------------------------- /roman_imsim/skycat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DukeCosmology/roman_imsim/HEAD/roman_imsim/skycat.py -------------------------------------------------------------------------------- /roman_imsim/stamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DukeCosmology/roman_imsim/HEAD/roman_imsim/stamp.py -------------------------------------------------------------------------------- /roman_imsim/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DukeCosmology/roman_imsim/HEAD/roman_imsim/utils.py -------------------------------------------------------------------------------- /roman_imsim/wcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DukeCosmology/roman_imsim/HEAD/roman_imsim/wcs.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DukeCosmology/roman_imsim/HEAD/setup.py -------------------------------------------------------------------------------- /sim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DukeCosmology/roman_imsim/HEAD/sim.yaml -------------------------------------------------------------------------------- /tests/test_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DukeCosmology/roman_imsim/HEAD/tests/test_imports.py --------------------------------------------------------------------------------