Tag:addr:country=IT

From OpenStreetMap Wiki
Jump to navigation Jump to search
addr:country = IT
Description
Italy
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 Italy, IT:Italia, osm:relation/365331


See Also

Possible tagging errors

  • addr:country=Fornoli🔎
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!
try it yourself in overpass-turbo
try it yourself in overpass-turbo
[out:json][timeout:200];
// "IT" outside Italy: 
// Can include correctly tagged features on the national border
// and features in the country without coordinates.
{{geocodeArea:Italia}}->.searchArea;
(
  nwr["addr:country"="IT"];
  -
  nwr["addr:country"="IT"](area.searchArea);
);
out center;


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