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

Possible tagging errors

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;