-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bump DimensionalData to fix broadcasting #34
Conversation
CompatHelper should probably be enabled on this repo? |
Agreed, enabled now |
The docs failure is specific to these changes, but I don't see it locally. |
Are you using Julia v1.7: AstroImages.jl/.github/workflows/docs.yml Line 17 in 7d7cb14
|
Thanks for the pointer. Looks like it affects newer Julia versions too. I think the failure may be a result of DimensionalData's new printing format combined with RGBA elements, but I can't find a small reproducible example. The error happens while Documenter is rendering. The relevant stack trace:
|
I have narrowed down the docs issue to a small reproducer. julia> using AstroImages
julia> d = AstroImage(randn(20,10),(X,Y));
julia> size(d')
(10, 20)
julia> size.(dims(d'))
((20,), (10,)) The above snippet works if AstroImage is replaced by a DimArray. This was never working correctly, but is now causing our docs build to break due to some unrelated changes in newer DimensionalData. |
Ah interesting. Probably there is a mistake in the implementation of It's better to use |
* header now shared more often when taking views of data * restored imview live update functionality (actually behave like a view) * Removed ability to call imview then implot and keep axes. This was never going to work in the long run.
Fixes #33