Skip to content

Commit f565f8c

Browse files
committed
port 0.1
1 parent 05b8089 commit f565f8c

275 files changed

Lines changed: 1957 additions & 13951 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.6.dev2'
1+
__version__ = '0.1.4'

citing.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ author: ""
44
---
55
(citing)=
66

7-
[Next-generation file format (NGFF) specifications for storing bioimaging data in the cloud.](https://ngff.openmicroscopy.org/0.4)
8-
J. Moore, *et al*. Open Microscopy Environment Consortium, 8 February 2022.
9-
10-
This edition of the specification is [https://ngff.openmicroscopy.org/{{version}}](https://ngff.openmicroscopy.org/{{version}}]).
11-
The latest edition is publicly available {cite}`ngff_spec_latest`.
7+
[Next-generation file format (NGFF) specifications for storing bioimaging data in the cloud.](https://ngff.openmicroscopy.org/0.1)
8+
J. Moore, *et al*. Open Microscopy Environment Consortium, 20 November 2020.
9+
This edition of the specification is [https://ngff.openmicroscopy.org/0.1/](https://ngff.openmicroscopy.org/0.1/]).
10+
The latest edition is available at [https://ngff.openmicroscopy.org/latest/](https://ngff.openmicroscopy.org/latest/).
11+
[(doi:10.5281/zenodo.4282107)](https://doi.org/10.5281/zenodo.4282107)
1212

1313
```{bibliography}
1414
:style: unsrt

examples/bf2raw/.config.json

Lines changed: 0 additions & 3 deletions
This file was deleted.

examples/bf2raw/image.json

Lines changed: 0 additions & 10 deletions
This file was deleted.

examples/bf2raw/plate.json

Lines changed: 0 additions & 36 deletions
This file was deleted.

examples/coordinate_systems/.config.json

Lines changed: 0 additions & 3 deletions
This file was deleted.

examples/coordinate_systems/arrayCoordSys.json

Lines changed: 0 additions & 10 deletions
This file was deleted.
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"@type": "ngff:Image",
3+
"multiscales": [
4+
{
5+
"version": "0.1",
6+
"name": "example",
7+
"datasets": [
8+
{
9+
"path": "path/to/0"
10+
}
11+
]
12+
}
13+
],
14+
"omero": {
15+
"channels": [
16+
{
17+
"active": true,
18+
"coefficient": 1.0,
19+
"color": 255,
20+
"family": "linear",
21+
"label": "1234",
22+
"window": {
23+
"end": 1765.0,
24+
"max": 2555.0,
25+
"min": 5.0,
26+
"start": 0.0
27+
}
28+
}
29+
]
30+
}
31+
}
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"@type": "ngff:Image",
3+
"multiscales": [
4+
{
5+
"version": "0.2",
6+
"name": "example",
7+
"datasets": [
8+
{
9+
"path": "path/to/0"
10+
}
11+
]
12+
}
13+
],
14+
"omero": {
15+
"channels": [
16+
{
17+
"active": true,
18+
"coefficient": 1.0,
19+
"color": "ff0000",
20+
"family": "linear",
21+
"label": "1234",
22+
"window": {
23+
"end": "100",
24+
"max": 2555.0,
25+
"min": 5.0,
26+
"start": 0.0
27+
}
28+
}
29+
]
30+
}
31+
}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"@type": "ngff:Image",
3+
"multiscales": [
4+
{
5+
"version": "0.1",
6+
"name": "example",
7+
"datasets": [
8+
{
9+
"path": "path/to/0"
10+
},
11+
{
12+
"path": 0
13+
}
14+
]
15+
}
16+
]
17+
}

0 commit comments

Comments
 (0)