-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathreferences.html
More file actions
120 lines (98 loc) · 5.56 KB
/
references.html
File metadata and controls
120 lines (98 loc) · 5.56 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<title>jsprit | java toolkit for rich VRPs and TSPs</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="jsprit is a java based, open source toolkit for solving rich traveling salesman (TSP) and vehicle routing problems (VRP)">
<meta name="keywords" content="vrp, tsp, vehicle routing, vehicle routing algorithm, open source, optimization"/>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="author" content="Stefan Schröder">
<link rel="shortcut icon" href="../../assets/ico/favicon.ico">
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/jumbotron-narrow.css" rel="stylesheet">
<link href="//netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="header">
<ul class="nav nav-pills">
<li><a href="index.html"><span class="glyphicon glyphicon-home"></span> Home</a></li>
<li class="active"><a href="references.html"> References</a></li>
<li><a href="contact.html"> Contact</a></li>
<li><a href="about.html"><span class="glyphicon glyphicon-user"></span> About</a></li>
<li><a href="https://github.com/jsprit/jsprit"><i class="fa fa-github"></i> View on GitHub</a></li>
</ul>
</div>
<div class="page-header">
<h1>References</h1>
<p class="lead">An excerpt of great projects using <strong>jsprit</strong></p>
</div>
<p>If you use jsprit and you like your organisation to be listed here, please send your
details to <em>info@jspr.it</em></p>
<hr>
<h3>MATSim</h3>
<div class="row">
<div class="col-md-8">
<p><em>Freight modeling and policy analysis</em></p>
MATSim provides a framework to implement large-scale agent-based transport simulations.
A freight plugin integrates <strong>jsprit</strong> to model logistics decisions of freight carrier agents.<br>
</div>
<div class="col-md-4">
<a href="http://www.matsim.org"><img src="img/matsim_logo_blue.png" alt="MATSim"></a>
<p></p><p>Multi Agent Transport Simulation
</div>
</div>
<hr>
<h3>ODL-Studio</h3>
<p><em>World's first complete open source vehicle routing & scheduling system</em></p>
<div class="row">
<div class="col-md-4"><a href="http://www.opendoorlogistics.com/"><img src="img/odl.png" alt="ODL Studio" width="300" height="180"></a></div>
<div class="col-md-8">
Open Door Logistics Studio is an easy-to-use standalone open source application for performing (a) geographic analysis of your customer base, (b) sales territory design and (c) vehicle fleet scheduling.
<p>By integrating the <strong>jsprit</strong> vehicle routing software toolkit into their flagship ODL Studio application,
Open Door Logistics is the world's first complete open source vehicle routing & scheduling system.
The <strong>jsprit</strong> toolkit models many complex vehicle routing problems and ODL Studio provides the data editing,
exporting, geocoding, importing, mapping, reporting and route editing capabilities
needed by end-users for a stand-alone, fully functional system.
</div>
</div>
<hr>
<h3>GraphHopper</h3>
<div class="row">
<div class="col-md-8">
<p><em>GraphHopper Tour Optimization</em></p>
GraphHopper is a fast and flexible Directions API for car, bike and more. It is one of the world's
famous routing engines using open street map data. It uses <strong>jsprit</strong> for its
<a href="https://github.com/graphhopper/directions-api/blob/master/README.md#route-optimization-api">Route Optimization API</a> to solve
various traveling salesman and vehicle routing problems as web service.
It has an easy-to-use json API and is really fast.<br>
</div>
<div class="col-md-4">
<p> </p>
<a href="https://graphhopper.com/"><img src="img/graphhopper.png" alt="GraphHopper"></a>
</div>
</div>
<hr>
<h3>Rickshaw</h3>
<p><em>Rickshaw is a same-day local delivery platform</em></p>
<div class="row">
<div class="col-md-4"><a href="https://gorickshaw.com/"><img src="img/rickshaw.png" alt="Rickshaw" width="300" height="180">></a></div>
<div class="col-md-8">
Rickshaw makes it simple for businesses to provide fast,
dependable, high-touch deliveries to their customers. They use smart algorithms and savvy mobile apps for
dispatch, routing, and tracking to ensure a high success rate and delighted customers.
Rickshaw uses <strong>jsprit</strong> nightly to plan vehicle routes for the following day.
</div>
</div>
<div class="footer">
<p>© jsprit 2014</p>
</div>
</div> <!-- /container -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
</body>
</html>