Has anyone else experienced extremely slow response times from the Overpass APIs today? My queries are taking up to a minute to return data. Is there a known issue with the server?
[out:json][timeout:50];
// Search radius: 5000 meters
(
// Hospitals under construction or proposed
node(around:5000, 51.5769, -0.0458)[amenity=hospital][construction];
way(around:5000, 51.5769, -0.0458)[amenity=hospital][construction];
node(around:5000, 51.5769, -0.0458)[amenity=hospital][proposed];
way(around:5000, 51.5769, -0.0458)[amenity=hospital][proposed];
// Schools under construction or proposed
node(around:5000, 51.5769, -0.0458)[amenity=school][construction];
way(around:5000, 51.5769, -0.0458)[amenity=school][construction];
node(around:5000, 51.5769, -0.0458)[amenity=school][proposed];
way(around:5000, 51.5769, -0.0458)[amenity=school][proposed];
// Universities under construction or proposed
node(around:5000, 51.5769, -0.0458)[amenity=university][construction];
way(around:5000, 51.5769, -0.0458)[amenity=university][construction];
node(around:5000, 51.5769, -0.0458)[amenity=university][proposed];
way(around:5000, 51.5769, -0.0458)[amenity=university][proposed];
// Generic under-construction or proposed buildings
node(around:5000, 51.5769, -0.0458)[building=construction];
way(around:5000, 51.5769, -0.0458)[building=construction];
node(around:5000, 51.5769, -0.0458)[construction];
way(around:5000, 51.5769, -0.0458)[construction];
node(around:5000, 51.5769, -0.0458)[proposed];
way(around:5000, 51.5769, -0.0458)[proposed];
);
// Output details
out body;
>;
out skel qt;