(Some notes on useful URLs to view/test)
(better notes about building graphs, OSM data)
Line 1: Line 1:
See also [[OSSTIP/Project blog#First tests of OpenTripPlanner]] for some results here ...
== 1) Initial install of OTP ==
== 1) Initial install of OTP ==


Line 5: Line 7:
However, if you want to do more advanced 'batch analyst' functionality, this may mean installing the development version of OTP in an environment like Eclipse - see [[OSSTIP/Notes on getting OpenTripPlanner Analyst working]].
However, if you want to do more advanced 'batch analyst' functionality, this may mean installing the development version of OTP in an environment like Eclipse - see [[OSSTIP/Notes on getting OpenTripPlanner Analyst working]].


== 2) Building the Melbourne routing network graph - relevant section of the Graph builder config file ==
== 2) Download OpenStreetMap data ==
 
Second main step was downloading and saving a copy of relevant OSM data. In my case, I grabbed this from 'Metro Extracts' website - http://metro.teczno.com/#melbourne - was less than 50MB download but 200MB or so when unzipped. See [[OSSTIP/WP1#OpenStreetMap data]] for more info.
 
== 3) Building the Melbourne routing network graph and start the server ==


In the case of Melbourne, we have 3 different [[GTFS]] files, for trains, trams, and buses. So in the GTFS specification section you need to list all of them, for example:
As per instructions on https://github.com/openplans/OpenTripPlanner/wiki/FiveMinute, specify how to build the graph in the XML file, build it, then start the server.
 
=== relevant section of the Graph builder config file ===
 
In the case of Melbourne, we have 3 different [[GTFS]] files, for trains, trams, and buses.  
I think I also had to change the "URL" sections to "path" in the XML since they're all local files.
See https://github.com/openplans/OpenTripPlanner/wiki/GraphBuilder#example-2-using-multiple-local-gtfs-files for an example.
 
So in the GTFS specification section for Melbourne using all three GTFS files, my section looked like:


<pre>
<pre>
Line 46: Line 60:
</pre>
</pre>


== 3) Open up the web applications to view/analyse results ==
https://github.com/openplans/OpenTripPlanner/wiki/GraphBuilder has more detail, in case we need to do more advanced stuff later on.
 
== 4) Open up the web applications to view/analyse results ==


Here's some relevant links I use while checking/working on the data, **with all the web applications installed and running locally - these won't work if you're running somewhere else**:
Here's some relevant links I use while checking/working on the data, **with all the web applications installed and running locally - these won't work if you're running somewhere else**:

Revision as of 02:58, 15 August 2013

See also OSSTIP/Project blog#First tests of OpenTripPlanner for some results here ...

1) Initial install of OTP

I've found that the initial pre-built packages work OK for basic OTP routing on a local machine, and also display of some of the basic 'analyst' features like Travel time maps. I followed the 5 minute intro instructions on the OTP Wiki initially.

However, if you want to do more advanced 'batch analyst' functionality, this may mean installing the development version of OTP in an environment like Eclipse - see OSSTIP/Notes on getting OpenTripPlanner Analyst working.

2) Download OpenStreetMap data

Second main step was downloading and saving a copy of relevant OSM data. In my case, I grabbed this from 'Metro Extracts' website - http://metro.teczno.com/#melbourne - was less than 50MB download but 200MB or so when unzipped. See OSSTIP/WP1#OpenStreetMap data for more info.

3) Building the Melbourne routing network graph and start the server

As per instructions on https://github.com/openplans/OpenTripPlanner/wiki/FiveMinute, specify how to build the graph in the XML file, build it, then start the server.

relevant section of the Graph builder config file

In the case of Melbourne, we have 3 different GTFS files, for trains, trams, and buses. I think I also had to change the "URL" sections to "path" in the XML since they're all local files. See https://github.com/openplans/OpenTripPlanner/wiki/GraphBuilder#example-2-using-multiple-local-gtfs-files for an example.

So in the GTFS specification section for Melbourne using all three GTFS files, my section looked like:

      <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="/Users/pds_phd/Dropbox/PhD-TechnicalProjectWork/OSSTIP_Common/GIS-Network-Data-Melb/GTFS-ExtractedData-201307/melb-train-gtfs.zip" />
                            <property name="defaultAgencyId" value="30" />
                            <property name="defaultBikesAllowed" value="true" />
                        </bean>
                        <bean class="org.opentripplanner.graph_builder.model.GtfsBundle">
                            <property name="path" value="/Users/pds_phd/Dropbox/PhD-TechnicalProjectWork/OSSTIP_Common/GIS-Network-Data-Melb/GTFS-ExtractedData-201307/melb-tram-gtfs.zip" />
                            <property name="defaultBikesAllowed" value="false" />
                            <property name="defaultAgencyId" value="32" />
                        </bean>
                        <bean class="org.opentripplanner.graph_builder.model.GtfsBundle">
                            <property name="path" value="/Users/pds_phd/Dropbox/PhD-TechnicalProjectWork/OSSTIP_Common/GIS-Network-Data-Melb/GTFS-ExtractedData-201307/melb-bus-gtfs.zip" />
                            <property name="defaultBikesAllowed" value="false" />
                            <property name="defaultAgencyId" value="34" />
                        </bean>
                    </list>
                </property>
            </bean>

and as suggested above, if you download a local copy of a Melbourne OSM file, then my section looked like this:

   <property name="provider">
            <bean class="org.opentripplanner.openstreetmap.impl.AnyFileBasedOpenStreetMapProviderImpl">
                <property name="path" value="/Users/Shared/GIS-Projects-General/OSM_Datasets/OSM-Melb-Large-FromMetroExtracts.osm" />
            </bean>
   </property>

https://github.com/openplans/OpenTripPlanner/wiki/GraphBuilder has more detail, in case we need to do more advanced stuff later on.

4) Open up the web applications to view/analyse results

Here's some relevant links I use while checking/working on the data, **with all the web applications installed and running locally - these won't work if you're running somewhere else**:

Cookies help us deliver our services. By using our services, you agree to our use of cookies.