├── .gitignore ├── BAR.py ├── BARfunctions.py ├── LICENSE ├── README.md ├── granuleFiles └── info.txt └── models ├── AOD └── info.txt ├── ApproximationError └── approximationerror.json ├── FMF └── info.txt ├── LUT └── LUTinformation.txt └── SurfaceReflectance └── 2014 └── info.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ISI/BARalgorithm/HEAD/.gitignore -------------------------------------------------------------------------------- /BAR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ISI/BARalgorithm/HEAD/BAR.py -------------------------------------------------------------------------------- /BARfunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ISI/BARalgorithm/HEAD/BARfunctions.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ISI/BARalgorithm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ISI/BARalgorithm/HEAD/README.md -------------------------------------------------------------------------------- /granuleFiles/info.txt: -------------------------------------------------------------------------------- 1 | This is a directory for granules to be retrieved. 2 | -------------------------------------------------------------------------------- /models/AOD/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ISI/BARalgorithm/HEAD/models/AOD/info.txt -------------------------------------------------------------------------------- /models/ApproximationError/approximationerror.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ISI/BARalgorithm/HEAD/models/ApproximationError/approximationerror.json -------------------------------------------------------------------------------- /models/FMF/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ISI/BARalgorithm/HEAD/models/FMF/info.txt -------------------------------------------------------------------------------- /models/LUT/LUTinformation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ISI/BARalgorithm/HEAD/models/LUT/LUTinformation.txt -------------------------------------------------------------------------------- /models/SurfaceReflectance/2014/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUT-ISI/BARalgorithm/HEAD/models/SurfaceReflectance/2014/info.txt --------------------------------------------------------------------------------