Release notes

Version 0.14.1 (December 25, 2024)

Features
Misc
  • Build using python3.9 because for 3.8 the geopandas/fiona documentation dependency installs incompatible versions

Version 0.14.0 (August 11, 2024)

Featrures
  • A new Tile class that references a set of cells and has some convenience methods that describe the tile, such as Tile.indices and Tile.corners. This class is takes a similar role to the BaseGrid.cells_in_bounds() method, but is able to work with rotated grids. The intent is that in the long run a DataTile will replace the BoundedGrid for this reason.

Documentation
  • Add example tiles.py which explains the usage of the new Tile class.

  • Use more neighbours in example flower_of_life.py since the final flower was missing some circles in the bottom left.

Misc
  • Rename the PyO3 classes PyTriGrid, PyRectGrid and PyHexGrid to PyO3TriGrid, PyO3RectGrid and PyO3HexGrid, respectively. This is done to avoid confusion. From the Rust perspective these represent Python classes but from the Python perspective these represent Rust classes. PyO3 seems to be less ambiguous for it makes sense from both perspectives.

Version 0.13.0 (July 10, 2024)

Features
  • Option to initialize grid using side_length instead of size or area

Fixes
  • Comparisson operators for GridIndex now also work when comparing to non-grid index classes. For example GridIndex([1,2]) == (1,2) will result in True. By extension, (1,2) in GridIndex([[1,2], [0,0]]) now also works as expected.

Documentation

Version 0.12.1 (Jun 17, 2024)

Misc
  • Make compatible with numpy v2.0.0 while remaining compatible with earlier versions

Version 0.12.0 (May 10, 2024)

Featrures
Documentation

Version 0.11.1 (June 01, 2024)

Features

Version 0.11.0 (May 29, 2024)

Features
Fixes
  • Fix issue in HexGrid where offsets were incorrectly applied when the supplied offsets were not between 0:cell size

  • Fix ‘flat’ HexGrids rotating in the other direction

  • Fix error regarding the datatype when supplying the offset for a TriGrid as a non-tuple iterable such as a list or numpy array

  • Fix HexGrid.cell_at_point() not properly taking x-offset into account

  • Fix issue where the offset would flip for ‘flat’ HexGrids when using the offset setter but not when calling grid.update(offset=new_offset)

Documentation
Deprecations
  • ‘flat’ shape for HexGrid will be deprecated in favor of rotation in v1.0.0. A warning will be raised on class initiation.

Known Issues
  • The implementation of ‘flat’ HexGrids is done by swapping the x and y axes compared to a ‘pointy’ grid. With this release, several issues related to the offset were fixed, but this implementation aspect now leaks into the offset. This means the user might specify an offset of (0,1) and expect a shift of 1 in the y-axis but the shift occurs in the x-axis. Since ‘flat’ HexGrids will be deprecated in release v1.0.0, fixing this is not worth the effort, meaning this leaky abstraction will be deliberately ignored.

Version 0.10.0 (April 21, 2024)

Features
Fixes
Documentation

Version 0.9.2 (April 03, 2024)

Features
  • Add new initialization argument area to TriGrid, RectGrid and HexGrid for specifying the cell area of the grid

  • Add new property BaseGrid.area()

  • Add shape to RectGrid to further unify the class API between the three grid types

Fixes
  • Prevent passing rotation argument to Bounded grids, which were not designed with rotation in mind because that breaks the tiling.

Documentation

Version 0.9.1 (March 17, 2024)

Features
Fixes
Documentation

Version 0.9.0 (March 10, 2024)

Features
Fixes:
Documentation

Version 0.8.0 (March 03, 2024)

Fixes
Misc

Version 0.7.3 (February 25, 2024)

Fixes
  • Properly handle negative offsets in Rust grid classes

Misc

Version 0.7.2 (February 18, 2024)

Features
Fixes
Documentation

Version 0.7.1 (February 11, 2024)

Fixes
  • Remove allocation of unused array

Documentation
Misc

Version 0.7.0 (February 04, 2024)

Features
Fixes

Version 0.6.0 (January 07, 2024)

