Skip to content

v0.1.17

Choose a tag to compare

@github-actions github-actions released this 17 Apr 03:35
· 198 commits to main since this release
5c26fd0

GeometryOps v0.1.17

Diff since v0.1.16

  • Add an extension on TGGeometry.jl, a Julia wrapper of the tg library for fast, non-exact geometric predicates. Access by e.g. GO.intersects(GO.TG(), geom1, geom2). #271
  • Refactor reproject, in the Proj extension, to be completely safe when invoked with threaded=true. Note that it will still not be thread safe if invoked in multiple threads at the same time. See below for the changes that were made in the course of this refactor. #288
  • Refactor the apply pipeline to get rid of closures in favour of Applicators, which are able to run apply on arrays, geoms and featurecollections. Some examples are ApplyToPoint, ApplyToGeom, etc. These are mainly used by internal methods in the apply pipeline. #288
  • Add a TaskFunctors struct that allows one to use individual functors per task. This allows thread safety for reentrant C APIs. #288

Merged pull requests:

Closed issues:

  • reproject will not work with Proj transformations and threaded=true (#88)
  • Using reproject in a threaded context makes Julia crash (#287)