Skip to content

Commit af65855

Browse files
committed
v3.15.4 documentation
1 parent ccae428 commit af65855

File tree

3,888 files changed

+16895
-17167
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,888 files changed

+16895
-17167
lines changed

cf/mixin/propertiesdata.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3282,7 +3282,7 @@ def equivalent(self, other, rtol=None, atol=None, traceback=False):
32823282
return True
32833283

32843284
# Check that each instance is the same type
3285-
if type(self) != type(other):
3285+
if type(self) is not type(other):
32863286
print(
32873287
f"{self.__class__.__name__}: Different types: "
32883288
f"{self.__class__.__name__}, {other.__class__.__name__}"

cf/mixin/propertiesdatabounds.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1734,7 +1734,7 @@ def equivalent(self, other, rtol=None, atol=None, traceback=False):
17341734
return True
17351735

17361736
# Check that each instance is the same type
1737-
if type(self) != type(other):
1737+
if type(self) is not type(other):
17381738
print(
17391739
f"{self.__class__.__name__}: Different types: "
17401740
f"{self.__class__.__name__}, {other.__class__.__name__}"

docs/2_to_3_changes.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444

4545

4646

47-
<h1 class="logo"><a href="index.html">cf 3.15.3</a></h1>
47+
<h1 class="logo"><a href="index.html">cf 3.15.4</a></h1>
4848

4949

5050

@@ -142,7 +142,7 @@ <h2>Python<a class="headerlink" href="#python" title="Permalink to this headline
142142
</section>
143143
<section id="in-place-operations">
144144
<h2>In-place operations<a class="headerlink" href="#in-place-operations" title="Permalink to this headline"></a></h2>
145-
<p>At version 3.x, in-place operations return <a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.11)"><code class="xref py py-obj docutils literal notranslate"><span class="pre">None</span></code></a>, rather than the
145+
<p>At version 3.x, in-place operations return <a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.12)"><code class="xref py py-obj docutils literal notranslate"><span class="pre">None</span></code></a>, rather than the
146146
modified construct. The keyword that defines the operation to be
147147
in-place is now <em>inplace</em> (rather than <em>i</em>).</p>
148148
<div class="highlight-python notranslate"><div class="highlight"><pre><span></span><span class="gp">&gt;&gt;&gt; </span><span class="n">g</span> <span class="o">=</span> <span class="n">f</span><span class="o">.</span><span class="n">tranpose</span><span class="p">()</span>
@@ -491,7 +491,7 @@ <h2>Changes to the API of existing methods<a class="headerlink" href="#changes-
491491
<div class="clearer"></div>
492492
</div>
493493
<div class="footer">
494-
&copy;2023, NCAS | Page built on 2023-08-31.
494+
&copy;2023, NCAS | Page built on 2023-10-10.
495495

496496
|
497497
Powered by <a href="http://sphinx-doc.org/">Sphinx 2.4.5</a>

docs/Changelog.html

+256-239
Large diffs are not rendered by default.

docs/_downloads/cf_tutorial_files.zip

0 Bytes
Binary file not shown.

docs/_sources/recipes/sg_execution_times.rst.txt

-14
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,10 @@
55

66
Computation times
77
=================
8-
<<<<<<< HEAD
98
**07:52.733** total execution time for **recipes** files:
109

1110
+-------------------------------------------------------------------+-----------+--------+
1211
| :ref:`sphx_glr_recipes_plot_15_recipe.py` (``plot_15_recipe.py``) | 07:52.733 | 0.0 MB |
13-
=======
14-
**60:33.053** total execution time for **recipes** files:
15-
16-
+-------------------------------------------------------------------+-----------+--------+
17-
| :ref:`sphx_glr_recipes_plot_15_recipe.py` (``plot_15_recipe.py``) | 54:12.592 | 0.0 MB |
18-
+-------------------------------------------------------------------+-----------+--------+
19-
| :ref:`sphx_glr_recipes_plot_13_recipe.py` (``plot_13_recipe.py``) | 05:17.754 | 0.0 MB |
20-
+-------------------------------------------------------------------+-----------+--------+
21-
| :ref:`sphx_glr_recipes_plot_12_recipe.py` (``plot_12_recipe.py``) | 01:02.707 | 0.0 MB |
22-
>>>>>>> 972cdaadceecfaa123a4956c50333c6bc1f0f56f
2312
+-------------------------------------------------------------------+-----------+--------+
2413
| :ref:`sphx_glr_recipes_plot_01_recipe.py` (``plot_01_recipe.py``) | 00:00.000 | 0.0 MB |
2514
+-------------------------------------------------------------------+-----------+--------+
@@ -43,12 +32,9 @@ Computation times
4332
+-------------------------------------------------------------------+-----------+--------+
4433
| :ref:`sphx_glr_recipes_plot_11_recipe.py` (``plot_11_recipe.py``) | 00:00.000 | 0.0 MB |
4534
+-------------------------------------------------------------------+-----------+--------+
46-
<<<<<<< HEAD
4735
| :ref:`sphx_glr_recipes_plot_12_recipe.py` (``plot_12_recipe.py``) | 00:00.000 | 0.0 MB |
4836
+-------------------------------------------------------------------+-----------+--------+
4937
| :ref:`sphx_glr_recipes_plot_13_recipe.py` (``plot_13_recipe.py``) | 00:00.000 | 0.0 MB |
5038
+-------------------------------------------------------------------+-----------+--------+
51-
=======
52-
>>>>>>> 972cdaadceecfaa123a4956c50333c6bc1f0f56f
5339
| :ref:`sphx_glr_recipes_plot_14_recipe.py` (``plot_14_recipe.py``) | 00:00.000 | 0.0 MB |
5440
+-------------------------------------------------------------------+-----------+--------+

docs/_sources/releases.rst.txt

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Documentation for all versions of cf.
1616
**CF-1.10**
1717
-----------
1818

19+
* `Version 3.15.4 <https://ncas-cms.github.io/cf-python-docs/3.15.4>`_ (2023-10-10)
1920
* `Version 3.15.3 <https://ncas-cms.github.io/cf-python-docs/3.15.3>`_ (2023-08-31)
2021
* `Version 3.15.2 <https://ncas-cms.github.io/cf-python-docs/3.15.2>`_ (2023-07-21)
2122
* `Version 3.15.1 <https://ncas-cms.github.io/cf-python-docs/3.15.1>`_ (2023-06-09)

