- #4080, Add external raster band index to ST_BandMetaData
- Add Raster Tips section to Documentation for information about
Raster behavior (e.g. Out-DB performance, maximum open files)
+ - #4084: Fixed wrong code-comment regarding front/back of BOX3D (Matthias Bay)
PostGIS 2.4.0
2017/09/30
/* add right polygon */
geoms[3] = lwpoly_as_lwgeom(lwpoly_construct_rectangle(LW_TRUE, LW_FALSE,
&points[3], &points[2], &points[6], &points[7]));
- /* add back polygon */
+ /* add front polygon */
geoms[4] = lwpoly_as_lwgeom(lwpoly_construct_rectangle(LW_TRUE, LW_FALSE,
&points[0], &points[3], &points[7], &points[4]));
- /* add front polygon */
+ /* add back polygon */
geoms[5] = lwpoly_as_lwgeom(lwpoly_construct_rectangle(LW_TRUE, LW_FALSE,
&points[1], &points[5], &points[6], &points[2]));