Tag:addr:country=AT

From OpenStreetMap Wiki
Jump to navigation Jump to search
addr:country = AT
Description
Austria
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 Austria

Possible tagging errors

Tags outside Austria

Addresses in other countries generally wouldn't have addr:country=AT. Sometimes the location isn't recognized.

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


Other values with key in Austria

Addresses in Austria would have addr:country=AT:

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