Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Artifact ID: | d7e14cd8a2a43e43aa2da8bc53be3464964753f7 |
---|---|
Page Name: | About ST_Subdivide() |
Date: | 2019-02-15 10:44:43 |
Original User: | sandro |
Next | fc842978ba0d7b9506859f68d4e4e2db8628dc3a |
Content
About ST_Subdivide()Since version 5.0.0 SpatiaLite supports ST_Subdivide(), an advanced SQL function already available on PostGIS.The implementation is strictly similar in both Spatial DBMSes because on PostgIS the function is built on the top of the internal lwgeom library, and on SpatiaLite is built on the top of librttopo that simply is a more universal porting of lwgeom outside PostGIS. A short rationale: processing huge geometries having an impressive number of Vertices (many thousands or even more) is an intrinsically slow process. Subdividing them into many smaller parts (still preserving full topological consistency) usually helps to restore a satisfying processing speed. This is exactly the intended scope of ST_Subdivide():
|