You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PG: add a SPATIAL_FILTER_INTERSECTION=LOCAL/SERVER open option
- .. oo:: SPATIAL_FILTER_INTERSECTION
:choices: LOCAL, SERVER
:default: LOCAL
:since: 3.13
Since GDAL 3.13, spatial filters are evaluated using full geometry intersection
rather than only bounding box intersection, as in earlier versions.
The ``SPATIAL_FILTER_INTERSECTION`` open option controls where this
intersection operation is performed. Even when the intersection is evaluated
locally (which is the default), the server still applies a bounding
box-based spatial filter to efficiently retrieve candidate features.
Note that for PostGIS geometry columns of type GEOGRAPHY, the current
implementation performs the intersection test on the client side, by dealing
with geographies as if they were cartesian geometries.
0 commit comments