Nat Wilson

Results 8 issues of Nat Wilson

When a stream is interrupted, I expect based on [these docs](https://fs2.io/#/guide?id=appendix-a1-how-interruption-of-streams-works) that the interruption is final and can only be handled with `Stream.bracket` (or something built on `Stream.bracket`). So, I...

Executable example demonstrating behaviour described in https://github.com/typelevel/fs2/issues/2330.

Property methods such as `Geometry.coordinates` assume that the coordinates should be returned in the current CRS. When this isn't the case, `Geometry.get_coordinates(crs=[...])` needs to be used instead. This seems to...

question
breaking

These methods are intended to provide an interface to CoordString data for functions on the C side, but they're slow. Performance improvements would reduce the temptation to use the CoordString...

enhancement

Tests that use ctypes to test functions implemented in C are failing on Appveyor: ``` python tests\runtests.py ..........EEE...............................................................................................................................................................E.................................sssss.ss.ss............................................................................................................................................................ ====================================================================== ERROR: test_bbox_intersection_area (rtree_tests.CRTreeTests) ---------------------------------------------------------------------- Traceback (most recent call last): File "C:\projects\karta\tests\rtree_tests.py",...

bug
testing

Need to make sure that the C code (currently in the vector submodule) is getting tested adequately. Many functions don't expose a Python interface. Not sure how to work this...

critical
testing

Current intersection code is for the planar case, and in incorrect on a sphere/ellipsoid. An approach to solving the problem with gnomonic projections is described by Karney (2013), section 8.

Need to make sure the following work when vertices include points on either side of the dateline: - [x] azimuth - [x] distance - [x] area - [ ] intersection...