Biểu trưng OpenStreetMap OpenStreetMap

Getting highways without parking lanes tag with Overpass turbo

Do Rodrigo Rega đăng vào 14 tháng 03 năm 2016 bằng English. Cập nhật lần cuối cùng vào 18 tháng 03 năm 2016.

I am working in add parking lanes in the highways of Lugo city. For ease the job of locating all the ways that are without the needed tags, I wrote a little Overpass turbo query, after this I load the data it in JOSM to do the tagging.

highways without parking lanes tag

This is the Overpass query:

[out:xml][timeout:25];

// filter out ways without right or left parking lanes
(
way["highway"]["parking:lane:left"!~".*"]({{bbox}});
way["highway"]["parking:lane:right"!~".*"]({{bbox}});
);

// filter out ways with both parking lanes
( ._; - way["highway"]["parking:lane:both"~".*"]({{bbox}}); );

// filter out other type of ways 
( ._; - way[highway="pedestrian"]({{bbox}}); );
( ._; - way[highway="footway"]({{bbox}}); );
( ._; - way[highway="path"]({{bbox}}); );
( ._; - way[highway="steps"]({{bbox}}); );
( ._; - way[highway="crossing"]({{bbox}}); );
( ._; - way[service="parking_aisle"]({{bbox}}); );

// print results
out meta;
>;
out meta qt;
Vị trí: Lugo, Casco Vello, Lugo, Galicia, Spain
Biểu tượng thư điện tử Biểu tượng Bluesky Biểu tượng Facebook Biểu tượng LinkedIn Biểu tượng Mastodon Biểu tượng Telegram Biểu tượng X

Thảo luận

Bình luận của Diomas vào 17 tháng 3 năm 2016 lúc 14:36

also highway=crossing can be mapped as a way (a line connecting two sidewalks lines that crosses road highway line in highway=crossing node), so you should exclude it as well

Bình luận của Rodrigo Rega vào 18 tháng 3 năm 2016 lúc 16:02

Done, thank you Diomas.

Đăng nhập để nhận xét