Simon Kok Lupemba

Results 23 comments of Simon Kok Lupemba

This needs to be discussed first. I have not looked so through on it Link to package https://github.com/rafaqz/Extents.jl

@visr Thank you for the tip. I have change the title of the issue

> Maybe give a go with a PR :) @jkrumbiegel showed a way of doing it here: > > https://discourse.julialang.org/t/scale-division-in-makie/105650/2 Yes exactly like that. I will put it on my...

The PR have been tested offline by - Clone https://github.com/JuliaGeo/CommonDataModel.jl/pull/35 - Use Pkg `dev` to add the local repo as dependency - Run tests. All tests pass on my MacOS,...

First, similar to @Alexander-Barth I also don't broadcast directly on the fields when I use dataset package. I mainly just use `DiskArray` to load the subsets of the data I...

An alternative approach might be to have an option in dataset to automatically wrap `CFVariable` in `CFDiskArray` ```julia ds = Dataset("filename", as_diskarray=true) ds["var"] isa CFDiskArray #true ``` The pros is...

Maybe I can try to make a PR to CommonDataModel over easter. It will probably be slightly breaking and require the dataset packages to update some method. We will probably...

> I mean, the rest of the ecosystem needs Variable to be DiskArrays compatible. We don't use CFVariable so it can do whatever you want I think it is short...

Can we not do something like this to still allow for the ".attrib" and other behavior for views of `AbstractVariable`. ``` Julia @inline function Base.getproperty(sub_var::DiskArrays.SubDiskArray{T,N,:

> But custom methods on getproperty of another package is pretty bad form. It means DiskArrays could not reliably add getproperty methods itself. And generally ecosystem built with duct-tape like...