Name

ST_MakeBox2D — Erzeugt ein BOX2D, das durch zwei 2D-Punktgeometrien definiert ist.

Synopsis

box2d ST_MakeBox2D(geometry pointLowLeft, geometry pointUpRight);

Beschreibung

Erzeugt eine box2d, die durch zwei Punktgeometrien definiert ist. Dies ist nützlich für Bereichsabfragen.

Beispiele


--Return all features that fall reside or partly reside in a US national atlas coordinate bounding box
--It is assumed here that the geometries are stored with SRID = 2163 (US National atlas equal area)
SELECT feature_id, feature_name, geom
FROM features
WHERE geom && ST_SetSRID(ST_MakeBox2D(ST_Point(-989502.1875, 528439.5625),
        ST_Point(-987121.375 ,529933.1875)),2163)

Siehe auch

ST_Point, ST_SetSRID, ST_SRID