--- title: geo.ST_Intersects() function description: > `geo.ST_Intersects()` tests if the specified GIS geometry intersects with the specified region and returns `true` or `false`. menu: flux_v0_ref: name: geo.ST_Intersects parent: experimental/geo identifier: experimental/geo/ST_Intersects weight: 201 flux/v0/tags: [geotemporal] introduced: 0.78.0 --- `geo.ST_Intersects()` tests if the specified GIS geometry intersects with the specified region and returns `true` or `false`. ##### Function type signature ```js (geometry: A, region: B, ?units: {distance: string}) => bool where A: Record, B: Record ``` {{% caption %}} For more information, see [Function type signatures](/flux/v0/function-type-signatures/). {{% /caption %}} ## Parameters ### region ({{< req >}}) Region to test. Specify record properties for the shape. ### geometry ({{< req >}}) GIS geometry to test. Can be either point or linestring geometry. ### units Record that defines the unit of measurement for distance. Default is the `geo.units` option.