Alexander Barth
Alexander Barth
As a test (or work-around) can you install version 0.11.9 of NCDatasets? ```julia ]add [email protected] ``` Does this work? It is kind of a struggle right now to support Windows...
Yes, this is a know issue and due to fact that we do not have a working updated NetCDF_jll on Windows (https://github.com/Unidata/netcdf-c/issues/2248, https://github.com/JuliaPackaging/Yggdrasil/issues/4511). If I would mark NCDatasets compatible with...
This should be fixed by the new NetCDF_jll 400.902.5 (for all major OSes)
In our case, we have this issue also with a randomly created filenames in the windows temporary directory (windows equivalent of /tmp) when running our test suite. I guess that...
As a test, I added a simple test function to libnetcdf which only creates a HDF5 File Access Properties list: ```c int my_test_function() { hid_t fapl_id = -1; int retval...
Indeed, I was wondering the same thing: https://github.com/JuliaPackaging/Yggdrasil/issues/4511#issuecomment-1207107732 The small example program using just HDF5 also failed when using the gcc compiler from the julia build environment (x86_64-w64-mingw32-gcc 4.8.5). Surprisingly,...
I am closing this issue since the problem did not show up again after upgrading the GCC version. Thanks to all who contributed to the discussion!
I like the approach, for adding an optional argument to `NCDataset(file; make_units_happen_please_or_something)`. There are some alternative ideas (https://github.com/Alexander-Barth/NCDatasets.jl/issues/47#issuecomment-571329613) what the result type of the variable `subset` should be in this...
As I understand your issue, this is currently not possible. This is what I get with `ncdump -h`: ``` netcdf control-A-2019-07-02-000500-g1 { dimensions: phony_dim_0 = 16 ; phony_dim_1 = 16...
If have implemented this feature in the master version. There will be a new release soon: https://github.com/Alexander-Barth/NCDatasets.jl/blob/master/src/multifile.jl#L79 This is what I get with your sample data: ``` julia> ds =...