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

Mean climate 3d field vertical coordinate QC #978

Merged
merged 13 commits into from
Sep 19, 2023
Prev Previous commit
Next Next commit
add more regions for mean climate
  • Loading branch information
lee1043 committed Aug 24, 2023
commit 2fe0fda72b88648c9dbe24a7dd0b069e64bd280c
14 changes: 9 additions & 5 deletions pcmdi_metrics/io/default_regions_define.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,29 @@ def load_regions_specs():

regions_specs = {
# Mean Climate
"global": {},
"NHEX": {"domain": {"latitude": (30.0, 90)}},
"SHEX": {"domain": {"latitude": (-90.0, -30)}},
"TROPICS": {"domain": {"latitude": (-30.0, 30)}},
"global": {},
"90S50S": {"domain": {"latitude": (-90.0, -50)}},
"50S20S": {"domain": {"latitude": (-50.0, -20)}},
"20S20N": {"domain": {"latitude": (-20.0, 20)}},
"20N50N": {"domain": {"latitude": (20.0, 50)}},
"50N90N": {"domain": {"latitude": (50.0, 90)}},
"CONUS": {"domain": {"latitude": (24.7, 49.4), "longitude": (-124.78, -66.92)}},
"land": {"value": 100},
"land_NHEX": {"value": 100, "domain": {"latitude": (30.0, 90)}},
"land_SHEX": {"value": 100, "domain": {"latitude": (-90.0, -30)}},
"land_TROPICS": {"value": 100, "domain": {"latitude": (-30.0, 30)}},
"land": {"value": 100},
"land_CONUS": {"value": 100, "domain": {"latitude": (24.7, 49.4), "longitude": (-124.78, -66.92)}},
"ocean": {"value": 0},
"ocean_NHEX": {"value": 0, "domain": {"latitude": (30.0, 90)}},
"ocean_SHEX": {"value": 0, "domain": {"latitude": (-90.0, -30)}},
"ocean_TROPICS": {"value": 0, "domain": {"latitude": (30.0, 30)}},
"ocean": {"value": 0},
"CONUS": {"domain": {"latitude": (24.7, 49.4), "longitude": (-124.78, -66.92)}},
"land_CONUS": {"value": 100, "domain": {"latitude": (24.7, 49.4), "longitude": (-124.78, -66.92)}},
"ocean_50S50N" : {"value":0.,'domain': {latitude=(-50.,50)}},
"ocean_50S20S" : {"value":0.,'domain': {latitude=(-50.,-20)}},
"ocean_20S20N": {"value":0.,'domain': {latitude=(-20.,20)}},
"ocean_20N50N" : {"value":0.,'domain': {latitude=(20.,50)}},
# Modes of variability
"NAM": {"domain": {"latitude": (20.0, 90), "longitude": (-180, 180)}},
"NAO": {"domain": {"latitude": (20.0, 80), "longitude": (-90, 40)}},
Expand Down