Skip to content

Commit 8cfeb05

Browse files
committed
Update the documentation
1 parent 94b9e98 commit 8cfeb05

4 files changed

Lines changed: 72 additions & 0 deletions

File tree

docs/developers_guide/api.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ Ocean tasks
7878
ClimatologyMapArgoSalinity
7979
ClimatologyMapWaves
8080
ClimatologyMapCustom
81+
ClimatologyMapWindStressCurl
8182
GeojsonNetcdfTransects
8283
IndexNino34
8384
MeridionalHeatTransport
@@ -132,6 +133,8 @@ Ocean utilities
132133
add_standard_regions_and_subset
133134
get_standard_region_names
134135
compute_zmid
136+
compute_zinterface
137+
vector_cell_to_edge_isotropic
135138

136139

137140
Sea ice tasks

docs/users_guide/analysis_tasks.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Analysis Tasks
2323
tasks/climatologyMapSSH
2424
tasks/climatologyMapVel
2525
tasks/climatologyMapWaves
26+
tasks/climatologyMapWindStressCurl
2627
tasks/climatologyMapWoa
2728

2829
tasks/antshipTransects
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
.. _task_climatologyMapWindStressCurl:
2+
3+
climatologyMapWindStressCurl
4+
============================
5+
6+
An analysis task for plotting maps of wind stress curl.
7+
8+
Component and Tags::
9+
10+
component: ocean
11+
tags: climatology, horizontalMap, windStressCurl, publicObs
12+
13+
Configuration Options
14+
---------------------
15+
16+
The following configuration options are available for this task::
17+
18+
[climatologyMapWindStressCurl]
19+
## options related to plotting horizontally remapped climatologies of
20+
## wind stress curl against control model results
21+
22+
# colormap for model/observations
23+
colormapNameResult = cmo.curl
24+
# whether the colormap is indexed or continuous
25+
colormapTypeResult = continuous
26+
# color indices into colormapName for filled contours
27+
# the type of norm used in the colormap
28+
normTypeResult = linear
29+
# A dictionary with keywords for the norm
30+
normArgsResult = {'vmin': -1e-6, 'vmax': 1e-6}
31+
32+
# colormap for differences
33+
colormapNameDifference = cmo.balance
34+
# whether the colormap is indexed or continuous
35+
colormapTypeDifference = continuous
36+
# the type of norm used in the colormap
37+
normTypeDifference = linear
38+
# A dictionary with keywords for the norm
39+
normArgsDifference = {'vmin': -2e-7, 'vmax': 2e-7}
40+
41+
# Months or seasons to plot (Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct,
42+
# Nov, Dec, JFM, AMJ, JAS, OND, ANN)
43+
seasons = ['ANN']
44+
45+
# comparison grid(s) on which to plot analysis
46+
comparisonGrids = ['latlon']
47+
48+
For analysis focused on polar regions (using the ``--polar_regions`` flag),
49+
the following config options add Arctic and Antarctic comparison grids::
50+
51+
[climatologyMapWindStressCurl]
52+
## options related to plotting horizontally remapped climatologies of
53+
## wind stress curl against control model results
54+
55+
# comparison grid(s) on which to plot analysis
56+
comparisonGrids = ['latlon', 'arctic_extended', 'antarctic_extended']
57+
58+
For more details, see:
59+
* :ref:`config_colormaps`
60+
* :ref:`config_seasons`
61+
* :ref:`config_comparison_grids`
62+
63+
Example Result
64+
--------------
65+
66+
.. image:: examples/wind_stress_curl.png
67+
:width: 500 px
68+
:align: center
258 KB
Loading

0 commit comments

Comments
 (0)