-
Notifications
You must be signed in to change notification settings - Fork 16
Split global_time_series task #722
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -318,12 +318,20 @@ color = string(default="Blue") | |
| experiment_name = string(default="") | ||
| # What the plot files should be named | ||
| figstr = string(default="") | ||
| # Set to True to construct a Viewer page | ||
| make_viewer = boolean(default=False) | ||
| # regions to plot: glb, n, s (global, northern hemisphere, southern hemisphere) | ||
| regions = string(default="glb,n,s") | ||
| ts_years = string_list(default=list("")) | ||
| # `years = "1-100",` would plot years 1 to 100 on the graphs. | ||
| # | ||
| # These are only needed if make_viewer = False (default): | ||
| # | ||
| # The specific subdirectory with the ocean data | ||
| # NOTE: always overrides value in [default] | ||
| input_subdir = string(default="archive/ocn/hist") | ||
| # Set to True to construct a Viewer page | ||
| make_viewer = boolean(default=False) | ||
| moc_file = string(default="") | ||
| # nrows, ncols are DEPRECATED. Specifying them will have no effect. | ||
| # Number of columns per page | ||
| ncols = integer(default=2) | ||
| # Number of rows per page | ||
|
|
@@ -337,17 +345,34 @@ nrows = integer(default=4) | |
| # net_atm_water_imbalance requires PRECC, PRECL, QFLX | ||
| # Remove the 3 ocean plots (change_ohc,max_moc,change_sea_level) if you don't have ocean data. | ||
| plots_original = string(default="net_toa_flux_restom,global_surface_air_temperature,toa_radiation,net_atm_energy_imbalance,change_ohc,max_moc,change_sea_level,net_atm_water_imbalance") | ||
| # | ||
| # These are only needed if make_viewer = True: | ||
| # | ||
| # The names of the extra plots you want displayed (i.e., define specific variables) | ||
| # These should be a subset of the `vars` generated by the `ts` `glb` subtasks. | ||
| plots_atm = string(default="") | ||
| plots_ice = string(default="") | ||
| # Set `plots_lnd = "all"` to run every variable in the land csv file. | ||
| plots_lnd = string(default="") | ||
| plots_ocn = string(default="") | ||
| # regions to plot: glb, n, s (global, northern hemisphere, southern hemisphere) | ||
| regions = string(default="glb,n,s") | ||
| ts_years = string_list(default=list("")) | ||
| # `years = "1-100",` would plot years 1 to 100 on the graphs. | ||
|
|
||
| [[__many__]] | ||
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Adds |
||
| climo_years = string_list(default=None) | ||
| color = string(default=None) | ||
| experiment_name = string(default=None) | ||
| figstr = string(default=None) | ||
| input_subdir = string(default=None) | ||
| make_viewer = boolean(default=None) | ||
| moc_file = string(default=None) | ||
| ncols = integer(default=None) | ||
| nrows = integer(default=None) | ||
| plots_original = string(default=None) | ||
| plots_atm = string(default=None) | ||
| plots_ice = string(default=None) | ||
| plots_lnd = string(default=None) | ||
| plots_ocn = string(default=None) | ||
| regions = string(default=None) | ||
| ts_years = string_list(default=None) | ||
|
|
||
| [ilamb] | ||
| cfg = string(default="inclusions/ilamb/ilamb.cfg") | ||
|
|
||
This file contains hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Now testing with NCO running all
lndvariables.