Paulmach Orb Versions Save

Types and utilities for working with 2d geometry in Golang

v0.11.1

3 months ago

What's Changed

Full Changelog: https://github.com/paulmach/orb/compare/v0.11.0...v0.11.1

v0.11.0

4 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/paulmach/orb/compare/v0.10.0...v0.11.0

v0.10.0

10 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/paulmach/orb/compare/v0.9.2...v0.10.0

v0.9.2

1 year ago

What's Changed

Full Changelog: https://github.com/paulmach/orb/compare/v0.9.1...v0.9.2

v0.9.1

1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/paulmach/orb/compare/v0.9.0...v0.9.1

v0.9.0

1 year ago

What's Changed

Full Changelog: https://github.com/paulmach/orb/compare/v0.8.0...v0.9.0

v0.8.0

1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/paulmach/orb/compare/v0.7.1...v0.8.0

v0.7.1

2 years ago

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

2 years ago

Breaking Change

  • tilecover now returns an error (vs. panicing) on non-closed 2d geometry by @paulmach in https://github.com/paulmach/orb/pull/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: https://github.com/paulmach/orb/compare/v0.6.0...v0.7.0

v0.6.0

2 years ago

What's Changed

Full Changelog: https://github.com/paulmach/orb/compare/v0.5.0...v0.6.0