updating geometry types to (geometry/point, 4326) where appropriate

This commit is contained in:
Andy Eschbacher
2016-05-10 15:09:07 -04:00
parent 8733b819fe
commit dfbdb3c9ad
4 changed files with 30 additions and 32 deletions

View File

@@ -22,7 +22,7 @@
--
CREATE OR REPLACE FUNCTION cdb_observatory.OBS_GetBoundary(
geom geometry(Geometry, 4326),
geom geometry(Point, 4326),
boundary_id text,
time_span text DEFAULT NULL)
RETURNS geometry(Geometry, 4326)
@@ -104,7 +104,7 @@ $$ LANGUAGE plpgsql;
--
CREATE OR REPLACE FUNCTION cdb_observatory.OBS_GetBoundaryId(
geom geometry(Geometry, 4326),
geom geometry(Point, 4326),
boundary_id text,
time_span text DEFAULT NULL
)