Releases: csiro-coasts/emsarray
Releases · csiro-coasts/emsarray
v0.3.0
- Use variable and dimension names as-is, instead of casting to strings. xarray internally treats all variable and dimension names as Hashable, without assuming they are strings. NetCDF4 files always use string names, so this change should not affect you if you only use NetCDF4 datasets (pull request #25).
- Fix error when UGRID start_index is the string “0” or “1”. The conventions imply this should be an integer type, however real datasets use a string value here so a tolerant implementation is useful (pull request #26, pull request csiro-coasts/emsarray-data#1).
- Split emsarray.operations in to separate modules (pull request #27).
- Add emsarray.operations.geometry module which can export dataset geometry to GeoJSON and Shapefiles (pull request #28).
- Add Format.drop_geometry() method (pull request #29).
- Add emsarray.operations.point_extraction module and emsarray extract-points command line entry point which can extract point data from a dataset (pull request #29).