OTP graph config
OTP graph config

<<<<<<< HEAD  
[submodule "js/flotr2"] [submodule "js/flotr2"]
path = js/flotr2 path = js/flotr2
url = https://github.com/HumbleSoftware/Flotr2.git url = https://github.com/HumbleSoftware/Flotr2.git
[submodule "js/FlashCanvas"] [submodule "js/FlashCanvas"]
path = js/FlashCanvas path = js/FlashCanvas
url = https://github.com/timcameronryan/FlashCanvas url = https://github.com/timcameronryan/FlashCanvas
=======  
[submodule "lib/amon-php"] [submodule "lib/amon-php"]
path = lib/amon-php path = lib/amon-php
url = https://github.com/martinrusev/amon-php.git url = https://github.com/martinrusev/amon-php.git
[submodule "js/yepnope"] [submodule "js/yepnope"]
path = js/yepnope path = js/yepnope
url = https://github.com/SlexAxton/yepnope.js.git url = https://github.com/SlexAxton/yepnope.js.git
>>>>>>> 9714b3c938ad66f914c8d22144b8883e40f2ef09  
   
  <?xml version="1.0" encoding="UTF-8"?>
  <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xmlns:context="http://www.springframework.org/schema/context"
  xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
  http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd">
 
  <bean id="graphBundle" class="org.opentripplanner.model.GraphBundle">
  <property name="path" value="c:\tmp\" />
  </bean>
 
  <bean id="gtfsBuilder" class="org.opentripplanner.graph_builder.impl.GtfsGraphBuilderImpl">
  <property name="gtfsBundles">
  <bean id="gtfsBundles" class="org.opentripplanner.graph_builder.model.GtfsBundles">
  <property name="bundles">
  <list>
  <bean class="org.opentripplanner.graph_builder.model.GtfsBundle">
  <property name="path" value="C:\tmp\cbrfeed.zip" />
  </bean>
  </list>
  </property>
  </bean>
  </property>
  </bean>
 
  <bean id="osmBuilder" class="org.opentripplanner.graph_builder.impl.osm.OpenStreetMapGraphBuilderImpl">
  <property name="provider">
  <bean class="org.opentripplanner.openstreetmap.impl.AnyFileBasedOpenStreetMapProviderImpl">
  <property name="path" value="C:\Users\Madoka\Documents\canberra.osm" />
  </bean>
  </property>
  </bean>
 
  <bean id="transitStreetLink" class="org.opentripplanner.graph_builder.impl.TransitToStreetNetworkGraphBuilderImpl" />
  <bean id="optimizeTransit" class="org.opentripplanner.graph_builder.impl.OptimizeTransitGraphBuilderImpl" />
 
  <bean id="graphBuilderTask" class="org.opentripplanner.graph_builder.GraphBuilderTask">
  <property name="graphBundle" ref="graphBundle" />
  <property name="graphBuilders">
  <list>
  <!-- GTFS comes before OSM, because we use the loaded set of stops to determine our OSM coverage -->
  <ref bean="gtfsBuilder" />
  <ref bean="osmBuilder" />
  <ref bean="transitStreetLink" />
  <ref bean="optimizeTransit" />
  </list>
  </property>
  <property name="modes">
  <list>
  <bean class="org.opentripplanner.routing.core.TraverseOptions">
  <property name="mode" value="WALK" />
  <property name="optimize" value="QUICK" />
  </bean>
  </list>
  </property>
  <property name="contractionFactor" value="0.97" />
  </bean>
  </beans>