Features
  • Add TriGrid (Only base variant, BoundedTriGrid is yet to come)

Fixes
Documentation
Misc
  • Add Rust bindings using the maturin package

  • Renamed the test rasters used in example ndvi.py because Windows failed on special characters in the name

  • Put index as first argument instead of second in HexGrid.relative_neighbours()

CICD
  • Retire setup.py in favour of pyproject.toml

  • Build package using maturin

  • Test deploy for linux, macos and windows before uploading the sdist to PyPi

Version 0.5.1 (October 08, 2023)

Fixes
Documentation

Version 0.5.0 (October 01, 2023)

Features
  • Make return argument shape optional in BaseGrid.cells_in_bounds() by adding the return_cell_shape argument (default False)

  • Structure the GridIndex returned by BaseGrid.cells_in_bounds() in the shape of the grid (2D)

  • Now the return shape of BaseGrid.to_shapely() is the same as the input shape of the index argument (if as_multipolygon is False)

  • Allow BoundedRectGrid.centroid() to be called without specifying the index argument, use the cells in it’s bounds by default

  • Better error when index is not supplied to centroid method on grids that are not bounded

Misc

Version 0.4.8 (September 18, 2023)

Features

Version 0.4.7 (September 10, 2023)

Features
Documentation
Misc
  • Add basic tests for statistical functions sum(), mean()

CICD
  • Allow for manual triggering of documentation pipeline

Version 0.4.6 (September 4, 2023)

Features
Documentation

Version 0.4.5 (August 27, 2023)

Fixes
  • Replace all mentions of read_geotiff in example gallery to write_geotiff

  • build docs without referencing setup.py

Misc
  • Add test to verify if the documentation builds succesfully

  • Add docs_require to tests_require in setup.py

  • remove restriction on sphinx version

Version 0.4.4 (August 27, 2023)

Fixes
  • Add missing matplotlib to docs_require

Version 0.4.3 (August 27, 2023)

Fixes
  • Pin sphinx version to prevent docs build step from erroring

Version 0.4.2 (August 27, 2023)

Fixes
Documentation
Misc

Version 0.4.1 (August 20, 2023)

Features
  • make GridIndex hashable so it works as pandas index

  • remove any empty axis on GridIndex initialization

Documentation
  • create example script aggregate.py

  • rename Shape interactions section to Vector data interactions

  • create doc_utils.py to contain helper functions for plotting and input generation used in examples

Version 0.4.0 (August 13, 2023)

Features
  • GridIndex class to unify index representation

  • validate_index() decorator to turn any index represetntation into a GridIndex on function call

  • Operations that return grid indices now return GridIndex instances instead of numpy arrays

Version 0.3.1 (July 23, 2023)

Features
Fixes
  • resolve shift in data when using comparisson and mathematical operators on BoudedHexGrid

Documentation
  • Add examle on coordinate transformations

Version 0.3.0 (July 16, 2023)

Features
  • Resample method for BoundedHexGrid

  • Bilinear interpolation method for BoundedHexGrid

  • Split Interpolate method from resample method

  • Codecov integration

CICD
  • black and isort checks in test pipeline

Documentation
  • Add missing docstrings to resample method

Misc
  • reformat python files using black and isort

  • move Resample method one step up in the inheritance hierarchy, to BoundedGrid

Version 0.2.0 (July 10, 2023)

Features
  • Add hex_grid.HexGrid class

  • Add hex_grid.BoundedHexGrid class

  • to_shapely() on bounded grids returns the shapes in the bounds when no index is supplied

  • add action for pytest and doctest on push

  • turn bounded_grid.indices into a property

Fixes
  • set proper version when documentation is build

Documentation
  • build documentation when tagged instead of merged in main

  • add example “Hexagon grids”

  • add example “Cell selection using other grids”

  • add example “Resampling”

  • use hexagons instead of squares in example “Interpolate from points”

Version 0.1.1 (March 17, 2023)

Fixes
  • Fix __version__` missing an ending quotation mark

Version 0.1.0 (March 17, 2023)

  • release first version to PyPi