snowflake.snowpark.functions.st_coveredby¶
- snowflake.snowpark.functions.st_coveredby(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.47.0/src/snowflake/snowpark/_functions/scalar_functions.py#L2390-L2417)¶
Returns TRUE if geography_expression_1 is completely covered by geography_expression_2.
- Parameters:
geography_or_geometry_expression_1 (ColumnOrName) – A column or name representing the first geography expression
geography_or_geometry_expression_2 (ColumnOrName) – A column or name representing the second geography expression
- Returns:
A boolean column indicating whether the first geography is covered by the second
- Return type:
- Examples::