Mercurial > hg > nsaunier > traffic-intelligence
comparison python/pavement.py @ 449:1e4c1b6b0e0b
added comments
| author | Nicolas Saunier <nicolas.saunier@polymtl.ca> |
|---|---|
| date | Mon, 10 Feb 2014 18:32:43 -0500 |
| parents | 0b15fdeb903e |
| children | c0786fe4ad94 |
comparison
equal
deleted
inserted
replaced
| 448:0b15fdeb903e | 449:1e4c1b6b0e0b |
|---|---|
| 173 return (nbre_jours_T_negatif,nbre_jours_gel_degel, deltas_T, nbre_jours_gel_consecutifs, pluie_tot, neige_tot, neigeEC_sup_seuil, ecart_type_T) | 173 return (nbre_jours_T_negatif,nbre_jours_gel_degel, deltas_T, nbre_jours_gel_consecutifs, pluie_tot, neige_tot, neigeEC_sup_seuil, ecart_type_T) |
| 174 else: | 174 else: |
| 175 return [None]*2+[[None]*len(seuils_T)]+[None]*5 | 175 return [None]*2+[[None]*len(seuils_T)]+[None]*5 |
| 176 | 176 |
| 177 class RTSS: | 177 class RTSS: |
| 178 'class for data related to a RTSS, including agregating pavement marking measurements' | 178 'class for data related to a RTSS: |
| 179 - agregating pavement marking measurements | |
| 180 - RTSS characteristics from FMR: pavement type, age, AADT, truck AADT | |
| 181 - winter maintenance level from V155' | |
| 179 | 182 |
| 180 def __init__(self, id): | 183 def __init__(self, id): |
| 181 self.id = id | 184 self.id = id |
| 182 | 185 |
| 183 class MarkingTest: | 186 class MarkingTest: |
