Skip to content

Commit 366b6c4

Browse files
committed
v3.16.0 documentation
1 parent 5dc1b18 commit 366b6c4

File tree

3,918 files changed

+18696
-12615
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,918 files changed

+18696
-12615
lines changed

docs/2_to_3_changes.html

Lines changed: 2 additions & 2 deletions
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.4</a></h1>
47+
<h1 class="logo"><a href="index.html">cf 3.16.0</a></h1>
4848

4949

5050

@@ -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-10-10.
494+
&copy;2023, NCAS | Page built on 2023-12-06.
495495

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

docs/Changelog.html

Lines changed: 253 additions & 228 deletions
Large diffs are not rendered by default.
-19 Bytes
Binary file not shown.

docs/_downloads/tutorial.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -347,6 +347,8 @@
347347
lon.get_geometry()
348348
print(lon.bounds.data.array)
349349
print(lon.get_interior_ring().data.array)
350+
f = cf.example_field(8)
351+
print(f)
350352
a = t.constructs.get('domainancillary0')
351353
print(a.array)
352354
bounds = a.bounds

docs/_sources/class/cf.GatheredArray.rst.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ cf.GatheredArray
3333
~cf.GatheredArray.source
3434
~cf.GatheredArray.subarray_shapes
3535
~cf.GatheredArray.subarrays
36+
~cf.GatheredArray.subarray_parameters
3637
~cf.GatheredArray.to_dask_array
3738
~cf.GatheredArray.to_memory
3839

docs/_sources/class/cf.RaggedContiguousArray.rst.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ cf.RaggedContiguousArray
3535
~cf.RaggedContiguousArray.source
3636
~cf.RaggedContiguousArray.subarray_shapes
3737
~cf.RaggedContiguousArray.subarrays
38+
~cf.RaggedContiguousArray.subarray_parameters
3839
~cf.RaggedContiguousArray.to_dask_array
3940
~cf.RaggedContiguousArray.to_memory
4041

docs/_sources/class/cf.RaggedIndexedArray.rst.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ cf.RaggedIndexedArray
3434
~cf.RaggedIndexedArray.source
3535
~cf.RaggedIndexedArray.subarray_shapes
3636
~cf.RaggedIndexedArray.subarrays
37+
~cf.RaggedIndexedArray.subarray_parameters
3738
~cf.RaggedIndexedArray.to_dask_array
3839
~cf.RaggedIndexedArray.to_memory
3940

docs/_sources/class/cf.RaggedIndexedContiguousArray.rst.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ cf.RaggedIndexedContiguousArray
3434
~cf.RaggedIndexedContiguousArray.source
3535
~cf.RaggedIndexedContiguousArray.subarray_shapes
3636
~cf.RaggedIndexedContiguousArray.subarrays
37+
~cf.RaggedIndexedContiguousArray.subarray_parameters
3738
~cf.RaggedIndexedContiguousArray.to_dask_array
3839
~cf.RaggedIndexedContiguousArray.to_memory
3940

docs/_sources/field_analysis.rst.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1357,18 +1357,27 @@ Spherical source domain Spherical destination domain
13571357
`Latitude-longitude`_ `Rotated latitude-longitude`_
13581358
`Latitude-longitude`_ `Plane projection`_
13591359
`Latitude-longitude`_ `Tripolar`_
1360+
`Latitude-longitude`_ `UGRID mesh`_
13601361
`Rotated latitude-longitude`_ `Latitude-longitude`_
13611362
`Rotated latitude-longitude`_ `Rotated latitude-longitude`_
13621363
`Rotated latitude-longitude`_ `Plane projection`_
13631364
`Rotated latitude-longitude`_ `Tripolar`_
1365+
`Rotated latitude-longitude`_ `UGRID mesh`_
13641366
`Plane projection`_ `Latitude-longitude`_
13651367
`Plane projection`_ `Rotated latitude-longitude`_
13661368
`Plane projection`_ `Plane projection`_
13671369
`Plane projection`_ `Tripolar`_
1370+
`Plane projection`_ `UGRID mesh`_
13681371
`Tripolar`_ `Latitude-longitude`_
13691372
`Tripolar`_ `Rotated latitude-longitude`_
13701373
`Tripolar`_ `Plane projection`_
13711374
`Tripolar`_ `Tripolar`_
1375+
`Tripolar`_ `UGRID mesh`_
1376+
`UGRID mesh`_ `Latitude-longitude`_
1377+
`UGRID mesh`_ `Rotated latitude-longitude`_
1378+
`UGRID mesh`_ `Plane projection`_
1379+
`UGRID mesh`_ `Tripolar`_
1380+
`UGRID mesh`_ `UGRID mesh`_
13721381
============================== ==============================
13731382

13741383
The most convenient usage is when the destination domain exists

docs/_sources/installation.rst.txt

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ To install from source (without any dependencies):
129129
1. Download the cf package from https://pypi.org/project/cf-python
130130

131131
2. Unpack the library (replacing ``<version>`` with the version that
132-
you want to install, e.g. ``3.15.0``):
132+
you want to install, e.g. ``3.16.0``):
133133

134134
.. code-block:: console
135135
@@ -201,8 +201,10 @@ Required
201201
* `cftime <https://pypi.org/project/cftime/>`_, version 1.6.2 or newer
202202
(note that this package may be installed with netCDF4).
203203

204-
* `cfdm <https://pypi.org/project/cfdm/>`_, version 1.10.1.2 or up to,
205-
but not including, 1.10.2.0.
204+
* `scipy <https://pypi.org/project/scipy>`_, version 1.10.0 or newer.
205+
206+
* `cfdm <https://pypi.org/project/cfdm/>`_, version 1.11.0.0 or up to,
207+
but not including, 1.11.1.0.
206208

207209
* `cfunits <https://pypi.org/project/cfunits/>`_, version 3.3.6 or newer.
208210

@@ -253,10 +255,6 @@ environments for which these features are not required.
253255
254256
or may be installed from source.
255257

256-
.. rubric:: Convolution filters, derivatives and relative vorticity
257-
258-
* `scipy <https://pypi.org/project/scipy>`_, version 1.10.0 or newer.
259-
260258
.. rubric:: Subspacing based on N-dimensional construct cells (N > 1)
261259
containing a given value
262260

0 commit comments

Comments
 (0)