Releases: paulmach/orb
Releases · paulmach/orb
v0.11.1
v0.11.0
What's Changed
- quadtree: InBoundMatching does not properly accept passed-in buffer by @nirmal-vuppuluri in #139
- encoding/mvt: Do not swallow error cause by @m-pavel in #137
- simplify: Visvalingam, by default, keeps 3 points for "areas" by @paulmach in #140
- encoding/mvt: skip encoding of features will nil geometry by @paulmach in #141
- encoding/wkt: improve unmarshalling performance by @paulmach in #142
New Contributors
- @nirmal-vuppuluri made their first contribution in #139
Full Changelog: v0.10.0...v0.11.0
v0.10.0
v0.9.2
v0.9.1
v0.9.0
v0.8.0
What's Changed
- fix typo by @rubenpoppe in #107
- Fixed a small twister in README.md by @Timahawk in #108
- update github ci to use go 1.19 by @paulmach in #116
- quadtree: fix bad sort due to pointer allocation issue by @paulmach in #115
- geojson: ensure geometry unmarshal errors get returned by @paulmach in #117
- encoding/mvt: remove use of crypto/md5 to compare marshalling in tests by @paulmach in #118
- encoding/wkt: fix panic for some invalid wkt data by @paulmach in #119
New Contributors
- @rubenpoppe made their first contribution in #107
- @Timahawk made their first contribution in #108
Full Changelog: v0.7.1...v0.8.0
v0.7.1
v0.7.0
Breaking Change
-
tilecover now returns an error (vs. panicing) on non-closed 2d geometry by @paulmach in #87
This changes the signature of many of the methods in the maptile/tilecover package.
To emulate the old behavior replace:tiles := tilecover.Geometry(poly, zoom)
with
tiles, err := tilecover.Geometry(poly, zoom) if err != nil { panic(err) }
Full Changelog: v0.6.0...v0.7.0