Convert ASTER-VA products as normalized reflectance.
- GRASS GIS 7.X (6.X not supported)
- Python
- numpy
https://gbank.gsj.jp/madas/map/index.htm://gbank.gsj.jp/madas/map/index.html
$ make original
$ for file in `ls *.tar.bz2`; do bzip2 -dc ${file} | tar xvf -; mv ${file} original done
$ cd src
$ chmod +x *.sh *.py
$ ./convert_normalized_reflectance.sh
Other script will be called by ./convert_normalized_reflectance.sh .
L_λ = ( DN - 1) * UCC
where UCC : Unit Conversion Coefficient (W/m2/sr/um).
UCC got from this site (p.43) :https://unit.aist.go.jp/igg/rs-rg/ASTERSciWeb_AIST/jp/documnts/users_guide/part1/pdf/Part2_5.1J.pdf
ρ_TOA,λ = π * L_λ * d^2 / (E_sun,λ * cos(θs))
where ρ_TOA,λ:TOA radiation, d:Earth-Sun distance, E_sun,λ:Mean solar exoatmospheric irradiances, θs:Solar zenith angle (deg).
d^2 calced from this equation:
d^2 = (1 / (1+0.033 * cos (2π*DOY/365)))
refelence:https://unit.aist.go.jp/igg/rs-rg/ASTERSciWeb_AIST/jp/documnts/users_guide/part1/pdf/Part2_5.1J.pdf
r_i = (ρ_TOA,λ) /( (1/n) * Σ ρ_TOA,λ)
where n is number of band (in this case, n=3)