According to the OME-Zarr 0.5 spec, scale and translation vectors are...
stored either as a list of floats (scale, translation) or as binary data at a location in this container (path)
In comparison, the current Scale and Translation models seem to only support lists of floats:
|
export interface Scale { |
|
type: "scale"; |
|
scale: number[]; |
|
} |
|
|
|
export interface Translation { |
|
type: "translation"; |
|
translation: number[]; |
|
} |
According to the OME-Zarr 0.5 spec, scale and translation vectors are...
In comparison, the current
ScaleandTranslationmodels seem to only support lists of floats:ome-zarr.js/src/types/ome.ts
Lines 119 to 127 in b181746