Skip to content

Commit e78df8b

Browse files
committed
Streamline agg methods
1 parent aefbe27 commit e78df8b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/python/api/daily/aggregate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Meteostat uses the following aggregate functions:
2727
* `tmin` => `min`
2828
* `tmax` => `max`
2929
* `prcp` => `sum`
30-
* `snow` => `mean`
30+
* `snow` => `max`
3131
* `wdir` => `mean`
3232
* `wspd` => `mean`
3333
* `wpgt` => `max`

src/python/api/hourly/aggregate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Meteostat uses the following aggregate functions:
2727
* `dwpt` => `mean`
2828
* `rhum` => `mean`
2929
* `prcp` => `sum`
30-
* `snow` => `mean`
30+
* `snow` => `max`
3131
* `wdir` => `mean`
3232
* `wspd` => `mean`
3333
* `wpgt` => `max`

src/python/api/monthly/aggregate.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ The `freq` parameter specifies the time series frequency. For full specification
2424
Meteostat uses the following aggregate functions:
2525

2626
* `tavg` => `mean`
27-
* `tmin` => `min`
28-
* `tmax` => `max`
27+
* `tmin` => `mean`
28+
* `tmax` => `mean`
2929
* `prcp` => `sum`
30-
* `snow` => `mean`
30+
* `snow` => `max`
3131
* `wdir` => `mean`
3232
* `wspd` => `mean`
3333
* `wpgt` => `max`

0 commit comments

Comments
 (0)