Package org.movsim.output.route

Examples of org.movsim.output.route.TravelTimeOnRoute


    private void initTravelTimes(boolean writeOutput, double simulationTimestep,
            final OutputConfiguration outputConfiguration) {
        for (final TravelTimes travelTimeInput : outputConfiguration.getTravelTimes()) {
            final Route route = getCheckedRoute(travelTimeInput.getRoute());
            final TravelTimeOnRoute travelTime = new TravelTimeOnRoute(simulationTimestep, travelTimeInput,
                    roadNetwork, route, writeOutput);
            travelTimeOnRoutes.put(route, travelTime);
        }
    }
View Full Code Here

TOP

Related Classes of org.movsim.output.route.TravelTimeOnRoute

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.