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