Alexander Barth
Alexander Barth
Did you try this to iterate over all subgroups? ``` for (groupname,group) in ds.groups # all groups @show (groupname,group) end ``` https://alexander-barth.github.io/NCDatasets.jl/stable/dataset/#Common-methods Or do you need the group names without...
I tried to instantiate a catalog object in pystack but I got the following error: ```python import pystac cat = pystac.Catalog.from_file("https://geoservice.dlr.de/eoc/ogc/stac/v1/") # ok cat2 = pystac.Catalog.from_file("https://geoservice.dlr.de/eoc/ogc/stac/v1/collections/TDM_FNF_50") list(cat2.get_items()) ``` ``` ---------------------------------------------------------------------------...
Thank you for looking into this issue! I have updated the search function following your suggestion!
Version 0.1.2 is released here https://github.com/JuliaRegistries/General/pull/117064 This PR can be closed.
Personally, I do not make element-wise operations on types of NCDatasets. But a better integration with DiskArray would be very desirable but it is not that [straightforward to implement](https://github.com/JuliaGeo/CommonDataModel.jl/issues/21). `view`s...
A function based interface would be quite a massive breaking change. I like the ability to modify attributes as it were a dictionary. Maybe an approach would be that a...
The `attrib` field does not have to be an explicit field of the variable data structure (and it is no longer implemented that way since a while). `ncvar.attrib` returns an...
The `attrib` field currently works with both: Variable and CFVariable. Do you expect it to be simpler to implement for just CFVariable ? Many of the method in CommonDataModel are...
I think that this can be closed now: This code is now fast: ```julia NCDataset("test_file.nc","c") do ds defVar(ds,"temp",rand(100,100),("lon","lat"); chunksizes = [10,10]) @time variable(ds, "temp") .+= 1 end; # 0.005305 seconds...
I can also reproduce the error with fixed sized array, but I have to run the reproducer with `N = 20_000` (or rather `N = 40_000`) to trigger it reliably:...