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