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

Possible tagging errors

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;