Example #1
0
 def __init__(self):
   Bolt.__init__(self)
   self._statsfromstations = {}
Example #2
0
 def __init__(self, stations):
   Bolt.__init__(self)
   self._stations = stations
Example #3
0
 def __init__(self):
   Bolt.__init__(self)
   self._statsfromtrain = {}
Example #4
0
 def __init__(self, outputlabel, trainstops):
   Bolt.__init__(self)
   self._outputlabel = outputlabel
   self._trainstops = trainstops
Example #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)))
Example #6
0
 def __init__(self):
     Bolt.__init__(self)
     self._stationsfromline = {}
Example #7
0
 def __init__(self):
   Bolt.__init__(self)
   self._stationsfromline = {}
Example #8
0
 def __init__(self, outputlabel, fileobj):
     Bolt.__init__(self)
     self._outputlabel = outputlabel
     self._f = fileobj
Example #9
0
 def __init__(self, inputs):
     Bolt.__init__(self)
     self._inputs = inputs
Example #10
0
 def __init__(self):
     Bolt.__init__(self)
     self._statsfromtrain = {}
Example #11
0
 def __init__(self):
     Bolt.__init__(self)
     self._statsfromstations = {}
Example #12
0
 def __init__(self, stations):
     Bolt.__init__(self)
     self._stations = stations
Example #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)))
Example #14
0
 def __init__(self, outputlabel, trainstops):
     Bolt.__init__(self)
     self._outputlabel = outputlabel
     self._trainstops = trainstops
Example #15
0
 def __init__(self, outputlabel, fileobj):
   Bolt.__init__(self)
   self._outputlabel = outputlabel
   self._f = fileobj
Example #16
0
 def __init__(self, inputuple, outputfile):
   Bolt.__init__(self)
   self._inputuple = inputuple
   self._printedheader = False
   self._outputfile = outputfile
Example #17
0
 def __init__(self, inputs):
   Bolt.__init__(self)
   self._inputs = inputs
Example #18
0
 def __init__(self, inputuple, outputfile):
     Bolt.__init__(self)
     self._inputuple = inputuple
     self._printedheader = False
     self._outputfile = outputfile