Hey,
I am using arcpy.na.solve to find the best transit route using network converted from GTFS data. I need two cost attributes to be combined: public transit time and walk time. How should I set up the travel mode?
Here is what I use for public transit only (which works fine):
travel_mode = "Public transit time"
arcpy.na.MakeRouteAnalysisLayer('TransitNetwork_ND','Route',travel_mode)
Thanks
Jane