We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
What is the unit of measure of the values calculated by Loop.Area()? I'm referring to this one: https://godoc.org/github.com/golang/geo/s2#Loop.Area
What is the best way to (approximately) convert those number to square meters?
The text was updated successfully, but these errors were encountered:
The value is in square units on a unit sphere of radius 1. So to get to km^2, scale it by the Earth's radius squared.
In the s2 tests, we use 6371.01 km as the approximate value.
https://github.com/golang/geo/blob/master/s2/s2_test.go#L46
Sorry, something went wrong.
No branches or pull requests
What is the unit of measure of the values calculated by Loop.Area()?
I'm referring to this one: https://godoc.org/github.com/golang/geo/s2#Loop.Area
What is the best way to (approximately) convert those number to square meters?
The text was updated successfully, but these errors were encountered: