Expand description
The fixedscaleoffset array to array codec (Experimental).
This codec is experimental and may be incompatible with other Zarr V3 implementations.
§Compatible Implementations
This codec is fully compatible with the numcodecs.fixedscaleoffset codec in zarr-python.
However, it supports additional data types not supported by that implementation.
§Specification
- https://github.com/zarr-developers/zarr-extensions/tree/numcodecs/codecs/numcodecs.fixedscaleoffset
- https://codec.zarrs.dev/array_to_array/fixedscaleoffset
§Codec name Aliases (Zarr V3)
numcodecs.fixedscaleoffset
§Codec id Aliases (Zarr V2)
fixedscaleoffset
§Codec configuration Example - FixedScaleOffsetCodecConfiguration:
{
"offset": 1000,
"scale": 10,
"dtype": "f8",
"astype": "u1"
}Structs§
- Fixed
Scale Offset Codec - A
fixedscaleoffsetcodec implementation. - Fixed
Scale Offset Codec Configuration Numcodecs fixedscaleoffsetcodec configuration parameters (numcodecs).- Fixed
Scale Offset Data Type Plugin - Plugin for registering
fixedscaleoffsetcodec support for a data type.
Enums§
- Fixed
Scale Offset Codec Configuration - A wrapper to handle various versions of
fixedscaleoffsetcodec configuration parameters. - Fixed
Scale Offset Element Type - The numeric element type for fixedscaleoffset operations.
- Fixed
Scale Offset Float Type - The intermediate float type for fixedscaleoffset calculations.
Traits§
- Fixed
Scale Offset Data Type Ext - Extension trait for
DataTypeto accessFixedScaleOffsetDataTypeTraits. - Fixed
Scale Offset Data Type Traits - Traits for a data type supporting the
fixedscaleoffsetcodec.