Overpass API request failed: IncompleteRead(0 bytes read)

Hello everyone! Could anyone help me with this issue: Overpass API request failed: IncompleteRead(0 bytes read)

The query code is:

[out:json] [timeout:9000];
(
way["highway"=motorway](bbox:{x_min},{y_min},{x_max},{y_max});
way["highway"=trunk](bbox:{x_min},{y_min},{x_max},{y_max});
way["highway"=primary](bbox:{x_min},{y_min},{x_max},{y_max});
...
way["highway"=tertiary_link](bbox:{x_min},{y_min},{x_max},{y_max});
);
(._;>;);
out body;

Where bbox is: 41.207270630721524, 1.597245844790248, 41.77753602675901, 2.427776294121272 There are 11 values for this key so far, but this query will be supplied by other ones, so I would like to manage these issues. I've been trying to change the timeout randomly or even remove its definition, but to no avail.

asked 14 Dec '23, 12:41

vwvbrand's gravatar image

vwvbrand
113
accept rate: 0%

edited 14 Dec '23, 12:47