You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
instead of needing to widen it first by manually typing af_payload = Dict{Any, Any}(...)
Define getindex for ASDF.ASDFFile so that it can be indexed directly instead of needing to go through the internal .metadata field. In other words, get af["data"] working instead of af.metadata["data"].
Nice tree printing for ASDF.ASDFFile in the terminal. Might be nice to emulate what asdf.py info does:
Just jotting some of these down here so I don't forget. Also happy to adjust if some of the current behavior is preferred.
Update: Subsumed by #31
Complete #26
Storing dictionaries typed more specifically than Dict{Any, Any}. Would allow to do things like:
instead of needing to widen it first by manually typing
af_payload = Dict{Any, Any}(...)Define
getindexforASDF.ASDFFileso that it can be indexed directly instead of needing to go through the internal.metadatafield. In other words, getaf["data"]working instead ofaf.metadata["data"].Nice tree printing for
ASDF.ASDFFilein the terminal. Might be nice to emulate what asdf.pyinfodoes:FileIO.jl support so that
load(my_file.asdf)will work