Hi there! I'm working on a very interesting pet project where I monitor the traffic outside a house.
The system works like this: I have a AXIS 214 PTZ IP Camera, which has motion sensoring. Whenever a car drives past its viewing area, the camera server sends a TCP message to a Django server. The django server records the "drive by" in a Vehicle model: class Vehicle(models.Model): when = models.DateTimeField() This adds up to quite a lot of traffic in a day, and I want to be able to filter out which time of day the traffic is at it's highest. Is there a good way of doing this? Thanks! Henrik Lied. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---