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