You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/home/pedro/SourceCode/fast-trips/fasttrips/Run.pyc in run_fasttrips(**kwargs)
189 # print "%40s => %s" % (key, args_dict[key])
190
--> 191 ft = run_setup(**kwargs)
192 # Read the networks and demand
193 ft.read_input_files()
/home/pedro/SourceCode/fast-trips/fasttrips/Run.pyc in run_setup(input_network_dir, input_demand_dir, input_weights, run_config, iters, output_dir, pathfinding_type, input_functions, output_folder, trace_only, **kwargs)
121
122 # Read the configuration file and overwrite with any options called with the function call
--> 123 ft.read_configuration()
124
125 if iters > 0:
/home/pedro/SourceCode/fast-trips/fasttrips/FastTrips.pyc in read_configuration(self)
112 if Assignment.CONFIGURATION_FUNCTIONS_FILE:
113 Assignment.read_functions(func_file = Assignment.CONFIGURATION_FUNCTIONS_FILE)
--> 114 Assignment.read_configuration(config_fullpath = Assignment.CONFIGURATION_FILE)
115 Assignment.read_weights(weights_file = Assignment.INPUT_WEIGHTS)
116
/usr/lib/python2.7/ConfigParser.pyc in get(self, section, option)
328 if section not in self._sections:
329 if section != DEFAULTSECT:
--> 330 raise NoSectionError(section)
331 if opt in self._defaults:
332 return self._defaults[opt]
NoSectionError: No section: 'fasttrips'
The text was updated successfully, but these errors were encountered:
Running tutorial #5 I find an error in the cell below. I was not able to quickly find the issue, so it was probably better to report it!
for d in DISPERSION_TESTS:
OUTPUT_FOLDER = OUTPUT_FOLDER_BASE+"%2.2f" % (d)
Run.run_fasttrips(input_network_dir = INPUT_NETWORKS,
input_demand_dir = INPUT_DEMAND,
run_config = RUN_CONFIG,
input_weights = INPUT_WEIGHTS,
output_dir = OUTPUT_DIR,
output_folder = OUTPUT_FOLDER,
pathfinding_type = PATHFINDING_TYPE,
iters = ITERATIONS,
overlap_variable = OVERLAP,
dispersion = d )
trace error below.
{'dispersion': 0.5, 'overlap_variable': 'None'}
NoSectionError Traceback (most recent call last)
in ()
10 iters = ITERATIONS,
11 overlap_variable = OVERLAP,
---> 12 dispersion = d )
/home/pedro/SourceCode/fast-trips/fasttrips/Run.pyc in run_fasttrips(**kwargs)
189 # print "%40s => %s" % (key, args_dict[key])
190
--> 191 ft = run_setup(**kwargs)
192 # Read the networks and demand
193 ft.read_input_files()
/home/pedro/SourceCode/fast-trips/fasttrips/Run.pyc in run_setup(input_network_dir, input_demand_dir, input_weights, run_config, iters, output_dir, pathfinding_type, input_functions, output_folder, trace_only, **kwargs)
121
122 # Read the configuration file and overwrite with any options called with the function call
--> 123 ft.read_configuration()
124
125 if iters > 0:
/home/pedro/SourceCode/fast-trips/fasttrips/FastTrips.pyc in read_configuration(self)
112 if Assignment.CONFIGURATION_FUNCTIONS_FILE:
113 Assignment.read_functions(func_file = Assignment.CONFIGURATION_FUNCTIONS_FILE)
--> 114 Assignment.read_configuration(config_fullpath = Assignment.CONFIGURATION_FILE)
115 Assignment.read_weights(weights_file = Assignment.INPUT_WEIGHTS)
116
/home/pedro/SourceCode/fast-trips/fasttrips/Assignment.pyc in read_configuration(config_fullpath)
306 parser.read(config_fullpath)
307
--> 308 Assignment.MAX_ITERATIONS = parser.getint ('fasttrips','max_iterations')
309 Assignment.SIMULATION = parser.getboolean('fasttrips','simulation')
310 Assignment.OUTPUT_PASSENGER_TRAJECTORIES = parser.getboolean('fasttrips','output_passenger_trajectories')
/usr/lib/python2.7/ConfigParser.pyc in getint(self, section, option)
357
358 def getint(self, section, option):
--> 359 return self._get(section, int, option)
360
361 def getfloat(self, section, option):
/usr/lib/python2.7/ConfigParser.pyc in _get(self, section, conv, option)
354
355 def _get(self, section, conv, option):
--> 356 return conv(self.get(section, option))
357
358 def getint(self, section, option):
/usr/lib/python2.7/ConfigParser.pyc in get(self, section, option)
328 if section not in self._sections:
329 if section != DEFAULTSECT:
--> 330 raise NoSectionError(section)
331 if opt in self._defaults:
332 return self._defaults[opt]
NoSectionError: No section: 'fasttrips'
The text was updated successfully, but these errors were encountered: