ST_CIRCLE

Creates a circle geometry from a center longitude, latitude and radius in meters.

Analyze Syntax

func.st_circle(<lng>, <lat>, <radius>)

Analyze Examples

func.st_circle(0, 0, 100)

┌────────────┐
 (geometry)  
└────────────┘

SQL Syntax

ST_CIRCLE(<lng>, <lat>, <radius>)

SQL Examples

SELECT ST_ASTEXT(ST_CIRCLE(0, 0, 100));

┌─────────────────────┐
 CIRCLE((0, 0), 100)  
└─────────────────────┘