Skip to content

Releases: mthh/contour-rs

v0.13.1

30 Apr 13:02
Compare
Choose a tag to compare
  • Fix bug introduced in 0.13.0 that caused the returned contours to be sometimes erroneous (fixes #18).

Important note: Due to the bug fixed by this version, v0.13.0 was yanked soon after 0.13.1 was released.

v0.13.0

15 Apr 11:25
Compare
Choose a tag to compare
  • BREAKING: Change the signature of ContourBuilder::new to take a usize instead of an u32 for the dimensions of the grid.
    This is more idiomatic and consistent with the rest of the Rust ecosystem and enables the use of larger grids
    (thanks to @netthier, see #12 and #13 for details).

  • Fix artifacts in the contours obtained when using the f32 feature and large grids (thanks to @netthier, see #12 and #13 for details).

Important note: Due to a bug, v0.13.0 was yanked after 0.13.1 (correcting the bug concerned) was released.

v0.12.1

11 Mar 12:54
Compare
Choose a tag to compare
  • Fix bug in area function (fixes #11, thanks to @caspark). Note that given the use made of this function, it probably didn't cause issues with the contours created.

v0.12.0

02 Dec 21:25
Compare
Choose a tag to compare
  • Expose error type (fixes #9).

v0.11.0

06 Oct 18:31
Compare
Choose a tag to compare
  • Add f32 feature to use f32 instead of f64 for the input values and the computations (thanks to @hakolao).

v0.10.0

20 Mar 10:46
Compare
Choose a tag to compare
  • Allow to compute isobands as MultiPolygon using the isobands method of the ContourBuilder struct.

  • Refactor some stuff (notably better dispatching of the code across files).

v0.9.0

14 Mar 15:13
Compare
Choose a tag to compare
  • Add support for building isolines as MultiLineStrings (instead of solely building contour polygons as MultiPolygons).

  • Improve some minor details in the documentation and in the README (notably to refer to the contour-isobands crate)

v0.8.0

21 Feb 16:41
Compare
Choose a tag to compare
  • Be less restrictive about the geo-types version and use geo_types::Coord instead of deprecated geo_types::Coordinate.

  • Update to Rust 2021 edition.

  • Update authors field in Cargo file.

V0.7.0

23 Sep 15:07
Compare
Choose a tag to compare
  • BREAKING: Make geojson optional, use geo-types for geometry representation (thanks to @michaelkirk, see #5 and #6 for details).

  • BREAKING: Rename the "value" field to "threshold" in the GeoJSON representation.

  • Add x_origin, y_origin, x_step and y_step attributes to ContourBuilder struct. They can be set using the builder pattern, before calling the contours method.

  • Create a changelog and complete it retroactively.

v0.6.0

15 Sep 20:49
Compare
Choose a tag to compare
Update README.md