snowflake.snowpark.functions.st_interpolate¶
- snowflake.snowpark.functions.st_interpolate(geography_expression: Union[snowflake.snowpark.column.Column, str], tolerance: Union[snowflake.snowpark.column.Column, str] = None) Column[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.47.0/src/snowflake/snowpark/_functions/scalar_functions.py#L2507-L2543)¶
Returns a geography object with additional points interpolated along the edges of the input geography.
- Parameters:
geography_expression (ColumnOrName) – A geography data
tolerance (ColumnOrName, optional) – The maximum distance between interpolated points in meters
- Returns:
A geography object with interpolated points along its edges
- Return type:
- Examples::