inside = pnpoly(x, y, xyverts)
Return 1 if x,y is inside the polygon, 0 otherwise.
A point on the boundary may be treated as inside or outside.
Deprecated since version 1.2.0: Use contains_point() instead.
mask = points_inside_poly(xypoints, xyverts)
Returns a boolean ndarray, True for points inside the polygon.
A point on the boundary may be treated as inside or outside.
Deprecated since version 1.2.0: Use contains_points() instead.