It would be nice if STRtree & co could work with generics. ```java STRtree<Geometry> tree = new STRtree<>(); tree.insert(geometry.getEnvelopeInternal(), geometry); tree.build(); for (Geometry geometry : tree.query(someOtherGeometry)) { } ```