Tag:addr:country=EG

From OpenStreetMap Wiki
Jump to navigation Jump to search
addr:country = EG
Description
Egypt
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 Egypt

Possible tagging errors

try it yourself in overpass-turbo
try it yourself in overpass-turbo
[out:json][timeout:100];
// "EG" outside Egypt
{{geocodeArea:Egypt}}->.searchArea;
(
  nwr["addr:country"="EG"];
  -
  nwr["addr:country"="EG"](area.searchArea);
);
out meta geom;
try it yourself in overpass-turbo
try it yourself in overpass-turbo
[out:json][timeout:100];
// Other than "EG" in Egypt (none in March 2026)
{{geocodeArea:Egypt}}->.searchArea;
(
  nwr["addr:country"]["addr:country"!="EG"](area.searchArea);
);
out meta geom;