You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -220,10 +220,11 @@ For styling see [styling 3D Tiles](styling.md)
220
220
Input geometries must be of type LineString/MultilineString/Polygon/MultiPolygon/PolyhedralSurface (with z values). When the geometry is not triangulated, pg2b3dm will perform
221
221
triangulation. Geometries with interior rings are supported.
222
222
223
-
For large datasets create a spatial index on the geometry column:
223
+
For large datasets create the following indexes:
224
224
225
225
```
226
-
psql> CREATE INDEX ON the_table USING gist (st_envelope(geom));
226
+
psql> CREATE INDEX ON the_table USING gist (st_centroid(st_envelope(geom)));
227
+
psql> CREATE INDEX ON the_table using btree(md5(st_asbinary({inputTable.GeometryColumn})::text));
227
228
```
228
229
229
230
When there the spatial index is not present the following warning is shown.
0 commit comments