aboutsummaryrefslogtreecommitdiffstats
path: root/schema.sql
diff options
context:
space:
mode:
Diffstat (limited to 'schema.sql')
-rw-r--r--schema.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/schema.sql b/schema.sql
index 02a29e2..2384624 100644
--- a/schema.sql
+++ b/schema.sql
@@ -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