Skip to content
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

Add sftof file option to sea ice #1109

Merged
merged 35 commits into from
Dec 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
e988b01
add sft
Jul 30, 2024
2f675de
update fig
Aug 22, 2024
ad83c38
update vars
Aug 22, 2024
e47b7e6
add sft
Aug 22, 2024
a2dc3a7
add sft
Aug 22, 2024
1f451a4
comment for now
Aug 23, 2024
db4ba46
Merge branch 'main' of https://github.com/PCMDI/pcmdi_metrics into ao…
Aug 23, 2024
a0c29de
fix tuple
Aug 23, 2024
84596dc
Merge branch 'acordonez-patch-1' of https://github.com/PCMDI/pcmdi_me…
Aug 23, 2024
6b0b3e2
Merge branch 'acordonez-patch-1' of https://github.com/PCMDI/pcmdi_me…
Aug 23, 2024
8e400c0
fix filename
Aug 28, 2024
7d1182d
updates for sft
Aug 28, 2024
712fa7b
Merge branch 'main' into ao_seaice_file_sft
acordonez Sep 23, 2024
187a2d2
add initials to summ fig
Oct 9, 2024
34703bc
add mask message
Oct 9, 2024
45fbdb5
add ann
Oct 10, 2024
8c0e958
add ann map
Oct 10, 2024
0717a08
Merge branch 'main' into ao_seaice_file_sft
acordonez Oct 10, 2024
cccf7c3
Merge branch 'ao_seaice_file_sft' of https://github.com/PCMDI/pcmdi_m…
Oct 10, 2024
b7440d9
streamline weights
Oct 29, 2024
a683470
remove nc opt
Oct 29, 2024
a2ad308
Merge branch 'main' into ao_seaice_file_sft
acordonez Oct 30, 2024
0cb7bf6
add no mask opt
Oct 30, 2024
2157d60
add no mask opt
Oct 30, 2024
d9dcfb2
Merge branch 'ao_seaice_file_sft' of https://github.com/PCMDI/pcmdi_m…
Oct 30, 2024
839cd59
Merge branch 'main' into ao_seaice_file_sft
acordonez Oct 30, 2024
910db09
Merge branch 'main' into ao_seaice_file_sft
acordonez Nov 18, 2024
22419d9
Merge branch 'main' into ao_seaice_file_sft
acordonez Nov 22, 2024
764e7a4
Merge branch 'main' into ao_seaice_file_sft
acordonez Dec 11, 2024
6832ec0
add doc for new param
Dec 12, 2024
aa69d41
reorder code
Dec 12, 2024
d15a599
update new param
Dec 12, 2024
a0f3414
update notebook
lee1043 Dec 17, 2024
71ddcfb
Merge branch 'main' into ao_seaice_file_sft
lee1043 Dec 17, 2024
90c89ab
Merge branch 'main' into ao_seaice_file_sft
lee1043 Dec 18, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,194 changes: 472 additions & 722 deletions doc/jupyter/Demo/Demo_9_seaIceExtent_ivanova.ipynb

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions docs/metrics_sea_ice.rst
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ A `demo parameter file`_ is provided in the sea ice code.
* **realization**: List of realizations or "*" to use all realizations.
* **test_data_path**: File path to directory containing model/test data.
* **filename_template**: File name template for test data, e.g., "%(variable)_SImon_%(model_version)_historical_r1i2p2f1_gr_201001-201112.nc" where "model_version" and "variable" will be analyzed for each of the entries in test_data_set and vars.
* **sft_filename_template**: File name template for land/sea mask. If sft_filename_template is not provided and no_mask is False, PMP will generate a land/sea mask by default.
* **generate_mask**: Set to True to use PMP-generated land/sea mask (default False). The sft_filename_template variable takes priority over this option if both are set.
* **no_mask**: Set to True to skip the use of a land/sea mask (default False). The sft_filename_template variable takes priority over this option if both are set.
* **var**: Name of model sea ice variable
* **msyear**: Start year for test data set.
* **meyear**: End year for test data set.
Expand All @@ -70,6 +73,7 @@ A `demo parameter file`_ is provided in the sea ice code.
* **obs_area_var**: Name of reference area variable, if available. If unavailable, skip and use "obs_cell_area".
* **obs_cell_area**: For equal area grids, the area of a single grid cell in units of km :sup:`2` . Only required if obs area file is not available.
* **pole**: Set the maximum latitude for the Central Arctic and Arctic regions to exclude ice over the pole. Default is 90.1 to include all ice.
* **netcdf**: Set to True to save the netcdf files of sea ice climatologies (default False).

Postprocessing
==============
Expand Down
4 changes: 4 additions & 0 deletions pcmdi_metrics/sea_ice/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ A [demo parameter file](https://github.com/PCMDI/pcmdi_metrics/blob/405_sic_ao/p
* **realization**: List of realizations or "*" to use all realizations.
* **test_data_path**: File path to directory containing model/test data.
* **filename_template**: File name template for test data, e.g., "%(variable)\_SImon_%(model_version)_historical_r1i2p2f1_gr_201001-201112.nc" where "model_version" and "variable" will be analyzed for each of the entries in test_data_set and vars.
* **sft_filename_template**: File name template for land/sea mask. If sft_filename_template is not provided and no_mask is False, PMP will generate a land/sea mask by default.
* **generate_mask**: Set to True to use PMP-generated land/sea mask (default False). The sft_filename_template variable takes priority over this option if both are set.
* **no_mask**: Set to True to skip the use of a land/sea mask (default False). The sft_filename_template variable takes priority over this option if both are set.
* **var**: Name of model sea ice variable
* **msyear**: Start year for test data set.
* **meyear**: End year for test data set.
Expand All @@ -63,6 +66,7 @@ A [demo parameter file](https://github.com/PCMDI/pcmdi_metrics/blob/405_sic_ao/p
* **obs_area_var**: Name of reference area variable, if available. If unavailable, skip and use "obs_cell_area".
* **obs_cell_area**: For equal area grids, the area of a single grid cell in units of km2. Only required if obs area file is not available.
* **pole**: Set the maximum latitude for the Central Arctic and Arctic regions to exclude ice over the pole. Default is 90.1 to include all ice.
* **netcdf**: Set to True to save the netcdf files of sea ice climatologies (default False).

## Postprocessing

Expand Down
Loading
Loading