-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How do we specify metadata #3
Comments
@constantinpape, that was something skipped in zarr-developers/zarr-specs#50 -- I assume for the moment you can store it in the closest representation to N5. |
Right now it's stored in the xml, so if we keep the xml we don't need to change anything. |
chiming in late, but I have been doing this: {
"multiscales": [
{
"datasets": [
{
"path": "s0",
"transform": { # Implementation detail: these
"axes": [ # axis values are all listed in C order.
"z",
"y",
"x"
],
"scale": [
5.24,
4.0,
4.0
],
"translate": [
0.0,
0.0,
0.0
],
"units": [
"nm",
"nm",
"nm"
]
}
},
{
"path": "s1",
"transform": {
"axes": [
"z",
"y",
"x"
],
"scale": [
10.48,
8.0,
8.0
],
"translate": [
2.62,
2.0,
2.0
],
"units": [
"nm",
"nm",
"nm"
]
}
}
]
}
]
} each entry in |
Thanks, @d-v-b! I certainly pointed to examples of the COSEM data. I think @constantinpape and @tischi adjusted that slightly in their data, which I assume will be a part of ramping back up on zarr-developers/zarr-specs#50 |
Yes, we used the COSEM layout, with just a minor change, see #13 (comment). |
good to know! FYI, you wonder here #13 (comment) why "units" is a list with length == number of axes. This is simply to accommodate datasets where different axes have different units, e.g. spatiotemporal data or hyperspectral data. |
Good point! Makes sense! |
@joshmoore @tischi
A few questions already:
How do we specify additional metadata in the ome.zarr multi-scale format?
In particular, we need:
I couldn't find anything in the format definittion https://forum.image.sc/t/multiscale-arrays-v0-1/37930.
The text was updated successfully, but these errors were encountered: