Changes between Version 27 and Version 28 of UsersWikiplpgsqlfunctions
- Timestamp:
- 08/05/20 10:25:27 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UsersWikiplpgsqlfunctions
v27 v28 5 5 [wiki:UsersWikiplpgsqlfunctionsDistance Distance /Spatial Reference support functions PL/PGSQL/SQL Functions] 6 6 7 == Generatean 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 == 8 8 9 9 {{{ … … 168 168 }}} 169 169 170 * '''Rotate Geometry around a point(geom,x,y)''' 170 == Rotate Geometry around a point(geom,x,y) == 171 171 {{{ 172 172 #!sql … … 179 179 }}} 180 180 181 == C reateEllipse (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 184 CREATE OR REPLACE FUNCTION ST_Ellipse(double precision, double precision, double precision, double precision, double precision, integer) 185 185 RETURNS geometry AS 186 186 $$