-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzarrwriteatt.m
47 lines (38 loc) · 1.33 KB
/
zarrwriteatt.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
function zarrwriteatt(filepath, attname, attvalue)
%ZARRWRITEATT Write custom Zarr attributes
% ZARRWRITEATT(FILEPATH,ATTNAME,ATTVALUE) writes the attribute named
% ATTNAME with the value ATTVALUE to the Zarr array or group located at
% FILE_PATH. The attribute is recorded only if a .zarray or .zgroup file
% already exists at the location specified by FILEPATH.
% Copyright 2025 The MathWorks, Inc.
arguments
filepath {mustBeTextScalar, mustBeNonzeroLengthText, mustBeFolder}
attname {mustBeTextScalar, mustBeNonzeroLengthText}
attvalue
end
% If the location does not exist, throw an error.
if ~isfolder(filepath)
error("Invalid location.")
end
info = zarrinfo(filepath);
info.(attname) = attvalue;
switch (info.node_type)
case "array"
jsonfilename = fullfile(filepath, '.zarray');
case "group"
jsonfilename = fullfile(filepath, '.zgroup');
end
% 'node_type' was synthetically added by zarrinfo. So,
% remove it from the info struct before writing it back to the
% JSON file.
info = rmfield(info, 'node_type');
% Encode the updated structure back to JSON
updatedJsonStr = jsonencode(info);
% Write the updated JSON data back to the file
fid = fopen(jsonfilename, 'w');
if fid == -1
error(['Could not open file ''' filepath ''' for writing.']);
end
fwrite(fid, updatedJsonStr, 'char');
fclose(fid);
end