diff options
| -rw-r--r-- | schema.sql | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -235,7 +235,7 @@ CREATE FUNCTION lm_topo250.get_counties(public.geometry) RETURNS smallint[] AS $_$ SELECT array_agg(DISTINCT t.lanskod ORDER BY t.lanskod) FROM lm_topo250.lansyta_sub t - -- Make use of spactial indices: filter out non-overlapping envelopes first. + -- Make use of spatial indices: filter out non-overlapping envelopes first. -- This function works for curves and points too, as the interior of a curve -- is the set of points between its endpoints, and the interior of a point is -- the point itself. It also works for 3D input geometries (in that case the @@ -257,7 +257,7 @@ CREATE FUNCTION lm_topo250.get_municipalities(public.geometry) RETURNS smallint[ AS $_$ SELECT array_agg(DISTINCT t.kommunkod ORDER BY t.kommunkod) FROM lm_topo250.kommunyta_sub t - -- Make use of spactial indices: filter out non-overlapping envelopes first. + -- Make use of spatial indices: filter out non-overlapping envelopes first. -- This function works for curves and points too, as the interior of a curve -- is the set of points between its endpoints, and the interior of a point is -- the point itself. It also works for 3D input geometries (in that case the |
