otm-sim

Open Traffic Models - A framework for hybrid traffic simulation

View the Project on GitHub

Installation

OTM uses Java 11.0.5

Direct download

You can obtain OTM as a jar file here. Download the most recent large file of the form:

otm-sim-1.0-<date>.<time>-<number>-jar-with-dependencies.jar

Follow these steps if you wish to build OTM from the source code.

  1. Install Apache Maven.
  2. Add OTM’s Maven repository profile to your Maven settings file: ~/.m2/settings.xml:
     <profile>
         <id>myMavenRepoOTM</id>
         <activation>
             <property>
                 <name>!doNotUseMyMavenRepo</name>
             </property>
         </activation>
         <properties>
             <myMavenRepoOTMReadUrl>https://mymavenrepo.com/repo/XtcMAROnIu3PyiMCmbdY/</myMavenRepoOTMReadUrl>
         </properties>
     </profile>
    

    If you do not have ~/.m2/settings.xml then you can use this one.

  3. Install:
    mvn clean install -DskipTests