Skip to content

Commit 1958116

Browse files
committed
Update the documentation
1 parent 94b9e98 commit 1958116

4 files changed

Lines changed: 74 additions & 0 deletions

File tree

docs/developers_guide/api.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,8 @@ Ocean utilities
132132
add_standard_regions_and_subset
133133
get_standard_region_names
134134
compute_zmid
135+
compute_zinterface
136+
vector_cell_to_edge_isotropic
135137

136138

137139
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: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
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
69+
70+
.. note::
71+
Please update colormap names, value ranges, and add more details or examples as needed for your use case.
258 KB
Loading

0 commit comments

Comments
 (0)