<html><head></head><body><div style="font-family: Verdana;font-size: 12.0px;"><div>Hello developers<br/>
I've been currently working on a python plugin in which I have to find all possible intersections on one layer. I want to improve the efficiency of this task. It roughly looks like this:<br/>
for i, geom in enumerate(geoms):<br/>
    for j, geom in enumerate(geoms):<br/>
        if j > i:<br/>
            //intersections<br/>
Is there a faster way? Perhaps with multithreading / rtree?<br/>
Regards<br/>
Johannes Wildermuth</div></div></body></html>