Skip to content

Commit a59cbfc

Browse files
committed
tests: add tests for array axes
1 parent 420cda6 commit a59cbfc

2 files changed

Lines changed: 99 additions & 0 deletions

File tree

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
{
2+
"ome": {
3+
"version": "0.6.dev3",
4+
"multiscales": [
5+
{
6+
"coordinateSystems": [
7+
{
8+
"name": "intrinsic",
9+
"axes": [
10+
{
11+
"name": "t",
12+
"type": "time",
13+
"unit": "second"
14+
},
15+
{
16+
"name": "y",
17+
"type": "array",
18+
"unit": "micrometer"
19+
},
20+
{
21+
"name": "x",
22+
"type": "array",
23+
"unit": "micrometer"
24+
}
25+
]
26+
}
27+
],
28+
"datasets": [
29+
{
30+
"path": "0",
31+
"coordinateTransformations": [
32+
{
33+
"scale": [
34+
1,
35+
1,
36+
1
37+
],
38+
"type": "scale",
39+
"input": "0",
40+
"output": "intrinsic"
41+
}
42+
]
43+
}
44+
]
45+
}
46+
]
47+
},
48+
"_conformance": {
49+
"schema": {
50+
"id": "schemas/image.schema"
51+
},
52+
"valid": false
53+
}
54+
}
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"ome": {
3+
"version": "0.6.dev3",
4+
"multiscales": [
5+
{
6+
"coordinateSystems": [
7+
{
8+
"name": "intrinsic",
9+
"axes": [
10+
{
11+
"name": "y",
12+
"type": "array"
13+
},
14+
{
15+
"name": "x",
16+
"type": "array"
17+
}
18+
]
19+
}
20+
],
21+
"datasets": [
22+
{
23+
"path": "0",
24+
"coordinateTransformations": [
25+
{
26+
"scale": [
27+
1.0,
28+
1.0
29+
],
30+
"input": "0",
31+
"output": "intrinsic",
32+
"type": "scale"
33+
}
34+
]
35+
}
36+
]
37+
}
38+
]
39+
},
40+
"_conformance": {
41+
"schema": {
42+
"id": "schemas/image.schema"
43+
}
44+
}
45+
}

0 commit comments

Comments
 (0)