snowflake.snowpark.functions.st_disjoint¶
- snowflake.snowpark.functions.st_disjoint(geography_or_geometry_expression_1: Union[snowflake.snowpark.column.Column, str], geography_or_geometry_expression_2: Union[snowflake.snowpark.column.Column, str]) Column[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.48.0/src/snowflake/snowpark/_functions/scalar_functions.py#L2825-L2852)¶
Returns TRUE if the two GEOGRAPHY or GEOMETRY objects are disjoint (do not intersect). Returns FALSE otherwise.
- Parameters:
geography_or_geometry_expression_1 (ColumnOrName) – A GEOGRAPHY or GEOMETRY object.
geography_or_geometry_expression_2 (ColumnOrName) – A GEOGRAPHY or GEOMETRY object.
- Returns:
Boolean values indicating whether the two geography or geometry objects are disjoint.
- Return type:
- Examples::