User:Polarbear/overpass examples
Jump to navigation
Jump to search

try it yourself in overpass-turbo

try it yourself in overpass-turbo
Surveillance cameras within a specified named way
From the example over at surveillance:type=ALPR

// @name surveillance-tarrant-county
[out:json][timeout:25];
area[admin_level=6]["name"="Rockwall County"]->.area1;
out body;
(
node
["man_made"="surveillance"]["surveillance:type"="ALPR"]
(area.area1);
node
["man_made"="surveillance"]["surveillance:type"="gunshot_detector"]
(area.area1);
node
["man_made"="surveillance"]["surveillance:type"="camera"]
(area.area1);
);
out body qt meta;
{{style:
node[surveillance:type=gunshot_detector] {
fill-color: blue; color: blue, fill-opacity 1;
}
node[surveillance:type=ALPR] {
fill-color: red; fill-opacity 1; color: red, fill-opacity 1;
}
}}
Ways touched by me

[out:json][timeout:25];
way(user_touched:"CraigPe")(bbox);
out geom;