├── .gitignore ├── .travis.yml ├── LICENSE.md ├── MANIFEST.in ├── README.md ├── S2_TOA_TO_LAI ├── .scihub_auth ├── TOA2LAI_S2.py ├── VERSION ├── __init__.py ├── create_logger.py ├── data │ ├── Third_comps.npz │ ├── Third_inv_gp.npz │ └── nnLai.npz ├── get_scihub_pass.py ├── nnModel.py ├── parse_aoi.py └── query.py ├── environment.yml ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcYin/S2_TOA_TO_LAI/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcYin/S2_TOA_TO_LAI/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcYin/S2_TOA_TO_LAI/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcYin/S2_TOA_TO_LAI/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcYin/S2_TOA_TO_LAI/HEAD/README.md -------------------------------------------------------------------------------- /S2_TOA_TO_LAI/.scihub_auth: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /S2_TOA_TO_LAI/TOA2LAI_S2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcYin/S2_TOA_TO_LAI/HEAD/S2_TOA_TO_LAI/TOA2LAI_S2.py -------------------------------------------------------------------------------- /S2_TOA_TO_LAI/VERSION: -------------------------------------------------------------------------------- 1 | 2.0.0 2 | -------------------------------------------------------------------------------- /S2_TOA_TO_LAI/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcYin/S2_TOA_TO_LAI/HEAD/S2_TOA_TO_LAI/__init__.py -------------------------------------------------------------------------------- /S2_TOA_TO_LAI/create_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcYin/S2_TOA_TO_LAI/HEAD/S2_TOA_TO_LAI/create_logger.py -------------------------------------------------------------------------------- /S2_TOA_TO_LAI/data/Third_comps.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcYin/S2_TOA_TO_LAI/HEAD/S2_TOA_TO_LAI/data/Third_comps.npz -------------------------------------------------------------------------------- /S2_TOA_TO_LAI/data/Third_inv_gp.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcYin/S2_TOA_TO_LAI/HEAD/S2_TOA_TO_LAI/data/Third_inv_gp.npz -------------------------------------------------------------------------------- /S2_TOA_TO_LAI/data/nnLai.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcYin/S2_TOA_TO_LAI/HEAD/S2_TOA_TO_LAI/data/nnLai.npz -------------------------------------------------------------------------------- /S2_TOA_TO_LAI/get_scihub_pass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcYin/S2_TOA_TO_LAI/HEAD/S2_TOA_TO_LAI/get_scihub_pass.py -------------------------------------------------------------------------------- /S2_TOA_TO_LAI/nnModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcYin/S2_TOA_TO_LAI/HEAD/S2_TOA_TO_LAI/nnModel.py -------------------------------------------------------------------------------- /S2_TOA_TO_LAI/parse_aoi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcYin/S2_TOA_TO_LAI/HEAD/S2_TOA_TO_LAI/parse_aoi.py -------------------------------------------------------------------------------- /S2_TOA_TO_LAI/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcYin/S2_TOA_TO_LAI/HEAD/S2_TOA_TO_LAI/query.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcYin/S2_TOA_TO_LAI/HEAD/environment.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcYin/S2_TOA_TO_LAI/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarcYin/S2_TOA_TO_LAI/HEAD/setup.py --------------------------------------------------------------------------------