zwift-data 1.26.0 → 1.28.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/cjs/bikeShoes.js +5 -0
- package/lib/cjs/headgears.js +10 -0
- package/lib/cjs/jerseys.js +16 -0
- package/lib/cjs/paintJobs.js +1 -1
- package/lib/cjs/routes.js +206 -6
- package/lib/cjs/runShirts.js +2 -0
- package/lib/cjs/runShoes.js +5 -0
- package/lib/cjs/runShorts.js +1 -0
- package/lib/cjs/segments.js +189 -1
- package/lib/esm/bikeShoes.js +5 -0
- package/lib/esm/headgears.js +10 -0
- package/lib/esm/jerseys.js +16 -0
- package/lib/esm/paintJobs.js +1 -1
- package/lib/esm/routes.js +206 -6
- package/lib/esm/runShirts.js +2 -0
- package/lib/esm/runShoes.js +5 -0
- package/lib/esm/runShorts.js +1 -0
- package/lib/esm/segments.js +189 -1
- package/lib/types/types.d.ts +8 -0
- package/package.json +2 -2
package/lib/cjs/segments.js
CHANGED
|
@@ -9,6 +9,8 @@ exports.segments = [
|
|
|
9
9
|
"france",
|
|
10
10
|
0.212,
|
|
11
11
|
"https://whatsonzwift.com/world/france/segment/ballon-sprint/forward",
|
|
12
|
+
"ballon-sprint",
|
|
13
|
+
undefined,
|
|
12
14
|
undefined,
|
|
13
15
|
undefined,
|
|
14
16
|
undefined,
|
|
@@ -21,6 +23,8 @@ exports.segments = [
|
|
|
21
23
|
"france",
|
|
22
24
|
0.325,
|
|
23
25
|
"https://whatsonzwift.com/world/france/segment/ballon-sprint-reverse/reverse",
|
|
26
|
+
"ballon-sprint-reverse",
|
|
27
|
+
undefined,
|
|
24
28
|
24700963,
|
|
25
29
|
"https://www.strava.com/segments/24700963",
|
|
26
30
|
undefined,
|
|
@@ -33,6 +37,8 @@ exports.segments = [
|
|
|
33
37
|
"richmond",
|
|
34
38
|
0.283,
|
|
35
39
|
"https://whatsonzwift.com/world/richmond/segment/broad-st/forward",
|
|
40
|
+
"broad-street",
|
|
41
|
+
undefined,
|
|
36
42
|
12128880,
|
|
37
43
|
"https://www.strava.com/segments/12128880",
|
|
38
44
|
undefined,
|
|
@@ -49,6 +55,8 @@ exports.segments = [
|
|
|
49
55
|
undefined,
|
|
50
56
|
undefined,
|
|
51
57
|
undefined,
|
|
58
|
+
undefined,
|
|
59
|
+
undefined,
|
|
52
60
|
],
|
|
53
61
|
[
|
|
54
62
|
"Fuego Flats",
|
|
@@ -57,6 +65,8 @@ exports.segments = [
|
|
|
57
65
|
"watopia",
|
|
58
66
|
0.496,
|
|
59
67
|
"https://whatsonzwift.com/world/watopia/segment/fuego-flats/forward",
|
|
68
|
+
"fuego-flats",
|
|
69
|
+
undefined,
|
|
60
70
|
20350107,
|
|
61
71
|
"https://www.strava.com/segments/20350107",
|
|
62
72
|
undefined,
|
|
@@ -69,6 +79,8 @@ exports.segments = [
|
|
|
69
79
|
"watopia",
|
|
70
80
|
7.1,
|
|
71
81
|
"https://whatsonzwift.com/world/watopia/segment/fuego-flats-reverse/reverse",
|
|
82
|
+
"fuego-flats-reverse",
|
|
83
|
+
undefined,
|
|
72
84
|
20350066,
|
|
73
85
|
"https://www.strava.com/segments/20350066",
|
|
74
86
|
undefined,
|
|
@@ -81,6 +93,8 @@ exports.segments = [
|
|
|
81
93
|
"innsbruck",
|
|
82
94
|
0.3,
|
|
83
95
|
"https://whatsonzwift.com/world/innsbruck/segment/sprint/forward",
|
|
96
|
+
"innsbruck-sprint",
|
|
97
|
+
undefined,
|
|
84
98
|
undefined,
|
|
85
99
|
undefined,
|
|
86
100
|
undefined,
|
|
@@ -93,6 +107,8 @@ exports.segments = [
|
|
|
93
107
|
"innsbruck",
|
|
94
108
|
0.2,
|
|
95
109
|
"https://whatsonzwift.com/world/innsbruck/segment/sprint/reverse",
|
|
110
|
+
"innsbruck-sprint-reverse",
|
|
111
|
+
undefined,
|
|
96
112
|
undefined,
|
|
97
113
|
undefined,
|
|
98
114
|
undefined,
|
|
@@ -105,6 +121,8 @@ exports.segments = [
|
|
|
105
121
|
"paris",
|
|
106
122
|
0.148,
|
|
107
123
|
"https://whatsonzwift.com/world/paris/segment/lutece-sprint/forward",
|
|
124
|
+
"lutece-sprint",
|
|
125
|
+
undefined,
|
|
108
126
|
undefined,
|
|
109
127
|
undefined,
|
|
110
128
|
undefined,
|
|
@@ -117,6 +135,8 @@ exports.segments = [
|
|
|
117
135
|
"paris",
|
|
118
136
|
0.225,
|
|
119
137
|
"https://whatsonzwift.com/world/paris/segment/lutece-reverse-sprint/reverse",
|
|
138
|
+
"lutece-sprint-reverse",
|
|
139
|
+
undefined,
|
|
120
140
|
undefined,
|
|
121
141
|
undefined,
|
|
122
142
|
undefined,
|
|
@@ -129,6 +149,8 @@ exports.segments = [
|
|
|
129
149
|
"france",
|
|
130
150
|
0.338,
|
|
131
151
|
"https://whatsonzwift.com/world/france/segment/marina-sprint/forward",
|
|
152
|
+
"marina-sprint",
|
|
153
|
+
undefined,
|
|
132
154
|
24710590,
|
|
133
155
|
"https://www.strava.com/segments/24710590",
|
|
134
156
|
undefined,
|
|
@@ -141,6 +163,8 @@ exports.segments = [
|
|
|
141
163
|
"france",
|
|
142
164
|
0.193,
|
|
143
165
|
"https://whatsonzwift.com/world/france/segment/marina-sprint-reverse/reverse",
|
|
166
|
+
"marina-sprint-reverse",
|
|
167
|
+
undefined,
|
|
144
168
|
undefined,
|
|
145
169
|
undefined,
|
|
146
170
|
undefined,
|
|
@@ -153,6 +177,8 @@ exports.segments = [
|
|
|
153
177
|
"richmond",
|
|
154
178
|
0.221,
|
|
155
179
|
"https://whatsonzwift.com/world/richmond/segment/sprint/forward",
|
|
180
|
+
"richmond-sprint",
|
|
181
|
+
undefined,
|
|
156
182
|
12128762,
|
|
157
183
|
"https://www.strava.com/segments/12128762",
|
|
158
184
|
undefined,
|
|
@@ -165,6 +191,8 @@ exports.segments = [
|
|
|
165
191
|
"richmond",
|
|
166
192
|
0.203,
|
|
167
193
|
"https://whatsonzwift.com/world/richmond/segment/sprint/reverse",
|
|
194
|
+
"richmond-sprint-reverse",
|
|
195
|
+
undefined,
|
|
168
196
|
undefined,
|
|
169
197
|
undefined,
|
|
170
198
|
undefined,
|
|
@@ -177,6 +205,8 @@ exports.segments = [
|
|
|
177
205
|
"new-york",
|
|
178
206
|
0.15,
|
|
179
207
|
"https://whatsonzwift.com/world/new-york/segment/ny-sprint/forward",
|
|
208
|
+
"ny-sprint",
|
|
209
|
+
undefined,
|
|
180
210
|
undefined,
|
|
181
211
|
undefined,
|
|
182
212
|
-4.3,
|
|
@@ -189,6 +219,8 @@ exports.segments = [
|
|
|
189
219
|
"new-york",
|
|
190
220
|
0.23,
|
|
191
221
|
"https://whatsonzwift.com/world/new-york/segment/ny-sprint/reverse",
|
|
222
|
+
"ny-sprint-reverse",
|
|
223
|
+
undefined,
|
|
192
224
|
undefined,
|
|
193
225
|
undefined,
|
|
194
226
|
undefined,
|
|
@@ -201,6 +233,8 @@ exports.segments = [
|
|
|
201
233
|
"france",
|
|
202
234
|
0.333,
|
|
203
235
|
"https://whatsonzwift.com/world/france/segment/pave-sprint/forward",
|
|
236
|
+
"pave-sprint",
|
|
237
|
+
undefined,
|
|
204
238
|
undefined,
|
|
205
239
|
undefined,
|
|
206
240
|
undefined,
|
|
@@ -213,6 +247,8 @@ exports.segments = [
|
|
|
213
247
|
"france",
|
|
214
248
|
0.334,
|
|
215
249
|
"https://whatsonzwift.com/world/france/segment/pave-sprint-reverse/reverse",
|
|
250
|
+
"pave-sprint-reverse",
|
|
251
|
+
undefined,
|
|
216
252
|
undefined,
|
|
217
253
|
undefined,
|
|
218
254
|
undefined,
|
|
@@ -225,6 +261,8 @@ exports.segments = [
|
|
|
225
261
|
"london",
|
|
226
262
|
0.2,
|
|
227
263
|
"https://whatsonzwift.com/world/london/segment/sprint/forward",
|
|
264
|
+
"london-sprint",
|
|
265
|
+
undefined,
|
|
228
266
|
12749402,
|
|
229
267
|
"https://www.strava.com/segments/12749402",
|
|
230
268
|
undefined,
|
|
@@ -237,6 +275,8 @@ exports.segments = [
|
|
|
237
275
|
"london",
|
|
238
276
|
0.2,
|
|
239
277
|
"https://whatsonzwift.com/world/london/segment/sprint/reverse",
|
|
278
|
+
"london-sprint-reverse",
|
|
279
|
+
undefined,
|
|
240
280
|
12749377,
|
|
241
281
|
"https://www.strava.com/segments/12749377",
|
|
242
282
|
undefined,
|
|
@@ -249,6 +289,8 @@ exports.segments = [
|
|
|
249
289
|
"watopia",
|
|
250
290
|
0.36,
|
|
251
291
|
"https://whatsonzwift.com/world/watopia/segment/sprint/forward",
|
|
292
|
+
"sprint_watopia-sprint",
|
|
293
|
+
undefined,
|
|
252
294
|
12109305,
|
|
253
295
|
"https://www.strava.com/segments/12109305",
|
|
254
296
|
undefined,
|
|
@@ -261,6 +303,8 @@ exports.segments = [
|
|
|
261
303
|
"watopia",
|
|
262
304
|
0.2,
|
|
263
305
|
"https://whatsonzwift.com/world/watopia/segment/sprint/reverse",
|
|
306
|
+
"watopia-sprint-reverse",
|
|
307
|
+
undefined,
|
|
264
308
|
12109228,
|
|
265
309
|
"https://www.strava.com/segments/12109228",
|
|
266
310
|
undefined,
|
|
@@ -273,6 +317,8 @@ exports.segments = [
|
|
|
273
317
|
"yorkshire",
|
|
274
318
|
0.25,
|
|
275
319
|
"https://whatsonzwift.com/world/yorkshire/segment/yorkshire-sprint/forward",
|
|
320
|
+
"yorkshire-sprint",
|
|
321
|
+
undefined,
|
|
276
322
|
undefined,
|
|
277
323
|
undefined,
|
|
278
324
|
undefined,
|
|
@@ -285,6 +331,8 @@ exports.segments = [
|
|
|
285
331
|
"yorkshire",
|
|
286
332
|
0.4,
|
|
287
333
|
"https://whatsonzwift.com/world/yorkshire/segment/yorkshire-sprint-reverse/reverse",
|
|
334
|
+
"yorkshire-sprint-reverse",
|
|
335
|
+
undefined,
|
|
288
336
|
21748007,
|
|
289
337
|
"https://www.strava.com/segments/21748007",
|
|
290
338
|
undefined,
|
|
@@ -297,6 +345,8 @@ exports.segments = [
|
|
|
297
345
|
"watopia",
|
|
298
346
|
12.44,
|
|
299
347
|
"https://whatsonzwift.com/world/watopia/segment/alpe-du-zwift/forward",
|
|
348
|
+
"alpe-du-zwift",
|
|
349
|
+
undefined,
|
|
300
350
|
17267489,
|
|
301
351
|
"https://www.strava.com/segments/17267489",
|
|
302
352
|
8.5,
|
|
@@ -309,6 +359,8 @@ exports.segments = [
|
|
|
309
359
|
"watopia",
|
|
310
360
|
9.49,
|
|
311
361
|
"https://whatsonzwift.com/world/watopia/segment/epic-kom/forward",
|
|
362
|
+
"epic-kom",
|
|
363
|
+
undefined,
|
|
312
364
|
16784833,
|
|
313
365
|
"https://www.strava.com/segments/16784833",
|
|
314
366
|
4,
|
|
@@ -321,6 +373,8 @@ exports.segments = [
|
|
|
321
373
|
"watopia",
|
|
322
374
|
6.27,
|
|
323
375
|
"https://whatsonzwift.com/world/watopia/segment/epic-kom/reverse",
|
|
376
|
+
"epic-kom-reverse",
|
|
377
|
+
undefined,
|
|
324
378
|
16784850,
|
|
325
379
|
"https://www.strava.com/segments/16784850",
|
|
326
380
|
6.3,
|
|
@@ -333,6 +387,8 @@ exports.segments = [
|
|
|
333
387
|
"watopia",
|
|
334
388
|
9.01,
|
|
335
389
|
"https://whatsonzwift.com/world/watopia/segment/hilly-loop/forward",
|
|
390
|
+
"hilly-loop",
|
|
391
|
+
undefined,
|
|
336
392
|
12118362,
|
|
337
393
|
"https://www.strava.com/segments/12118362",
|
|
338
394
|
undefined,
|
|
@@ -345,6 +401,8 @@ exports.segments = [
|
|
|
345
401
|
"watopia",
|
|
346
402
|
9.01,
|
|
347
403
|
"https://whatsonzwift.com/world/watopia/segment/hilly-loop/reverse",
|
|
404
|
+
"hilly-loop-reverse",
|
|
405
|
+
undefined,
|
|
348
406
|
12128037,
|
|
349
407
|
"https://www.strava.com/segments/12128037",
|
|
350
408
|
undefined,
|
|
@@ -357,6 +415,8 @@ exports.segments = [
|
|
|
357
415
|
"watopia",
|
|
358
416
|
7.8,
|
|
359
417
|
"https://whatsonzwift.com/world/watopia/segment/jungle-loop/forward",
|
|
418
|
+
"jungle-loop",
|
|
419
|
+
undefined,
|
|
360
420
|
16359371,
|
|
361
421
|
"https://www.strava.com/segments/16359371",
|
|
362
422
|
undefined,
|
|
@@ -369,6 +429,8 @@ exports.segments = [
|
|
|
369
429
|
"watopia",
|
|
370
430
|
7.8,
|
|
371
431
|
"https://whatsonzwift.com/world/watopia/segment/jungle-loop/reverse",
|
|
432
|
+
"jungle-loop-reverse",
|
|
433
|
+
undefined,
|
|
372
434
|
16359363,
|
|
373
435
|
"https://www.strava.com/segments/16359363",
|
|
374
436
|
undefined,
|
|
@@ -381,6 +443,8 @@ exports.segments = [
|
|
|
381
443
|
"watopia",
|
|
382
444
|
2.6,
|
|
383
445
|
"https://whatsonzwift.com/world/watopia/segment/titans-grove-kom/forward",
|
|
446
|
+
"titans-grove-kom",
|
|
447
|
+
undefined,
|
|
384
448
|
21343975,
|
|
385
449
|
"https://www.strava.com/segments/21343975",
|
|
386
450
|
2.2,
|
|
@@ -393,6 +457,8 @@ exports.segments = [
|
|
|
393
457
|
"watopia",
|
|
394
458
|
0.89,
|
|
395
459
|
"https://whatsonzwift.com/world/watopia/segment/titans-grove-kom/reverse",
|
|
460
|
+
"titans-grove-kom-reverse",
|
|
461
|
+
undefined,
|
|
396
462
|
21343961,
|
|
397
463
|
"https://www.strava.com/segments/21343961",
|
|
398
464
|
6.6,
|
|
@@ -405,6 +471,8 @@ exports.segments = [
|
|
|
405
471
|
"watopia",
|
|
406
472
|
4.2,
|
|
407
473
|
"https://whatsonzwift.com/world/watopia/segment/volcano/forward",
|
|
474
|
+
"volcano-circuit",
|
|
475
|
+
undefined,
|
|
408
476
|
14032406,
|
|
409
477
|
"https://www.strava.com/segments/14032406",
|
|
410
478
|
undefined,
|
|
@@ -417,6 +485,8 @@ exports.segments = [
|
|
|
417
485
|
"watopia",
|
|
418
486
|
4.2,
|
|
419
487
|
"https://whatsonzwift.com/world/watopia/segment/volcano/reverse",
|
|
488
|
+
"volcano-circuit-ccw",
|
|
489
|
+
undefined,
|
|
420
490
|
14032426,
|
|
421
491
|
"https://www.strava.com/segments/14032426",
|
|
422
492
|
undefined,
|
|
@@ -429,6 +499,8 @@ exports.segments = [
|
|
|
429
499
|
"watopia",
|
|
430
500
|
3.75,
|
|
431
501
|
"https://whatsonzwift.com/world/watopia/segment/volcano-kom/forward",
|
|
502
|
+
"volcano-kom",
|
|
503
|
+
undefined,
|
|
432
504
|
14270131,
|
|
433
505
|
"https://www.strava.com/segments/14270131",
|
|
434
506
|
3.2,
|
|
@@ -441,6 +513,8 @@ exports.segments = [
|
|
|
441
513
|
"watopia",
|
|
442
514
|
0.9,
|
|
443
515
|
"https://whatsonzwift.com/world/watopia/segment/zwift-kom/forward",
|
|
516
|
+
"zwift-kom",
|
|
517
|
+
undefined,
|
|
444
518
|
12109030,
|
|
445
519
|
"https://www.strava.com/segments/12109030",
|
|
446
520
|
5,
|
|
@@ -453,6 +527,8 @@ exports.segments = [
|
|
|
453
527
|
"watopia",
|
|
454
528
|
2.4,
|
|
455
529
|
"https://whatsonzwift.com/world/watopia/segment/zwift-kom/reverse",
|
|
530
|
+
"zwift-kom-reverse",
|
|
531
|
+
undefined,
|
|
456
532
|
12128029,
|
|
457
533
|
"https://www.strava.com/segments/12128029",
|
|
458
534
|
2,
|
|
@@ -465,6 +541,8 @@ exports.segments = [
|
|
|
465
541
|
"bologna",
|
|
466
542
|
8,
|
|
467
543
|
"https://whatsonzwift.com/world/bologna-tt/segment/bologna-tt/forward",
|
|
544
|
+
"bologna-tt",
|
|
545
|
+
undefined,
|
|
468
546
|
20560239,
|
|
469
547
|
"https://www.strava.com/segments/20560239",
|
|
470
548
|
2.8,
|
|
@@ -477,6 +555,8 @@ exports.segments = [
|
|
|
477
555
|
"new-york",
|
|
478
556
|
9.7,
|
|
479
557
|
"https://whatsonzwift.com/world/new-york/segment/central-park-loop/reverse",
|
|
558
|
+
undefined,
|
|
559
|
+
undefined,
|
|
480
560
|
19170661,
|
|
481
561
|
"https://www.strava.com/segments/19170661",
|
|
482
562
|
undefined,
|
|
@@ -489,6 +569,8 @@ exports.segments = [
|
|
|
489
569
|
"new-york",
|
|
490
570
|
1.4,
|
|
491
571
|
"https://whatsonzwift.com/world/new-york/segment/new-york-kom/forward",
|
|
572
|
+
"new-york-kom",
|
|
573
|
+
undefined,
|
|
492
574
|
19141090,
|
|
493
575
|
"https://www.strava.com/segments/19141090",
|
|
494
576
|
6.1,
|
|
@@ -501,6 +583,8 @@ exports.segments = [
|
|
|
501
583
|
"new-york",
|
|
502
584
|
1.1,
|
|
503
585
|
"https://whatsonzwift.com/world/new-york/segment/new-york-kom/reverse",
|
|
586
|
+
"new-york-kom-reverse",
|
|
587
|
+
undefined,
|
|
504
588
|
19141092,
|
|
505
589
|
"https://www.strava.com/segments/19141092",
|
|
506
590
|
5.7,
|
|
@@ -513,6 +597,8 @@ exports.segments = [
|
|
|
513
597
|
"richmond",
|
|
514
598
|
0.275,
|
|
515
599
|
"https://whatsonzwift.com/world/richmond/segment/23rd-st/forward",
|
|
600
|
+
"23rd-street",
|
|
601
|
+
undefined,
|
|
516
602
|
12128917,
|
|
517
603
|
"https://www.strava.com/segments/12128917",
|
|
518
604
|
10,
|
|
@@ -525,6 +611,8 @@ exports.segments = [
|
|
|
525
611
|
"richmond",
|
|
526
612
|
1.1,
|
|
527
613
|
"https://whatsonzwift.com/world/richmond/segment/23rd-st/reverse",
|
|
614
|
+
"23rd-street-reverse",
|
|
615
|
+
undefined,
|
|
528
616
|
22813206,
|
|
529
617
|
"https://www.strava.com/segments/22813206",
|
|
530
618
|
3.5,
|
|
@@ -537,6 +625,8 @@ exports.segments = [
|
|
|
537
625
|
"richmond",
|
|
538
626
|
0.644,
|
|
539
627
|
"https://whatsonzwift.com/world/richmond/segment/kom/forward",
|
|
628
|
+
"richmond-kom",
|
|
629
|
+
undefined,
|
|
540
630
|
12128826,
|
|
541
631
|
"https://www.strava.com/segments/12128826",
|
|
542
632
|
6.4,
|
|
@@ -549,6 +639,8 @@ exports.segments = [
|
|
|
549
639
|
"richmond",
|
|
550
640
|
0.7,
|
|
551
641
|
"https://whatsonzwift.com/world/richmond/segment/kom/reverse",
|
|
642
|
+
"richmond-kom-reverse",
|
|
643
|
+
undefined,
|
|
552
644
|
26935782,
|
|
553
645
|
"https://www.strava.com/segments/26935782",
|
|
554
646
|
3.4,
|
|
@@ -561,6 +653,8 @@ exports.segments = [
|
|
|
561
653
|
"richmond",
|
|
562
654
|
16.2,
|
|
563
655
|
"https://whatsonzwift.com/world/richmond/segment/uci-course/forward",
|
|
656
|
+
"2015-uci-worlds-course",
|
|
657
|
+
undefined,
|
|
564
658
|
12128718,
|
|
565
659
|
"https://www.strava.com/segments/12128718",
|
|
566
660
|
undefined,
|
|
@@ -573,6 +667,8 @@ exports.segments = [
|
|
|
573
667
|
"london",
|
|
574
668
|
2.4,
|
|
575
669
|
"https://whatsonzwift.com/world/london/segment/fox-hill/forward",
|
|
670
|
+
"fox-hill",
|
|
671
|
+
undefined,
|
|
576
672
|
16802545,
|
|
577
673
|
"https://www.strava.com/segments/16802545",
|
|
578
674
|
4.9,
|
|
@@ -585,6 +681,8 @@ exports.segments = [
|
|
|
585
681
|
"london",
|
|
586
682
|
3,
|
|
587
683
|
"https://whatsonzwift.com/world/london/segment/box-hill/reverse",
|
|
684
|
+
"box-hill",
|
|
685
|
+
undefined,
|
|
588
686
|
12744502,
|
|
589
687
|
"https://www.strava.com/segments/12744502",
|
|
590
688
|
4.3,
|
|
@@ -597,6 +695,8 @@ exports.segments = [
|
|
|
597
695
|
"london",
|
|
598
696
|
1.9,
|
|
599
697
|
"https://whatsonzwift.com/world/london/segment/leith-hill/forward",
|
|
698
|
+
"leith-hill",
|
|
699
|
+
undefined,
|
|
600
700
|
16781411,
|
|
601
701
|
"https://www.strava.com/segments/16781411",
|
|
602
702
|
6.8,
|
|
@@ -609,6 +709,8 @@ exports.segments = [
|
|
|
609
709
|
"london",
|
|
610
710
|
4.34,
|
|
611
711
|
"https://whatsonzwift.com/world/london/segment/keith-hill/reverse",
|
|
712
|
+
"keith-hill",
|
|
713
|
+
undefined,
|
|
612
714
|
16781407,
|
|
613
715
|
"https://www.strava.com/segments/16781407",
|
|
614
716
|
5,
|
|
@@ -621,6 +723,8 @@ exports.segments = [
|
|
|
621
723
|
"london",
|
|
622
724
|
14.96,
|
|
623
725
|
"https://whatsonzwift.com/world/london/segment/london-loop/reverse",
|
|
726
|
+
"london-loop",
|
|
727
|
+
undefined,
|
|
624
728
|
12749649,
|
|
625
729
|
"https://www.strava.com/segments/12749649",
|
|
626
730
|
undefined,
|
|
@@ -633,6 +737,8 @@ exports.segments = [
|
|
|
633
737
|
"france",
|
|
634
738
|
0.42,
|
|
635
739
|
"https://whatsonzwift.com/world/france/segment/aqueduc-kom/forward",
|
|
740
|
+
"aqueduc-kom",
|
|
741
|
+
undefined,
|
|
636
742
|
24700976,
|
|
637
743
|
"https://www.strava.com/segments/24700976",
|
|
638
744
|
3,
|
|
@@ -645,6 +751,8 @@ exports.segments = [
|
|
|
645
751
|
"france",
|
|
646
752
|
0.403,
|
|
647
753
|
"https://whatsonzwift.com/world/france/segment/aqueduc-kom/reverse",
|
|
754
|
+
"aqueduc-kom-reverse",
|
|
755
|
+
undefined,
|
|
648
756
|
24701010,
|
|
649
757
|
"https://www.strava.com/segments/24701010",
|
|
650
758
|
5,
|
|
@@ -657,6 +765,8 @@ exports.segments = [
|
|
|
657
765
|
"france",
|
|
658
766
|
2.7,
|
|
659
767
|
"https://whatsonzwift.com/world/france/segment/petit-kom/forward",
|
|
768
|
+
"petit-kom",
|
|
769
|
+
undefined,
|
|
660
770
|
24690967,
|
|
661
771
|
"https://www.strava.com/segments/24690967",
|
|
662
772
|
4,
|
|
@@ -669,6 +779,8 @@ exports.segments = [
|
|
|
669
779
|
"france",
|
|
670
780
|
19,
|
|
671
781
|
"https://whatsonzwift.com/world/france/segment/ventoux-kom/forward",
|
|
782
|
+
"ventoux-kom",
|
|
783
|
+
undefined,
|
|
672
784
|
24682578,
|
|
673
785
|
"https://www.strava.com/segments/24682578",
|
|
674
786
|
8,
|
|
@@ -681,6 +793,8 @@ exports.segments = [
|
|
|
681
793
|
"innsbruck",
|
|
682
794
|
7.4,
|
|
683
795
|
"https://whatsonzwift.com/world/innsbruck/segment/kom/forward",
|
|
796
|
+
"innsbruck-kom",
|
|
797
|
+
undefined,
|
|
684
798
|
18397965,
|
|
685
799
|
"https://www.strava.com/segments/18397965",
|
|
686
800
|
6,
|
|
@@ -693,6 +807,8 @@ exports.segments = [
|
|
|
693
807
|
"innsbruck",
|
|
694
808
|
5.79,
|
|
695
809
|
"https://whatsonzwift.com/world/innsbruck/segment/kom/reverse",
|
|
810
|
+
"innsbruck-kom-reverse",
|
|
811
|
+
undefined,
|
|
696
812
|
18397927,
|
|
697
813
|
"https://www.strava.com/segments/18397927",
|
|
698
814
|
8,
|
|
@@ -705,6 +821,8 @@ exports.segments = [
|
|
|
705
821
|
"innsbruck",
|
|
706
822
|
23.65,
|
|
707
823
|
"https://whatsonzwift.com/world/innsbruck/segment/uci-lap/forward",
|
|
824
|
+
"uci-lap",
|
|
825
|
+
undefined,
|
|
708
826
|
18398895,
|
|
709
827
|
"https://www.strava.com/segments/18398895",
|
|
710
828
|
undefined,
|
|
@@ -717,6 +835,8 @@ exports.segments = [
|
|
|
717
835
|
"yorkshire",
|
|
718
836
|
1.2,
|
|
719
837
|
"https://whatsonzwift.com/world/yorkshire/segment/yorkshire-kom/forward",
|
|
838
|
+
"yorkshire-kom",
|
|
839
|
+
undefined,
|
|
720
840
|
21747822,
|
|
721
841
|
"https://www.strava.com/segments/21747822",
|
|
722
842
|
5.5,
|
|
@@ -729,6 +849,8 @@ exports.segments = [
|
|
|
729
849
|
"yorkshire",
|
|
730
850
|
1.2,
|
|
731
851
|
"https://whatsonzwift.com/world/yorkshire/segment/yorkshire-kom/reverse",
|
|
852
|
+
"yorkshire-kom-reverse",
|
|
853
|
+
undefined,
|
|
732
854
|
21747891,
|
|
733
855
|
"https://www.strava.com/segments/21747891",
|
|
734
856
|
3.8,
|
|
@@ -741,6 +863,8 @@ exports.segments = [
|
|
|
741
863
|
"crit-city",
|
|
742
864
|
1.95,
|
|
743
865
|
"https://whatsonzwift.com/world/crit-city/segment/crit-city/forward",
|
|
866
|
+
"crit-city-",
|
|
867
|
+
undefined,
|
|
744
868
|
22445564,
|
|
745
869
|
"https://www.strava.com/segments/22445564",
|
|
746
870
|
undefined,
|
|
@@ -753,6 +877,8 @@ exports.segments = [
|
|
|
753
877
|
"crit-city",
|
|
754
878
|
1.95,
|
|
755
879
|
"https://whatsonzwift.com/world/crit-city/segment/crit-city/reverse",
|
|
880
|
+
"crit-city-reverse",
|
|
881
|
+
undefined,
|
|
756
882
|
22419554,
|
|
757
883
|
"https://www.strava.com/segments/22419554",
|
|
758
884
|
undefined,
|
|
@@ -765,6 +891,8 @@ exports.segments = [
|
|
|
765
891
|
"crit-city",
|
|
766
892
|
0.197,
|
|
767
893
|
"https://whatsonzwift.com/world/crit-city/segment/prime/forward",
|
|
894
|
+
"prime-kom",
|
|
895
|
+
undefined,
|
|
768
896
|
undefined,
|
|
769
897
|
undefined,
|
|
770
898
|
4,
|
|
@@ -777,6 +905,8 @@ exports.segments = [
|
|
|
777
905
|
"crit-city",
|
|
778
906
|
0.288,
|
|
779
907
|
"https://whatsonzwift.com/world/crit-city/segment/prime/reverse",
|
|
908
|
+
"prime-sprint",
|
|
909
|
+
undefined,
|
|
780
910
|
undefined,
|
|
781
911
|
undefined,
|
|
782
912
|
undefined,
|
|
@@ -789,6 +919,8 @@ exports.segments = [
|
|
|
789
919
|
"paris",
|
|
790
920
|
6.62,
|
|
791
921
|
"https://whatsonzwift.com/world/paris/segment/champs-elysees/forward",
|
|
922
|
+
"champs-elysees",
|
|
923
|
+
undefined,
|
|
792
924
|
24674235,
|
|
793
925
|
"https://www.strava.com/segments/24674235",
|
|
794
926
|
undefined,
|
|
@@ -801,6 +933,8 @@ exports.segments = [
|
|
|
801
933
|
"paris",
|
|
802
934
|
6.62,
|
|
803
935
|
"https://whatsonzwift.com/world/paris/segment/champs-elysees/reverse",
|
|
936
|
+
"champs-elysees-reverse",
|
|
937
|
+
undefined,
|
|
804
938
|
24674248,
|
|
805
939
|
"https://www.strava.com/segments/24674248",
|
|
806
940
|
undefined,
|
|
@@ -813,6 +947,8 @@ exports.segments = [
|
|
|
813
947
|
"makuri-islands",
|
|
814
948
|
0.146,
|
|
815
949
|
"https://whatsonzwift.com/world/makuri-islands/segment/country-sprint/forward",
|
|
950
|
+
"country-sprint",
|
|
951
|
+
undefined,
|
|
816
952
|
undefined,
|
|
817
953
|
undefined,
|
|
818
954
|
undefined,
|
|
@@ -825,6 +961,8 @@ exports.segments = [
|
|
|
825
961
|
"makuri-islands",
|
|
826
962
|
2.69,
|
|
827
963
|
"https://whatsonzwift.com/world/makuri-islands/segment/castle-kom/forward",
|
|
964
|
+
"castle-kom",
|
|
965
|
+
undefined,
|
|
828
966
|
28433453,
|
|
829
967
|
"https://www.strava.com/segments/28433453",
|
|
830
968
|
2.45,
|
|
@@ -837,6 +975,8 @@ exports.segments = [
|
|
|
837
975
|
"makuri-islands",
|
|
838
976
|
0.15,
|
|
839
977
|
"https://whatsonzwift.com/world/makuri-islands/segment/village-sprint/forward",
|
|
978
|
+
"village-sprint",
|
|
979
|
+
undefined,
|
|
840
980
|
undefined,
|
|
841
981
|
undefined,
|
|
842
982
|
0.99,
|
|
@@ -849,6 +989,8 @@ exports.segments = [
|
|
|
849
989
|
"makuri-islands",
|
|
850
990
|
2.51,
|
|
851
991
|
"https://whatsonzwift.com/world/makuri-islands/segment/temple-kom/forward",
|
|
992
|
+
"temple-kom",
|
|
993
|
+
undefined,
|
|
852
994
|
28432259,
|
|
853
995
|
"https://www.strava.com/segments/28432259",
|
|
854
996
|
3.95,
|
|
@@ -861,6 +1003,8 @@ exports.segments = [
|
|
|
861
1003
|
"makuri-islands",
|
|
862
1004
|
1.88,
|
|
863
1005
|
"https://whatsonzwift.com/world/makuri-islands/segment/temple-kom/reverse",
|
|
1006
|
+
"temple-kom-reverse",
|
|
1007
|
+
undefined,
|
|
864
1008
|
28432293,
|
|
865
1009
|
"https://www.strava.com/segments/28432293",
|
|
866
1010
|
3.59,
|
|
@@ -873,6 +1017,8 @@ exports.segments = [
|
|
|
873
1017
|
"makuri-islands",
|
|
874
1018
|
1.87,
|
|
875
1019
|
"https://whatsonzwift.com/world/makuri-islands/segment/rooftop-kom/forward",
|
|
1020
|
+
"rooftop-kom",
|
|
1021
|
+
undefined,
|
|
876
1022
|
30407861,
|
|
877
1023
|
"https://www.strava.com/segments/30407861",
|
|
878
1024
|
2.7,
|
|
@@ -885,6 +1031,8 @@ exports.segments = [
|
|
|
885
1031
|
"makuri-islands",
|
|
886
1032
|
0.31,
|
|
887
1033
|
"https://whatsonzwift.com/world/makuri-islands/segment/tower-sprint/forward",
|
|
1034
|
+
"tower-sprint",
|
|
1035
|
+
undefined,
|
|
888
1036
|
30412571,
|
|
889
1037
|
"https://www.strava.com/segments/30412571",
|
|
890
1038
|
undefined,
|
|
@@ -897,6 +1045,8 @@ exports.segments = [
|
|
|
897
1045
|
"makuri-islands",
|
|
898
1046
|
0.31,
|
|
899
1047
|
"https://whatsonzwift.com/world/makuri-islands/segment/tower-sprint/reverse",
|
|
1048
|
+
"tower-sprint-reverse",
|
|
1049
|
+
undefined,
|
|
900
1050
|
undefined,
|
|
901
1051
|
undefined,
|
|
902
1052
|
undefined,
|
|
@@ -909,6 +1059,8 @@ exports.segments = [
|
|
|
909
1059
|
"makuri-islands",
|
|
910
1060
|
0.32,
|
|
911
1061
|
"https://whatsonzwift.com/world/makuri-islands/segment/castle-park-sprint/forward",
|
|
1062
|
+
"castle-park-sprint",
|
|
1063
|
+
undefined,
|
|
912
1064
|
undefined,
|
|
913
1065
|
undefined,
|
|
914
1066
|
undefined,
|
|
@@ -921,6 +1073,8 @@ exports.segments = [
|
|
|
921
1073
|
"makuri-islands",
|
|
922
1074
|
0.32,
|
|
923
1075
|
"https://whatsonzwift.com/world/makuri-islands/segment/castle-park-sprint/reverse",
|
|
1076
|
+
"castle-park-sprint-reverse",
|
|
1077
|
+
undefined,
|
|
924
1078
|
undefined,
|
|
925
1079
|
undefined,
|
|
926
1080
|
undefined,
|
|
@@ -933,6 +1087,8 @@ exports.segments = [
|
|
|
933
1087
|
"makuri-islands",
|
|
934
1088
|
0.48,
|
|
935
1089
|
"https://whatsonzwift.com/world/makuri-islands/segment/alley-sprint/forward",
|
|
1090
|
+
"alley-sprint",
|
|
1091
|
+
undefined,
|
|
936
1092
|
30412916,
|
|
937
1093
|
"https://www.strava.com/segments/30412916",
|
|
938
1094
|
undefined,
|
|
@@ -945,6 +1101,8 @@ exports.segments = [
|
|
|
945
1101
|
"makuri-islands",
|
|
946
1102
|
0.48,
|
|
947
1103
|
"https://whatsonzwift.com/world/makuri-islands/segment/alley-sprint/reverse",
|
|
1104
|
+
"alley-sprint-reverse",
|
|
1105
|
+
undefined,
|
|
948
1106
|
30412903,
|
|
949
1107
|
"https://www.strava.com/segments/30412903",
|
|
950
1108
|
undefined,
|
|
@@ -957,6 +1115,8 @@ exports.segments = [
|
|
|
957
1115
|
"makuri-islands",
|
|
958
1116
|
0.49,
|
|
959
1117
|
"https://whatsonzwift.com/world/makuri-islands/segment/railway-sprint/forward",
|
|
1118
|
+
"railway-sprint",
|
|
1119
|
+
undefined,
|
|
960
1120
|
30412927,
|
|
961
1121
|
"https://www.strava.com/segments/30412927",
|
|
962
1122
|
undefined,
|
|
@@ -973,6 +1133,8 @@ exports.segments = [
|
|
|
973
1133
|
undefined,
|
|
974
1134
|
undefined,
|
|
975
1135
|
undefined,
|
|
1136
|
+
undefined,
|
|
1137
|
+
undefined,
|
|
976
1138
|
],
|
|
977
1139
|
[
|
|
978
1140
|
"Tidepool Sprint",
|
|
@@ -985,6 +1147,8 @@ exports.segments = [
|
|
|
985
1147
|
undefined,
|
|
986
1148
|
undefined,
|
|
987
1149
|
undefined,
|
|
1150
|
+
undefined,
|
|
1151
|
+
undefined,
|
|
988
1152
|
],
|
|
989
1153
|
[
|
|
990
1154
|
"Shisa Sprint Rev.",
|
|
@@ -997,6 +1161,8 @@ exports.segments = [
|
|
|
997
1161
|
undefined,
|
|
998
1162
|
undefined,
|
|
999
1163
|
undefined,
|
|
1164
|
+
undefined,
|
|
1165
|
+
undefined,
|
|
1000
1166
|
],
|
|
1001
1167
|
[
|
|
1002
1168
|
"Shisa Sprint",
|
|
@@ -1009,6 +1175,8 @@ exports.segments = [
|
|
|
1009
1175
|
undefined,
|
|
1010
1176
|
undefined,
|
|
1011
1177
|
undefined,
|
|
1178
|
+
undefined,
|
|
1179
|
+
undefined,
|
|
1012
1180
|
],
|
|
1013
1181
|
[
|
|
1014
1182
|
"Village Sprint Rev.",
|
|
@@ -1017,6 +1185,8 @@ exports.segments = [
|
|
|
1017
1185
|
"makuri-islands",
|
|
1018
1186
|
0.14,
|
|
1019
1187
|
"https://whatsonzwift.com/world/makuri-islands/segment/village-sprint/reverse",
|
|
1188
|
+
"village-sprint-reverse",
|
|
1189
|
+
undefined,
|
|
1020
1190
|
undefined,
|
|
1021
1191
|
undefined,
|
|
1022
1192
|
undefined,
|
|
@@ -1029,6 +1199,8 @@ exports.segments = [
|
|
|
1029
1199
|
"makuri-islands",
|
|
1030
1200
|
0.13,
|
|
1031
1201
|
"https://whatsonzwift.com/world/makuri-islands/segment/country-sprint/reverse",
|
|
1202
|
+
"country-sprint-reverse",
|
|
1203
|
+
undefined,
|
|
1032
1204
|
undefined,
|
|
1033
1205
|
undefined,
|
|
1034
1206
|
undefined,
|
|
@@ -1041,6 +1213,8 @@ exports.segments = [
|
|
|
1041
1213
|
"scotland",
|
|
1042
1214
|
1,
|
|
1043
1215
|
"https://whatsonzwift.com/world/scotland/segment/sgurr-summit-south/forward",
|
|
1216
|
+
"sgurr-summit-south",
|
|
1217
|
+
undefined,
|
|
1044
1218
|
33636430,
|
|
1045
1219
|
"https://www.strava.com/segments/33636430",
|
|
1046
1220
|
3.3,
|
|
@@ -1053,6 +1227,8 @@ exports.segments = [
|
|
|
1053
1227
|
"scotland",
|
|
1054
1228
|
1.6,
|
|
1055
1229
|
"https://whatsonzwift.com/world/scotland/segment/sgurr-summit-north/reverse",
|
|
1230
|
+
"sgurr-summit-north",
|
|
1231
|
+
undefined,
|
|
1056
1232
|
33636401,
|
|
1057
1233
|
"https://www.strava.com/segments/33636401",
|
|
1058
1234
|
3.7,
|
|
@@ -1065,6 +1241,8 @@ exports.segments = [
|
|
|
1065
1241
|
"scotland",
|
|
1066
1242
|
0.3,
|
|
1067
1243
|
"https://whatsonzwift.com/world/scotland/segment/the-clyde-kicker/forward",
|
|
1244
|
+
"",
|
|
1245
|
+
undefined,
|
|
1068
1246
|
undefined,
|
|
1069
1247
|
undefined,
|
|
1070
1248
|
3.6,
|
|
@@ -1077,6 +1255,8 @@ exports.segments = [
|
|
|
1077
1255
|
"scotland",
|
|
1078
1256
|
0.2,
|
|
1079
1257
|
"https://whatsonzwift.com/world/scotland/segment/champion-s-sprint/forward",
|
|
1258
|
+
"the-clyde-kicker",
|
|
1259
|
+
undefined,
|
|
1080
1260
|
undefined,
|
|
1081
1261
|
undefined,
|
|
1082
1262
|
undefined,
|
|
@@ -1089,6 +1269,8 @@ exports.segments = [
|
|
|
1089
1269
|
"scotland",
|
|
1090
1270
|
0.45,
|
|
1091
1271
|
"https://whatsonzwift.com/world/scotland/segment/breakaway-brae/forward",
|
|
1272
|
+
"breakaway-brae",
|
|
1273
|
+
undefined,
|
|
1092
1274
|
undefined,
|
|
1093
1275
|
undefined,
|
|
1094
1276
|
2,
|
|
@@ -1101,6 +1283,8 @@ exports.segments = [
|
|
|
1101
1283
|
"scotland",
|
|
1102
1284
|
0.62,
|
|
1103
1285
|
"https://whatsonzwift.com/world/scotland/segment/breakaway-brae-reverse/reverse",
|
|
1286
|
+
"breakaway-brae-reverse",
|
|
1287
|
+
undefined,
|
|
1104
1288
|
33620168,
|
|
1105
1289
|
"https://www.strava.com/segments/33620168",
|
|
1106
1290
|
2.4,
|
|
@@ -1113,18 +1297,22 @@ exports.segments = [
|
|
|
1113
1297
|
"scotland",
|
|
1114
1298
|
8.06,
|
|
1115
1299
|
"https://whatsonzwift.com/world/scotland/segment/loch-loop-reverse/reverse",
|
|
1300
|
+
undefined,
|
|
1301
|
+
undefined,
|
|
1116
1302
|
33620222,
|
|
1117
1303
|
"https://www.strava.com/segments/33620222",
|
|
1118
1304
|
undefined,
|
|
1119
1305
|
undefined,
|
|
1120
1306
|
],
|
|
1121
|
-
].map(([name, slug, type, world, distance, whatsOnZwiftUrl, stravaSegmentId, stravaSegmentUrl, avgIncline, climbType,]) => ({
|
|
1307
|
+
].map(([name, slug, type, world, distance, whatsOnZwiftUrl, zwiftBikesPath, zwifterBikesUrl, stravaSegmentId, stravaSegmentUrl, avgIncline, climbType,]) => ({
|
|
1122
1308
|
name,
|
|
1123
1309
|
slug,
|
|
1124
1310
|
type,
|
|
1125
1311
|
world,
|
|
1126
1312
|
distance,
|
|
1127
1313
|
whatsOnZwiftUrl,
|
|
1314
|
+
zwiftBikesPath,
|
|
1315
|
+
zwifterBikesUrl,
|
|
1128
1316
|
stravaSegmentId,
|
|
1129
1317
|
stravaSegmentUrl,
|
|
1130
1318
|
avgIncline,
|