snowflake.snowpark.functions.st_makepoint¶
- snowflake.snowpark.functions.st_makepoint(longitude: Union[snowflake.snowpark.column.Column, str], latitude: Union[snowflake.snowpark.column.Column, str]) Column[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.48.0/src/snowflake/snowpark/_functions/scalar_functions.py#L2800-L2822)¶
Creates a GEOGRAPHY object that represents a point with the specified longitude and latitude.
- Parameters:
longitude (ColumnOrName) – The longitude values.
latitude (ColumnOrName) – The latitude values.
- Returns:
A GEOGRAPHY objects representing points.
- Return type:
- Example::