Skip to content

Commit

Permalink
Add colormap config options for Arctic BSF
Browse files Browse the repository at this point in the history
  • Loading branch information
xylar committed Mar 7, 2025
1 parent bc19d42 commit 0ec7d16
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions mpas_analysis/polar_regions.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -613,6 +613,45 @@ yLim = [-600., -5.]
comparisonGrids = ['latlon', 'arctic_extended', 'antarctic_extended',
'subpolar_north_atlantic', 'fris']

[climatologyMapBSFArcticExtended]
## options related to plotting Arctic climatologies of the barotropic
## streamfunction (BSF)

# colormap for model/observations
colormapNameResult = blue-orange-div
# whether the colormap is indexed or continuous
colormapTypeResult = continuous
# color indices into colormapName for filled contours
# the type of norm used in the colormap
normTypeResult = symLog
# A dictionary with keywords for the norm
normArgsResult = {'linthresh': 10., 'linscale': 0.5, 'vmin': -50., 'vmax': 50.}
colorbarTicksResult = [-50., -40., -20., -10., 5., 0., 5., 10., 20., 40., 50.]
# Adding contour lines to the figure
contourLevelsResult = np.arange(-50., 50.1, 5.)
contourThicknessResult = 0.5
contourColorResult = black
# The spacing (in meters) between arrows on contours in projection plots
# (None to disable)
arrowSpacingResult = 8e5
# The width (in meters) of arrows on contours in projection plots (None to
# disable)
arrowWidthResult = 1.5e4

# colormap for differences
colormapNameDifference = cmo.balance
# whether the colormap is indexed or continuous
colormapTypeDifference = continuous
# the type of norm used in the colormap
normTypeDifference = linear
# A dictionary with keywords for the norm
normArgsDifference = {'vmin': -10., 'vmax': 10.}
# colorbarTicksDifference = numpy.linspace(-10., 10., 9)

# minimum and maximum latitude (degrees) between which the mean BSF on boundary
# vertices averages to zero
latitudeRangeForZeroBSF = (60.0, 90.0)

[climatologyMapBSFAntarcticExtended]
## options related to plotting Antarctic climatologies of the barotropic
## streamfunction (BSF)
Expand Down

0 comments on commit 0ec7d16

Please sign in to comment.