-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add ST_Length(SphericalGeography) #1551
Conversation
Thank you for your pull request and welcome to our community. We require contributors to sign our Contributor License Agreement, and we don't seem to have you on file. In order for us to review and merge your code, please submit the signed CLA to [email protected]. For more information, see https://github.com/prestosql/cla. |
@jlabarbera11 thanks for your PR! Please make sure you sign the CLA (https://github.com/prestosql/cla). Also, when contributing someone else's work, make sure to attribute it:
Please ping me on slack (https://prestosql.io/community.html) if you need any help. |
@cla-bot check |
The cla-bot has been summoned, and re-checked this pull request! |
dcd7739
to
2548227
Compare
2548227
to
09b05bb
Compare
Thank you for your pull request and welcome to our community. We require contributors to sign our Contributor License Agreement, and we don't seem to have you on file. In order for us to review and merge your code, please submit the signed CLA to [email protected]. For more information, see https://github.com/prestosql/cla. |
presto-geospatial/src/main/java/io/prestosql/plugin/geospatial/GeoFunctions.java
Outdated
Show resolved
Hide resolved
Thank you for your pull request and welcome to our community. We require contributors to sign our Contributor License Agreement, and we don't seem to have you on file. In order for us to review and merge your code, please submit the signed CLA to [email protected]. For more information, see https://github.com/prestosql/cla. |
Merged, thanks! |
Adds ST_Length(SphericalGeography) which computes the length of a LINESTRING on the surface of a spherical model of Earth's surface, i.e. the sum of great-circle distances between adjacent points along the linestring.
Based on prestodb/presto#12552