point_is_inside_polygon#
- regridding.geometry.point_is_inside_polygon(x, y, vertices_x, vertices_y)[source]#
Check if a given point is inside or on the boundary of a polygon specified by its vertices.
This function uses the extended winding number algorithm described by Kumar and Bangi[1], which addresses boundary issues with the “classic” winding number algorithm in Alciatore and Miranda[2].
- Parameters:
- Return type:
References