Skip to content

Releases: paulmach/orb

v0.11.1

29 Jan 19:32
Compare
Choose a tag to compare

What's Changed

  • geojson: null json into non-pointer Feature/FeatureCollection will set them to empty by @paulmach in #145

Full Changelog: v0.11.0...v0.11.1

v0.11.0

11 Jan 20:01
Compare
Choose a tag to compare

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

Full Changelog: v0.10.0...v0.11.0

v0.10.0

16 Jul 15:51
Compare
Choose a tag to compare

What's Changed

  • Add ChildrenInZoomRange method to maptile.Tile by @peitili in #133

New Contributors

Full Changelog: v0.9.2...v0.10.0

v0.9.2

05 May 05:37
Compare
Choose a tag to compare

What's Changed

  • encoding/wkt: better handling/validation of missing parens by @paulmach in #131

Full Changelog: v0.9.1...v0.9.2

v0.9.1

26 Apr 15:27
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.9.0...v0.9.1

v0.9.0

19 Feb 22:30
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.8.0...v0.9.0

v0.8.0

06 Jan 00:55
cc0ada4
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.7.1...v0.8.0

v0.7.1

16 May 17:39
6f098c1
Compare
Choose a tag to compare

v0.7.0 initially pointed to the wrong commit. After moving the tag there are some caching issues in GitHub actions. I hope this clears up the issue.

v0.7.0

10 May 20:56
4bd8353
Compare
Choose a tag to compare

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

v0.6.0

04 May 17:56
ba8a43e
Compare
Choose a tag to compare

What's Changed

  • geo: add correctly spelled LengthHaversine by @paulmach in #97
  • geojson: add support for "external" json encoders/decoders by @paulmach in #98
  • Add ewkb encoding/decoding support by @paulmach in #88

Full Changelog: v0.5.0...v0.6.0