i.evapo.time.html 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <H2>DESCRIPTION</H2>
  2. <EM>i.evapo.time_integration</EM> integrates ETa in time following a reference ET (typically) from a set of meteorological stations dataset.
  3. Inputs:
  4. - ETa images
  5. - ETa images DOY (Day of Year)
  6. - ETo images
  7. - ETo DOYmin as a single value
  8. Method:
  9. 1 - each ETa pixel is divided by the same day ETo and become ETrF
  10. 2 - each ETrF pixel is multiplied by the ETo sum for the representative days
  11. 3 - Sum all n temporal [ETrF*ETo_sum] pixels to make a summed(ET) in [DOYmin;DOYmax]
  12. representative days calculation:
  13. let assume i belongs to range [DOYmin;DOYmax]
  14. DOYbeforeETa[i] = ( DOYofETa[i] - DOYofETa[i-1] ) / 2
  15. DOYafterETa[i] = ( DOYofETa[i+1] - DOYofETa[i] ) / 2
  16. <H2>NOTES</H2>
  17. ETo images preparation:
  18. If you only have one meteorological station data, the easiest way is:
  19. n=0
  20. for ETo_val in Eto[1] Eto[2] ...
  21. do
  22. r.mapcalc "eto$n = $ETo_val"
  23. `expr n = n + 1'
  24. done
  25. with Eto[1], Eto[2], etc being a simple copy and paste from your data file of all ETo values separated by an empty space from each other.
  26. If you have several meteorological stations data, then you need to grid them, Thiessen polygons or interpolation for each day.
  27. For multi-year calculations, just continue incrementing DOY values above 366, it will continue working, up to maximum input of 400 satellite images.
  28. <H2>TODO</H2>
  29. <H2>SEE ALSO</H2>
  30. <em>
  31. <A HREF="i.eb.eta.html">i.eb.eta</A><br>
  32. <A HREF="i.evapo.potrad.html">i.evapo.potrad</A><br>
  33. <A HREF="i.evapo.SENAY.html">i.evapo.SENAY</A><br>
  34. <A HREF="r.surf.idw.html">r.surf.idw</A><br>
  35. <A HREF="r.surf.idw2.html">r.surf.idw2</A><br>
  36. <A HREF="r.bilinear.html">r.bilinear</A><br>
  37. </em>
  38. <H2>AUTHORS</H2>
  39. Yann Chemin, International Rice Research Institute, The Philippines<BR>
  40. <p>
  41. <i>Last changed: $Date: 2008/08/25 06:17:43 $</i>