Changes between Version 27 and Version 28 of UsersWikiplpgsqlfunctions


Ignore:
Timestamp:
Aug 5, 2020, 10:25:27 AM (4 years ago)
Author:
mdavis
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • UsersWikiplpgsqlfunctions

    v27 v28  
    55[wiki:UsersWikiplpgsqlfunctionsDistance Distance /Spatial Reference support functions PL/PGSQL/SQL Functions]
    66
    7 == Generate an arc given two points on the arc, the centre point and direction or size ==
     7== Construct an arc given two points on the arc, the centre point and direction or size ==
    88
    99{{{
     
    168168}}}
    169169
    170  * '''Rotate Geometry around a point(geom,x,y)'''
     170== Rotate Geometry around a point(geom,x,y) ==
    171171{{{
    172172#!sql
     
    179179}}}
    180180
    181 == Create Ellipse (x,y,rx,ry,rotation,#of segments in 1/4 of ellipse) ==
    182 {{{
    183 #!sql
    184 CREATE OR REPLACE FUNCTION Ellipse(double precision, double precision, double precision, double precision, double precision, integer)
     181== Construct Ellipse (x,y,rx,ry,rotation,#of segments in 1/4 of ellipse) ==
     182{{{
     183#!sql
     184CREATE OR REPLACE FUNCTION ST_Ellipse(double precision, double precision, double precision, double precision, double precision, integer)
    185185 RETURNS geometry AS
    186186 $$