Tag:addr:country=AT

From OpenStreetMap Wiki
Jump to navigation Jump to search
addr:country = AT
Description
Austria Show/edit corresponding data item.
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: de facto

See Austria, osm:relation/16239

Possible tagging errors

try it yourself in overpass-turbo
try it yourself in overpass-turbo
[out:json][timeout:120];
// "AT" outside Austria
// Note: can list features 
// in Austria without coordinates
// or on the national border
{{geocodeArea:Austria}}->.searchArea;
(
  nwr["addr:country"="AT"];
  -
  nwr["addr:country"="AT"](area.searchArea);
);
out meta geom;


try it yourself in overpass-turbo
try it yourself in overpass-turbo
[out:json][timeout:120];
// Note: can list correctly tagged features 
// on the national border
{{geocodeArea:Austria}}->.searchArea;
(
  nwr["addr:country"]["addr:country"!="AT"](area.searchArea);
);
out meta geom;