Skip to content

Commit

Permalink
Add todo comments
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvothecoder committed Nov 12, 2024
1 parent 2ff2ba7 commit 8f9af92
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions xcdat/temporal.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,6 @@ def group_average(
representing a custom season.
* Month strings must be in the three letter format (e.g., 'Jan')
* Each month must be included once in a custom season
* Order of the months in each custom season does not matter
* Custom seasons can vary in length
Expand Down Expand Up @@ -529,7 +528,6 @@ def climatology(
representing a custom season.
* Month strings must be in the three letter format (e.g., 'Jan')
* Each month must be included once in a custom season
* Order of the months in each custom season does not matter
* Custom seasons can vary in length
Expand Down Expand Up @@ -739,7 +737,6 @@ def departures(
representing a custom season.
* Month strings must be in the three letter format (e.g., 'Jan')
* Each month must be included once in a custom season
* Order of the months in each custom season does not matter
* Custom seasons can vary in length
Expand Down Expand Up @@ -1381,6 +1378,11 @@ def _drop_incomplete_seasons(self, ds: xr.Dataset) -> xr.Dataset:
pd.DataFrame
A DataFrame of seasonal datetime components with only complete
seasons.
Notes
-----
TODO: Refactor this method to use pure Xarray/NumPy operations, rather
than Pandas.
"""
# Transform the time coords into a DataFrame of seasonal datetime
# components based on the grouping mode.
Expand Down

0 comments on commit 8f9af92

Please sign in to comment.