<div dir="ltr">Hi <div><br></div><div>I was wondering if anybody could help me find the reference paper used in the equation for MODIS albedo (see below), not necessary the full paper, even the title would help.</div><div>
Thanks in advance.</div><div><br></div><div>Best,</div><div>Jiao</div><div><br></div><div><br></div><div><a href="https://svn.osgeo.org/grass/grass/trunk/imagery/i.albedo/bb_alb_modis.c">https://svn.osgeo.org/grass/grass/trunk/imagery/i.albedo/bb_alb_modis.c</a><br>
</div><div><span style="color:rgb(0,0,0);white-space:pre-wrap">/* </span><br></div><div><pre style="color:rgb(0,0,0);word-wrap:break-word;white-space:pre-wrap"> * Broadband albedo MODIS
 */
double bb_alb_modis(double redchan, double nirchan, double chan3,
                    double chan4, double chan5, double chan6, double chan7)
{
    double result;

    result =
        (0.22831 * redchan + 0.15982 * nirchan +
         0.09132 * (chan3 + chan4 + chan5) + 0.10959 * chan6 +
         0.22831 * chan7);
    return result;
}</pre></div></div>