Description Usage Arguments Value Examples
Uses Emission Angle and Incidence Angle to predict DN
1 |
phase |
the phase angle of the observation |
emission |
the emission angle of the observation |
incidence |
the incidence angle of the observation |
k |
constant between 0 and 1 |
returns minnaert prediction based on emission and incidence angles
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # Out of Bounds
# ---------
k <- as.double(0.5)
phase <- as.double(27.51269913)
emission <- as.double(25.73810005)
incidence <- as.double(46.18210983)
minnaert(phase, emission, incidence, k)
# Success
# -------
phase <- as.double(105.79740143)
emission <- as.double(31.06315994)
incidence <- as.double(76.24420929)
k <- as.double(0.025)
minnaert(phase, emission, incidence, k)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.