-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New
sametimespan
function and some bugfixes. (#76)
* fix ambiguity bug in zonal mean * impelemnt tropics_extratropics for Coord data * correct sametimespan function * aDD TESTS for sametimespan * bump version * fix rtests
- Loading branch information
Showing
7 changed files
with
84 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name = "ClimateBase" | ||
uuid = "35604d93-0fb8-4872-9436-495b01d137e2" | ||
authors = ["Datseris <[email protected]>", "Philippe Roy <[email protected]>"] | ||
version = "0.13.6" | ||
version = "0.13.7" | ||
|
||
[deps] | ||
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -162,6 +162,7 @@ temporal_sampling | |
realtime_days | ||
realtime_milliseconds | ||
seasonality | ||
sametimespan | ||
``` | ||
|
||
## Spatial | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# This file contains the exports for ClimateBase module. | ||
# Having all exports at a single file is overall cleaner | ||
# and leads to easier-to-identify public API. | ||
|
||
# TODO: Actually move all exports here. | ||
|
||
# Temporal | ||
export monthday_indices, maxyearspan, daymonth, realtime_days, realtime_milliseconds, | ||
temporal_sampling, timemean, timeagg, monthlyagg, yearlyagg, temporalrange, seasonalyagg, | ||
season, DAYS_IN_ORBIT, HOURS_IN_ORBIT, seasonality, sametimespan | ||
|
||
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters