snowflake.snowpark.functions.st_buffer¶
- snowflake.snowpark.functions.st_buffer(geometry_expression: Union[snowflake.snowpark.column.Column, str], distance: Union[snowflake.snowpark.column.Column, str]) Column[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.40.0/src/snowflake/snowpark/_functions/scalar_functions.py#L2264-L2286)¶
Returns a geometry that represents all points whose distance from the input geometry is less than or equal to the specified distance.
- Parameters:
geometry_expression (ColumnOrName) – The input geometry.
distance (ColumnOrName) – The buffer distance.
- Returns:
The buffered geometry.
- Return type:
- Examples::