Riyadh Cafes
2.6K Riyadh cafe's dataset
@kaggle.riybot_riyadh_cafes
2.6K Riyadh cafe's dataset
@kaggle.riybot_riyadh_cafes
This dataset comprises information about cafes located in Riyadh. It was obtained using a specialized algorithm to search and extract data from Google Maps.
index: the unique number for every row
coffeeName: coffee name based on Google Maps
rating: rating out of 5
rating_count: rating frequency based on google maps
URL: URL for the coffee on google maps
24_hours: does the coffee open 24 hours? (for nyctophile 's)
lon: longitude
lan: latitude
these data are labeled as cafes based on Google map labeling, some data do not count as cafes.
for any questions or help needed, you can contact me on Twitter @MrRiybot
CREATE TABLE riyadh_cafes (
"index" BIGINT,
"coffeename" VARCHAR,
"rating" DOUBLE,
"rating_count" BIGINT,
"url" VARCHAR,
"n_24_hours" BOOLEAN -- 24 Hours,
"lon" VARCHAR,
"lan" VARCHAR
);Anyone who has the link will be able to view this.