Solve seat hogging issue in public space
Seat hogging has become a social issue in Singapore. It mostly happens in open space like libraries and canteens which are on “first come first serve” basis. Seat hogging prevents other people who are there from using the facility. It leads to “inefficient use of public facility”, and to some extend cafe or fast food place. This article focuses mostly on seat-hogging issue in public library.
There are few types of people who hog seats in library:
The main approach to minimise seat hogging is to track 2 metrics: (1) Is library user out of library (i.e. location)?, (2) If the user is out, how long have they been out? (i.e. time).
First, we need to obtain user-seat relationship. The tedious part is that user will need to register for a seat in order to get all the data available. However, the registration process can be straight forward, pretty similar to way as they register for free wifi in public space.
Second, to track user’s location compared to library location, I prefer to have GPS auto tracking user’s locations and updating the system. I considered that option against others like (1) Seat detection sensor like seat count in bus (i.e. high initial investment and inability o track timeout) and (2) Library officer taking notes of who’s in / out (even using digital format) and (3) Camera detection.
However, for my prototype, I couldn’t get the GPS thingy to work nicely so I changed it to “manually tapping in and out”.
There are 2 stakeholders here:
an empty table
(unoccupied table) and scan QR code. (QR code contains unique seat number ad needs to be printed)out status
(not necessarily location tracking) and keep track of how long user is away from the base location (i.e. library)Of course, there will be edge cases for each step above, but that’s the general flow. The killer
function of this system is to ability to track in/out status of a user. This can be done by:
an empty seat with unattended belongings
, he can scan the seat’s QR code to check the seat occupancy status and user’s time away.Fun fact: I did submit this prototype to NLB in Singapore expecting no response. Surprisingly, they replied and invited me to library for a chat to understand more about the solution. Unfortunately, they decided not to proceed with this idea. But that’s OK. I enjoyed working on this project.