snowflake.snowpark.functions.st_hausdorffdistance¶
- snowflake.snowpark.functions.st_hausdorffdistance(geography_expression_1: Union[snowflake.snowpark.column.Column, str], geography_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#L3065-L3092)¶
Returns the Hausdorff distance between two GEOGRAPHY objects.
- Parameters:
geography_expression_1 (ColumnOrName) – A column containing GEOGRAPHY objects or a geography expression.
geography_expression_2 (ColumnOrName) – A column containing GEOGRAPHY objects or a geography expression.
- Returns:
A column containing the Hausdorff distance between the two geography objects.
- Return type:
- Examples::