Thread-safe geosearch index with SIMD optimization (no Mercator projection, just plain Eucledian distances).
- Detects if a point with radius intersects with geometries in index. Read-Write-Update cycle
- Vectorised Ramer–Douglas–Peucker algorithm
- Some lock free technics undehood (write-preferring readers–writer shared lock)
- Optional: exchange data with Postgresql by triggering events
Eigen is header only, this will install it in system include PATH Download Eigen from http://eigen.tuxfamily.org/index.php?title=Main_Page#Download Go to Eigen top directory
mkdir build
cd build
cmake ..
sudo make install