Skip to content
Snippets Groups Projects
Commit 5765c622 authored by Jonas Krimmer's avatar Jonas Krimmer
Browse files

feat: optionally print all attributes of hdf5 file

parent 3ceb89d6
No related branches found
No related tags found
No related merge requests found
......@@ -29,10 +29,13 @@ function plot_from_dump(fn; iter=1, mode=1, collimate=false)
Plot(tr, lt)
end
function attributes_from_dump(fn)
h5open(fn, "r") do fid
function attributes_from_dump(fn; disp=false)
meta = h5open(fn, "r") do fid
OrderedDict(attrs(fid))
end
disp && show(IOContext(stdout, :limit => false), "text/plain", meta)
return meta
end
function post_dump_sampling_check(fn; kwargs...)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment