ST_CIRCLE (Lakehouse v2)
Creates a circle geometry from a center longitude, latitude and radius in meters.
Analyze Syntax
Section titled “Analyze Syntax”func.st_circle(<lng>, <lat>, <radius>)Analyze Examples
Section titled “Analyze Examples”func.st_circle(0, 0, 100)
┌────────────┐│ (geometry) │└────────────┘SQL Syntax
Section titled “SQL Syntax”ST_CIRCLE(<lng>, <lat>, <radius>)SQL Examples
Section titled “SQL Examples”SELECT ST_ASTEXT(ST_CIRCLE(0, 0, 100));
┌─────────────────────┐│ CIRCLE((0, 0), 100) │└─────────────────────┘