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]¶
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::