Hello,

After reading a while, I don't get the polygon from my points table 
(splitbeam_point) I think it is possible through the following script:

DROP TABLE testone;
CREATE TABLE testone(
ID INT
);
SELECT AddGeometryColumn('public', 'testone', 'geom', 4326, 'POLYGON', 2);
CREATE INDEX testone_geom ON testone USING GIST ( geom );
INSERT INTO testone SELECT ST_ConvexHull(ST_Collect(geom)) AS testone_geom FROM 
splitbeam_point GROUP BY ID;

I get this error message:  column "id" is of type integer but expression is of 
type geometry

and after I insert ::numeric,4 in the ST_ConvexHull statement, I get: ERROR:  
cannot cast type geometry to numeric

How can I circumvent this error?

Any support is very welcome, thanks,

Gery
                                          
_______________________________________________
postgis-users mailing list
postgis-users@postgis.refractions.net
http://postgis.refractions.net/mailman/listinfo/postgis-users

Reply via email to