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