Skip to content
πŸŽ‰ SedonaDB 0.4.0 is out now! πŸ—ΊοΈ Python DataFrame API, R dplyr, Geography support & GPU-accelerated spatial joins. Read the release blog β†’

ST_Contains

Introduction: Return true if A fully contains B

ST_Contains returning true ST_Contains returning false

Format: ST_Contains (A: Geometry, B: Geometry)

Return type: Boolean

Since: v1.2.0

Example:

SELECT ST_Contains(ST_GeomFromWKT('POLYGON((175 150,20 40,50 60,125 100,175 150))'), ST_GeomFromWKT('POINT(174 149)'))

Output:

false