Recent Releases of NCDatasets.jl
NCDatasets.jl - v0.14.10
NCDatasets v0.14.10
New feature:
Closed issues:
- OutOfMemoryError(): is it possible to write NCDatasets to disk instead of RAM? (#278)
- Is there a way to retrieve type from file? (#290)
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] about 2 months ago
NCDatasets.jl - v0.14.9
NCDatasets v0.14.9
This release uses now DiskArrays for CFVariable (thanks to @lupemba ! )
Merged pull requests:
- Prepare common data model 0.4 (#279) (@lupemba)
- CompatHelper: bump compat for "DataStructures" to "0.19" (#280) (@github-actions[bot])
- Update README.md doc url (#282) (@kosukesando)
- Replace Base.keys by CDM.varnames (#285) (@felixcremer)
- move badges (#288) (@alex-s-gardner)
Closed issues:
- Performance and array semantics (#33)
- Question about time coordinate reading in .nc file with time unit nanoseconds from start Date Time (#248)
- views of variables don't use the DiskArrays interface (#274)
- Testing NCDatasets locally makes an foo.nc which should be deleted (#286)
- ArgumentError: Trailing indices must be 1 when using v[bitarray] .= scalar (#287)
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] 3 months ago
NCDatasets.jl - v0.14.8
NCDatasets v0.14.8
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] 8 months ago
NCDatasets.jl - v0.14.7
NCDatasets v0.14.7
Merged pull requests:
- Fix typo (#271) (@Sbozzolo)
- Update README.md following move to JuliaGeo (#272) (@gaelforget)
- Declare compatibility with netCDF 4.9.3 (#276) (@visr)
Closed issues:
- Moving to an org / making a golden standard for NetCDF files in Julia (#57)
CITATION.cfffile (#234)- Any simple way to remove or replace variables in a NCDataset? (#260)
- Writing a String always prints a warning (#269)
- crazy number of allocations on file read (#273)
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] 9 months ago
NCDatasets.jl - v0.14.6
NCDatasets v0.14.6
Merged pull requests:
- Update to Diskarrays 0.4 (#247) (@meggart)
Closed issues:
- Assertion failed: (dsid > 0), function attach_dimscales, file nc4hdf.c, line 1417. (#261)
- Saving a subset of a file (#268)
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] about 1 year ago
NCDatasets.jl - v0.14.5
NCDatasets v0.14.5
Closed issues:
- Problem connecting to a THREDDS OPeNDAP dataset (#257)
- NCDatasets fails to load (#259)
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] over 1 year ago
NCDatasets.jl - v0.14.4
NCDatasets v0.14.4
Merged pull requests:
- Throw informative error for unsupported vtype (#255) (@Sbozzolo)
Closed issues:
- More informative changelogs for breaking releases (#242)
- is there a variant of
load!that accumulates? (#252) - Issues with OpenDAP (#253)
- Run Aqua tests (#254)
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] over 1 year ago
NCDatasets.jl - v0.14.3
NCDatasets v0.14.3
- allow CartesianIndex and CartesianIndices with load! (issue #250, thanks to @haakon-e)
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] almost 2 years ago
NCDatasets.jl - v0.14.2
NCDatasets v0.14.2
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] almost 2 years ago
NCDatasets.jl - v0.14.1
NCDatasets v0.14.1
- Alternative masking values (experimental), see
https://alexander-barth.github.io/NCDatasets.jl/dev/other/#Fill-values-and-missing-values
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] almost 2 years ago
NCDatasets.jl - v0.14.0
NCDatasets v0.14.0
chunksizeis now a tuple of integers (was a vector of integers). On input (ofdefVarandchunking), a vector of integers is still accepted for compatibility.idimensionskey word argument is dropped from write. UseSubDatasetsinstead to write a subset of a netcdf file.- Many functions and types not specific to NetCDF files (multi-files, views, and load by value) have been moved to CommonDataModel.jl
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] about 2 years ago
NCDatasets.jl - v0.13.2
NCDatasets v0.13.2
Merged pull requests:
- NetCDF3 files (64-bit offset NetCDF,...) and unlimited dimensions (issue #231) (#232) (@Alexander-Barth)
- Minor docs improvements (#236) (@glwagner)
- Corrected the SST image output (#239) (@keduba)
Closed issues:
- 64-bit offset NetCDF and unlimited dimensions (#231)
- .var[:] always returns a vector (#233)
- check presence of attribute and variables (#235)
- String-valued dimension incorrectly loaded as matrix of characters (#237)
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] about 2 years ago
NCDatasets.jl - v0.13.1
NCDatasets v0.13.1
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] about 2 years ago
NCDatasets.jl - v0.13.0
NCDatasets v0.13.0
NCDatasets uses now the DiskArray package which required some API changes.
In general, the array API of NCDatasets is now more similar to base Julia in particular:
ncvar[range_indices] = scalarshould now bencvar[range_indices] .= scalarncvar2D[:]flattens the data in the 2D NetCDF variablencvar2D. To read the full array one need to usencvar2D[:,:]orArray(ncvar2D)(similarly for 3D, 4D... arrays).- Accessing an array out of bounds, new returns a
DimensionMismatchexception (previously aNCDatasets.NetCDFErrorexception was returned) - To grow a NetCDF variable with unlimited dimension, the corresponding index of left-hand side of the assignment cannot be a colon, but should be a range. For example if
ncvaris a NetCDF variable where the 2nd dimension is unlimited,ncvar[:,:] = zeros(2,3)should now be replaced byncvar[:,1:3] = zeros(2,3)
Merged pull requests:
- DiskArrays for
Variable's (#205) (@tcarion) - Fix checksum docstring (#213) (@navidcy)
- Correction of typos (#216) (@keduba)
- CompatHelper: add new compat entry for "DiskArrays" at version "0.3" (#229) (@github-actions[bot])
Closed issues:
- NCDatasets.jl v0.11+ does not work on PowerPC (#116)
- For compressed netcdf, extremely low speed in cdo operation (#206)
- LoadError: UndefVarError:
NetCDFErrornot defined (#207) - [Suggestion] easier creation of time axis (#208)
- [enhancement] support empty array
var[ [] ](#209) - Using NCDatasets.jl in R (#210)
- No warning message when passing wrong keywords to
defVar(#212) - @select not work for 4d array (#214)
- NCDatasets fails due to build issue on Julia 1.10 (#215)
- Significant performance gap between NetCDF.jl and NCDatasets.jl (#218)
- Write data fails when the number less than typemax(Datatype) (#226)
- Return type
Matrix{Union{Missing, Float32}}(#227)
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] about 2 years ago
NCDatasets.jl - v0.12.17
NCDatasets v0.12.17
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] over 2 years ago
NCDatasets.jl - v0.12.16
NCDatasets v0.12.16
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] over 2 years ago
NCDatasets.jl - v0.12.15
NCDatasets v0.12.15
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] over 2 years ago
NCDatasets.jl - v0.12.14
NCDatasets v0.12.14
Closed issues:
- Reading In "Scalar" String (#204)
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] over 2 years ago
NCDatasets.jl - v0.12.13
NCDatasets v0.12.13
Closed issues:
- Windows: Can't load files with unicode characters (#162)
- libcurl.so precompile error. (#191)
- Reading
timefrom multi-file dataset very slow (#194) @select(ds, Dates.month(time) [...])fails whendsopened byNCDataset(pth) do ds(#196)- Error when writing
Array{Float64, 0}(#197) - Values aren't correctly written to disk (#199)
- Add support for
@select(ds, lat ∈ min..max)(#200) NCDatasets.@selectwithMFVariableover date operations (#201)- Problems installing on Julia 1.8.5 (#202)
@selectwith arbitrary (or a few specific) functions (#203)
Merged pull requests:
- Update tutorials.md (#198) (@gaelforget)
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] almost 3 years ago
NCDatasets.jl - v0.12.11
NCDatasets v0.12.11
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] about 3 years ago
NCDatasets.jl - v0.12.10
NCDatasets v0.12.10
Closed issues:
- time variables with "nanoseconds" units fail to load (#192)
Merged pull requests:
- Check if NetCDF_jll
is_availablebefore loading code (#193) (@glwagner) - Add support for
_normalizeindexwithBase.OneTo(#195) (@charleskawczynski)
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] about 3 years ago
NCDatasets.jl - v0.12.9
NCDatasets v0.12.9
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] about 3 years ago
NCDatasets.jl - v0.12.8
NCDatasets v0.12.8
Closed issues:
- Bug? for function defVar (#186)
- Segmentation fault reading file with NCDatasets v0.12.6 (#187)
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] about 3 years ago
NCDatasets.jl - v0.12.7
NCDatasets v0.12.7
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] over 3 years ago
NCDatasets.jl - v0.12.6
NCDatasets v0.12.6
Support for NetCDF 4.9.0
Closed issues:
- Time dimension with month units cannot be loaded (#181)
- Using
ncgenwhen variable names have spaces (#183)
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] over 3 years ago
NCDatasets.jl - v0.12.5
NCDatasets v0.12.5
- Experimental NCDatasets.@select (subset by e.g. bounding box and date range) and
views (of variables and datasets)
Closed issues:
getindex(::NCDataset, ::String)scales poorly with # of variables for unlimited data dimension (#135)- Default missing values (#163)
- julia 1.8 beta3, NetCDF_jll v400.802.102+0: Failure to load OPENDAP URL with TLS (#173)
- Possible bug trying to save 2D variables (#175)
- How do I add variables that are located only in a subset of the coordinates? (#176)
- Problem reading time (#177)
- How to save a string variable as a scalar? (#180)
Merged pull requests:
- set curl options in libnetcdf via NC_rcfile_insert (#174) (@visr)
- CompatHelper: add new compat entry for "NetworkOptions" at version "1.2" (#178) (@github-actions[bot])
- @select macro for loading data via e.g. a bounding box or by nearest match (#179) (@Alexander-Barth)
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] over 3 years ago
NCDatasets.jl - v0.12.4
NCDatasets v0.12.4
Slice of a multifile variable is now a subtype of AbstractArray{Union{Missing,T},N} where {T,N} for compatibility with nomissing.
Closed issues:
- Call for volunteers to test the updated NetCDF v4.8.1 (in particular for Windows and Apple users) (#165)
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] over 3 years ago
NCDatasets.jl - v0.12.3
NCDatasets v0.12.3
Closed issues:
- Memory use loading files (#89)
- Incorrectly handeling attributes scale_factor and add_offset (#95)
- NCDatasets fails to install on Mac OS with brew julia install (#153)
- Open in Python but in Julia cannot (#168)
Merged pull requests:
- Minor corrections to README.md (#171) (@petershintech)
- add capability to read only part of continuous ragged array (#172) (@gaelforget)
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] over 3 years ago
NCDatasets.jl - v0.12.2
NCDatasets v0.12.2
Closed issues:
- Automatic date detection missing in floating numbers as time (#169)
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] almost 4 years ago
NCDatasets.jl - v0.12.1
NCDatasets v0.12.1
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] almost 4 years ago
NCDatasets.jl - v0.12.0
NCDatasets v0.12.0
Breaking change: when loading a NetCDF variable all values equal to the missing_value attribute are replaced by missing following the CF conventions. Previously, only the values equal to _FillValue were replaced by missing.
Closed issues:
- Allow symbols in attrib dicts? (#154)
- windows, ERROR: could not load symbol "nc_open" (#158)
- Get variable by
standard_name(#160) - load! CFVariable without allocations (#161)
Merged pull requests:
- feat: allow
Symbolnames for attributes (#156) (@adigitoleo) - Symbol attributes (#157) (@adigitoleo)
- feat: Add show method for dimensions (#159) (@adigitoleo)
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] almost 4 years ago
NCDatasets.jl - v0.11.9
NCDatasets v0.11.9
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] almost 4 years ago
NCDatasets.jl - v0.11.8
NCDatasets v0.11.8
Closed issues:
- Handle CRS (#85)
- mbedtls issue in Fedora linux (#126)
- Warning: Inactive precompile statement (#142)
- Does NCDatasets.jl work with @threads well? (#144)
- NetCDF: Not a valid data type or _FillValue type mismatch (NetCDF error code: -45) (#145)
- can't find the function ncsave (#146)
- Conflicting with GMT.jl package (#147)
- fillvalue() is not defined for MFVariable (#148)
- Loading time from netcdf file as unixtime directly and NaN for fillvalue? (#151)
- ERROR: LoadError: UndefVarError: libnetcdf not defined (#152)
Merged pull requests:
- Fix broken cross reference links in documentation (#149) (@adigitoleo)
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] almost 4 years ago
NCDatasets.jl - v0.11.7
NCDatasets v0.11.7
Closed issues:
- Wrong output example for ds.attrib in index.md (#134)
- cannot open multi file dataset with deferopen = true (#138)
- Prodlem reading byte variable (#139)
- Attributes as NC_STRING vs array of NC_CHAR (#140)
Merged pull requests:
- Reduce compilation time (#136) (@rafaqz)
- support symbol indexing for MFDataset as well (#137) (@visr)
- Fix a typo and use CF standard names (#141) (@petershintech)
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] over 4 years ago
NCDatasets.jl - v0.11.6
NCDatasets v0.11.6
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] over 4 years ago
NCDatasets.jl - v0.11.5
NCDatasets v0.11.5
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] over 4 years ago
NCDatasets.jl - v0.11.4
NCDatasets v0.11.4
Closed issues:
- Bound error in multifile load attempt (#108)
- Bounds variable conversion (#117)
- NCDatasets fails to load on Julia 1.6-beta1 (#118)
- Automatically save Dates (#125)
- Allow
*syntax for multi file loading (#127) - how to save coordinates (#129)
- controlling chunk cache (#130)
Merged pull requests:
- mention Glob.jl (#128) (@Datseris)
- docs: fix dim field name (#131) (@visr)
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] over 4 years ago
NCDatasets.jl - v0.11.3
NCDatasets v0.11.3
Closed issues:
- Missing method for NCDatasets.load!(ds["var"],buf,:,1) (#120)
Merged pull requests:
- Adding method to load in-place mixing ranges and ints as indices. (#121) (@aramirezreyes)
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] almost 5 years ago
NCDatasets.jl - v0.11.2
NCDatasets v0.11.2
Merged pull requests:
- Change attribute color from blue to cyan (#119) (@briochemc)
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] almost 5 years ago
NCDatasets.jl - v0.11.1
NCDatasets v0.11.1
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] about 5 years ago
NCDatasets.jl - v0.11.0
NCDatasets v0.11.0
Closed issues:
- Convenience selection function for sub-parts of NCDataset (#47)
- NetCDF error: NetCDF: Operation not allowed in define mode (NetCDF error code: -39) (#96)
- Not possible to use _FillValue for variables of type String (#99)
- error loading file in edit mode ("a") (#100)
- ds[var] in multi-file datasets directly returns the data array (#102)
- attempt to transform dimensional information to Ranges instead of Vectors? (#103)
- closing an NCDataset based on path (#106)
- FillValue not working automatically (#107)
- "add_offset" and "scale_factor" is not applied correctly in multi-file .nc datasets (#109)
Merged pull requests:
- use the new NetCDF_jll; require julia 1.3 (#88) (@visr)
- Update performance.md (#111) (@aramirezreyes)
- Update performance.md (#112) (@aramirezreyes)
- use Ref instead of size 1 Vector (#113) (@visr)
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] about 5 years ago
NCDatasets.jl - v0.10.4
NCDatasets v0.10.4
Closed issues:
- Problem on opening multiple files (#94)
- Non-automatic convertion of missing values to
missing(#97)
Merged pull requests:
- CompatHelper: bump compat for "DataStructures" to "0.18" (#98) (@github-actions[bot])
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] over 5 years ago
NCDatasets.jl - v0.10.3
NCDatasets v0.10.3
Closed issues:
- Printing problems in Juno (#65)
- Using
ncgenon a file with white spaces in variable names 💣 (#84) - Not loading files when Plots.jl is used (#86)
- Dimension ordering (#87)
- how to define the dimension value? (#90)
- Freeze in
_nc_check_size_put_vars(#92)
Merged pull requests:
- do not throw when closing closed NCDataset (#93) (@visr)
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] over 5 years ago
NCDatasets.jl - v0.10.2
NCDatasets v0.10.2
Closed issues:
- Is there a way to close all Datasets at one go (#82)
Merged pull requests:
- anti-alias doc (#81) (@visr)
- require BinDeps 1.0.1 (#83) (@visr)
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] over 5 years ago
NCDatasets.jl - v0.10.1
NCDatasets v0.10.1
Closed issues:
- High Memory Usage (#75)
- Unable to build NCDatasets.jl (#80)
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] almost 6 years ago
NCDatasets.jl - v0.10.0
NCDatasets v0.10.0
Closed issues:
- Asmmetry with Missings and DateTime when loading and saving vars. (#38)
- Read a variable of Char Datatype (#39)
- Data typed Union{Missing, Dates.DateTime, AbstractCFDateTime, Number} when calling discrete indices (#40)
- conflict of netcdf.dll (#41)
- Cannot read time variable: "Unsupported calendar: Gregorian" (#42)
- cannot install after update because incompatibility with other packages? (#45)
- Something is wrong with
mean: takes too much time (#48) - Accessing a dataset with a range takes forever...? (#49)
- [DOC] How to get the dimensions of a dataset? (#50)
- Why is CFVariable a subtype of
AbstractArray? (#51) - Make
sizeof a NCDataset/CFVariable return a NamedTuple instead (#52) - Quick question on scale_factor and add_offset (#56)
- Can one obtain the dimensions directly from a dataset? (#63)
- Question: Is it possible to obtain the dimension values from a CFVariable? (#69)
- Ability to not apply
add_offsetandscale_factor(#70) - Direct convertion to DimensionalArray (#72)
- Usage of "attrib" keywords in defVar (#73)
- Feature request:
attributes(x)returns a dictionary. (#76) - [DOC] How to merge 2 NCDatasets (same dims/attributes) (#77)
Merged pull requests:
- Improve README, add TOC, add alias NCDataset (#44) (@Datseris)
- update BinDep upper version bound (#46) (@Alexander-Barth)
- nsize function for CFVariable (#53) (@Datseris)
- Big documentation re-structure and improvement!!! (#55) (@Datseris)
- Seperate source code into files with sections (#59) (@Datseris)
- Add comment in Manual pointing explicitly to the docs (#62) (@Datseris)
- Improve docs: mention the
meanproblem (#64) (@Datseris) - Improve
nomissingfunctionality (#66) (@Datseris) - CompatHelper: bump compat for "CondaBinDeps" to "0.2" (#68) (@github-actions[bot])
- Install TagBot as a GitHub Action (#74) (@JuliaTagBot)
- add merge function (#78) (@Datseris)
Climate Change - Climate Data Standards
- Julia
Published by github-actions[bot] almost 6 years ago
NCDatasets.jl - v0.9.5
v0.9.5 (2019-10-21)
Closed issues:
- An array of arbitrary size can be appended to a CFVariable (#37)
Climate Change - Climate Data Standards
- Julia
Published by julia-tagbot[bot] about 6 years ago
NCDatasets.jl - v0.9.4
v0.9.4 (2019-10-02)
Closed issues:
- NetCDF: Operation not allowed in define mode (#36)
Climate Change - Climate Data Standards
- Julia
Published by julia-tagbot[bot] about 6 years ago
NCDatasets.jl - v0.9.3
v0.9.3 (2019-09-19)
Closed issues:
- Abstract date handling to another package? (#34)
- Attempt to use feature that was not turned on when netCDF was built (#32)
- Is it possible to get memory mapping in NCDatasets? (#31)
- NCDatasets should fail when trying to access a nonexisting index. (#30)
Climate Change - Climate Data Standards
- Julia
Published by julia-tagbot[bot] over 6 years ago
NCDatasets.jl - v0.9.2
Climate Change - Climate Data Standards
- Julia
Published by julia-tagbot[bot] over 6 years ago
NCDatasets.jl - v0.9.1
- Fix issue #28
Climate Change - Climate Data Standards
- Julia
Published by Alexander-Barth over 6 years ago
NCDatasets.jl - v0.9.0
- initial implementation of NCDataset with deferred open
- fix default time unit
- improve documentations (thanks @Balinus )
Climate Change - Climate Data Standards
- Julia
Published by Alexander-Barth over 6 years ago
NCDatasets.jl - v0.8.0
- Restructure time handling code in the submodule
CFTime - Fix issue #21, #23 and #24
Climate Change - Climate Data Standards
- Julia
Published by Alexander-Barth almost 7 years ago
NCDatasets.jl - v0.7.0
- load contiguous ragged array
- fix issue #22 in
ncgenwith unlimited dimensions
Climate Change - Climate Data Standards
- Julia
Published by Alexander-Barth almost 7 years ago
NCDatasets.jl - v0.6.0
- More functions for manipulating DateTime variables following the different CF calendars:
monthdayand date ranges (Thanks @Balinus )
Climate Change - Climate Data Standards
- Julia
Published by Alexander-Barth about 7 years ago
NCDatasets.jl - v0.5.1
- Experimental multi-file support allowing to aggregate files over a specified dimension
- Detect ancillary data (like status flags) based on the NetCDF CF Convention
Climate Change - Climate Data Standards
- Julia
Published by Alexander-Barth about 7 years ago
NCDatasets.jl - v0.4.0
- One can now directly specify in defVar, defGroup and Dataset a list of attributes
- In defVar, one can directly specify to data to be saved
- Implementation of daysinmonth, daysinyear, yearmonthday and yearmonth for special DateTimes from the CF standard
Climate Change - Climate Data Standards
- Julia
Published by Alexander-Barth about 7 years ago
NCDatasets.jl - v0.3.2
Support Julia 1.0
Climate Change - Climate Data Standards
- Julia
Published by Alexander-Barth over 7 years ago
NCDatasets.jl - v0.3.1
- Fix additional warning of Julia 0.7 rc3
- Support element-wise assignment
v .= 123wherevis a NetCDF variable.
Climate Change - Climate Data Standards
- Julia
Published by Alexander-Barth over 7 years ago
NCDatasets.jl - v0.3.0
- switch to CondaBinDeps
Climate Change - Climate Data Standards
- Julia
Published by Alexander-Barth over 7 years ago
NCDatasets.jl - v0.2.0
- Drop DataArrays as dependency and use Missings instead
- Initial support for Julia 0.7
Climate Change - Climate Data Standards
- Julia
Published by Alexander-Barth over 7 years ago
NCDatasets.jl - v0.1.0
Support for calendars NetCDF CF Calendars: http://cfconventions.org/cf-conventions/cf-conventions.html#calendar
Climate Change - Climate Data Standards
- Julia
Published by Alexander-Barth over 7 years ago
NCDatasets.jl - v0.0.12
Fix issue #13
Climate Change - Climate Data Standards
- Julia
Published by Alexander-Barth over 7 years ago
NCDatasets.jl - v0.0.11
- New function
nomissingto replace missing values - Improvement of documentation
- Support of list of string attributes
- Improvement of variable-lengt arrays
Climate Change - Climate Data Standards
- Julia
Published by Alexander-Barth over 7 years ago
NCDatasets.jl - 0.0.10
Improve string attributes
Climate Change - Climate Data Standards
- Julia
Published by Alexander-Barth over 7 years ago
NCDatasets.jl - v0.0.9
Initial support for non-gregorian calendars
Climate Change - Climate Data Standards
- Julia
Published by Alexander-Barth almost 8 years ago
NCDatasets.jl - v0.0.8
- accept SubString as file name argument
- allow negative years
- represent time in 64-bit in 32-bit systems
Climate Change - Climate Data Standards
- Julia
Published by Alexander-Barth almost 8 years ago
NCDatasets.jl - v0.0.7
- Fix depreciation for the new version of DataArrays (version 0.7) by the use of
ismissinginstead ofisna. - Allow 'Z' and 'T' in the time units, e.g. 1900-01-01T00:00:00Z
- If
nc_openattempts to open a non-existing file, the file name is returned in the error message.
Climate Change - Climate Data Standards
- Julia
Published by Alexander-Barth almost 8 years ago
NCDatasets.jl - v0.0.6
Fix bug in chunking.
Climate Change - Climate Data Standards
- Julia
Published by Alexander-Barth about 8 years ago
NCDatasets.jl - v0.0.5
Implementation of ncgen to generate Julia code from a template netCDF file.
Climate Change - Climate Data Standards
- Julia
Published by Alexander-Barth about 8 years ago
NCDatasets.jl - v0.0.4
Fix bugs related to NetCDF Strings and IJulia integration.
Climate Change - Climate Data Standards
- Julia
Published by Alexander-Barth about 8 years ago
NCDatasets.jl - v0.0.3
Support for appending data to an existing NetCDF file
Climate Change - Climate Data Standards
- Julia
Published by Alexander-Barth about 8 years ago
NCDatasets.jl - v0.0.2
Improve handling of string and NetCDF groups
Climate Change - Climate Data Standards
- Julia
Published by Alexander-Barth about 8 years ago