furqaankhan commented on code in PR #1246:
URL: https://github.com/apache/sedona/pull/1246#discussion_r1496870213


##########
docs/api/snowflake/vector-data/Function.md:
##########
@@ -320,6 +320,33 @@ SELECT ST_Azimuth(ST_POINT(0.0, 25.0), ST_POINT(0.0, 0.0))
 
 Output: `3.141592653589793`
 
+## ST_BestSRID
+
+Introduction: Returns the estimated most appropriate Spatial Reference 
Identifier (SRID) for a given geometry, based on its spatial extent and 
location.  It evaluates the geometry's bounding envelope and selects an SRID 
that optimally represents the geometry on the Earth's surface. The function 
prioritizes Universal Transverse Mercator (UTM), Lambert Azimuthal Equal Area 
(LAEA), or falls back to the Mercator projection.
+
+- For geometries in the Arctic or Antarctic regions, the Lambert Azimuthal 
Equal Area projection is used.
+- For geometries that fit within a single UTM zone and do not cross the 
International Date Line, a corresponding UTM SRID is chosen.
+- In cases where none of the above conditions are met, or for geometries that 
cross the International Date Line, the function defaults to the Mercator 
projection.
+
+!!!Warning
+`ST_BestSRID` is designed to estimate a suitable SRID from a set of 
approximately 125 EPSG codes and works best for geometries that fit within the 
UTM zones. It should not be solely relied upon to determine the most accurate 
SRID, especially for specialized or high-precision spatial requirements.

Review Comment:
   Same thing here, tab missing.



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

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

Reply via email to