Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 21 additions & 21 deletions ngff_spec/examples/multiscales_strict/multiscales_example.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,59 +3,59 @@
"node_type": "group",
"attributes": {
"ome": {
"version": "0.6dev2",
"version": "0.5",
"multiscales": [
{
"name": "physical",
"name": "example",
"coordinateSystems": [
{
"name": "physical",
"axes": [
{ "name": "t", "type": "time", "unit": "millisecond" },
{ "name": "c", "type": "channel" },
{ "name": "z", "type": "space", "unit": "micrometer" },
{ "name": "y", "type": "space", "unit": "micrometer" },
{ "name": "x", "type": "space", "unit": "micrometer" }
]
}
{
"name": "intrinsic",
"axes": [
{ "name": "t", "type": "time", "unit": "millisecond" },
{ "name": "c", "type": "channel" },
{ "name": "z", "type": "space", "unit": "micrometer" },
{ "name": "y", "type": "space", "unit": "micrometer" },
{ "name": "x", "type": "space", "unit": "micrometer" }
]
}
],
"datasets": [
{
"path": "0",
"coordinateTransformations": [
{
// the voxel size for the first scale level (0.5 micrometer)
// the time unit (0.1 milliseconds), which is the same for each scale level
// and the time unit (0.1 milliseconds), which is the same for each scale level
"type": "scale",
"scale": [0.1, 1.0, 0.5, 0.5, 0.5],
"input": "0",
"output": "physical"
"output": "intrinsic"
}
]
},
{
"path": "1",
"coordinateTransformations": [
{
// the voxel size for the second scale level (1 micrometer)
// the time unit (0.1 milliseconds), which is the same for each scale level
// the voxel size for the second scale level (downscaled by a factor of 2 -> 1 micrometer)
// and the time unit (0.1 milliseconds), which is the same for each scale level
"type": "scale",
"scale": [0.1, 1.0, 1.0, 1.0, 1.0],
"input": "1",
"output": "physical"
"output": "intrinsic"
}
]
},
{
"path": "2",
"coordinateTransformations": [
{
// the voxel size for the third scale level (2 micrometer)
// the time unit (0.1 milliseconds), which is the same for each scale level
// the voxel size for the third scale level (downscaled by a factor of 4 -> 2 micrometer)
// and the time unit (0.1 milliseconds), which is the same for each scale level
"type": "scale",
"scale": [0.1, 1.0, 2.0, 2.0, 2.0],
"input": "2",
"output": "physical"
"output": "intrinsic"
}
]
}
Expand All @@ -72,4 +72,4 @@
]
}
}
}
}
Loading