-
-
Notifications
You must be signed in to change notification settings - Fork 122
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix polygon generation #147
Conversation
f298bf0
to
53ac25d
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
would you mind checking the pypy failure?
844d838
to
0725368
Compare
Now, the tests should work properly. An epsilon was missing for the float comparison. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
0725368
to
ee03cec
Compare
only rebased to master, no other changes here |
3.0.1 (2023-02-15) ------------------ - Add Support for Python 3.11.x minor revisions - jazzband/geojson#198 3.0.0 (2023-01-26) ------------------ - Support for Python versions 3.7-3.11 (Python 2 no longer supported) - Primary development branch renamed from `master` to `main` - Handle all real numbers as coordinates - jazzband/geojson#188 - Default precision improvements - jazzband/geojson#177 - CI improvements - jazzband/geojson#172 - jazzband/geojson#155 - utf-8 support added to `geojson.dumps()` - jazzband/geojson#165 - Polygons now constrained to bounding box - jazzband/geojson#147 - Better GeometryCollection handling in `util.coords()` - jazzband/geojson#146 - Improved point validation - jazzband/geojson#144
The polygon generation did not respect the given bounding box. The PR includes unittests for that issue and a small fix.