Kimahriman commented on code in PR #647:
URL: https://github.com/apache/incubator-sedona/pull/647#discussion_r917274864


##########
common/src/main/java/org/apache/sedona/Functions.java:
##########
@@ -0,0 +1,28 @@
+package org.apache.sedona;
+
+import org.locationtech.jts.geom.Coordinate;
+import org.locationtech.jts.geom.Geometry;
+
+public class Functions {
+    public static double ST_Distance(Geometry left, Geometry right) {
+        return left.distance(right);
+    }
+
+    public static double ST_YMin(Geometry geometry) {

Review Comment:
   I'm fine with that. Also curious about thoughts on package structure/naming



-- 
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: dev-unsubscr...@sedona.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to