Skip to content

Commit

Permalink
Streamline agg methods
Browse files Browse the repository at this point in the history
  • Loading branch information
clampr committed Jun 22, 2021
1 parent aefbe27 commit e78df8b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/python/api/daily/aggregate.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Meteostat uses the following aggregate functions:
* `tmin` => `min`
* `tmax` => `max`
* `prcp` => `sum`
* `snow` => `mean`
* `snow` => `max`
* `wdir` => `mean`
* `wspd` => `mean`
* `wpgt` => `max`
Expand Down
2 changes: 1 addition & 1 deletion src/python/api/hourly/aggregate.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Meteostat uses the following aggregate functions:
* `dwpt` => `mean`
* `rhum` => `mean`
* `prcp` => `sum`
* `snow` => `mean`
* `snow` => `max`
* `wdir` => `mean`
* `wspd` => `mean`
* `wpgt` => `max`
Expand Down
6 changes: 3 additions & 3 deletions src/python/api/monthly/aggregate.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ The `freq` parameter specifies the time series frequency. For full specification
Meteostat uses the following aggregate functions:

* `tavg` => `mean`
* `tmin` => `min`
* `tmax` => `max`
* `tmin` => `mean`
* `tmax` => `mean`
* `prcp` => `sum`
* `snow` => `mean`
* `snow` => `max`
* `wdir` => `mean`
* `wspd` => `mean`
* `wpgt` => `max`
Expand Down

0 comments on commit e78df8b

Please sign in to comment.