Newer
Older
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
{
"cells": [
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"include(\"../RidePooling/src/RidePooling.jl\")\n",
"RP = RidePooling"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Test Run"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"ARGS = []\n",
"include(\"sim.jl\")"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Calculate route Matrices for all maps"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"\n",
"mapPath = \"./Maps/\"\n",
"matrixPath = mapPath*\"/route_matrices/\"\n",
"include(mapPath*\"maps.jl\")\n",
"for (specs, name) in mapToName\n",
" println(specs)\n",
" mymap=RP.get_map(specs)\n",
" RM=RP.calculate_route_matrix(mymap, savepath=name);\n",
"end"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Calculate t0 for maps"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Julia 1.7.2",
"language": "julia",
"name": "julia-1.7"
},
"language_info": {
"file_extension": ".jl",
"mimetype": "application/julia",
"name": "julia",
"version": "1.7.2"
},
"orig_nbformat": 4
},
"nbformat": 4,
"nbformat_minor": 2
}