Skip to content

Commit db2f873

Browse files
committed
dev
1 parent a49e8c6 commit db2f873

File tree

4 files changed

+13
-2
lines changed

4 files changed

+13
-2
lines changed

Changelog.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ Version NEXTVERSION
55

66
* Implement lossy compression via quantization
77
(https://github.com/NCAS-CMS/cf-python/issues/870)
8+
* New quantization class: `cf.Quantization`
9+
(https://github.com/NCAS-CMS/cf-python/issues/870)
10+
* New quantization methods: `cf.Field.get_quantization`,
11+
`cf.Field.get_quantize_on_write`, `cf.Field.set_quantize_on_write`,
12+
`cf.Field.del_quantize_on_write`
13+
(https://github.com/NCAS-CMS/cf-python/issues/870)
814
* Read Zarr datasets with `cf.read`
915
(https://github.com/NCAS-CMS/cf-python/issues/863)
1016
* Update CF aggregation keywords

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,8 @@ of its array manipulation and can:
116116
* create running means from field constructs,
117117
* apply differential operators to field constructs,
118118
* create derived quantities (such as relative vorticity).
119+
* read and write that data that are quantized to eliminate false
120+
precision.
119121

120122
Visualization
121123
=============

cf/fieldancillary.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class FieldAncillary(mixin.PropertiesData, cfdm.FieldAncillary):
3131
3232
{{netCDF dataset chunks}}
3333
34-
.. versionadded:: 3.0.0
34+
.. versionadded:: 2.0
3535
3636
"""
3737

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,10 @@ def compile():
227227
228228
* apply differential operators to field constructs,
229229
230-
* create derived quantities (such as relative vorticity).
230+
* create derived quantities (such as relative vorticity),
231+
232+
* read and write that data that are quantized to eliminate false
233+
precision.
231234
232235
"""
233236

0 commit comments

Comments
 (0)