Kontinuation commented on code in PR #2271: URL: https://github.com/apache/sedona/pull/2271#discussion_r2275280248
########## docs/api/sql/geography/Constructor.md: ########## @@ -17,7 +17,25 @@ under the License. --> -## ST_GeogFromWKT +## ST_GeomFromGeoHash + +Introduction: Create Geography from geohash string and optional precision + +Format: `ST_GeogFromGeoHash(geohash: String, precision: Integer)` + +Since: `v1.8.0` + +SQL Example + +```sql +SELECT ST_GeogFromGeoHash('9q9j8ue2v71y5zzy0s4q', 16) +``` + +Output: + +``` +SRID=4326; POLYGON ((-122.3061 37.554162, -122.3061 37.554162, -122.3061 37.554162, -122.3061 37.554162, -122.3061 37.554162))" +``` Review Comment: We lost the next section header `## ST_GeogFromWKT` here as well. -- 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