MrPowers commented on code in PR #368:
URL: https://github.com/apache/sedona-db/pull/368#discussion_r2569940141
##########
docs/reference/sql.md:
##########
@@ -110,12 +111,38 @@ Return the Well-Known Text string representation of a
geometry or geography.
SELECT ST_AsText(ST_Point(1.0, 2.0))
```
+## ST_Azimuth
+
+Introduction: Returns Azimuth for two given points in radians null otherwise.
+
+Format: ST_Azimuth(pointA: Point, pointB: Point)
+
+Since: v0.2.
+
+```sql
+SELECT ST_Azimuth(ST_POINT(0.0, 25.0), ST_POINT(0.0, 0.0))
+```
+
+## ST_Boundary
+
+Returns the closure of the combinatorial boundary of this Geometry.
+
+Format: `ST_Boundary(geom: Geometry)`
+
+Since: v0.2.
+
+```sql
+SELECT ST_Boundary(ST_GeomFromWKT('POLYGON((1 1,0 0, -1 1, 1 1))'))
+```
+
## ST_Buffer
#### Description
Returns a geometry that represents all points whose distance from the input
geometry is less than or equal to a specified distance.
+Since: v0.1.
Review Comment:
Good call, I like "changed in version..."!
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]