Alexander Barth
Alexander Barth
This is the output inside the docker container: ``` sandbox:${WORKSPACE}/srcdir/netcdf-c-4.9.0 # wget "https://erddap.ifremer.fr/erddap/griddap/SDC_GLO_CLIM_TS_V2_1.dds" --2022-06-13 19:13:59-- https://erddap.ifremer.fr/erddap/griddap/SDC_GLO_CLIM_TS_V2_1.dds Resolving erddap.ifremer.fr (erddap.ifremer.fr)... 134.246.142.39 Connecting to erddap.ifremer.fr (erddap.ifremer.fr)|134.246.142.39|:443... connected. HTTP request sent, awaiting response......
Julia also depends on libcurl, so the libcurl version is kind of fixed. Calling the private `NC_rcfile_insert` to set `HTTP.SSL.CAINFO` as you suggested [here](https://github.com/Unidata/netcdf-c/issues/2337#issuecomment-1119947013) is indeed a good approach (even...
This API seems perfect to me! (but I cannot tell if there are enough const and * in the function signature as my C knowledge is quite limited ;-) )...
Yes, handling the memory as you propose makes the most sense to me too!
Unfortunately, I also see this failed assertion when I call `nc_rc_set` from Julia (first call to the NetCDF library after loading the library) using the PR https://github.com/Unidata/netcdf-c/pull/2408. https://github.com/Unidata/netcdf-c/issues/2337#issuecomment-1153640947 ``` $...
I am closing this issue because it is likely to be the same as: https://github.com/Unidata/netcdf-c/issues/2486 The option `-std=c99` (used here) results that the function `strdup` is undefined and any operation...
Would it be possible to enable plugins in the MinGW CI tests? And possibly also byte range support? https://github.com/Unidata/netcdf-c/blob/main/.github/workflows/run_tests_win_mingw.yml#L38
You are right, enum types are currently not supported. It is certainly withing the scope and doable. It just takes a sometime to write and test the code. Here is...
In NetCDF, an identifier (`Clear` in the example below) can appear in different enum types: ``` netcdf enum2 { types: byte enum cloud_t {Clear = 0, Cumulonimbus = 1, Stratus...
Would this not lead to ambiguities? For example if the data is on disk would be [10,100] as the scale factor would be 10 and the _FillValue = 100. If...