Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

explain_inside.rst_ 719 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
  1. Inside/outside Status
  2. ---------------------
  3. To determine if a point is inside, outside, or exactly on the boundary of a polygon
  4. we need to balance the complexity (and execution time) of the algorithm with the
  5. type of data and shape of the polygons. For any Cartesian data we use a non-zero
  6. winding algorithm, which is quite fast. For geographic data we will also use this algorithm
  7. as long as (1) the polygons do not include a geographic pole, and (2) the longitude extent
  8. of the polygons is less than 360. If this is the situation we also carefully adjust
  9. the test point longitude for any 360 degree offsets, if appropriate. Otherwise,
  10. we employ a full spherical ray-shooting method to determine a points status.
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...