Skip to main content

Rabbau City

Resources for navigating, exploring and editing in Rabbau city. For RaBBAu notes made by the Ragyxo Foundation, please refer to RaBBAu Internal Notes Research.

Rabbau can be found at: 49°46'5.96"N -7°33'26.80"E.

Resources

History

Rabbau city was previously called RaBBAu. Although it has the same name, is now not capitalized by letters. This change was made to avoid confussion with RaBBAu Internal Notes. This change is defined in 40/2025 RaBBAu Note.

Name Suggestion Index

Canonical common brand names, operators, transit and flags for OpenGeofiction. Search for common amenities and shops.

Link: Name Suggestion Index

Overpass Turbo queries

/* Search for places to drink (cafe, bar, pub) in the area */

(
nwr[amenity=bar|cafe|internet_cafe|pub]({{bbox}});
);
out center;

Run this query on Overpass Turbo.

/* Search for places to eat (restaurant, fast food) in the area */

(
nwr[amenity=restaurant|bar|fast_food]({{bbox}});
);
out center;

Run this query on Overpass Turbo.

/* Search for supermarket and convenience */

(
nwr[shop=supermarket|convenience|greengrocer|]({{bbox}});
);
out center;
/* Search for libraries and places to study or relax */

(
nwr[amenity=library|internet_cafe|cafe]({{bbox}});
nwr[shop=books]({{bbox}});
);
out center;
/* Search for tourism stuff */

(
nwr[tourism=hotel|motel|guest_house|artwork|viewpoint|museum]({{bbox}});
nwr[leisure=park]({{bbox}});

);
out center;
/*
Search for parking tickets vending machine
*/

(
nwr[vending=parking_tickets]({{bbox}});
);
out center;
/* Search for recycling stuff */

(
nwr[amenity=recycling|waste_basket|waste_disposal]({{bbox}});
);
out center;
/* Public transport. Bus, taxi, rail lines, metro lines and light rai lines */

(
relation[route=bus]({{bbox}});
nwr["highway"="bus_stop"]({{bbox}});
way["railway"="subway|rail|light_rail"]({{bbox}});
node["amenity"="taxi"]({{bbox}});
);
out body;
>;
out skel qt;

Run this query on Overpass Turbo.

Tags examples

Residential buildings

addr:housenumber=20
addr:street=Ode Street
building:levels:underground=1
building:levels=6
building=residential
start_date=2003

1 2 3