├── .gitignore ├── CONTRIBUTING.md ├── CONTRIBUTORS ├── LICENSE ├── LUT_build.py ├── LUT_interpolate.py ├── README.md ├── __init__.py ├── bin ├── astronomical.py └── interpolated_LUTs.py └── jupyter_notebooks ├── atmcorr_example.html └── atmcorr_example.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsammurphy/6S_emulator/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsammurphy/6S_emulator/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsammurphy/6S_emulator/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsammurphy/6S_emulator/HEAD/LICENSE -------------------------------------------------------------------------------- /LUT_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsammurphy/6S_emulator/HEAD/LUT_build.py -------------------------------------------------------------------------------- /LUT_interpolate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsammurphy/6S_emulator/HEAD/LUT_interpolate.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsammurphy/6S_emulator/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/astronomical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsammurphy/6S_emulator/HEAD/bin/astronomical.py -------------------------------------------------------------------------------- /bin/interpolated_LUTs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsammurphy/6S_emulator/HEAD/bin/interpolated_LUTs.py -------------------------------------------------------------------------------- /jupyter_notebooks/atmcorr_example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsammurphy/6S_emulator/HEAD/jupyter_notebooks/atmcorr_example.html -------------------------------------------------------------------------------- /jupyter_notebooks/atmcorr_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samsammurphy/6S_emulator/HEAD/jupyter_notebooks/atmcorr_example.ipynb --------------------------------------------------------------------------------