From: Sandro Santilli Date: Tue, 28 Oct 2003 11:18:27 +0000 (+0000) Subject: Added Algorithms section and simplify() enabler code X-Git-Tag: pgis_0_8_0~47 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f4ac05564c20f02fcdd2eba07f6b50c919dd90b5;p=postgis Added Algorithms section and simplify() enabler code git-svn-id: http://svn.osgeo.org/postgis/trunk@335 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/Attic/postgis_sql_common.sql.in b/Attic/postgis_sql_common.sql.in index d471e6b9e..554392bb2 100644 --- a/Attic/postgis_sql_common.sql.in +++ b/Attic/postgis_sql_common.sql.in @@ -12,6 +12,9 @@ -- -- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -- $Log$ +-- Revision 1.18 2003/10/28 11:18:27 strk +-- Added Algorithms section and simplify() enabler code +-- -- Revision 1.17 2003/10/23 08:06:54 strk -- Added 'unite' aggregate. -- @@ -1301,3 +1304,12 @@ CREATE FUNCTION isvalid(geometry) AS '@MODULE_FILENAME@' LANGUAGE 'C' WITH (isstrict); + +-- +-- Algorithms +-- + +CREATE FUNCTION simplify(geometry, float8) + RETURNS geometry + AS '@MODULE_FILENAME@' + LANGUAGE 'C' WITH (isstrict);