-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ana Ordonez
committed
Feb 3, 2017
1 parent
e8c3c7c
commit dd08e3d
Showing
1 changed file
with
14 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
"""save_stereo_vars.py | ||
calls functions in import_LE_data to project arctic LE data | ||
to stereo grid and save the resulting ouput. Used to | ||
make input data for make_seasonal_storm_composite_plots.py | ||
""" | ||
from import_LE_data import * | ||
|
||
num = '011' | ||
save_atm_vars_as_stereo(num) | ||
save_ice_vars_as_stereo(num) | ||
save_ocn_vars_as_stereo(num) | ||
|
||
|
||
|