# HG changeset patch # User jbe # Date 1472818097 -7200 # Node ID 7c1c76e7d341944583250d6b0e529406e0a86f87 # Parent 684a78d2f9f021a5b2c0cbb5f58fb4e0f18690d3 Updated README.html file (from README.mkd) diff -r 684a78d2f9f0 -r 7c1c76e7d341 README.html --- a/README.html Fri Sep 02 14:08:01 2016 +0200 +++ b/README.html Fri Sep 02 14:08:17 2016 +0200 @@ -1,17 +1,20 @@ -pgLatLon v0.1 documentation -

pgLatLon v0.1 documentation

+pgLatLon v0.3 documentation +

pgLatLon v0.3 documentation

pgLatLon is a spatial database extension for the PostgreSQL object-relational database management system providing geographic data types and spatial indexing for the WGS-84 spheroid.

While many other spatial databases still use imprecise bounding boxes for many -operations, pgLatLon supports more precise geometric calculations for all -implemented operators. Efficient indexing of geometric objects is provided +operations, pgLatLon aims to support more precise geometric calculations for +all implemented operators. Efficient indexing of geometric objects is provided using space-filling fractal curves. Optimizations on bit level (including logarithmic compression) allow for a highly memory-efficient non-overlapping index suitable for huge datasets.

+

pgLatLon is a lightweight solution as it only depends on PostgreSQL itself (and +a C compiler for building).

+

Unlike competing spatial extensions for PostgreSQL, pgLatLon is available under the permissive MIT/X11 license to avoid problems with viral licenses like the GPLv2/v3.

@@ -249,6 +252,26 @@

The && operator is commutative, i.e. a && b is the same as b && a. Each commutation is supported as well.

+

Lossy overlap operator &&+

+ +

Tests if two geographic objects may have at least one point in common. Opposed +to the && operator, the &&+ operator may return false positives and is +currently implemented for:

+ + + +

The &&+ operator is commutative, i.e. a &&+ b is the same as b &&+ a. Each +commutation is supported as well.

+ +

Where two data types support both the && and the &&+ operator, the &&+ +operator computes faster.

+

Distance operator <->

Calculates the shortest distance between two geographic objects in meters (zero