Skip to content

Commit 8d41317

Browse files
committed
修复了queryByStripGeometryIntersects放回错误geometry的问题
1 parent 4e53033 commit 8d41317

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</properties>
1313
<groupId>org.wowtools</groupId>
1414
<artifactId>neo4j-rtree</artifactId>
15-
<version>1.2.2</version>
15+
<version>1.2.3</version>
1616
<name>neo4j-rtree</name>
1717

1818
<description>a spatial index for neo4j 4.x.</description>

src/main/java/org/wowtools/neo4j/rtree/RtreeQuery.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ public static void queryByStripGeometryIntersects(Transaction tx, RTreeIndex rTr
185185
},
186186
(objNode, objGeo) -> {
187187
if (geometry.intersects(objGeo)) {
188-
visitor.vist(objNode, geometry);
188+
visitor.vist(objNode, objGeo);
189189
}
190190
}
191191
);

0 commit comments

Comments
 (0)