Skip to content

Commit caddb2d

Browse files
committed
Update docs
1 parent 6cca036 commit caddb2d

File tree

6 files changed

+28
-12
lines changed

6 files changed

+28
-12
lines changed

docs/developers_guide/api.rst

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,9 @@ Ocean tasks
9494
WoaTransects
9595
WoceTransects
9696

97+
Ocean subtasks
98+
--------------
99+
97100
.. currentmodule:: mpas_analysis.ocean.compute_anomaly_subtask
98101

99102
.. autosummary::
@@ -116,6 +119,19 @@ Ocean tasks
116119
PlotHovmollerSubtask
117120

118121

122+
Ocean utilities
123+
---------------
124+
125+
.. currentmodule:: mpas_analysis.ocean.utility
126+
127+
.. autosummary::
128+
:toctree: generated/
129+
130+
add_standard_regions_and_subset
131+
get_standard_region_names
132+
compute_zmid
133+
134+
119135
Sea ice tasks
120136
-------------
121137

docs/users_guide/config/regions.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ within MPAS-Analysis using region mask files::
1515

1616
# list of region names (needs to be in the same order as region indices in
1717
# time-series stats)
18-
regions = ['arctic', 'equatorial', 'so', 'nino3', 'nino4', 'nino3.4', 'global']
19-
# list of plot titles (needs to be in the same order as region indices in
20-
# time-series stats)
21-
plotTitles = ['Arctic', 'Equatorial (15S-15N)', 'Southern Ocean', 'Nino 3',
18+
regionShortNames = ['arctic', 'equatorial', 'so', 'nino3', 'nino4', 'nino3.4',
19+
'global']
20+
# list of full names (e.g. for plot titles) same order as regionShortNames
21+
regionNames = ['Arctic', 'Equatorial (15S-15N)', 'Southern Ocean', 'Nino 3',
2222
'Nino 4', 'Nino 3.4', 'Global Ocean']
2323

2424

docs/users_guide/tasks/timeSeriesOHCAnomaly.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ The following configuration options are available for this task::
2121
## options related to plotting time series of ocean heat content (OHC)
2222
## anomalies from year 1
2323

24-
# list of regions to plot from the region list in [regions] below
25-
regions = ['global']
24+
# list of region shrot names to plot from the region list in [regions] above
25+
regionShortNames = ['global']
2626

2727
# approximate depths (m) separating plots of the upper, middle and lower ocean
2828
depths = [700, 2000]

docs/users_guide/tasks/timeSeriesSST.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ The following configuration options are available for this task::
2020
[timeSeriesSST]
2121
## options related to plotting time series of sea surface temperature (SST)
2222

23-
# list of regions to plot from the region list in [regions] below
24-
regions = ['global']
23+
# list of region shrot names to plot from the region list in [regions] above
24+
regionShortNames = ['global']
2525

2626
# Number of points over which to compute moving average (e.g., for monthly
2727
# output, movingAveragePoints=12 corresponds to a 12-month moving average

docs/users_guide/tasks/timeSeriesSalinityAnomaly.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ The following configuration options are available for this task::
2020
[hovmollerSalinityAnomaly]
2121
## options related to plotting time series of salinity vs. depth
2222

23-
# list of regions to plot from the region list in [regions] below
24-
regions = ['global']
23+
# list of region shrot names to plot from the region list in [regions] above
24+
regionShortNames = ['global']
2525

2626
# Number of points over which to compute moving average(e.g., for monthly
2727
# output, movingAveragePoints=12 corresponds to a 12-month moving average

docs/users_guide/tasks/timeSeriesTemperatureAnomaly.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ The following configuration options are available for this task::
2020
[hovmollerTemperatureAnomaly]
2121
## options related to plotting time series of potential temperature vs. depth
2222

23-
# list of regions to plot from the region list in [regions] below
24-
regions = ['global']
23+
# list of region shrot names to plot from the region list in [regions] above
24+
regionShortNames = ['global']
2525

2626
# Number of points over which to compute moving average(e.g., for monthly
2727
# output, movingAveragePoints=12 corresponds to a 12-month moving average

0 commit comments

Comments
 (0)