[postgis-users] Intersections on polyhedral surfaces....
Stephen Mather
stephen at smathermather.com
Wed Dec 11 19:31:30 PST 2013
Hi All,
I assume that ST_Intersection is not yet able to do intersections on
polyhedralsurfaces?
WITH pyramid1 AS (
SELECT pyramid_maker(ST_MakePoint(0,0,0), 5, 5, 5) AS the_geom
),
pyramid2 AS (
SELECT pyramid_maker(ST_MakePoint(0,0,0), 5, 5, 5) AS the_geom
)
SELECT ST_Intersection(p1.the_geom, p2.the_geom) FROM pyramid1 p1, pyramid2 p2;
ERROR: Unknown geometry type: 13 - PolyhedralSurface
********** Error **********
ERROR: Unknown geometry type: 13 - PolyhedralSurface
SQL state: XX000
Thanks,
Best,
Steve
More information about the postgis-users
mailing list