We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 295b357 commit efd7f3cCopy full SHA for efd7f3c
query/query-spatial-rel.md
@@ -85,7 +85,7 @@ A tolerance-based approach must be used to determine if A and result C effective
85
the tolerance distance of the boundary of B.
86
This is the exact equivalent of "touches with tolerance".
87
It can be done in two ways:
88
- * `ST_Covers(ST_Intersection(ST_Boundary(A), B), ST_Buffer(ST_Boundary(B), tol))`
+ * `ST_Covers( ST_Buffer(ST_Boundary(B), tol), ST_Intersection(ST_Boundary(A), B) )`
89
* `ST_OrientedHausdorffDistance(ST_Intersection(ST_Boundary(A), B), ST_Boundary(B)) <= tol`
90
(**NOTE:** ST_OrientedHausdorffDistance (or equivalent) is not yet available in PostGIS)
91
0 commit comments