forked from opentripplanner/opentripplanner.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (78 loc) · 3.37 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<html>
<head>
<title>OpenTripPlanner</title>
<link rel="icon" type="image/png" href="otp-logo-16px.png" sizes="16x16" />
<link rel="icon" type="image/png" href="otp-logo-32px.png" sizes="32x32" />
<link rel="icon" type="image/png" href="otp-logo-64px.png" sizes="64x64" />
<link rel="icon" type="image/svg+xml" href="otp-logo.svg" />
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.min.css">
<style media="screen" type="text/css">
body {
font: 12pt helvetica, sans-serif;
text-align: center;
box-align: center;
}
h1 {
font: 30pt helvetica, sans-serif;
font-weight: bold;
margin: 15pt;
}
h2 {
font: 17pt helvetica, sans-serif;
margin: 8pt;
}
.nav {
list-style-type: none;
margin: 0;
padding: 0;
text-align: center;
}
.nav li {
display: inline;
}
.nav li a {
display: inline-block;
padding: 10px;
overflow: hidden;
background-color: none;
text-decoration: none;
color: #3B7BBA;
}
li a:hover {
background-color: #DDD;
}
.text-column {
align: center;
margin: 0 auto;
max-width: 500pt;
}
p {
text-align: justify;
margin: 12pt 20pt;
}
</style>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','http://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-45854426-2', 'opentripplanner.org');
ga('send', 'pageview');
</script>
</head>
<body>
<img src="otp-logo.svg" width=256px height=256px/>
<h1>OpenTripPlanner</h1>
<h2>Multimodal Trip Planning</h2>
<ul class="nav">
<li><a href="https://github.com/opentripplanner"><i class="fa fa-code"></i> Code</a></li>
<li><a href="https://docs.opentripplanner.org/en/dev-2.x/"><i class="fa fa-info"></i> Docs</a></li>
<li><a href="https://docs.opentripplanner.org/en/dev-2.x/#getting-help"><i class="fa fa-question"></i> Support</a></li>
<li><a href="https://docs.opentripplanner.org/en/dev-2.x/#product-overview"><i class="fa fa-question"></i> Product Overview</a></li>
</ul>
<div class="text-column">
<p>OpenTripPlanner (OTP) is a family of open source software projects that provide passenger information and transportation network analysis services. The core server-side Java component finds itineraries combining transit, pedestrian, bicycle, and car segments through networks built from widely available, open standard OpenStreetMap and GTFS data. This service can be accessed directly via its web API or using a range of Javascript client libraries, including modern reactive modular components targeting mobile platforms.</p>
<p>Launched in 2009, the project has attracted a thriving community of users and developers, receiving support from public agencies, startups, and transportation consultancies alike. OTP powers regional and national journey planning services around the world, as well as several popular multi-city mobile applications.</p>
</div>
</body>
</html>