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

Queries

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

Query example link

/* Search for bares, cafes, and pubs in the area */

(
nwr[amenity=bar]({{bbox}});
nwr[amenity=cafe]({{bbox}});
nwr[amenity=internet_cafe]({{bbox}});
nwr[amenity=pub]({{bbox}});
);
out center;
/*
Search for parking tickets vending machine
*/

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

(
nwr[amenity=recycling]({{bbox}});
nwr[amenity=waste_basket]({{bbox}});
nwr[amenity=waste_disposal]({{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 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;
/* Public transport. Bus, taxi, rail lines, metro lines and light rai lines */

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

Visit 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