© OpenStreetMap contributors
Data is yet again from OpenStreetMap overpass turbo; it's such a great resource.
[out:json][timeout:25];
// fetch area “Sydney” to search in
{{geocodeArea:Sydney}}->.searchArea;
// gather results
(
// query part for: “name="El Jannah"”
node["name"="El Jannah"](area.searchArea);
way["name"="El Jannah"](area.searchArea);
relation["name"="El Jannah"](area.searchArea);
// query part for: “"Red Rooster"”
node["brand:wikidata"="Q376466"]["amenity"="fast_food"]["cuisine"="chicken"](area.searchArea);
way["brand:wikidata"="Q376466"]["amenity"="fast_food"]["cuisine"="chicken"](area.searchArea);
relation["brand:wikidata"="Q376466"]["amenity"="fast_food"]["cuisine"="chicken"](area.searchArea);
// query part for: “"Chargrill Charlie's"”
node["name"="Chargrill Charlie's"](area.searchArea);
way["name"="Chargrill Charlie's"](area.searchArea);
relation["name"="Chargrill Charlie's"](area.searchArea);
);
// print results
out body;
>;
out skel qt;
Can't quite beleive I am linking to Honi Soit, but here we are. A few years ago there was talk about "The Red Rooster Line" - the divide between the west and the North/East. I am missing a few El Jannah's (and also there has been a few more open up including one on King Street in Newtown). And they seem to be missing a stack of Red Rooster's. It's an interesting way to look at class and cultural background, maybe...It certainly set the ironic twitter crowd on fire. Anyhow, I'm here to map, not to critique some student's article in HS.
As ever code can be found here