ee.ImageCollection.loadZarrV2Array Stay organized with collections Save and categorize content based on your preferences.
Page Summary
ee.ImageCollection.loadZarrV2Arrayloads a Zarr v2 array with 3 or more dimensions as an ImageCollection by slicing along a specified non-spatial axis.The Zarr array must have at least three dimensions, with the final two representing Y and X, and its attributes must include '_ARRAY_DIMENSIONS' listing the dimension names.
Supported compression codecs include 'blosc', 'gzip', 'lz4', 'zlib', and 'zstd', with specific blosc meta-compression codecs also supported.
The function requires a Cloud Storage URI for the .zarray file, which must have a corresponding .zmetadata file and be located in a supported US region or dual-region with necessary permissions.
| Usage | Returns |
|---|---|
ee.ImageCollection.loadZarrV2Array(uri, proj,axis,starts,ends) | ImageCollection |
| Argument | Type | Details |
|---|---|---|
uri | String | The Cloud Storage URI of the .zarray file to load. A .zmetadata file must be present in the parent directory of the array's directory (e.g., for 'gs://b/o/.zarray', 'gs://b/.zmetadata' must be present). The bucket metadata must be accessible (requires the `storage.buckets.get` permission which is provided by the role "Storage Legacy Bucket Reader" among others, see https://cloud.google.com/storage/docs/access-control/iam-roles) and the bucket must be located in the US multi-region, a dual-region including US-CENTRAL1, or the US-CENTRAL1 region. |
proj | Projection | The projection of the array. |
axis | Integer, default: null | The non-spatial axis (0-indexed) along which to slice the array to create an ImageCollection. Each image in the collection represents a single slice (length 1) along this axis. If null, defaults to 0. The value must be in the range [0, N-1], where N is the number of non-spatial dimensions (i.e., total dimensions - 2). The array must have at least one non-spatial dimension (i.e., be at least 3 dimensional). |
starts | List, default: null | The indices (inclusive) at which to start taking slices along each non-spatial dimension. If null, slices will start at index 0 for all non-spatial dimensions. If specified, this list must have a length equal to the number of non-spatial dimensions (total dimensions - 2). An individual element within the list may be null, which defaults to 0 for that dimension. Negative indices are counted from the end of the dimension (e.g., -1 is the last element). |
ends | List, default: null | The indices (exclusive) at which to stop taking slices along each non-spatial dimension. If null, slices will extend to the end of each corresponding non-spatial dimension (i.e., defaults to the length of the dimension). If specified, this list must have a length equal to the number of non-spatial dimensions (total dimensions - 2). An individual element within the list may be null, which also defaults to the length of that dimension. Negative indices are counted from the end of the dimension (e.g., -1 is the last element). |
Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-06-23 UTC.