Ejemplo n.º 1
0
 def __init__(self):
   Bolt.__init__(self)
   self._statsfromstations = {}
Ejemplo n.º 2
0
 def __init__(self, stations):
   Bolt.__init__(self)
   self._stations = stations
Ejemplo n.º 3
0
 def __init__(self):
   Bolt.__init__(self)
   self._statsfromtrain = {}
Ejemplo n.º 4
0
 def __init__(self, outputlabel, trainstops):
   Bolt.__init__(self)
   self._outputlabel = outputlabel
   self._trainstops = trainstops
Ejemplo n.º 5
0
 def __init__(self, timeframes):
   Bolt.__init__(self)
   self._timeframes = []
   for (start, end) in timeframes:
     self._timeframes.append((self._tominutes(start), self._tominutes(end)))
Ejemplo n.º 6
0
 def __init__(self):
     Bolt.__init__(self)
     self._stationsfromline = {}
Ejemplo n.º 7
0
 def __init__(self):
   Bolt.__init__(self)
   self._stationsfromline = {}
Ejemplo n.º 8
0
 def __init__(self, outputlabel, fileobj):
     Bolt.__init__(self)
     self._outputlabel = outputlabel
     self._f = fileobj
Ejemplo n.º 9
0
 def __init__(self, inputs):
     Bolt.__init__(self)
     self._inputs = inputs
Ejemplo n.º 10
0
 def __init__(self):
     Bolt.__init__(self)
     self._statsfromtrain = {}
Ejemplo n.º 11
0
 def __init__(self):
     Bolt.__init__(self)
     self._statsfromstations = {}
Ejemplo n.º 12
0
 def __init__(self, stations):
     Bolt.__init__(self)
     self._stations = stations
Ejemplo n.º 13
0
 def __init__(self, timeframes):
     Bolt.__init__(self)
     self._timeframes = []
     for (start, end) in timeframes:
         self._timeframes.append(
             (self._tominutes(start), self._tominutes(end)))
Ejemplo n.º 14
0
 def __init__(self, outputlabel, trainstops):
     Bolt.__init__(self)
     self._outputlabel = outputlabel
     self._trainstops = trainstops
Ejemplo n.º 15
0
 def __init__(self, outputlabel, fileobj):
   Bolt.__init__(self)
   self._outputlabel = outputlabel
   self._f = fileobj
Ejemplo n.º 16
0
 def __init__(self, inputuple, outputfile):
   Bolt.__init__(self)
   self._inputuple = inputuple
   self._printedheader = False
   self._outputfile = outputfile
Ejemplo n.º 17
0
 def __init__(self, inputs):
   Bolt.__init__(self)
   self._inputs = inputs
Ejemplo n.º 18
0
 def __init__(self, inputuple, outputfile):
     Bolt.__init__(self)
     self._inputuple = inputuple
     self._printedheader = False
     self._outputfile = outputfile