-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
75 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Package: water | ||
Title: Actual Evapotranspiration with Energy Balance models | ||
Version: 0.0.2.2 | ||
Version: 0.0.2.3 | ||
Date: 2015-08-26 | ||
Authors@R: c(person("Guillermo Federico", "Olmedo", role = c("aut", "cre"), email = "[email protected]")) | ||
Author: Guillermo Federico Olmedo [aut, cre] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
water: | ||
change log. From 09/09/2015. Most recent changes first / on top. | ||
Guillermo OLMEDO | ||
----------------------------------------------------------------- | ||
|
||
VERSION 0.0.2.3 | ||
|
||
* Rename sensibleHEatFlux() to sensibleHEatFlux_old() | ||
* Remove sensibleHEatFlux.CITRA() | ||
* Split sensibleHeatFlux in 2 new functions: | ||
- calcAnchors() for anchors points | ||
- sensibleHeatFlux() for the iterative process to calculate H and dT | ||
* Added function to estimate Net Radiation |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
% Generated by roxygen2 (4.1.1): do not edit by hand | ||
% Please edit documentation in R/water_sensibleHeatFlux.R | ||
\name{calcAnchors} | ||
\alias{calcAnchors} | ||
\title{Select anchors pixels for H function} | ||
\usage{ | ||
calcAnchors(image, Ts, LAI, albedo, Z.om, n = 1, | ||
anchors.method = "CITRA-MCB", sat = "auto", ESPA = F, plots = TRUE, | ||
deltaTemp = 5) | ||
} | ||
\description{ | ||
Select anchors pixels for H function | ||
} | ||
\author{ | ||
Guillermo F Olmedo, \email{guillermo.olmedo@gmail.com} | ||
} | ||
\references{ | ||
CITRA y MCB (com pers) | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
% Generated by roxygen2 (4.1.1): do not edit by hand | ||
% Please edit documentation in R/water_sensibleHeatFlux.R | ||
\name{calcH} | ||
\alias{calcH} | ||
\title{Iterative function to estimate H and R.ah} | ||
\usage{ | ||
calcH(anchors, Ts, Z.om, weatherStation, ETp.coef = 1.05, Z.om.ws = 0.0018, | ||
sat = "auto", ESPA = F, mountainous = FALSE, DEM, Rn, G) | ||
} | ||
\description{ | ||
Iterative function to estimate H and R.ah | ||
} | ||
\author{ | ||
Guillermo F Olmedo, \email{guillermo.olmedo@gmail.com} | ||
} | ||
\references{ | ||
R. G. Allen, M. Tasumi, and R. Trezza, "Satellite-based energy balance for mapping evapotranspiration with internalized calibration (METRIC) - Model" Journal of Irrigation and Drainage Engineering, vol. 133, p. 380, 2007 | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
% Generated by roxygen2 (4.1.1): do not edit by hand | ||
% Please edit documentation in R/water_netRadiation.G.R | ||
\name{netRadiation} | ||
\alias{netRadiation} | ||
\title{Estimates net radiation} | ||
\usage{ | ||
netRadiation(LAI, albedo, Rs.inc, Rl.inc, Rl.out) | ||
} | ||
\description{ | ||
Estimates net radiation | ||
} | ||
\author{ | ||
Guillermo F Olmedo, \email{guillermo.olmedo@gmail.com} | ||
} | ||
\references{ | ||
R. G. Allen, M. Tasumi, and R. Trezza, "Satellite-based energy balance for mapping evapotranspiration with internalized calibration (METRIC) - Model" Journal of Irrigation and Drainage Engineering, vol. 133, p. 380, 2007 | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters