Tagged Questions
5
votes
2answers
1k views
Point-in-polygon using Python and OGR
I want to use OGR in Python to write a simple point-in-polygon test:
def point_in_polygon(point, polygon):
"""
point : [longitude, latitude]
polygon : [(lon1, lat1), (lon2, lat2), ..., ...