subspace Examples#

This document contains JSON examples for subspace metadata layouts.

subspacePermute#

 1{
 2  "zarr_format": 3,
 3  "node_type": "group",
 4  "attributes": {
 5    "ome": {
 6      "version": "0.6.dev4",
 7      "multiscales": [
 8        {
 9          "name": "multiscales",
10          "coordinateSystems": [
11            {
12              "name": "physical",
13              "axes": [
14                {
15                  "type": "space",
16                  "name": "y",
17                  "unit": "micrometer",
18                  "discrete": false
19                },
20                {
21                  "type": "space",
22                  "name": "x",
23                  "unit": "micrometer",
24                  "discrete": false
25                }
26              ]
27            },
28            {
29              "name": "array_coordinates",
30              "axes": [
31                {
32                  "type": "array",
33                  "name": "dim_0",
34                  "discrete": true
35                },
36                {
37                  "type": "array",
38                  "name": "dim_1",
39                  "discrete": true
40                }
41              ]
42            }
43          ],
44          "datasets": [
45            {
46              "path": "array",
47              "coordinateTransformations": [
48                {
49                  "type": "scale",
50                  "output": {"name": "array_coordinates"},
51                  "input": {"path": "array"},
52                  "name": "default-scale",
53                  "scale": [1, 1]
54                }
55              ]
56            }
57          ],
58          "coordinateTransformations": [
59            {
60              "type": "mapAxis",
61              "output": {"name": "physical"},
62              "input": {"name": "array_coordinates"},
63              "name": "transform-name",
64              "mapAxis": [1, 0]
65            }
66          ]
67        }
68      ]
69    }
70  }
71}