You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
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.
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.