Aaron Kaw
Aaron Kaw
Hi! I started looking at this again, the `DimTree` interface is appealing. The following code ```julia ## using DimensionalData using CairoMakie, AlgebraOfGraphics using DimensionalData: dims ## function munk_profile(z::Real; ϵ =...
Oh, the docstring example errors too. ```julia-repl julia> xdim, ydim = X(1:10), Y(1:15) (↓ X 1:10, → Y 1:15) julia> z1, z2 = Z([:a, :b, :c]), Z([:d, :e, :f]) (↓...
My bad. ```julia-repl julia> DimTree(a, b) ┌ DimTree ┐ ├─────────┴───────────────────────────────────────── dims ┐ ↓ X Sampled{Int64} 1:10 ForwardOrdered Regular Points, → Y Sampled{Int64} 1:15 ForwardOrdered Regular Points ├───────────────────────────────────────────────── layers ┤ :...
With the latest `DimensionalData` at v0.29.21, changing my above convenience function definitions to ```julia dimprofile(z, c) = DimArray(c, Dim{:z}(z); name = :c) |> DimTree dimslice(r, zc) = DimArray(zc, Dim{:r}(r); name...
I have a custom type that needs to be translated using `Point2f` in the `MakieCore.convert_arguments` method for my custom type. But `Point2f` isn't available via `MakieCore.jl` - it's from `GeometryBasics.jl`....
FWIW, I would use DiffEq to check what automated solver would be chosen, then remove DiffEq and add OrdinaryDiffEq and explicitly call the solver to avoid the large DiffEq dependency....
+1 for JSON5 standard!
Ah, I made a duplicate issue.
I should have time this weekend to look this through. I was confused as to how to write tests for this change.
Is this test sufficient @ChrisRackauckas ? I don't fully understand the `BasicSymbolic` infrastructure. Sorry I forgot about this.