CSCI-4830-002-2014 / hackathon-yelp

0 stars 6 forks source link

List all the 24/7 restaurants #8

Open dawsbot opened 10 years ago

dawsbot commented 10 years ago

Collection business has a JSON field "hours"

jakecharland commented 10 years ago

image Query: db.business.find( { $and: [ { 'hours.Monday.open': '00:00'}, { 'hours.Monday.close': '24:00'}, { 'hours.Tuesday.open': '00:00'}, { 'hours.Tuesday.close': '24:00'}, { 'hours.Wednesday.open': '00:00'}, { 'hours.Wednesday.close': '24:00'}, { 'hours.Thursday.open': '00:00'}, { 'hours.Thursday.close': '24:00'}, { 'hours.Friday.open': '00:00'}, { 'hours.Friday.close': '24:00'}, { 'hours.Saturday.open': '00:00'}, { 'hours.Saturday.close': '24:00'}, { 'hours.Sunday.open': '00:00'}, { 'hours.Sunday.close': '24:00'} ] } )

There are no 24/7 business's in the data set :(

jakecharland commented 10 years ago

After looking at it further a lot of the data points don't have information on the business hours for all the days. image