Skip to content

Commit d2c2ee9

Browse files
committed
Set under/over indices for diffs in sea ice conc/thick
1 parent 67a7aa4 commit d2c2ee9

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

mpas_analysis/default.cfg

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4502,7 +4502,7 @@ colormapNameDifference = balance
45024502
# whether the colormap is indexed or continuous
45034503
colormapTypeDifference = indexed
45044504
# color indices into colormapName for filled contours
4505-
colormapIndicesDifference = [0, 32, 64, 96, 112, 128, 128, 144, 160, 192, 224, 255]
4505+
colormapIndicesDifference = [0, 0, 26, 51, 77, 102, 128, 128, 153, 179, 204, 230, 255, 255]
45064506
# colormap levels/values for contour boundaries
45074507
colorbarLevelsDifference = [-0.5, -0.4, -0.3, -0.2, -0.1, -0.05, 0, 0.05, 0.1, 0.2, 0.3, 0.4, 0.5]
45084508

@@ -4548,7 +4548,7 @@ colormapNameDifference = balance
45484548
# whether the colormap is indexed or continuous
45494549
colormapTypeDifference = indexed
45504550
# color indices into colormapName for filled contours
4551-
colormapIndicesDifference = [0, 32, 64, 96, 112, 128, 128, 144, 160, 192, 224, 255]
4551+
colormapIndicesDifference = [0, 0, 26, 51, 77, 102, 128, 128, 153, 179, 204, 230, 255, 255]
45524552
# colormap levels/values for contour boundaries
45534553
colorbarLevelsDifference = [-0.5, -0.4, -0.3, -0.2, -0.1, -0.05, 0, 0.05, 0.1, 0.2, 0.3, 0.4, 0.5]
45544554

@@ -4594,7 +4594,7 @@ colormapNameDifference = balance
45944594
# whether the colormap is indexed or continuous
45954595
colormapTypeDifference = indexed
45964596
# color indices into colormapName for filled contours
4597-
colormapIndicesDifference = [0, 32, 64, 96, 128, 128, 160, 192, 224, 255]
4597+
colormapIndicesDifference = [0, 0, 32, 64, 96, 128, 128, 160, 192, 223, 255, 255]
45984598
# colormap levels/values for contour boundaries
45994599
colorbarLevelsDifference = [-3., -2.5, -2, -0.5, -0.1, 0, 0.1, 0.5, 2, 2.5, 3.]
46004600

@@ -4635,7 +4635,7 @@ colormapNameDifference = balance
46354635
# whether the colormap is indexed or continuous
46364636
colormapTypeDifference = indexed
46374637
# color indices into colormapName for filled contours
4638-
colormapIndicesDifference = [0, 32, 64, 96, 128, 128, 160, 192, 224, 255]
4638+
colormapIndicesDifference = [0, 0, 32, 64, 96, 128, 128, 160, 192, 223, 255, 255]
46394639
# colormap levels/values for contour boundaries
46404640
colorbarLevelsDifference = [-3., -2.5, -2, -0.5, -0.1, 0, 0.1, 0.5, 2, 2.5, 3.]
46414641

mpas_analysis/sea_ice/climatology_map_sea_ice_conc.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ def _add_obs_tasks(self, seasons, comparisonGridNames, hemisphere,
184184
galleryName='Observations: SSM/I {}'.format(
185185
prefix),
186186
maskMinThreshold=minConcentration,
187-
extend='neither',
187+
extend='both',
188188
prependComparisonGrid=False)
189189

190190
self.add_subtask(subtask)
@@ -231,7 +231,7 @@ def _add_ref_tasks(self, seasons, comparisonGridNames, hemisphere,
231231
groupLink='{}_conc'.format(hemisphere.lower()),
232232
galleryName=galleryName,
233233
maskMinThreshold=minConcentration,
234-
extend='neither',
234+
extend='both',
235235
prependComparisonGrid=False)
236236

237237
self.add_subtask(subtask)

mpas_analysis/sea_ice/climatology_map_sea_ice_thick.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ def __init__(self, config, mpasClimatologyTask, hemisphere,
166166
groupLink=f'{hemisphere.lower()}_thick',
167167
galleryName=galleryName,
168168
maskMinThreshold=0,
169-
extend='neither',
169+
extend='both',
170170
prependComparisonGrid=False)
171171

172172
self.add_subtask(subtask)

0 commit comments

Comments
 (0)