Tag:addr:country=CH

From OpenStreetMap Wiki
Jump to navigation Jump to search
addr:country = CH
Description
Switzerland (Confoederatio Helvetica) 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
Useful combination
Status: in use

See Switzerland, osm:relation/51701

See Also

Possible tagging errors

Tags outside Switzerland

try it yourself in overpass-turbo
try it yourself in overpass-turbo
[out:json][timeout:300];
// Note: this can list relations in Switzerland 
// without coordinates (and other issues)
{{geocodeArea:Suisse}}->.searchArea;
(
  nwr["addr:country"="CH"];
  -
  nwr["addr:country"="CH"](area.searchArea);
);
out meta geom;


Other values in Switzerland

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