This topic describes the ST_AsX3D function. This function returns the Extensible 3D (X3D) string that represents a geometry object.
Syntax
text ST_AsX3D(geometry g1 , integer maxdecimaldigits , integer options);
Parameters
Parameter | Description |
---|
Parameter | Description |
---|---|
g1 | The geometry object whose X3D representation you want to obtain. |
maxdecimaldigits | The maximum number of decimal places that you want to retain. Default value: 15. |
options | Specifies whether to represent coordinates with the X3D GeoCoordinates Geospatial
node and whether to flip the x and y coordinates. Default value: 0
|
Description
This function supports circular strings, curves, polyhedral surfaces, triangles, triangulated irregular network (TIN) surfaces, and 3D objects.
Examples
select ST_AsX3D( ST_GeomFromEWKT('POLYGON((1 1 0,1 2 0,2 2 0,2 1 0,1 1 0))'));
st_asx3d
---------------------------------------------------------------
<IndexedFaceSet convex='false' coordIndex='0 1 2 3'>
<Coordinate point='1 1 0 1 2 0 2 2 0 2 1 0 ' />
</IndexedFaceSet>
(1 row)