Hello,
I have this Overpass Turbo query that keeps running into timeout when I apply it to larger chunks of Europe:
[out:json];
// gather results
(
(
nwr["site_type"="megalith"](newer:"{{date:10days}}")({{bbox}});
nwr["archaeological_site"="megalith"](newer:"{{date:10days}}")({{bbox}});
);
-
(
nwr(user:"user1")({{bbox}});
nwr(user:"user2")({{bbox}});
nwr(user:"user3")({{bbox}});
nwr(user:"user4")({{bbox}});
);
);
// print results
out body;
>;
out skel qt;
Is there any way I can speed this (or such) queries up by code tweaking or the like?
5 posts - 3 participants
Ce sujet de discussion accompagne la publication sur https://community.openstreetmap.org/t/speeding-up-overpass-turbo-query-with-user-exception/6821