snowflake.snowpark.functions.st_intersects¶
- snowflake.snowpark.functions.st_intersects(geography_or_geometry_expression_1: Union[snowflake.snowpark.column.Column, str], geography_or_geometry_expression_2: Union[snowflake.snowpark.column.Column, str]) Column[source]¶
Returns True if the two GEOGRAPHY or GEOMETRY objects intersect (i.e. have any points in common), False otherwise.
- Parameters:
geography_or_geometry_expression_1 (ColumnOrName) – A column containing GEOGRAPHY or GEOMETRY objects or a column name.
geography_or_geometry_expression_2 (ColumnOrName) – A column containing GEOGRAPHY or GEOMETRY objects or a column name.
- Returns:
A column of boolean values indicating whether the two geography objects intersect.
- Return type:
- Examples::