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
Somewhat related to #153 -- the implementation of containsLine seems to only check the first two pairs of coordinates in a LineString. A LineString can be much longer, so probably all line segments shall be checked (for the first proximity match).
The text was updated successfully, but these errors were encountered:
Yeah, that looks like a bug. Specifically, the current implementation tests whether a single line segment (approximately) contains the specified point, where we should be testing every line segment in the line string.
Somewhat related to #153 -- the implementation of
containsLine
seems to only check the first two pairs of coordinates in a LineString. A LineString can be much longer, so probably all line segments shall be checked (for the first proximity match).The text was updated successfully, but these errors were encountered: