-
Notifications
You must be signed in to change notification settings - Fork 39
what‘s the unit of rayleigh reflectance #178
Copy link
Copy link
Open
Labels
Description
Hi, thanks for your excellent work. I have a question: what's the unit of Rayleigh reflectance?
Here is the sample code to get Rayleigh reflectance:
from pyspectral.rayleigh import Rayleigh
viirs = Rayleigh('Suomi-NPP', 'viirs')
import numpy as np
sunz = np.array([[32., 40.], [31., 41.]])
satz = np.array([[45., 20.], [46., 21.]])
ssadiff = np.array([[110, 170], [120, 180]])
refl_cor_m2 = viirs.get_reflectance(sunz, satz, ssadiff, 'M2')
print(refl_cor_m2)
[[ 10.45746088 9.69434733]
[ 10.35336108 9.74561515]]
from the results, It is mostly like irradiance contributed by Rayleigh scattering.
Reactions are currently unavailable