-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from schism-dev/feature/extend_atmos
Completed 6-hourly forecasts with NWM+GFS
- Loading branch information
Showing
20 changed files
with
1,151 additions
and
868 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
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 |
---|---|---|
|
@@ -5,3 +5,10 @@ dist/ | |
__pycache__ | ||
*_env | ||
.ipynb_checkpoints | ||
forecast | ||
.vscode | ||
*.swp | ||
*.nc | ||
hgrid.* | ||
fgrid.* | ||
vgrid.* |
Large diffs are not rendered by default.
Oops, something went wrong.
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
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,33 @@ | ||
from datetime import datetime | ||
|
||
import numpy as np | ||
import pytz | ||
|
||
|
||
def pivot_time(input_datetime=None): | ||
""" | ||
"pivot time" is defined as the nearest floor t00z for any given datetime. | ||
If this function is called without arguments, it will return the pivot time | ||
for the current datetime in UTC. | ||
""" | ||
input_datetime = nearest_cycle_date() if input_datetime is None else \ | ||
localize_datetime(input_datetime).astimezone(pytz.utc) | ||
return localize_datetime( | ||
datetime(input_datetime.year, input_datetime.month, input_datetime.day) | ||
) | ||
|
||
|
||
def nearest_cycle_date(input_datetime=None, period=6): | ||
if input_datetime is None: | ||
input_datetime = localize_datetime(datetime.utcnow()) | ||
current_cycle = int(period * np.floor(input_datetime.hour / period)) | ||
return pytz.timezone('UTC').localize( | ||
datetime(input_datetime.year, input_datetime.month, | ||
input_datetime.day, current_cycle)) | ||
|
||
|
||
def localize_datetime(d): | ||
# datetime is naïve iff: | ||
if d.tzinfo is None or d.tzinfo.utcoffset(d) is None: | ||
return pytz.timezone('UTC').localize(d) | ||
return d |
Oops, something went wrong.