All Versions
13
Latest Version
Avg Release Cycle
65 days
Latest Release
1685 days ago
Changelog History
Page 2
Changelog History
Page 2
-
v0.4.0 Changes
June 20, 2018- โ Added constructors of entries for plane and spherical geometries
- โก๏ธ RTree2D API changed: constructor methods for entries separated and moved to different namespaces for plane and spherical geometries (
EuclideanPlane
andSphericalEarth
objects accordingly); returned collections areIndexedSeq
now (wasSeq
); collections of entries for packing and update areIterable
now (wasTraversable
) - ๐ Improved error messages in constructors for entries
All changes v0.3.1...v0.4.0
-
v0.3.1 Changes
June 19, 2018- ๐ Fix of #8 by switching to more expensive calculations of distance from a point to the bounding box with the
SphericalEarthDistanceCalculator
, now it requires ~20 microseconds to find the nearest entry for 1M entry R-tries that are packed withnodeCapacity = 4
(see the chart below)
All changes v0.3.0...v0.3.1
- ๐ Fix of #8 by switching to more expensive calculations of distance from a point to the bounding box with the
-
v0.3.0 Changes
June 18, 2018- โก๏ธ Replace
RTree.merge
andRTree.diff
functions by a more efficientRTree.update
which allows to remove and add entries with a one subsequent bulk packing. - โ Add the
nearest
function to search a nearest entry for the given point. - โ Add ability to use
RTree
for indexing of spherical coordinates, where X-axis is used for latitudes, and Y-axis for longitudes in degrees. Result distances of thenearest
function output are in kilometers.
All changes v0.2.0...v0.3.0
- โก๏ธ Replace