Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hey I'm trying to implement reservation system for parking lots registered at my website. I have a hardware that detects the presence and absence of car at a parking space. So assume I have this hardware set up for all the parking spaces in all the parking lots signed up at my website and therefore I have the information of which parking space is vacant and which is occupied. My website provides an interface to allow users to reserve a parking space at a parking lot. My website also gives privileges to parking lot owners allowing them to edit certain data with respect to their parking lot.

Assume a parking lot P has 10 parking spaces namely P1, P2.. P10. Apart from reserving a parking space through my website, users can directly go to parking lot P and occupy a vacant parking space. Either ways the sensors pick up the information about a parking space and thus assume my database containing information about P is continuously updated. Okay having said that I need your opinion/help on the following:

  1. I'm thinking about allowing a user to reserve a space only if it is vacant at the time he accesses my website. Is this the best idea? It's not, if I consider this scenario: Assume user1 directly goes to P and occupies P1 at 10 am. At 11 am, user2 accesses my website to reserve a space at P say P1 from 5 pm to 6 pm. Since at 11 am, user1 is still occupying P1, I won't allow user2 to reserve the space. The trade-off here would be that in most cases user1 is going to vacate that space before 5 pm. So may be not allowing user2 to reserve was a bad idea. On the other hand, if I allow user2 to reserve P1 and suppose user1 doesn't vacate P1 before 5pm then user2 will be stranded.

  2. Say P1 is reserved from 5pm to 6pm by user1. If user2 directly goes to P and tries to occupy P1 at 3pm, then should I allow it? If I allow it, I don't know if user2 would vacate the space before 5pm. If I don't allow user2 to occupy P1 at 3pm, then it is like losing two hours of income for parking lot owners.

  3. In order to handle the above two scenarios I should allow some flexible options for the parking lot owners registered with my website. What do you think are the optimal options I could offer for the parking lot owners in my website?

Any help is greatly appreciated. Thanks in advance. SerotoninChase.

share|improve this question
How do you physically prohibit someone from parking into a space that has been reserved but is not occupied yet? – sawa Mar 25 '11 at 2:16
Do you have 10 spaces or is that just en example? The rules will be significantly different if you have 10 or 100 spaces. – Albin Sunnanbo Mar 25 '11 at 7:27

3 Answers

up vote 1 down vote accepted

A reservation system, if it is going to have any meaning, will restrict the availability of spaces to drive-in customers. Most systems (restaurants, hotels, car rentals, etc.) have a reasonable way of estimating (or enforcing) the duration of a resource allocation. In cases where there is uncertainty, then you need to balance the various risks. How do you balance? First, you need to estimate the probability of each kind of failure (having empty spaces that could have been rented; lacking a space for a customer with a reservation). Then you need to estimate the cost of each kind of failure. Only then do you have a model by which you can evaluate various strategies.

You should probably be thinking about an adaptive strategy—one that not only adapts to sensor data but also adjusts the algorithm parameters based on observed failures of the prediction process. (In other words, one that learns the probabilities as it goes.) I expect that the parameters also need to vary with time (e.g., drivers behave differently on the weekend than during a work day). Of course, working with the business owners to reduce the uncertainties will help as well.

The best advice, I think, is to talk to your potential customers (the parking lot owners) about these issues. They will have a much better understanding of what would work and how much they are willing to change their business rules for the sake of offering a higher-value product.

share|improve this answer
Thank you for your answer. It was quite helpful. The problem is there are no potential customers yet and there's no real data to calculate the probabilities of the failures you mentioned. But I should be able to generate some data and test different scenarios. But my main purpose is to build a generic website that will allow the parking lot owners to decide how they want to handle these scenarios according to their business interest. Anyhow, thank you once again. – SerotoninChase Mar 25 '11 at 2:46
Surely you have potential customers: every parking lot owner! Although they may not be interested in becoming your customer, they may still be interested enough to talk to you and provide some insight into their business needs. – Ted Hopp Mar 25 '11 at 3:24

I think most of your problems will be solved if you had a metering system where you allocate the parking lot for a number of hours. This will allow for you to plan and optimize your allocations, but has the down side of policing the parking lots for violations. It would be a good idea to have some vacant slots for any hiccups caused by the violations.

share|improve this answer
Thank you for your answer. – SerotoninChase Mar 25 '11 at 2:47
One way to tackle a parking lot violation: it can be tackled with creating an annoyance...like triggering a loud siren for the violator to be ashamed of himself so he will eventually move out from the unauthorized area :) – eee Mar 25 '11 at 4:33

Why don't you just allow user to enter any free parking space available i.e. don't tie reservation to a specific parking spot. It's OK if he knows that he'll have one spot free at the time he needs it, right? This simplifies algorithm in means of having to track only overall number of free parking spots.

or you can simply send a message to parking service to remove that car when another reservation is made for that place :)

share|improve this answer
Thank you for your answer – SerotoninChase Mar 25 '11 at 2:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.