Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 | 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x | import { RouteInfo, ClientKey } from 'types';
export type Benefits = {
de: string[];
nl?: string[];
en?: string[];
};
export const routes = {
age: [
{
id: 0,
name: 'Emden - Borkum',
portFrom: 47,
portTo: 66,
returnTrip: 1,
tripType: 1,
vehicleIsPossible: true,
excursion: false,
offWeekDay: [],
isSeasonTrip: false
},
{
id: 1,
name: 'Borkum - Emden',
portFrom: 66,
portTo: 47,
returnTrip: 0,
tripType: 1,
vehicleIsPossible: true,
excursion: false,
offWeekDay: [],
isSeasonTrip: false
},
{
id: 2,
name: 'Eemshaven - Borkum',
portFrom: 2,
portTo: 66,
returnTrip: 3,
tripType: 1,
vehicleIsPossible: true,
excursion: false,
offWeekDay: [],
isSeasonTrip: false
},
{
id: 3,
name: 'Borkum - Eemshaven',
portFrom: 66,
portTo: 2,
returnTrip: 2,
tripType: 1,
vehicleIsPossible: true,
excursion: false,
offWeekDay: [],
isSeasonTrip: false
},
{
id: 4,
name: 'Ditzum - Borkum',
portFrom: 26,
portTo: 66,
returnTrip: 4,
returnTripName: 'Borkum - Ditzum',
tripType: 1,
vehicleIsPossible: false,
excursion: true,
offWeekDay: [1, 2, 3, 4, 5, 6],
isSeasonTrip: true,
seasonStartDay: 5,
seasonStartMonth: 7,
seasonFinishDay: 18,
seasonFinishMonth: 10
}
],
ce: [
{
id: 0,
name: 'Cuxhaven - Helgoland',
portFrom: 89,
portTo: 77,
returnTrip: 1,
tripType: 2,
vehicleIsPossible: false,
excursion: false,
offWeekDay: [],
isSeasonTrip: false
},
{
id: 1,
name: 'Helgoland - Cuxhaven',
portFrom: 77,
portTo: 89,
returnTrip: 0,
tripType: 2,
vehicleIsPossible: false,
excursion: false,
offWeekDay: [],
isSeasonTrip: false
},
{
id: 2,
name: 'Bremerhaven - Helgoland',
portFrom: 120,
portTo: 77,
returnTrip: 3,
tripType: 2,
vehicleIsPossible: false,
excursion: false,
offWeekDay: [],
isSeasonTrip: false
},
{
id: 3,
name: 'Helgoland - Bremerhaven',
portFrom: 77,
portTo: 120,
returnTrip: 2,
tripType: 2,
vehicleIsPossible: false,
excursion: false,
offWeekDay: [],
isSeasonTrip: false
},
{
id: 4,
name: 'Hooksiel - Helgoland',
portFrom: 83,
portTo: 77,
returnTrip: 5,
tripType: 2,
vehicleIsPossible: false,
excursion: false,
offWeekDay: [],
isSeasonTrip: false
},
{
id: 5,
name: 'Helgoland - Hooksiel',
portFrom: 77,
portTo: 83,
returnTrip: 4,
tripType: 2,
vehicleIsPossible: false,
excursion: false,
offWeekDay: [],
isSeasonTrip: false
},
{
id: 6,
name: 'Cuxhaven - Neuwerk',
portFrom: 89,
portTo: 53,
returnTrip: 7,
tripType: 1,
vehicleIsPossible: false,
excursion: false,
offWeekDay: [],
isSeasonTrip: false
},
{
id: 7,
name: 'Neuwerk - Cuxhaven',
portFrom: 53,
portTo: 89,
returnTrip: 6,
tripType: 1,
vehicleIsPossible: false,
excursion: false,
offWeekDay: [],
isSeasonTrip: false
}
]
};
const AGE_CATAMARAN: Benefits = {
de: [
'Erster dt. High-Tech-Katamaran',
'Sitzplatzgarantie',
'Inkl. Inselbahn von/zum Hafen',
'Inkl. Handgepäck und Koffer'
],
nl: [
'Eerste Duitse high-tech catamaran',
'Zitplaatsgarantie',
'Incl. treinrit van/naar de haven',
'Incl. handbagage en koffer'
]
};
const AGE_FERRY: Benefits = {
de: [
'Großzügiges Sonnendeck',
'Inkl. Handgepäck und Koffer',
'Großes Gastronomieangebot',
'Inkl. Inselbahn von/zum Hafen'
],
nl: [
'Ruim zonnedek',
'Incl. handbagage en koffer',
'Groot horeca-aanbod',
'Incl. treinrit van/naar de haven'
]
};
const CE_CUXHAVEN: Benefits = {
de: [
'Parken direkt am Schiffsanleger',
'Umweltfreundlicher Flüssiggasantrieb',
'Stabilisatoren für eine ruhigere Reise',
'Kinderspielbereich'
]
};
const CE_BREMERHAVEN: Benefits = {
de: [
'Fahrt vorbei am größten zusammenhängenden Containerterminal der Welt',
'entlang der Fahrtroute liegt der Leuchtturm "Roter Sand"',
'Gastronomie an Bord',
'Abfahrt ab "Seebäderkaje"'
]
};
const CE_HOOKSIEL: Benefits = {
de: [
'Abfahrt von Hooksiel "Außenhafen"',
'Fahrzeit ca. 2 Stunden',
'Kostenloses Parken direkt am Schiff',
'Gastronomie an Bord'
]
};
const CE_NEUWERK: Benefits = {
de: [
'Gastronomie an Bord',
'Fahrzeit ca. 2 Stunden',
'Großraumparkplatz "Am Alten Hafen"',
'Die Abfahrt erfolgt von der Innenkante des Anlegers "Alte Liebe"'
]
};
export const tripMeta = {
age: [
{
portFrom: 47,
portTo: 66,
craftType: 'VEHICLE_FERRY',
duration: 130,
benefits: AGE_FERRY
},
{
portFrom: 66,
portTo: 47,
craftType: 'VEHICLE_FERRY',
duration: 130,
benefits: AGE_FERRY
},
{
portFrom: 47,
portTo: 66,
craftType: 'CATAMARAN',
duration: 60,
benefits: AGE_CATAMARAN
},
{
portFrom: 66,
portTo: 47,
craftType: 'CATAMARAN',
duration: 60,
benefits: AGE_CATAMARAN
},
{
portFrom: 47,
portTo: 66,
craftType: 'PERSON_FERRY',
duration: 130,
benefits: AGE_FERRY
},
{
portFrom: 66,
portTo: 47,
craftType: 'PERSON_FERRY',
duration: 130,
benefits: AGE_FERRY
},
{
portFrom: 2,
portTo: 66,
craftType: 'VEHICLE_FERRY',
duration: 50,
benefits: AGE_FERRY
},
{
portFrom: 66,
portTo: 2,
craftType: 'VEHICLE_FERRY',
duration: 50,
benefits: AGE_FERRY
},
{
portFrom: 26,
portTo: 66,
craftType: 'CATAMARAN',
duration: 90,
benefits: AGE_CATAMARAN
},
{
portFrom: 66,
portTo: 26,
craftType: 'CATAMARAN',
duration: 90,
benefits: AGE_CATAMARAN
}
],
ce: [
{
portFrom: 89,
portTo: 77,
craftType: 'PERSON_FERRY',
duration: 120,
benefits: CE_CUXHAVEN
},
{
portFrom: 77,
portTo: 89,
craftType: 'PERSON_FERRY',
duration: 120,
benefits: CE_CUXHAVEN
},
{
portFrom: 120,
portTo: 77,
craftType: 'PERSON_FERRY',
duration: 180,
benefits: CE_BREMERHAVEN
},
{
portFrom: 77,
portTo: 120,
craftType: 'PERSON_FERRY',
duration: 180,
benefits: CE_BREMERHAVEN
},
{
portFrom: 83,
portTo: 77,
craftType: 'PERSON_FERRY',
duration: 120,
benefits: CE_HOOKSIEL
},
{
portFrom: 77,
portTo: 83,
craftType: 'PERSON_FERRY',
duration: 120,
benefits: CE_HOOKSIEL
},
{
portFrom: 89,
portTo: 53,
craftType: 'PERSON_FERRY',
duration: 120,
benefits: CE_NEUWERK
},
{
portFrom: 53,
portTo: 89,
craftType: 'PERSON_FERRY',
duration: 120,
benefits: CE_NEUWERK
}
]
};
const key = process.env.REACT_APP_CLIENT_KEY as ClientKey || 'age';
export default routes[key] as RouteInfo[];
export const tripInfo = tripMeta[key];
|