Tag:addr:country=SK

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

Possible tagging errors

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


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