Run atmospheric radiative transfer simulations easily with a intuitive Python interface to the 6S model
By Robin Wilson, University of Southampton
from Py6S import * # Set some parameters s = SixS() s.wavelength = Wavelength(0.471) s.aot550 = 0.27 s.ground_reflectance = GroundReflectance.HomogenousLambertian(0.36) s.run() print(s.outputs.apparent_radiance)