Tag:addr:country=SE

From OpenStreetMap Wiki
Jump to navigation Jump to search
addr:country = SE
Description
Sweden
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 Sweden, Sv:Sverige

Possible tagging errors

try it yourself in overpass-turbo
try it yourself in overpass-turbo
[out:json][timeout:200];
// "SE" outside Sweden: (none in March 2026)
// Can include correctly tagged features on national border
// and features without coordinates
{{geocodeArea:Sweden}}->.searchArea;
(
  nwr["addr:country"="SE"];
  -
  nwr["addr:country"="SE"](area.searchArea);
);
out center;


try it yourself in overpass-turbo
try it yourself in overpass-turbo
[out:json][timeout:200];
// Other than "SE" in Sweden:
// Can include correctly tagged features on national border
{{geocodeArea:Sweden}}->.searchArea;
(
  nwr["addr:country"]["addr:country"!="SE"](area.searchArea);
);
out center;


try it yourself in overpass-turbo
try it yourself in overpass-turbo
[out:json][timeout:200];
// "SV" in Sweden ("SV" is for El Salvador")
{{geocodeArea:Sweden}}->.searchArea;
(
  nwr["addr:country"="SV"](area.searchArea);
);
out center;