Open pierrethiriet opened 5 months ago
This looks like we didn't define a method for FlexiJoins. Will take a look.
I should have a fix for this today or tomorrow. In the meanwhile, you can define the following functions:
FlexiJoins.swap_sides(::typeof(GO.intersects)) = !GO.disjoint
FlexiJoins.swap_sides(::typeof(!(GO.disjoint))) = GO.intersects
FlexiJoins.swap_sides(::typeof(GO.disjoint)) = !GO.intersects
FlexiJoins.swap_sides(::typeof(!(GO.intersects))) = GO.disjoint
Thanks a lot.
I am currently testing
GeometryOps
package to move away fromR
and thesf
package for GIS work. I am facing a minor issue (misusage or bug ?) while using the spatial join function. The following example withGO.within
is working as expected :But the
GO.intersects
predicate fails :Giving the following error:
While the predicate is otherwise working as expected
The versions used are the following :
Thanks