├── Examples.ipynb ├── Inputs ├── .DS_Store ├── Datacubes │ └── .DS_Store ├── photo_g_CNN_G2G3_e-orbit_1_186_i0_total.fits ├── photo_g_CNN_G2G3_e-orbit_1_214_i0_total.fits ├── photo_g_CNN_G2G3_e-orbit_1_346_i0_total.fits ├── photo_i_CNN_G2G3_e-orbit_1_186_i0_total.fits ├── photo_i_CNN_G2G3_e-orbit_1_214_i0_total.fits ├── photo_i_CNN_G2G3_e-orbit_1_346_i0_total.fits ├── photo_r_CNN_G2G3_e-orbit_1_186_i0_total.fits ├── photo_r_CNN_G2G3_e-orbit_1_214_i0_total.fits └── photo_r_CNN_G2G3_e-orbit_1_346_i0_total.fits ├── LICENSE.txt ├── ObsRealism.py ├── Outputs └── .DS_Store ├── README.md ├── Sources ├── .DS_Store ├── README ├── Simard2011_Field_Info.npy └── utils │ ├── .DS_Store │ ├── sdss-apps │ ├── readAtlasImages-v5_4_11.tar.gz │ └── readAtlasImages-v5_4_11 │ │ ├── .cvsignore │ │ ├── Makefile │ │ ├── README │ │ ├── atlasImages.c │ │ ├── atlasImages.o │ │ ├── crc.dat │ │ ├── crc.tcl │ │ ├── dataIo.c │ │ ├── dataIo.o │ │ ├── dervish.c │ │ ├── dervish.h │ │ ├── dervish.o │ │ ├── fix-make_make │ │ ├── geometry.c │ │ ├── geometry.o │ │ ├── libatlas.a │ │ ├── main.c │ │ ├── main.o │ │ ├── main_PSF.c │ │ ├── main_PSF.o │ │ ├── main_mask.c │ │ ├── main_mask.o │ │ ├── phConsts.h │ │ ├── phDataIo.h │ │ ├── phExtract.h │ │ ├── phFits.h │ │ ├── phFramestat.h │ │ ├── phGeometry.h │ │ ├── phMeasureObj.h │ │ ├── phObjc.h │ │ ├── phOffset.h │ │ ├── phPeaks.h │ │ ├── phRandom.h │ │ ├── phRice.h │ │ ├── phSpanUtil.c │ │ ├── phSpanUtil.h │ │ ├── phSpanUtil.o │ │ ├── phVariablePsf.h │ │ ├── read.c │ │ ├── read.o │ │ ├── read_PSF │ │ ├── read_atlas_image │ │ ├── read_mask │ │ ├── rice.c │ │ ├── rice.o │ │ ├── variablePsf.c │ │ ├── variablePsf.o │ │ ├── write.c │ │ └── write.o │ └── sdss-cfg │ ├── .DS_Store │ ├── SDSS_Photometry │ ├── .DS_Store │ ├── SDSS_gri3_wavelength_grid.dat │ ├── g.dat │ ├── g_SDSS.res │ ├── i.dat │ ├── i_SDSS.res │ ├── r.dat │ ├── r_SDSS.res │ ├── u.dat │ ├── u_SDSS.res │ ├── z.dat │ └── z_SDSS.res │ ├── gauss_3.0_7x7.conv │ ├── gauss_kernel_test.conv │ ├── idz.sex │ ├── sdss.nnw │ ├── sdss.param │ └── sdss.sex ├── SpecToSDSS_gri.py ├── __pycache__ ├── ObsRealism.cpython-37.pyc ├── SpecToSDSS_gri.cpython-37.pyc └── sqlcl.cpython-37.pyc └── sqlcl.py /Examples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Examples.ipynb -------------------------------------------------------------------------------- /Inputs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Inputs/.DS_Store -------------------------------------------------------------------------------- /Inputs/Datacubes/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Inputs/Datacubes/.DS_Store -------------------------------------------------------------------------------- /Inputs/photo_g_CNN_G2G3_e-orbit_1_186_i0_total.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Inputs/photo_g_CNN_G2G3_e-orbit_1_186_i0_total.fits -------------------------------------------------------------------------------- /Inputs/photo_g_CNN_G2G3_e-orbit_1_214_i0_total.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Inputs/photo_g_CNN_G2G3_e-orbit_1_214_i0_total.fits -------------------------------------------------------------------------------- /Inputs/photo_g_CNN_G2G3_e-orbit_1_346_i0_total.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Inputs/photo_g_CNN_G2G3_e-orbit_1_346_i0_total.fits -------------------------------------------------------------------------------- /Inputs/photo_i_CNN_G2G3_e-orbit_1_186_i0_total.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Inputs/photo_i_CNN_G2G3_e-orbit_1_186_i0_total.fits -------------------------------------------------------------------------------- /Inputs/photo_i_CNN_G2G3_e-orbit_1_214_i0_total.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Inputs/photo_i_CNN_G2G3_e-orbit_1_214_i0_total.fits -------------------------------------------------------------------------------- /Inputs/photo_i_CNN_G2G3_e-orbit_1_346_i0_total.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Inputs/photo_i_CNN_G2G3_e-orbit_1_346_i0_total.fits -------------------------------------------------------------------------------- /Inputs/photo_r_CNN_G2G3_e-orbit_1_186_i0_total.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Inputs/photo_r_CNN_G2G3_e-orbit_1_186_i0_total.fits -------------------------------------------------------------------------------- /Inputs/photo_r_CNN_G2G3_e-orbit_1_214_i0_total.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Inputs/photo_r_CNN_G2G3_e-orbit_1_214_i0_total.fits -------------------------------------------------------------------------------- /Inputs/photo_r_CNN_G2G3_e-orbit_1_346_i0_total.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Inputs/photo_r_CNN_G2G3_e-orbit_1_346_i0_total.fits -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /ObsRealism.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/ObsRealism.py -------------------------------------------------------------------------------- /Outputs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Outputs/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/README.md -------------------------------------------------------------------------------- /Sources/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/.DS_Store -------------------------------------------------------------------------------- /Sources/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sources/Simard2011_Field_Info.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/Simard2011_Field_Info.npy -------------------------------------------------------------------------------- /Sources/utils/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/.DS_Store -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11.tar.gz -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/.cvsignore -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/Makefile -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/README -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/atlasImages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/atlasImages.c -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/atlasImages.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/atlasImages.o -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/crc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/crc.dat -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/crc.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/crc.tcl -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/dataIo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/dataIo.c -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/dataIo.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/dataIo.o -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/dervish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/dervish.c -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/dervish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/dervish.h -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/dervish.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/dervish.o -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/fix-make_make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/fix-make_make -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/geometry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/geometry.c -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/geometry.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/geometry.o -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/libatlas.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/libatlas.a -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/main.c -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/main.o -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/main_PSF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/main_PSF.c -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/main_PSF.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/main_PSF.o -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/main_mask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/main_mask.c -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/main_mask.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/main_mask.o -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/phConsts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/phConsts.h -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/phDataIo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/phDataIo.h -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/phExtract.h: -------------------------------------------------------------------------------- 1 | #define NANN 1 2 | -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/phFits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/phFits.h -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/phFramestat.h: -------------------------------------------------------------------------------- 1 | typedef void *FIELDPARAMS; 2 | #include "phRandom.h" 3 | -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/phGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/phGeometry.h -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/phMeasureObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/phMeasureObj.h -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/phObjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/phObjc.h -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/phOffset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/phOffset.h -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/phPeaks.h: -------------------------------------------------------------------------------- 1 | typedef void *PEAKS; 2 | -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/phRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/phRandom.h -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/phRice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/phRice.h -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/phSpanUtil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/phSpanUtil.c -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/phSpanUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/phSpanUtil.h -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/phSpanUtil.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/phSpanUtil.o -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/phVariablePsf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/phVariablePsf.h -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/read.c -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/read.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/read.o -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/read_PSF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/read_PSF -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/read_atlas_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/read_atlas_image -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/read_mask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/read_mask -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/rice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/rice.c -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/rice.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/rice.o -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/variablePsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/variablePsf.c -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/variablePsf.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/variablePsf.o -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/write.c -------------------------------------------------------------------------------- /Sources/utils/sdss-apps/readAtlasImages-v5_4_11/write.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-apps/readAtlasImages-v5_4_11/write.o -------------------------------------------------------------------------------- /Sources/utils/sdss-cfg/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-cfg/.DS_Store -------------------------------------------------------------------------------- /Sources/utils/sdss-cfg/SDSS_Photometry/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-cfg/SDSS_Photometry/.DS_Store -------------------------------------------------------------------------------- /Sources/utils/sdss-cfg/SDSS_Photometry/SDSS_gri3_wavelength_grid.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-cfg/SDSS_Photometry/SDSS_gri3_wavelength_grid.dat -------------------------------------------------------------------------------- /Sources/utils/sdss-cfg/SDSS_Photometry/g.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-cfg/SDSS_Photometry/g.dat -------------------------------------------------------------------------------- /Sources/utils/sdss-cfg/SDSS_Photometry/g_SDSS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-cfg/SDSS_Photometry/g_SDSS.res -------------------------------------------------------------------------------- /Sources/utils/sdss-cfg/SDSS_Photometry/i.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-cfg/SDSS_Photometry/i.dat -------------------------------------------------------------------------------- /Sources/utils/sdss-cfg/SDSS_Photometry/i_SDSS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-cfg/SDSS_Photometry/i_SDSS.res -------------------------------------------------------------------------------- /Sources/utils/sdss-cfg/SDSS_Photometry/r.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-cfg/SDSS_Photometry/r.dat -------------------------------------------------------------------------------- /Sources/utils/sdss-cfg/SDSS_Photometry/r_SDSS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-cfg/SDSS_Photometry/r_SDSS.res -------------------------------------------------------------------------------- /Sources/utils/sdss-cfg/SDSS_Photometry/u.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-cfg/SDSS_Photometry/u.dat -------------------------------------------------------------------------------- /Sources/utils/sdss-cfg/SDSS_Photometry/u_SDSS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-cfg/SDSS_Photometry/u_SDSS.res -------------------------------------------------------------------------------- /Sources/utils/sdss-cfg/SDSS_Photometry/z.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-cfg/SDSS_Photometry/z.dat -------------------------------------------------------------------------------- /Sources/utils/sdss-cfg/SDSS_Photometry/z_SDSS.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-cfg/SDSS_Photometry/z_SDSS.res -------------------------------------------------------------------------------- /Sources/utils/sdss-cfg/gauss_3.0_7x7.conv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-cfg/gauss_3.0_7x7.conv -------------------------------------------------------------------------------- /Sources/utils/sdss-cfg/gauss_kernel_test.conv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-cfg/gauss_kernel_test.conv -------------------------------------------------------------------------------- /Sources/utils/sdss-cfg/idz.sex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-cfg/idz.sex -------------------------------------------------------------------------------- /Sources/utils/sdss-cfg/sdss.nnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-cfg/sdss.nnw -------------------------------------------------------------------------------- /Sources/utils/sdss-cfg/sdss.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-cfg/sdss.param -------------------------------------------------------------------------------- /Sources/utils/sdss-cfg/sdss.sex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/Sources/utils/sdss-cfg/sdss.sex -------------------------------------------------------------------------------- /SpecToSDSS_gri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/SpecToSDSS_gri.py -------------------------------------------------------------------------------- /__pycache__/ObsRealism.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/__pycache__/ObsRealism.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/SpecToSDSS_gri.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/__pycache__/SpecToSDSS_gri.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/sqlcl.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/__pycache__/sqlcl.cpython-37.pyc -------------------------------------------------------------------------------- /sqlcl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbottrell/RealSim/HEAD/sqlcl.py --------------------------------------------------------------------------------