Tag:addr:country=PL

From OpenStreetMap Wiki
Jump to navigation Jump to search
addr:country = PL
Description
Poland
Group: addresses
Used on these elements
may be used on nodesmay be used on waysmay be used on areas (and multipolygon relations)may be used on relations
Status: undefined

See Poland

Possible tagging errors

try it yourself in overpass-turbo
try it yourself in overpass-turbo
[out:json][timeout:300];
// "PL" outside Poland
{{geocodeArea:Poland}}->.searchArea;
(
  nwr["addr:country"="PL"];
  -
  nwr["addr:country"="PL"](area.searchArea);
);
out meta geom;


try it yourself in overpass-turbo
try it yourself in overpass-turbo
[out:json][timeout:300];
// Other than "PL" in Poland
{{geocodeArea:Poland}}->.searchArea;
(
  nwr["addr:country"]["addr:country"!="PL"](area.searchArea);
);
out meta geom;