Skip to content

Commit

Permalink
Added xarray tests
Browse files Browse the repository at this point in the history
Added tests for xarray.Datarrays
  • Loading branch information
mvremec committed Jan 17, 2024
1 parent 65145b2 commit b2171bb
Show file tree
Hide file tree
Showing 11 changed files with 2,157 additions and 643 deletions.
54 changes: 49 additions & 5 deletions pyet/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,51 @@
from . import combination
from . import temperature
from . import radiation
from . import meteo_utils
from . import rad_utils
from .combination import (
penman,
pm_asce,
pm,
pm_fao56,
priestley_taylor,
kimberly_penman,
thom_oliver,
calculate_all,
)
from .temperature import blaney_criddle, haude, hamon, romanenko, linacre
from .radiation import (
turc,
jensen_haise,
mcguinness_bordne,
hargreaves,
fao_24,
abtew,
makkink,
makkink_knmi,
oudin,
)
from .meteo_utils import (
calc_psy,
calc_vpc,
calc_lambda,
calc_press,
calc_rho,
calc_e0,
calc_es,
calc_ea,
extraterrestrial_r,
calc_res_surf,
calc_laieff,
calc_res_aero,
relative_distance,
solar_declination,
sunset_angle,
day_of_year,
daylight_hours,
)

from .rad_utils import (
calc_rad_net,
calc_rad_long,
calc_rad_short,
calc_rad_sol_in,
calc_rso,
)
from .version import __version__
from .utils import show_versions
Loading

0 comments on commit b2171bb

Please sign in to comment.