Wards in Great Britain

[out:json][timeout:25];
// fetch area “Great Britain” to search in
{{geocodeArea:Great Britain}}->.searchArea;
// gather results
nwr["political_division"="ward"](area.searchArea);
// print results
out geom;

Tidal causeways

[out:json];
(
nwr[causeway=yes][tidal=yes];
nwr[highway=unclassified][tidal=yes];
);
out geom;

Radisson hotels

[out:json];
(
nwr[brand~".*(Park Plaza|Park Inn|Radisson).*"][tourism=hotel];
nwr[operator~".*(Park Plaza|Park Inn|Radisson).*"][tourism=hotel];
nwr[name~".*(Park Plaza|Park Inn|Radisson).*"][tourism=hotel];
);
out center;