docs/_static/documentation_options.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
var DOCUMENTATION_OPTIONS = {
22
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
3-
VERSION: '3.15.3',
3+
VERSION: '3.15.4',
44
LANGUAGE: 'None',
55
COLLAPSE_INDEX: false,
66
BUILDER: 'html',

docs/_static/pygments.css

-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ span.linenos.special { color: #000000; background-color: #ffffc0; padding-left:
2222
.highlight .cs { color: #8f5902; font-style: italic } /* Comment.Special */
2323
.highlight .gd { color: #a40000 } /* Generic.Deleted */
2424
.highlight .ge { color: #000000; font-style: italic } /* Generic.Emph */
25-
.highlight .ges { color: #000000 } /* Generic.EmphStrong */
2625
.highlight .gr { color: #ef2929 } /* Generic.Error */
2726
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
2827
.highlight .gi { color: #00A000 } /* Generic.Inserted */

docs/aggregation_rules.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747

4848

49-
<h1 class="logo"><a href="index.html">cf 3.15.3</a></h1>
49+
<h1 class="logo"><a href="index.html">cf 3.15.4</a></h1>
5050

5151

5252

@@ -130,7 +130,7 @@ <h3>Related Topics</h3>
130130
<section id="aggregation-rules">
131131
<span id="id1"></span><h1><strong>Aggregation rules</strong><a class="headerlink" href="#aggregation-rules" title="Permalink to this headline"></a></h1>
132132
<hr class="docutils" />
133-
<p>Version 3.15.3 for version 1.10 of the CF conventions.</p>
133+
<p>Version 3.15.4 for version 1.10 of the CF conventions.</p>
134134
<p><em>David Hassell and Jonathan Gregory (2012)</em></p>
135135
<p><a class="reference external" href="https://cf-trac.llnl.gov/trac/ticket/78">https://cf-trac.llnl.gov/trac/ticket/78</a></p>
136136
<p>Aggregation is the combination of two field constructs <a class="reference internal" href="cf_data_model.html#term-field-construct"><span class="xref std std-term">field
@@ -347,7 +347,7 @@ <h3>Related Topics</h3>
347347
<div class="clearer"></div>
348348
</div>
349349
<div class="footer">
350-
&copy;2023, NCAS | Page built on 2023-08-31.
350+
&copy;2023, NCAS | Page built on 2023-10-10.
351351

352352
|
353353
Powered by <a href="http://sphinx-doc.org/">Sphinx 2.4.5</a>

docs/analysis.html

+9-9
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747

4848

49-
<h1 class="logo"><a href="index.html">cf 3.15.3</a></h1>
49+
<h1 class="logo"><a href="index.html">cf 3.15.4</a></h1>
5050

5151

5252

@@ -130,7 +130,7 @@ <h3>Related Topics</h3>
130130
<section id="analysis">
131131
<span id="id1"></span><h1><strong>Analysis</strong><a class="headerlink" href="#analysis" title="Permalink to this headline"></a></h1>
132132
<hr class="docutils" />
133-
<p>Version 3.15.3 for version 1.10 of the CF conventions.</p>
133+
<p>Version 3.15.4 for version 1.10 of the CF conventions.</p>
134134
<p>All of the Python code in this tutorial is available in an executable
135135
script (<a class="reference download internal" download="" href="_downloads/field_analysis.py"><code class="xref download docutils literal notranslate"><span class="pre">download</span></code></a>, 8kB).</p>
136136
<p>Note that this page is duplicated in the <a class="reference internal" href="tutorial.html#tutorial"><span class="std std-ref">tutorial</span></a>.</p>
@@ -2079,16 +2079,16 @@ <h2><a class="toc-backref" href="#id90"><strong>Other statistical operations</st
20792079
<div class="admonition warning">
20802080
<p class="admonition-title">Warning</p>
20812081
<p>Care must be taken when combining a construct with a
2082-
<a class="reference external" href="https://numpy.org/doc/stable/reference/index.html#module-numpy" title="(in NumPy v1.25)"><code class="xref py py-obj docutils literal notranslate"><span class="pre">numpy</span></code></a> array or a <a class="reference internal" href="class/cf.Data.html#cf.Data" title="cf.Data"><code class="xref py py-obj docutils literal notranslate"><span class="pre">Data</span></code></a> instance, due to the ways in
2082+
<a class="reference external" href="https://numpy.org/doc/stable/reference/index.html#module-numpy" title="(in NumPy v1.26)"><code class="xref py py-obj docutils literal notranslate"><span class="pre">numpy</span></code></a> array or a <a class="reference internal" href="class/cf.Data.html#cf.Data" title="cf.Data"><code class="xref py py-obj docutils literal notranslate"><span class="pre">Data</span></code></a> instance, due to the ways in
20832083
which both of these objects allow themselves to be
20842084
combined with other types:</p>
20852085
<ul class="simple">
20862086
<li><p>If the construct is on the left hand side (LHS) of the
20872087
operation then, as expected, a construct is returned
20882088
whose data is the combination of the original
2089-
construct’s data and the <a class="reference external" href="https://numpy.org/doc/stable/reference/index.html#module-numpy" title="(in NumPy v1.25)"><code class="xref py py-obj docutils literal notranslate"><span class="pre">numpy</span></code></a> array or <a class="reference internal" href="class/cf.Data.html#cf.Data" title="cf.Data"><code class="xref py py-obj docutils literal notranslate"><span class="pre">Data</span></code></a>
2089+
construct’s data and the <a class="reference external" href="https://numpy.org/doc/stable/reference/index.html#module-numpy" title="(in NumPy v1.26)"><code class="xref py py-obj docutils literal notranslate"><span class="pre">numpy</span></code></a> array or <a class="reference internal" href="class/cf.Data.html#cf.Data" title="cf.Data"><code class="xref py py-obj docutils literal notranslate"><span class="pre">Data</span></code></a>
20902090
instance on the right hand side (RHS).</p></li>
2091-
<li><p>If, however, the construct is on the RHS then a <a class="reference external" href="https://numpy.org/doc/stable/reference/index.html#module-numpy" title="(in NumPy v1.25)"><code class="xref py py-obj docutils literal notranslate"><span class="pre">numpy</span></code></a>
2091+
<li><p>If, however, the construct is on the RHS then a <a class="reference external" href="https://numpy.org/doc/stable/reference/index.html#module-numpy" title="(in NumPy v1.26)"><code class="xref py py-obj docutils literal notranslate"><span class="pre">numpy</span></code></a>
20922092
array or <a class="reference internal" href="class/cf.Data.html#cf.Data" title="cf.Data"><code class="xref py py-obj docutils literal notranslate"><span class="pre">Data</span></code></a> instance (which ever type is on the
20932093
LHS) is returned, containing the same data as in the
20942094
first case.</p></li>
@@ -2272,7 +2272,7 @@ <h2><a class="toc-backref" href="#id90"><strong>Other statistical operations</st
22722272
<code class="xref py py-obj docutils literal notranslate"><span class="pre">standard_name</span></code> properties (or <code class="xref py py-obj docutils literal notranslate"><span class="pre">id</span></code> attributes) on metadata
22732273
constructs that are known to correspond, then setting “relaxed
22742274
identities” with the <a class="reference internal" href="function/cf.relaxed_identities.html#cf.relaxed_identities" title="cf.relaxed_identities"><code class="xref py py-obj docutils literal notranslate"><span class="pre">cf.relaxed_identities</span></code></a> function may
2275-
help. Setting relaxed identities to <a class="reference external" href="https://docs.python.org/3/library/constants.html#True" title="(in Python v3.11)"><code class="xref py py-obj docutils literal notranslate"><span class="pre">True</span></code></a> allows the <code class="xref py py-obj docutils literal notranslate"><span class="pre">long_name</span></code>
2275+
help. Setting relaxed identities to <a class="reference external" href="https://docs.python.org/3/library/constants.html#True" title="(in Python v3.12)"><code class="xref py py-obj docutils literal notranslate"><span class="pre">True</span></code></a> allows the <code class="xref py py-obj docutils literal notranslate"><span class="pre">long_name</span></code>
22762276
property and netCDF variable name (see the <a class="reference internal" href="tutorial.html#netcdf-interface"><span class="std std-ref">netCDF interface</span></a>), to also be considered when identifying
22772277
constructs.</p></li>
22782278
<li><p><strong>Option 3:</strong> Add more metadata to the field and metadata constructs.</p></li>
@@ -2641,7 +2641,7 @@ <h3><a class="toc-backref" href="#id111">Convolution filters</a><a class="header
26412641
border, and</p></li>
26422642
<li><p>Control the placement position of the filter window.</p></li>
26432643
</ul>
2644-
<p>Note that the <a class="reference external" href="https://docs.scipy.org/doc/scipy/reference/signal.windows.html#module-scipy.signal.windows" title="(in SciPy v1.11.2)"><code class="xref py py-obj docutils literal notranslate"><span class="pre">scipy.signal.windows</span></code></a> package has suite of window
2644+
<p>Note that the <a class="reference external" href="https://docs.scipy.org/doc/scipy/reference/signal.windows.html#module-scipy.signal.windows" title="(in SciPy v1.11.3)"><code class="xref py py-obj docutils literal notranslate"><span class="pre">scipy.signal.windows</span></code></a> package has suite of window
26452645
functions for creating window weights for filtering:</p>
26462646
<div class="literal-block-wrapper docutils container" id="id80">
26472647
<div class="code-block-caption"><span class="caption-text"><em>Calculate a 3-point exponential filter of the ‘Y’
@@ -2668,7 +2668,7 @@ <h3><a class="toc-backref" href="#id111">Convolution filters</a><a class="header
26682668
<span class="pre">0.2]</span></code> will produce a non-weighted 5-point running mean; and window
26692669
weights of <code class="docutils literal notranslate"><span class="pre">[1,</span> <span class="pre">1,</span> <span class="pre">1,</span> <span class="pre">1,</span> <span class="pre">1]</span></code> will produce a 5-point running
26702670
sum. Note that the window weights returned by functions of the
2671-
<a class="reference external" href="https://docs.scipy.org/doc/scipy/reference/signal.windows.html#module-scipy.signal.windows" title="(in SciPy v1.11.2)"><code class="xref py py-obj docutils literal notranslate"><span class="pre">scipy.signal.windows</span></code></a> package do not necessarily sum to 1.</p>
2671+
<a class="reference external" href="https://docs.scipy.org/doc/scipy/reference/signal.windows.html#module-scipy.signal.windows" title="(in SciPy v1.11.3)"><code class="xref py py-obj docutils literal notranslate"><span class="pre">scipy.signal.windows</span></code></a> package do not necessarily sum to 1.</p>
26722672
<div class="admonition note">
26732673
<p class="admonition-title">Note</p>
26742674
<p>The <a class="reference internal" href="method/cf.Field.moving_window.html#cf.Field.moving_window" title="cf.Field.moving_window"><code class="xref py py-obj docutils literal notranslate"><span class="pre">moving_window</span></code></a> method can not, in general, be
@@ -2821,7 +2821,7 @@ <h3><a class="toc-backref" href="#id116">Curl</a><a class="headerlink" href="#cu
28212821
<div class="clearer"></div>
28222822
</div>
28232823
<div class="footer">
2824-
&copy;2023, NCAS | Page built on 2023-08-31.
2824+
&copy;2023, NCAS | Page built on 2023-10-10.
28252825

28262826
|
28272827
Powered by <a href="http://sphinx-doc.org/">Sphinx 2.4.5</a>

docs/api_reference.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747

4848

49-
<h1 class="logo"><a href="index.html">cf 3.15.3</a></h1>
49+
<h1 class="logo"><a href="index.html">cf 3.15.4</a></h1>
5050

5151

5252

@@ -130,7 +130,7 @@ <h3>Related Topics</h3>
130130
<section id="api-reference">
131131
<h1><strong>API reference</strong><a class="headerlink" href="#api-reference" title="Permalink to this headline"></a></h1>
132132
<hr class="docutils" />
133-
<p>Version 3.15.3 for version 1.10 of the CF conventions.</p>
133+
<p>Version 3.15.4 for version 1.10 of the CF conventions.</p>
134134
<ul class="simple">
135135
<li><p><strong>Construct classes</strong></p>
136136
<ul>
@@ -185,7 +185,7 @@ <h1><strong>API reference</strong><a class="headerlink" href="#api-reference" ti
185185
<div class="clearer"></div>
186186
</div>
187187
<div class="footer">
188-
&copy;2023, NCAS | Page built on 2023-08-31.
188+
&copy;2023, NCAS | Page built on 2023-10-10.
189189

190190
|
191191
Powered by <a href="http://sphinx-doc.org/">Sphinx 2.4.5</a>

docs/attribute/cf.AuxiliaryCoordinate.Data.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747

4848

49-
<h1 class="logo"><a href="../index.html">cf 3.15.3</a></h1>
49+
<h1 class="logo"><a href="../index.html">cf 3.15.4</a></h1>
5050

5151

5252

@@ -152,7 +152,7 @@ <h1>cf.AuxiliaryCoordinate.Data<a class="headerlink" href="#cf-auxiliarycoordina
152152
<div class="clearer"></div>
153153
</div>
154154
<div class="footer">
155-
&copy;2023, NCAS | Page built on 2023-08-31.
155+
&copy;2023, NCAS | Page built on 2023-10-10.
156156

157157
|
158158
Powered by <a href="http://sphinx-doc.org/">Sphinx 2.4.5</a>

docs/attribute/cf.AuxiliaryCoordinate.T.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747

4848

49-
<h1 class="logo"><a href="../index.html">cf 3.15.3</a></h1>
49+
<h1 class="logo"><a href="../index.html">cf 3.15.4</a></h1>
5050

5151

5252

@@ -171,7 +171,7 @@ <h1>cf.AuxiliaryCoordinate.T<a class="headerlink" href="#cf-auxiliarycoordinate-
171171
<div class="clearer"></div>
172172
</div>
173173
<div class="footer">
174-
&copy;2023, NCAS | Page built on 2023-08-31.
174+
&copy;2023, NCAS | Page built on 2023-10-10.
175175

176176
|
177177
Powered by <a href="http://sphinx-doc.org/">Sphinx 2.4.5</a>

docs/attribute/cf.AuxiliaryCoordinate.Units.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747

4848

49-
<h1 class="logo"><a href="../index.html">cf 3.15.3</a></h1>
49+
<h1 class="logo"><a href="../index.html">cf 3.15.4</a></h1>
5050

5151

5252

@@ -163,7 +163,7 @@ <h1>cf.AuxiliaryCoordinate.Units<a class="headerlink" href="#cf-auxiliarycoordin
163163
<div class="clearer"></div>
164164
</div>
165165
<div class="footer">
166-
&copy;2023, NCAS | Page built on 2023-08-31.
166+
&copy;2023, NCAS | Page built on 2023-10-10.
167167

168168
|
169169
Powered by <a href="http://sphinx-doc.org/">Sphinx 2.4.5</a>

docs/attribute/cf.AuxiliaryCoordinate.X.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747

4848

49-
<h1 class="logo"><a href="../index.html">cf 3.15.3</a></h1>
49+
<h1 class="logo"><a href="../index.html">cf 3.15.4</a></h1>
5050

5151

5252

@@ -192,7 +192,7 @@ <h1>cf.AuxiliaryCoordinate.X<a class="headerlink" href="#cf-auxiliarycoordinate-
192192
<div class="clearer"></div>
193193
</div>
194194
<div class="footer">
195-
&copy;2023, NCAS | Page built on 2023-08-31.
195+
&copy;2023, NCAS | Page built on 2023-10-10.
196196

197197
|
198198
Powered by <a href="http://sphinx-doc.org/">Sphinx 2.4.5</a>

docs/attribute/cf.AuxiliaryCoordinate.Y.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747

4848

49-
<h1 class="logo"><a href="../index.html">cf 3.15.3</a></h1>
49+
<h1 class="logo"><a href="../index.html">cf 3.15.4</a></h1>
5050

5151

5252

@@ -178,7 +178,7 @@ <h1>cf.AuxiliaryCoordinate.Y<a class="headerlink" href="#cf-auxiliarycoordinate-
178178
<div class="clearer"></div>
179179
</div>
180180
<div class="footer">
181-
&copy;2023, NCAS | Page built on 2023-08-31.
181+
&copy;2023, NCAS | Page built on 2023-10-10.
182182

183183
|
184184
Powered by <a href="http://sphinx-doc.org/">Sphinx 2.4.5</a>

docs/attribute/cf.AuxiliaryCoordinate.Z.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747

4848

49-
<h1 class="logo"><a href="../index.html">cf 3.15.3</a></h1>
49+
<h1 class="logo"><a href="../index.html">cf 3.15.4</a></h1>
5050

5151

5252

@@ -204,7 +204,7 @@ <h1>cf.AuxiliaryCoordinate.Z<a class="headerlink" href="#cf-auxiliarycoordinate-
204204
<div class="clearer"></div>
205205
</div>
206206
<div class="footer">
207-
&copy;2023, NCAS | Page built on 2023-08-31.
207+
&copy;2023, NCAS | Page built on 2023-10-10.
208208

209209
|
210210
Powered by <a href="http://sphinx-doc.org/">Sphinx 2.4.5</a>

0 commit comments

Comments
 (0)