Package dataplot :: Package bike :: Module models
[show private | hide private]
[frames | no frames]

Module dataplot.bike.models

Record of bike trips for data analysis.

Demonstration app for dataplot.
Classes
Bike Parameters of bike -- different bikes may be different speeds.
Location Origin or destination of a bike ride.
Ride Ride and associated statistics.
RideManager Used for making global ride plots and importing data.

Function Summary
  tup_to_minutes(h, m, s)

Variable Summary
str PAIRED_RIDES_SQL = '\nselect x.date,x.hours,x.minutes,x....

Variable Details

PAIRED_RIDES_SQL

Type:
str
Value:
'''
select x.date,x.hours,x.minutes,x.seconds,y.hours,y.minutes,y.seconds
from bike_ride as x join bike_ride as y on x.date=y.date where
x.origin_id=%s and x.destination_id=%s and
y.origin_id=%s and y.destination_id=%s order by date;
'''                                                                    

Generated by Epydoc 2.1 on Tue Apr 29 23:35:17 2008 http://epydoc.sf.net