Releases: mthh/contour-rs
v0.13.1
v0.13.0
-
BREAKING: Change the signature of
ContourBuilder::new
to take ausize
instead of anu32
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
v0.12.0
v0.11.0
v0.10.0
v0.9.0
-
Add support for building isolines as
MultiLineString
s (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
V0.7.0
-
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
andy_step
attributes to ContourBuilder struct. They can be set using the builder pattern, before calling thecontours
method. -
Create a changelog and complete it retroactively.