---
title: "Box3D"
draft: false
hidden: true
---
Box3D — Returns the box 3d representation of the enclosing box of the raster.
box3d
Box3D
(
raster
rast
)
;
Returns the box representing the extent of the raster.
The polygon is defined by the corner points of the bounding box ((
MINX
,
MINY
), (
MAXX
,
MAXY
))
Changed: 2.0.0 In pre-2.0 versions, there used to be a box2d instead of box3d. Since box2d is a deprecated type, this was changed to box3d.
SELECT
rid,
Box3D(rast) AS rastbox
FROM dummy_rast;
rid | rastbox
----+-------------------------------------------------
1 | BOX3D(0.5 0.5 0,20.5 60.5 0)
2 | BOX3D(3427927.75 5793243.5 0,3427928 5793244 0)