How can I find if a point lays inside a polygon on a sphere using python?
I know that unlike a planar polygon, a spherical polygon doesn't have a natural "inside" because both the inside and the outside have finite areas. So most codes ask that the user also define a point inside the polygon. I would like to find a way to do this without asking my users for a point inside the polygon.
Thanks