-
Notifications
You must be signed in to change notification settings - Fork 4
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
"Bounding boxes" on the sphere #231
Comments
I'm not sure about how this formulation works:
is this smooth or segmented? would it be easier to represent this as a polygon on the sphere? |
Not sure I understand what you are asking... Uncertainties can be reported as two numbers for lon and two for lat (four in total), like |
Ah OK, so this is no longer an ellipse with two axes but rather a unit circle (let's say) that has been scaled differently in each of the four quadrants. That makes sense, thanks! It'd probably be easier to represent this as a polygon, then, but it's definitely possible to have utilities to compute these efficiently. |
From conversation with @aplavin:
In astronomy, one mostly encounters spherical caps and similar regions when working with coordinates that have uncertainties.
The uncertainties can be reported in different ways by different instruments/people, common ones include:
And common operations are:
We should definitely support point-radius and point-ellipse formulations here, and perhaps the four-quadrant formulation as well. This solves one of the main issues I always had with spherical caps, which is that the spherical cap is not as flexible as an extent for extents that are large in one dimension and small in another, or stick-like and straight geometries like rivers.
Ellipsoids on the sphere would fix that nicely. But the math of intersection, point in polygon, etc would be pretty complicated - unless we brute force it.
Going to try and collect some resources on how to deal with this here.
The text was updated successfully, but these errors were encountered: