Tag:addr:country=BR

From OpenStreetMap Wiki
Jump to navigation Jump to search
addr:country = BR
Description
Brazil
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 Brazil, osm:relation/59470


Possible tagging errors

  • addr:country=Brasil🔎
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:100];
// "BR" outside Brazil (none in March 2026)
{{geocodeArea:Brasil}}->.searchArea;
(
  nwr["addr:country"="BR"];
  -
  nwr["addr:country"="BR"](area.searchArea);
);
out meta geom;


try it yourself in overpass-turbo
try it yourself in overpass-turbo
[out:json][timeout:100];
// Other than "BR" in Brazil
{{geocodeArea:Brasil}}->.searchArea;
(
  nwr["addr:country"]["addr:country"!="BR"](area.searchArea);
);
out meta geom;