Lazaro Alonso

Results 151 comments of Lazaro Alonso

> We could just ditch using X/Y/Ti type wrappers and use Dim{:time} and time= keywords. I need to do a review of where the wrappers are actually useful and what...

that looks nice. But, one needs to call first `Model`. Today I needed to update the value of some parameters (and keep all the other fields as well) and I...

Doing `@set p.val = newval` didn't work for me. ``` p = Param(2.0, units = "k", bounds = (1, 2)) @set p.val = 1 ERROR: type NamedTuple has no field...

yeah probably, type will be very useful as well. Also I noticed that as it is now if you do the following ``` Base.@kwdef mutable struct MyParams{A, B, C} a::A...

I kinda want to keep the mutable part. Not sure about the overhead of the reassignment when you do this thousands of times and the `val` fields could be large...

I have another scenario where ``` Base.@kwdef mutable struct MyParams{A, B, C} a::A = Param(1.0, units=u"kg") b::B = Param(2.0, units=u"m") c::C = Param(missing) end m = MyParams() @set! m.c.val =...

Any pointers on how to get started? I would like to add a new theme.

ok. This is the best I can do, 😄 ![logoZarr_b](https://user-images.githubusercontent.com/19525261/226169206-d1e28849-2eaf-402c-b984-76580aade7ad.png) ![logoZarr](https://user-images.githubusercontent.com/19525261/226169212-c5138c07-a2f6-47b1-bfcb-55ba11818960.png) ```Julia using GLMakie using Colors using CairoMakie CairoMakie.activate!() rpyz = [Rect3f(Vec3f(0, j-0.8,k), Vec3f(0.1, 0.8,0.8)) for j in 1:7 for...

this kinda works, but I still see negative values for the last column, so, not sure if I should trust the other outputs 😄 . ```Julia using Rasters, DimensionalData using...

ohh... yes, it should be `Center`, I just copy/ pasted the code from the test file 😄 . This is good. Thanks a lot.