This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE OR REPLACE FUNCTION voronoi(table_name text,geom_col text) returns SETOF record as $$ | |
############################################################################# | |
# | |
# Voronoi diagram calculator/ Delaunay triangulator | |
# Translated to Python by Bill Simons | |
# September, 2005 | |
# | |
# Additional changes by Carson Farmer added November 2010 | |
# |
NewerOlder