Test if a point is inside a polygon ring using the ray-casting algorithm.
point_x
point_y
ring_coords
Float64Array
[lng0,lat0, lng1,lat1, ...]
Returns true if the point is inside the ring.
true
Test if a point is inside a polygon ring using the ray-casting algorithm.
Arguments
point_x: Longitude of the test point.point_y: Latitude of the test point.ring_coords: FlatFloat64Array[lng0,lat0, lng1,lat1, ...]defining the ring. The ring does not need to be explicitly closed.Returns
trueif the point is inside the ring.