Skip to content

v0.5.0

Compare
Choose a tag to compare
@DirkEilander DirkEilander released this 04 Aug 08:35
· 973 commits to main since this release
e30a4f6

v0.5.0 (4 August 2022)

We now use rioxarray to read raster data. We recommend reinstalling your hydromt environment including the rioxarray package.
Furthermore, we have changed some internals to support multiple predefined data catalogs and data archives. A detailed overview of all changes is shown below.

@IMarth and @xldeltares made their first contributions 🎉

Added

  • New raster method for adding gdal_compliant() attributes to xarray object.
  • Function to_datetimeindex in available preprocess functions for xr.open_dataset in the data adapter.
  • Function remove_duplicates in available preprocess functions for xr.open_dataset in the data adapter.
  • New DataCatalog.from_predefined_catalogs and DataCatalog.from_archive to support predefined data catalogs and archive
    in a generic way through the data/predefined_catalogs.yml file.
  • Optional formatting for year and month variables in path of data sources.

Changed

  • splitted data_adapter.py into a data_catalog and data_adapter submodule with py scripts per adapter
  • Add rioxarray dependency to read raster data
  • In build or update methods, the setup_config component is not forced to run first anymore but according to order of the components in the ini config (opt dict).
  • In DataCatalog.get_RasterDataset & DataCatalog.get_GeoDataset methods, variables can now also be a str as well as a list of strings.
  • In DataCatalog.get_RasterDataset & DataCatalog.get_GeoDataset methods, automatic renaming of single variable datasets based on the variables argument will be deprecated
  • Interpolate missing values based on D4 neighbors of missing value cells only. This largely improves the performance without loosing accuracy.
    Changes have been observed when nearest method is used but this should not impact quality of the interpolation.
  • New source_names argument to DataCatalog.to_yml

Fixed

  • Fixed DataAdapter.resolve_paths with unknown keys #121
  • Fixed the WGS84 datum in the gis_utils.utm_crs method.
  • In merge.merge the grid is now aligned with input dataset with the largest overlap if no dst_bounds & dst_res are given.
  • Fixed the predicate not being passed in get_geodataframe method.
  • Removed deprecated xr.ufuncs calls.

Deprecated

  • Automatic renaming of single var dataset if variables is provided in get_rasterdataset. Data catalog should be used instead.
  • DataCatalog.from_artifacts. Use DataCatalog.from_predefined_catalogs instead.