Skip to content

Commit

Permalink
Updated docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mvremec committed Mar 15, 2024
1 parent 2a15966 commit 5d4dc19
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@
"myst_nb",
"numpydoc",
"sphinx_design",
"recommonmark",
"myst_parser",
]

# Create custom bracket style with round brackets
Expand Down
62 changes: 62 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,68 @@ allows users to estimate potential evapotranspiration and calibrate the models w

References used in the package.

Currently, 18 methods are implemented for calculating daily PET
-----------------------------

+---------------------+---------------------+-----+-----+-----+-----+-----+-----+---------------+
| Method name | pyet function | T | RH | R | u2 | Lat.| El. | Benchmarked? |
+=====================+=====================+=====+=====+=====+=====+=====+=====+===============+
| Penman | penman | ✓ 1 | ✓ 2 | ✓ 3 || ✓ 3 | ✓ 4 ||
+---------------------+---------------------+-----+-----+-----+-----+-----+-----+---------------+
| Penman-Monteith | pm | ✓ 1 | ✓ 2 | ✓ 3 || ✓ 3 | ✓ 4 ||
+---------------------+---------------------+-----+-----+-----+-----+-----+-----+---------------+
| ASCE-PM | pm_asce | ✓ 1 | ✓ 2 | ✓ 3 || ✓ 3 | ✓ 4 ||
+---------------------+---------------------+-----+-----+-----+-----+-----+-----+---------------+
| FAO-56 | pm_fao56 | ✓ 1 | ✓ 2 | ✓ 3 || ✓ 3 | ✓ 4 ||
+---------------------+---------------------+-----+-----+-----+-----+-----+-----+---------------+
| Priestley-Taylor | priestley_taylor || ✓ 5 | ✓ 5 | - | ✓ 5 | ✓ 4 ||
+---------------------+---------------------+-----+-----+-----+-----+-----+-----+---------------+
| Kimberly-Penman | kimberly_penman | ✓ 1 | ✓ 2 | ✓ 3 || ✓ 3 | ✓ 4 | - |
+---------------------+---------------------+-----+-----+-----+-----+-----+-----+---------------+
| Thom-Oliver | thom_oliver | ✓ 1 | ✓ 2 | ✓ 3 || ✓ 3 | ✓ 4 | - |
+---------------------+---------------------+-----+-----+-----+-----+-----+-----+---------------+
| Blaney-Criddle | blaney_criddle || - 6 | - 6 | - 6 || - ||
+---------------------+---------------------+-----+-----+-----+-----+-----+-----+---------------+
| Hamon | hamon || - | - | - || - ||
+---------------------+---------------------+-----+-----+-----+-----+-----+-----+---------------+
| Romanenko | romanenko ||| - | - | - | - ||
+---------------------+---------------------+-----+-----+-----+-----+-----+-----+---------------+
| Linacre | linacre | ✓ 7 | - | - | - | - |||
+---------------------+---------------------+-----+-----+-----+-----+-----+-----+---------------+
| Haude | haude || ✓ 8 | - | - | - | - ||
+---------------------+---------------------+-----+-----+-----+-----+-----+-----+---------------+
| Turc | turc |||| - | - | - ||
+---------------------+---------------------+-----+-----+-----+-----+-----+-----+---------------+
| Jensen-Haise | jensen_haise || - | ✓ 9 | - | ✓ 9 | - ||
+---------------------+---------------------+-----+-----+-----+-----+-----+-----+---------------+
| McGuinness-Bordne | mcguinness_bordne || - | - | - || - ||
+---------------------+---------------------+-----+-----+-----+-----+-----+-----+---------------+
| Hargreaves | hargreaves | ✓ 10| - | - | - || - ||
+---------------------+---------------------+-----+-----+-----+-----+-----+-----
+---------------------+---------------------+-----+-----+-----+-----+-----+-----+---------------+
| FAO-24 radiation | fao_24 ||||| - | ✓ 4 | - |
+---------------------+---------------------+-----+-----+-----+-----+-----+-----+---------------+
| Abtew | abtew || - || - | - | - ||
+---------------------+---------------------+-----+-----+-----+-----+-----+-----+---------------+
| Makkink | makkink || - || - | - | ✓ 4 ||
+---------------------+---------------------+-----+-----+-----+-----+-----+-----+---------------+
| Oudin | oudin || - | - | - || - | - |
+---------------------+---------------------+-----+-----+-----+-----+-----+-----+---------------+

.. rubric:: Footnotes

.. [1] T_max and T_min can also be provided.
.. [2] RH_max and RH_min can also be provided. If actual vapor pressure is provided, RH is not needed.
.. [3] Input for radiation can be (1) Net radiation, (2) solar radiation, or (3) sunshine hours. If (1), then latitude is not needed. If (1, 3) then latitude and elevation are needed.
.. [4] One must provide either the atmospheric pressure or elevation.
.. [5] If net radiation is provided, RH and Lat are not needed.
.. [6] If method==2, u2, RH_min, and sunshine hours are required.
.. [7] Additional input of Tmax and Tmin, or Tdew.
.. [8] Input can be RH or actual vapor pressure.
.. [9] If method==1, latitude is needed instead of Rs.
.. [10] Tmax and Tmin also needed.
Using *pyet*? Show your support by citing us!
-----------------------------

Expand Down

0 comments on commit 5d4dc19

Please sign in to comment.