浏览代码

Uploaded new ASTER 2 bands Albedo equation

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@67435 15284696-431f-4ddb-bdfa-cd5b030d7da7
Yann Chemin 9 年之前
父节点
当前提交
16d01afa59
共有 2 个文件被更改,包括 21 次插入0 次删除
  1. 14 0
      imagery/i.albedo/bb_alb_aster2bands.c
  2. 7 0
      imagery/i.albedo/i.albedo.html

+ 14 - 0
imagery/i.albedo/bb_alb_aster2bands.c

@@ -0,0 +1,14 @@
+/* Broadband albedo Aster
+ * Salleh and Chan, 2014. 
+ * Land Surface Albedo Determination: 
+ * Remote Sensing and Statistical Validation. 
+ * in proceedings of FIG 2014.
+ * https://www.fig.net/resources/proceedings/fig_proceedings/fig2014/papers/ts05g/TS05G_salleh_chan_6910.pdf
+ * Input: Ref1, Ref3
+ */
+double bb_alb_aster(double greenchan, double nirchan, double swirchan2)
+{
+    double result =
+	(0.697 * greenchan + 0.298 * nirchan - 0.008);
+    return result;
+}

+ 7 - 0
imagery/i.albedo/i.albedo.html

@@ -23,6 +23,13 @@ Maybe change input requirement of MODIS to [0.0-1.0]?
 <a href="i.vi.html">i.vi</a>
 </em>
 
+<h2>References</h2>
+For a 2 band determination of the Aster BB Albedo see the following:
+
+Salleh and Chan, 2014. Land Surface Albedo Determination: Remote Sensing and Statistical Validation. in proceedings of FIG 2014.
+
+https://www.fig.net/resources/proceedings/fig_proceedings/fig2014/papers/ts05g/TS05G_salleh_chan_6910.pdf
+
 <h2>AUTHOR</h2>
 
 Yann Chemin