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

  • addr:country=Österreich🔎 ‒ use code instead
If you know places with this tag, verify if it could be tagged with another tag.
Automated edits are strongly discouraged unless you really know what you are doing!


"AT" outside Austria. Can list features in Austria without coordinates or on the national border

try it yourself in overpass-turbo
try it yourself in overpass-turbo
[out:json][timeout:120];
{{geocodeArea:Austria}}->.searchArea;
(
  nwr["addr:country"="AT"];
  -
  nwr["addr:country"="AT"](area.searchArea);
);
out geom;

Codes other than "AT" in Austria. Can list correctly tagged features on the national border

try it yourself in overpass-turbo
try it yourself in overpass-turbo
[out:json][timeout:120];
{{geocodeArea:Austria}}->.searchArea;
(
  nwr["addr:country"]
  ["addr:country"!="AT"](area.searchArea);
);
out geom;

Code "AR" in Austria.

try it yourself in overpass-turbo
try it yourself in overpass-turbo
[out:json][timeout:120];
{{geocodeArea:Austria}}->.searchArea;
(
  nwr["addr:country"="AR"](area.searchArea);
);
out geom;