@@ -864,7 +864,7 @@ def from_images(
864864            voxel_size_with_unit: Optional voxel size with unit specification 
865865            layer_name: Optional name for layer(s) 
866866            layer_category: Optional category override (LayerCategoryType.color / LayerCategoryType.segmentation) 
867-             data_format: Format to store data in ('wkw'/'zarr') 
867+             data_format: Format to store data in ('wkw'/'zarr'/'zarr3 ) 
868868            chunk_shape: Optional. Shape of chunks to store data in 
869869            shard_shape: Optional. Shape of shards to store data in 
870870            chunks_per_shard: Deprecated, use shard_shape. Optional. number of chunks per shard 
@@ -1317,7 +1317,8 @@ def add_layer(
13171317            if  dtype_per_channel .name  not  in   color_dtypes :
13181318                raise  ValueError (
13191319                    f"Cannot add color layer with dtype { dtype_per_channel .name }  . " 
1320-                     f"Supported dtypes are: { ', ' .join (color_dtypes )}  ." ,
1320+                     f"Supported dtypes are: { ', ' .join (color_dtypes )}  ." 
1321+                     "For an overview of supported dtypes, see https://docs.webknossos.org/webknossos/data/upload_ui.html" ,
13211322                )
13221323        else :
13231324            segmentation_dtypes  =  (
@@ -1333,7 +1334,8 @@ def add_layer(
13331334            if  dtype_per_channel .name  not  in   segmentation_dtypes :
13341335                raise  ValueError (
13351336                    f"Cannot add segmentation layer with dtype { dtype_per_channel .name }  . " 
1336-                     f"Supported dtypes are: { ', ' .join (segmentation_dtypes )}  ." ,
1337+                     f"Supported dtypes are: { ', ' .join (segmentation_dtypes )}  ." 
1338+                     "For an overview of supported dtypes, see https://docs.webknossos.org/webknossos/data/upload_ui.html" ,
13371339                )
13381340
13391341        if  layer_name  in  self .layers .keys ():
@@ -1671,7 +1673,7 @@ def add_layer_from_images(
16711673        Further Arguments: 
16721674
16731675        * `category`: `color` by default, may be set to "segmentation" 
1674-         * `data_format`: by default wkw  files are written, may be set to "zarr" 
1676+         * `data_format`: by default zarr3  files are written, may be set to "wkw" or " zarr" to write in these formats.  
16751677        * `mag`: magnification to use for the written data 
16761678        * `chunk_shape`, `chunks_per_shard`, `shard_shape`, `compress`: adjust how the data is stored on disk 
16771679        * `topleft`: set an offset in Mag(1) to start writing the data, only affecting the output 
0 commit comments