Changes between Version 2 and Version 3 of UsersWikiComputeMultiCentroid


Ignore:
Timestamp:
Oct 26, 2011, 7:04:56 PM (13 years ago)
Author:
Mike Taves
Comment:

correction

Legend:

Unmodified
Added
Removed
Modified
  • UsersWikiComputeMultiCentroid

    v2 v3  
    22
    33{{{
    4  -- Function: st_multicentroid(geometry)
     4 -- Function: ST_MultiCentroid(geometry)
    55 -- Returns a MULTIPOINT obtained from collecting all
    66 -- centroids in the supplied MULTI* geometry.
     
    88 --
    99 -- Usage:
    10  -- postgis=# select ST_AsText.html(ST_MultiCentroid(
     10 -- postgis=# select ST_AsText(ST_MultiCentroid(
    1111 -- postgis(#       'MULTIPOLYGON (
    1212 -- postgis'#         (( 0 0, 0 1, 1 1, 1 0, 0 0 )),