You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Consider the following three polygons, pink, green, and yellow:
turf.booleanContains(green, yellow) correctly returns True, because green spatially contains yellow.
However, if a MultiPolygon is built out of pink and green, an exception is thrown:
var pink_and_green = turf.multiPolygon(pink, green)
turf.booleanContains(pink_and_green, yellow)
// ❌ Error: feature1 MultiPolygon geometry not supported
Is there a reason why turf does not support this? Or is it just not implemented yet?
Please provide the following when reporting an issue:
Consider the following three polygons,
pink
,green
, andyellow
:turf.booleanContains(green, yellow)
correctly returns True, becausegreen
spatially containsyellow
.However, if a MultiPolygon is built out of
pink
andgreen
, an exception is thrown:Is there a reason why turf does not support this? Or is it just not implemented yet?
Please provide the following when reporting an issue:
6.5.0
The text was updated successfully, but these errors were encountered: