From da260f26b78960c4b3d32b4753c50ec7618bf758 Mon Sep 17 00:00:00 2001 From: jmoore Date: Wed, 19 Aug 2020 17:54:35 +0200 Subject: [PATCH] Point image.array to a zgroup (needs renaming) see: https://github.com/ome/omero-cli-zarr/pull/19 --- spec.md | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/spec.md b/spec.md index 7a087bf..67e6817 100644 --- a/spec.md +++ b/spec.md @@ -155,7 +155,7 @@ the value is an RGBA color (4 byte, `0-255` per channel) for representing the ob The `image` key is an optional dictionary which contains information on the image the label is associated with. If included it must include a key `array` whose value that is either: -- A relative path to a Zarr image array, for example: +- A relative path to a Zarr image group, for example: ``` { "image": { @@ -163,14 +163,6 @@ If included it must include a key `array` whose value that is either: } } ``` -- A URL to a Zarr image array (use this if the label is stored seperately from the image Zarr), for example: - ``` - { - "image": { - "array": "https://s3.embassy.ebi.ac.uk/idr/zarr/v0.1/6001240.zarr/0" - } - } - ```