├── AtmosphericCorrection.py ├── AtmosphericCorrection_GF.py ├── AtmosphericCorrection_Landsat8.py ├── AtmosphericCorrection_Sentinel-before.py ├── AtmosphericCorrection_Sentinel.py ├── AtmosphericCorrection_multiprocess.py ├── GMTED2km.tif ├── OsrCoordinateTransform.py ├── README.md ├── RadiometricCorrectionParameter.json ├── __init__.py ├── __pycache__ ├── AtmosphericCorrection_GF.cpython-36.pyc ├── base.cpython-36.pyc └── base.cpython-38.pyc ├── base.py ├── img ├── sentinel-2_AC.png └── sentinel-2_ImageTree.png ├── test.py └── testpy6s.py /AtmosphericCorrection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoguanhua/AtmosphericCorrection/HEAD/AtmosphericCorrection.py -------------------------------------------------------------------------------- /AtmosphericCorrection_GF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoguanhua/AtmosphericCorrection/HEAD/AtmosphericCorrection_GF.py -------------------------------------------------------------------------------- /AtmosphericCorrection_Landsat8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoguanhua/AtmosphericCorrection/HEAD/AtmosphericCorrection_Landsat8.py -------------------------------------------------------------------------------- /AtmosphericCorrection_Sentinel-before.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoguanhua/AtmosphericCorrection/HEAD/AtmosphericCorrection_Sentinel-before.py -------------------------------------------------------------------------------- /AtmosphericCorrection_Sentinel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoguanhua/AtmosphericCorrection/HEAD/AtmosphericCorrection_Sentinel.py -------------------------------------------------------------------------------- /AtmosphericCorrection_multiprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoguanhua/AtmosphericCorrection/HEAD/AtmosphericCorrection_multiprocess.py -------------------------------------------------------------------------------- /GMTED2km.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoguanhua/AtmosphericCorrection/HEAD/GMTED2km.tif -------------------------------------------------------------------------------- /OsrCoordinateTransform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoguanhua/AtmosphericCorrection/HEAD/OsrCoordinateTransform.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoguanhua/AtmosphericCorrection/HEAD/README.md -------------------------------------------------------------------------------- /RadiometricCorrectionParameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoguanhua/AtmosphericCorrection/HEAD/RadiometricCorrectionParameter.json -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoguanhua/AtmosphericCorrection/HEAD/__init__.py -------------------------------------------------------------------------------- /__pycache__/AtmosphericCorrection_GF.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoguanhua/AtmosphericCorrection/HEAD/__pycache__/AtmosphericCorrection_GF.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/base.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoguanhua/AtmosphericCorrection/HEAD/__pycache__/base.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/base.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoguanhua/AtmosphericCorrection/HEAD/__pycache__/base.cpython-38.pyc -------------------------------------------------------------------------------- /base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoguanhua/AtmosphericCorrection/HEAD/base.py -------------------------------------------------------------------------------- /img/sentinel-2_AC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoguanhua/AtmosphericCorrection/HEAD/img/sentinel-2_AC.png -------------------------------------------------------------------------------- /img/sentinel-2_ImageTree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoguanhua/AtmosphericCorrection/HEAD/img/sentinel-2_ImageTree.png -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testpy6s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhaoguanhua/AtmosphericCorrection/HEAD/testpy6s.py --------------------------------------------------------------------------------