Tag:addr:country=DE

From OpenStreetMap Wiki
Jump to navigation Jump to search
addr:country = DE
Description
Germany (Deutschland): an address in the country 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
Status: undefined

See Germany, osm:relation/51477

Most frequent tag with key addr:country=* (28%, status March 2026).

See Also

Possible tagging errors

Values

  • addr:country=Deutschland🔎
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!
  • addr:country=Germany🔎
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!
  • addr:country=germany.🔎
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!
  • addr:country=Ger🔎
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!
  • addr:country=De🔎
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!
  • addr:country=de🔎
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:300];
// Other than "DE" in Germany. Can include correctly tagged features on the national border
{{geocodeArea:Germany}}->.searchArea;
(
  nwr["addr:country"]["addr:country"!="DE"](area.searchArea);
);
out geom;

Location

try it yourself in overpass-turbo
try it yourself in overpass-turbo
[out:json][timeout:500];
// "DE" in France (query by country to avoid memory issues).
{{geocodeArea:France}}->.searchArea;
(
  nwr["addr:country"="DE"](area.searchArea);
);
out geom;

Keys

addr:state=DE is generally Delaware.

try it yourself in overpass-turbo
try it yourself in overpass-turbo
[out:json][timeout:500];
// should be addr:country=DE (ca. 300 in April 2026)
{{geocodeArea:Germany}}->.searchArea;
(
  nwr["addr:state"="DE"](area.searchArea);
);
out geom;