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