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/esm/segments.js
CHANGED
|
@@ -6,6 +6,8 @@ export const segments = [
|
|
|
6
6
|
"france",
|
|
7
7
|
0.212,
|
|
8
8
|
"https://whatsonzwift.com/world/france/segment/ballon-sprint/forward",
|
|
9
|
+
"ballon-sprint",
|
|
10
|
+
undefined,
|
|
9
11
|
undefined,
|
|
10
12
|
undefined,
|
|
11
13
|
undefined,
|
|
@@ -18,6 +20,8 @@ export const segments = [
|
|
|
18
20
|
"france",
|
|
19
21
|
0.325,
|
|
20
22
|
"https://whatsonzwift.com/world/france/segment/ballon-sprint-reverse/reverse",
|
|
23
|
+
"ballon-sprint-reverse",
|
|
24
|
+
undefined,
|
|
21
25
|
24700963,
|
|
22
26
|
"https://www.strava.com/segments/24700963",
|
|
23
27
|
undefined,
|
|
@@ -30,6 +34,8 @@ export const segments = [
|
|
|
30
34
|
"richmond",
|
|
31
35
|
0.283,
|
|
32
36
|
"https://whatsonzwift.com/world/richmond/segment/broad-st/forward",
|
|
37
|
+
"broad-street",
|
|
38
|
+
undefined,
|
|
33
39
|
12128880,
|
|
34
40
|
"https://www.strava.com/segments/12128880",
|
|
35
41
|
undefined,
|
|
@@ -46,6 +52,8 @@ export const segments = [
|
|
|
46
52
|
undefined,
|
|
47
53
|
undefined,
|
|
48
54
|
undefined,
|
|
55
|
+
undefined,
|
|
56
|
+
undefined,
|
|
49
57
|
],
|
|
50
58
|
[
|
|
51
59
|
"Fuego Flats",
|
|
@@ -54,6 +62,8 @@ export const segments = [
|
|
|
54
62
|
"watopia",
|
|
55
63
|
0.496,
|
|
56
64
|
"https://whatsonzwift.com/world/watopia/segment/fuego-flats/forward",
|
|
65
|
+
"fuego-flats",
|
|
66
|
+
undefined,
|
|
57
67
|
20350107,
|
|
58
68
|
"https://www.strava.com/segments/20350107",
|
|
59
69
|
undefined,
|
|
@@ -66,6 +76,8 @@ export const segments = [
|
|
|
66
76
|
"watopia",
|
|
67
77
|
7.1,
|
|
68
78
|
"https://whatsonzwift.com/world/watopia/segment/fuego-flats-reverse/reverse",
|
|
79
|
+
"fuego-flats-reverse",
|
|
80
|
+
undefined,
|
|
69
81
|
20350066,
|
|
70
82
|
"https://www.strava.com/segments/20350066",
|
|
71
83
|
undefined,
|
|
@@ -78,6 +90,8 @@ export const segments = [
|
|
|
78
90
|
"innsbruck",
|
|
79
91
|
0.3,
|
|
80
92
|
"https://whatsonzwift.com/world/innsbruck/segment/sprint/forward",
|
|
93
|
+
"innsbruck-sprint",
|
|
94
|
+
undefined,
|
|
81
95
|
undefined,
|
|
82
96
|
undefined,
|
|
83
97
|
undefined,
|
|
@@ -90,6 +104,8 @@ export const segments = [
|
|
|
90
104
|
"innsbruck",
|
|
91
105
|
0.2,
|
|
92
106
|
"https://whatsonzwift.com/world/innsbruck/segment/sprint/reverse",
|
|
107
|
+
"innsbruck-sprint-reverse",
|
|
108
|
+
undefined,
|
|
93
109
|
undefined,
|
|
94
110
|
undefined,
|
|
95
111
|
undefined,
|
|
@@ -102,6 +118,8 @@ export const segments = [
|
|
|
102
118
|
"paris",
|
|
103
119
|
0.148,
|
|
104
120
|
"https://whatsonzwift.com/world/paris/segment/lutece-sprint/forward",
|
|
121
|
+
"lutece-sprint",
|
|
122
|
+
undefined,
|
|
105
123
|
undefined,
|
|
106
124
|
undefined,
|
|
107
125
|
undefined,
|
|
@@ -114,6 +132,8 @@ export const segments = [
|
|
|
114
132
|
"paris",
|
|
115
133
|
0.225,
|
|
116
134
|
"https://whatsonzwift.com/world/paris/segment/lutece-reverse-sprint/reverse",
|
|
135
|
+
"lutece-sprint-reverse",
|
|
136
|
+
undefined,
|
|
117
137
|
undefined,
|
|
118
138
|
undefined,
|
|
119
139
|
undefined,
|
|
@@ -126,6 +146,8 @@ export const segments = [
|
|
|
126
146
|
"france",
|
|
127
147
|
0.338,
|
|
128
148
|
"https://whatsonzwift.com/world/france/segment/marina-sprint/forward",
|
|
149
|
+
"marina-sprint",
|
|
150
|
+
undefined,
|
|
129
151
|
24710590,
|
|
130
152
|
"https://www.strava.com/segments/24710590",
|
|
131
153
|
undefined,
|
|
@@ -138,6 +160,8 @@ export const segments = [
|
|
|
138
160
|
"france",
|
|
139
161
|
0.193,
|
|
140
162
|
"https://whatsonzwift.com/world/france/segment/marina-sprint-reverse/reverse",
|
|
163
|
+
"marina-sprint-reverse",
|
|
164
|
+
undefined,
|
|
141
165
|
undefined,
|
|
142
166
|
undefined,
|
|
143
167
|
undefined,
|
|
@@ -150,6 +174,8 @@ export const segments = [
|
|
|
150
174
|
"richmond",
|
|
151
175
|
0.221,
|
|
152
176
|
"https://whatsonzwift.com/world/richmond/segment/sprint/forward",
|
|
177
|
+
"richmond-sprint",
|
|
178
|
+
undefined,
|
|
153
179
|
12128762,
|
|
154
180
|
"https://www.strava.com/segments/12128762",
|
|
155
181
|
undefined,
|
|
@@ -162,6 +188,8 @@ export const segments = [
|
|
|
162
188
|
"richmond",
|
|
163
189
|
0.203,
|
|
164
190
|
"https://whatsonzwift.com/world/richmond/segment/sprint/reverse",
|
|
191
|
+
"richmond-sprint-reverse",
|
|
192
|
+
undefined,
|
|
165
193
|
undefined,
|
|
166
194
|
undefined,
|
|
167
195
|
undefined,
|
|
@@ -174,6 +202,8 @@ export const segments = [
|
|
|
174
202
|
"new-york",
|
|
175
203
|
0.15,
|
|
176
204
|
"https://whatsonzwift.com/world/new-york/segment/ny-sprint/forward",
|
|
205
|
+
"ny-sprint",
|
|
206
|
+
undefined,
|
|
177
207
|
undefined,
|
|
178
208
|
undefined,
|
|
179
209
|
-4.3,
|
|
@@ -186,6 +216,8 @@ export const segments = [
|
|
|
186
216
|
"new-york",
|
|
187
217
|
0.23,
|
|
188
218
|
"https://whatsonzwift.com/world/new-york/segment/ny-sprint/reverse",
|
|
219
|
+
"ny-sprint-reverse",
|
|
220
|
+
undefined,
|
|
189
221
|
undefined,
|
|
190
222
|
undefined,
|
|
191
223
|
undefined,
|
|
@@ -198,6 +230,8 @@ export const segments = [
|
|
|
198
230
|
"france",
|
|
199
231
|
0.333,
|
|
200
232
|
"https://whatsonzwift.com/world/france/segment/pave-sprint/forward",
|
|
233
|
+
"pave-sprint",
|
|
234
|
+
undefined,
|
|
201
235
|
undefined,
|
|
202
236
|
undefined,
|
|
203
237
|
undefined,
|
|
@@ -210,6 +244,8 @@ export const segments = [
|
|
|
210
244
|
"france",
|
|
211
245
|
0.334,
|
|
212
246
|
"https://whatsonzwift.com/world/france/segment/pave-sprint-reverse/reverse",
|
|
247
|
+
"pave-sprint-reverse",
|
|
248
|
+
undefined,
|
|
213
249
|
undefined,
|
|
214
250
|
undefined,
|
|
215
251
|
undefined,
|
|
@@ -222,6 +258,8 @@ export const segments = [
|
|
|
222
258
|
"london",
|
|
223
259
|
0.2,
|
|
224
260
|
"https://whatsonzwift.com/world/london/segment/sprint/forward",
|
|
261
|
+
"london-sprint",
|
|
262
|
+
undefined,
|
|
225
263
|
12749402,
|
|
226
264
|
"https://www.strava.com/segments/12749402",
|
|
227
265
|
undefined,
|
|
@@ -234,6 +272,8 @@ export const segments = [
|
|
|
234
272
|
"london",
|
|
235
273
|
0.2,
|
|
236
274
|
"https://whatsonzwift.com/world/london/segment/sprint/reverse",
|
|
275
|
+
"london-sprint-reverse",
|
|
276
|
+
undefined,
|
|
237
277
|
12749377,
|
|
238
278
|
"https://www.strava.com/segments/12749377",
|
|
239
279
|
undefined,
|
|
@@ -246,6 +286,8 @@ export const segments = [
|
|
|
246
286
|
"watopia",
|
|
247
287
|
0.36,
|
|
248
288
|
"https://whatsonzwift.com/world/watopia/segment/sprint/forward",
|
|
289
|
+
"sprint_watopia-sprint",
|
|
290
|
+
undefined,
|
|
249
291
|
12109305,
|
|
250
292
|
"https://www.strava.com/segments/12109305",
|
|
251
293
|
undefined,
|
|
@@ -258,6 +300,8 @@ export const segments = [
|
|
|
258
300
|
"watopia",
|
|
259
301
|
0.2,
|
|
260
302
|
"https://whatsonzwift.com/world/watopia/segment/sprint/reverse",
|
|
303
|
+
"watopia-sprint-reverse",
|
|
304
|
+
undefined,
|
|
261
305
|
12109228,
|
|
262
306
|
"https://www.strava.com/segments/12109228",
|
|
263
307
|
undefined,
|
|
@@ -270,6 +314,8 @@ export const segments = [
|
|
|
270
314
|
"yorkshire",
|
|
271
315
|
0.25,
|
|
272
316
|
"https://whatsonzwift.com/world/yorkshire/segment/yorkshire-sprint/forward",
|
|
317
|
+
"yorkshire-sprint",
|
|
318
|
+
undefined,
|
|
273
319
|
undefined,
|
|
274
320
|
undefined,
|
|
275
321
|
undefined,
|
|
@@ -282,6 +328,8 @@ export const segments = [
|
|
|
282
328
|
"yorkshire",
|
|
283
329
|
0.4,
|
|
284
330
|
"https://whatsonzwift.com/world/yorkshire/segment/yorkshire-sprint-reverse/reverse",
|
|
331
|
+
"yorkshire-sprint-reverse",
|
|
332
|
+
undefined,
|
|
285
333
|
21748007,
|
|
286
334
|
"https://www.strava.com/segments/21748007",
|
|
287
335
|
undefined,
|
|
@@ -294,6 +342,8 @@ export const segments = [
|
|
|
294
342
|
"watopia",
|
|
295
343
|
12.44,
|
|
296
344
|
"https://whatsonzwift.com/world/watopia/segment/alpe-du-zwift/forward",
|
|
345
|
+
"alpe-du-zwift",
|
|
346
|
+
undefined,
|
|
297
347
|
17267489,
|
|
298
348
|
"https://www.strava.com/segments/17267489",
|
|
299
349
|
8.5,
|
|
@@ -306,6 +356,8 @@ export const segments = [
|
|
|
306
356
|
"watopia",
|
|
307
357
|
9.49,
|
|
308
358
|
"https://whatsonzwift.com/world/watopia/segment/epic-kom/forward",
|
|
359
|
+
"epic-kom",
|
|
360
|
+
undefined,
|
|
309
361
|
16784833,
|
|
310
362
|
"https://www.strava.com/segments/16784833",
|
|
311
363
|
4,
|
|
@@ -318,6 +370,8 @@ export const segments = [
|
|
|
318
370
|
"watopia",
|
|
319
371
|
6.27,
|
|
320
372
|
"https://whatsonzwift.com/world/watopia/segment/epic-kom/reverse",
|
|
373
|
+
"epic-kom-reverse",
|
|
374
|
+
undefined,
|
|
321
375
|
16784850,
|
|
322
376
|
"https://www.strava.com/segments/16784850",
|
|
323
377
|
6.3,
|
|
@@ -330,6 +384,8 @@ export const segments = [
|
|
|
330
384
|
"watopia",
|
|
331
385
|
9.01,
|
|
332
386
|
"https://whatsonzwift.com/world/watopia/segment/hilly-loop/forward",
|
|
387
|
+
"hilly-loop",
|
|
388
|
+
undefined,
|
|
333
389
|
12118362,
|
|
334
390
|
"https://www.strava.com/segments/12118362",
|
|
335
391
|
undefined,
|
|
@@ -342,6 +398,8 @@ export const segments = [
|
|
|
342
398
|
"watopia",
|
|
343
399
|
9.01,
|
|
344
400
|
"https://whatsonzwift.com/world/watopia/segment/hilly-loop/reverse",
|
|
401
|
+
"hilly-loop-reverse",
|
|
402
|
+
undefined,
|
|
345
403
|
12128037,
|
|
346
404
|
"https://www.strava.com/segments/12128037",
|
|
347
405
|
undefined,
|
|
@@ -354,6 +412,8 @@ export const segments = [
|
|
|
354
412
|
"watopia",
|
|
355
413
|
7.8,
|
|
356
414
|
"https://whatsonzwift.com/world/watopia/segment/jungle-loop/forward",
|
|
415
|
+
"jungle-loop",
|
|
416
|
+
undefined,
|
|
357
417
|
16359371,
|
|
358
418
|
"https://www.strava.com/segments/16359371",
|
|
359
419
|
undefined,
|
|
@@ -366,6 +426,8 @@ export const segments = [
|
|
|
366
426
|
"watopia",
|
|
367
427
|
7.8,
|
|
368
428
|
"https://whatsonzwift.com/world/watopia/segment/jungle-loop/reverse",
|
|
429
|
+
"jungle-loop-reverse",
|
|
430
|
+
undefined,
|
|
369
431
|
16359363,
|
|
370
432
|
"https://www.strava.com/segments/16359363",
|
|
371
433
|
undefined,
|
|
@@ -378,6 +440,8 @@ export const segments = [
|
|
|
378
440
|
"watopia",
|
|
379
441
|
2.6,
|
|
380
442
|
"https://whatsonzwift.com/world/watopia/segment/titans-grove-kom/forward",
|
|
443
|
+
"titans-grove-kom",
|
|
444
|
+
undefined,
|
|
381
445
|
21343975,
|
|
382
446
|
"https://www.strava.com/segments/21343975",
|
|
383
447
|
2.2,
|
|
@@ -390,6 +454,8 @@ export const segments = [
|
|
|
390
454
|
"watopia",
|
|
391
455
|
0.89,
|
|
392
456
|
"https://whatsonzwift.com/world/watopia/segment/titans-grove-kom/reverse",
|
|
457
|
+
"titans-grove-kom-reverse",
|
|
458
|
+
undefined,
|
|
393
459
|
21343961,
|
|
394
460
|
"https://www.strava.com/segments/21343961",
|
|
395
461
|
6.6,
|
|
@@ -402,6 +468,8 @@ export const segments = [
|
|
|
402
468
|
"watopia",
|
|
403
469
|
4.2,
|
|
404
470
|
"https://whatsonzwift.com/world/watopia/segment/volcano/forward",
|
|
471
|
+
"volcano-circuit",
|
|
472
|
+
undefined,
|
|
405
473
|
14032406,
|
|
406
474
|
"https://www.strava.com/segments/14032406",
|
|
407
475
|
undefined,
|
|
@@ -414,6 +482,8 @@ export const segments = [
|
|
|
414
482
|
"watopia",
|
|
415
483
|
4.2,
|
|
416
484
|
"https://whatsonzwift.com/world/watopia/segment/volcano/reverse",
|
|
485
|
+
"volcano-circuit-ccw",
|
|
486
|
+
undefined,
|
|
417
487
|
14032426,
|
|
418
488
|
"https://www.strava.com/segments/14032426",
|
|
419
489
|
undefined,
|
|
@@ -426,6 +496,8 @@ export const segments = [
|
|
|
426
496
|
"watopia",
|
|
427
497
|
3.75,
|
|
428
498
|
"https://whatsonzwift.com/world/watopia/segment/volcano-kom/forward",
|
|
499
|
+
"volcano-kom",
|
|
500
|
+
undefined,
|
|
429
501
|
14270131,
|
|
430
502
|
"https://www.strava.com/segments/14270131",
|
|
431
503
|
3.2,
|
|
@@ -438,6 +510,8 @@ export const segments = [
|
|
|
438
510
|
"watopia",
|
|
439
511
|
0.9,
|
|
440
512
|
"https://whatsonzwift.com/world/watopia/segment/zwift-kom/forward",
|
|
513
|
+
"zwift-kom",
|
|
514
|
+
undefined,
|
|
441
515
|
12109030,
|
|
442
516
|
"https://www.strava.com/segments/12109030",
|
|
443
517
|
5,
|
|
@@ -450,6 +524,8 @@ export const segments = [
|
|
|
450
524
|
"watopia",
|
|
451
525
|
2.4,
|
|
452
526
|
"https://whatsonzwift.com/world/watopia/segment/zwift-kom/reverse",
|
|
527
|
+
"zwift-kom-reverse",
|
|
528
|
+
undefined,
|
|
453
529
|
12128029,
|
|
454
530
|
"https://www.strava.com/segments/12128029",
|
|
455
531
|
2,
|
|
@@ -462,6 +538,8 @@ export const segments = [
|
|
|
462
538
|
"bologna",
|
|
463
539
|
8,
|
|
464
540
|
"https://whatsonzwift.com/world/bologna-tt/segment/bologna-tt/forward",
|
|
541
|
+
"bologna-tt",
|
|
542
|
+
undefined,
|
|
465
543
|
20560239,
|
|
466
544
|
"https://www.strava.com/segments/20560239",
|
|
467
545
|
2.8,
|
|
@@ -474,6 +552,8 @@ export const segments = [
|
|
|
474
552
|
"new-york",
|
|
475
553
|
9.7,
|
|
476
554
|
"https://whatsonzwift.com/world/new-york/segment/central-park-loop/reverse",
|
|
555
|
+
undefined,
|
|
556
|
+
undefined,
|
|
477
557
|
19170661,
|
|
478
558
|
"https://www.strava.com/segments/19170661",
|
|
479
559
|
undefined,
|
|
@@ -486,6 +566,8 @@ export const segments = [
|
|
|
486
566
|
"new-york",
|
|
487
567
|
1.4,
|
|
488
568
|
"https://whatsonzwift.com/world/new-york/segment/new-york-kom/forward",
|
|
569
|
+
"new-york-kom",
|
|
570
|
+
undefined,
|
|
489
571
|
19141090,
|
|
490
572
|
"https://www.strava.com/segments/19141090",
|
|
491
573
|
6.1,
|
|
@@ -498,6 +580,8 @@ export const segments = [
|
|
|
498
580
|
"new-york",
|
|
499
581
|
1.1,
|
|
500
582
|
"https://whatsonzwift.com/world/new-york/segment/new-york-kom/reverse",
|
|
583
|
+
"new-york-kom-reverse",
|
|
584
|
+
undefined,
|
|
501
585
|
19141092,
|
|
502
586
|
"https://www.strava.com/segments/19141092",
|
|
503
587
|
5.7,
|
|
@@ -510,6 +594,8 @@ export const segments = [
|
|
|
510
594
|
"richmond",
|
|
511
595
|
0.275,
|
|
512
596
|
"https://whatsonzwift.com/world/richmond/segment/23rd-st/forward",
|
|
597
|
+
"23rd-street",
|
|
598
|
+
undefined,
|
|
513
599
|
12128917,
|
|
514
600
|
"https://www.strava.com/segments/12128917",
|
|
515
601
|
10,
|
|
@@ -522,6 +608,8 @@ export const segments = [
|
|
|
522
608
|
"richmond",
|
|
523
609
|
1.1,
|
|
524
610
|
"https://whatsonzwift.com/world/richmond/segment/23rd-st/reverse",
|
|
611
|
+
"23rd-street-reverse",
|
|
612
|
+
undefined,
|
|
525
613
|
22813206,
|
|
526
614
|
"https://www.strava.com/segments/22813206",
|
|
527
615
|
3.5,
|
|
@@ -534,6 +622,8 @@ export const segments = [
|
|
|
534
622
|
"richmond",
|
|
535
623
|
0.644,
|
|
536
624
|
"https://whatsonzwift.com/world/richmond/segment/kom/forward",
|
|
625
|
+
"richmond-kom",
|
|
626
|
+
undefined,
|
|
537
627
|
12128826,
|
|
538
628
|
"https://www.strava.com/segments/12128826",
|
|
539
629
|
6.4,
|
|
@@ -546,6 +636,8 @@ export const segments = [
|
|
|
546
636
|
"richmond",
|
|
547
637
|
0.7,
|
|
548
638
|
"https://whatsonzwift.com/world/richmond/segment/kom/reverse",
|
|
639
|
+
"richmond-kom-reverse",
|
|
640
|
+
undefined,
|
|
549
641
|
26935782,
|
|
550
642
|
"https://www.strava.com/segments/26935782",
|
|
551
643
|
3.4,
|
|
@@ -558,6 +650,8 @@ export const segments = [
|
|
|
558
650
|
"richmond",
|
|
559
651
|
16.2,
|
|
560
652
|
"https://whatsonzwift.com/world/richmond/segment/uci-course/forward",
|
|
653
|
+
"2015-uci-worlds-course",
|
|
654
|
+
undefined,
|
|
561
655
|
12128718,
|
|
562
656
|
"https://www.strava.com/segments/12128718",
|
|
563
657
|
undefined,
|
|
@@ -570,6 +664,8 @@ export const segments = [
|
|
|
570
664
|
"london",
|
|
571
665
|
2.4,
|
|
572
666
|
"https://whatsonzwift.com/world/london/segment/fox-hill/forward",
|
|
667
|
+
"fox-hill",
|
|
668
|
+
undefined,
|
|
573
669
|
16802545,
|
|
574
670
|
"https://www.strava.com/segments/16802545",
|
|
575
671
|
4.9,
|
|
@@ -582,6 +678,8 @@ export const segments = [
|
|
|
582
678
|
"london",
|
|
583
679
|
3,
|
|
584
680
|
"https://whatsonzwift.com/world/london/segment/box-hill/reverse",
|
|
681
|
+
"box-hill",
|
|
682
|
+
undefined,
|
|
585
683
|
12744502,
|
|
586
684
|
"https://www.strava.com/segments/12744502",
|
|
587
685
|
4.3,
|
|
@@ -594,6 +692,8 @@ export const segments = [
|
|
|
594
692
|
"london",
|
|
595
693
|
1.9,
|
|
596
694
|
"https://whatsonzwift.com/world/london/segment/leith-hill/forward",
|
|
695
|
+
"leith-hill",
|
|
696
|
+
undefined,
|
|
597
697
|
16781411,
|
|
598
698
|
"https://www.strava.com/segments/16781411",
|
|
599
699
|
6.8,
|
|
@@ -606,6 +706,8 @@ export const segments = [
|
|
|
606
706
|
"london",
|
|
607
707
|
4.34,
|
|
608
708
|
"https://whatsonzwift.com/world/london/segment/keith-hill/reverse",
|
|
709
|
+
"keith-hill",
|
|
710
|
+
undefined,
|
|
609
711
|
16781407,
|
|
610
712
|
"https://www.strava.com/segments/16781407",
|
|
611
713
|
5,
|
|
@@ -618,6 +720,8 @@ export const segments = [
|
|
|
618
720
|
"london",
|
|
619
721
|
14.96,
|
|
620
722
|
"https://whatsonzwift.com/world/london/segment/london-loop/reverse",
|
|
723
|
+
"london-loop",
|
|
724
|
+
undefined,
|
|
621
725
|
12749649,
|
|
622
726
|
"https://www.strava.com/segments/12749649",
|
|
623
727
|
undefined,
|
|
@@ -630,6 +734,8 @@ export const segments = [
|
|
|
630
734
|
"france",
|
|
631
735
|
0.42,
|
|
632
736
|
"https://whatsonzwift.com/world/france/segment/aqueduc-kom/forward",
|
|
737
|
+
"aqueduc-kom",
|
|
738
|
+
undefined,
|
|
633
739
|
24700976,
|
|
634
740
|
"https://www.strava.com/segments/24700976",
|
|
635
741
|
3,
|
|
@@ -642,6 +748,8 @@ export const segments = [
|
|
|
642
748
|
"france",
|
|
643
749
|
0.403,
|
|
644
750
|
"https://whatsonzwift.com/world/france/segment/aqueduc-kom/reverse",
|
|
751
|
+
"aqueduc-kom-reverse",
|
|
752
|
+
undefined,
|
|
645
753
|
24701010,
|
|
646
754
|
"https://www.strava.com/segments/24701010",
|
|
647
755
|
5,
|
|
@@ -654,6 +762,8 @@ export const segments = [
|
|
|
654
762
|
"france",
|
|
655
763
|
2.7,
|
|
656
764
|
"https://whatsonzwift.com/world/france/segment/petit-kom/forward",
|
|
765
|
+
"petit-kom",
|
|
766
|
+
undefined,
|
|
657
767
|
24690967,
|
|
658
768
|
"https://www.strava.com/segments/24690967",
|
|
659
769
|
4,
|
|
@@ -666,6 +776,8 @@ export const segments = [
|
|
|
666
776
|
"france",
|
|
667
777
|
19,
|
|
668
778
|
"https://whatsonzwift.com/world/france/segment/ventoux-kom/forward",
|
|
779
|
+
"ventoux-kom",
|
|
780
|
+
undefined,
|
|
669
781
|
24682578,
|
|
670
782
|
"https://www.strava.com/segments/24682578",
|
|
671
783
|
8,
|
|
@@ -678,6 +790,8 @@ export const segments = [
|
|
|
678
790
|
"innsbruck",
|
|
679
791
|
7.4,
|
|
680
792
|
"https://whatsonzwift.com/world/innsbruck/segment/kom/forward",
|
|
793
|
+
"innsbruck-kom",
|
|
794
|
+
undefined,
|
|
681
795
|
18397965,
|
|
682
796
|
"https://www.strava.com/segments/18397965",
|
|
683
797
|
6,
|
|
@@ -690,6 +804,8 @@ export const segments = [
|
|
|
690
804
|
"innsbruck",
|
|
691
805
|
5.79,
|
|
692
806
|
"https://whatsonzwift.com/world/innsbruck/segment/kom/reverse",
|
|
807
|
+
"innsbruck-kom-reverse",
|
|
808
|
+
undefined,
|
|
693
809
|
18397927,
|
|
694
810
|
"https://www.strava.com/segments/18397927",
|
|
695
811
|
8,
|
|
@@ -702,6 +818,8 @@ export const segments = [
|
|
|
702
818
|
"innsbruck",
|
|
703
819
|
23.65,
|
|
704
820
|
"https://whatsonzwift.com/world/innsbruck/segment/uci-lap/forward",
|
|
821
|
+
"uci-lap",
|
|
822
|
+
undefined,
|
|
705
823
|
18398895,
|
|
706
824
|
"https://www.strava.com/segments/18398895",
|
|
707
825
|
undefined,
|
|
@@ -714,6 +832,8 @@ export const segments = [
|
|
|
714
832
|
"yorkshire",
|
|
715
833
|
1.2,
|
|
716
834
|
"https://whatsonzwift.com/world/yorkshire/segment/yorkshire-kom/forward",
|
|
835
|
+
"yorkshire-kom",
|
|
836
|
+
undefined,
|
|
717
837
|
21747822,
|
|
718
838
|
"https://www.strava.com/segments/21747822",
|
|
719
839
|
5.5,
|
|
@@ -726,6 +846,8 @@ export const segments = [
|
|
|
726
846
|
"yorkshire",
|
|
727
847
|
1.2,
|
|
728
848
|
"https://whatsonzwift.com/world/yorkshire/segment/yorkshire-kom/reverse",
|
|
849
|
+
"yorkshire-kom-reverse",
|
|
850
|
+
undefined,
|
|
729
851
|
21747891,
|
|
730
852
|
"https://www.strava.com/segments/21747891",
|
|
731
853
|
3.8,
|
|
@@ -738,6 +860,8 @@ export const segments = [
|
|
|
738
860
|
"crit-city",
|
|
739
861
|
1.95,
|
|
740
862
|
"https://whatsonzwift.com/world/crit-city/segment/crit-city/forward",
|
|
863
|
+
"crit-city-",
|
|
864
|
+
undefined,
|
|
741
865
|
22445564,
|
|
742
866
|
"https://www.strava.com/segments/22445564",
|
|
743
867
|
undefined,
|
|
@@ -750,6 +874,8 @@ export const segments = [
|
|
|
750
874
|
"crit-city",
|
|
751
875
|
1.95,
|
|
752
876
|
"https://whatsonzwift.com/world/crit-city/segment/crit-city/reverse",
|
|
877
|
+
"crit-city-reverse",
|
|
878
|
+
undefined,
|
|
753
879
|
22419554,
|
|
754
880
|
"https://www.strava.com/segments/22419554",
|
|
755
881
|
undefined,
|
|
@@ -762,6 +888,8 @@ export const segments = [
|
|
|
762
888
|
"crit-city",
|
|
763
889
|
0.197,
|
|
764
890
|
"https://whatsonzwift.com/world/crit-city/segment/prime/forward",
|
|
891
|
+
"prime-kom",
|
|
892
|
+
undefined,
|
|
765
893
|
undefined,
|
|
766
894
|
undefined,
|
|
767
895
|
4,
|
|
@@ -774,6 +902,8 @@ export const segments = [
|
|
|
774
902
|
"crit-city",
|
|
775
903
|
0.288,
|
|
776
904
|
"https://whatsonzwift.com/world/crit-city/segment/prime/reverse",
|
|
905
|
+
"prime-sprint",
|
|
906
|
+
undefined,
|
|
777
907
|
undefined,
|
|
778
908
|
undefined,
|
|
779
909
|
undefined,
|
|
@@ -786,6 +916,8 @@ export const segments = [
|
|
|
786
916
|
"paris",
|
|
787
917
|
6.62,
|
|
788
918
|
"https://whatsonzwift.com/world/paris/segment/champs-elysees/forward",
|
|
919
|
+
"champs-elysees",
|
|
920
|
+
undefined,
|
|
789
921
|
24674235,
|
|
790
922
|
"https://www.strava.com/segments/24674235",
|
|
791
923
|
undefined,
|
|
@@ -798,6 +930,8 @@ export const segments = [
|
|
|
798
930
|
"paris",
|
|
799
931
|
6.62,
|
|
800
932
|
"https://whatsonzwift.com/world/paris/segment/champs-elysees/reverse",
|
|
933
|
+
"champs-elysees-reverse",
|
|
934
|
+
undefined,
|
|
801
935
|
24674248,
|
|
802
936
|
"https://www.strava.com/segments/24674248",
|
|
803
937
|
undefined,
|
|
@@ -810,6 +944,8 @@ export const segments = [
|
|
|
810
944
|
"makuri-islands",
|
|
811
945
|
0.146,
|
|
812
946
|
"https://whatsonzwift.com/world/makuri-islands/segment/country-sprint/forward",
|
|
947
|
+
"country-sprint",
|
|
948
|
+
undefined,
|
|
813
949
|
undefined,
|
|
814
950
|
undefined,
|
|
815
951
|
undefined,
|
|
@@ -822,6 +958,8 @@ export const segments = [
|
|
|
822
958
|
"makuri-islands",
|
|
823
959
|
2.69,
|
|
824
960
|
"https://whatsonzwift.com/world/makuri-islands/segment/castle-kom/forward",
|
|
961
|
+
"castle-kom",
|
|
962
|
+
undefined,
|
|
825
963
|
28433453,
|
|
826
964
|
"https://www.strava.com/segments/28433453",
|
|
827
965
|
2.45,
|
|
@@ -834,6 +972,8 @@ export const segments = [
|
|
|
834
972
|
"makuri-islands",
|
|
835
973
|
0.15,
|
|
836
974
|
"https://whatsonzwift.com/world/makuri-islands/segment/village-sprint/forward",
|
|
975
|
+
"village-sprint",
|
|
976
|
+
undefined,
|
|
837
977
|
undefined,
|
|
838
978
|
undefined,
|
|
839
979
|
0.99,
|
|
@@ -846,6 +986,8 @@ export const segments = [
|
|
|
846
986
|
"makuri-islands",
|
|
847
987
|
2.51,
|
|
848
988
|
"https://whatsonzwift.com/world/makuri-islands/segment/temple-kom/forward",
|
|
989
|
+
"temple-kom",
|
|
990
|
+
undefined,
|
|
849
991
|
28432259,
|
|
850
992
|
"https://www.strava.com/segments/28432259",
|
|
851
993
|
3.95,
|
|
@@ -858,6 +1000,8 @@ export const segments = [
|
|
|
858
1000
|
"makuri-islands",
|
|
859
1001
|
1.88,
|
|
860
1002
|
"https://whatsonzwift.com/world/makuri-islands/segment/temple-kom/reverse",
|
|
1003
|
+
"temple-kom-reverse",
|
|
1004
|
+
undefined,
|
|
861
1005
|
28432293,
|
|
862
1006
|
"https://www.strava.com/segments/28432293",
|
|
863
1007
|
3.59,
|
|
@@ -870,6 +1014,8 @@ export const segments = [
|
|
|
870
1014
|
"makuri-islands",
|
|
871
1015
|
1.87,
|
|
872
1016
|
"https://whatsonzwift.com/world/makuri-islands/segment/rooftop-kom/forward",
|
|
1017
|
+
"rooftop-kom",
|
|
1018
|
+
undefined,
|
|
873
1019
|
30407861,
|
|
874
1020
|
"https://www.strava.com/segments/30407861",
|
|
875
1021
|
2.7,
|
|
@@ -882,6 +1028,8 @@ export const segments = [
|
|
|
882
1028
|
"makuri-islands",
|
|
883
1029
|
0.31,
|
|
884
1030
|
"https://whatsonzwift.com/world/makuri-islands/segment/tower-sprint/forward",
|
|
1031
|
+
"tower-sprint",
|
|
1032
|
+
undefined,
|
|
885
1033
|
30412571,
|
|
886
1034
|
"https://www.strava.com/segments/30412571",
|
|
887
1035
|
undefined,
|
|
@@ -894,6 +1042,8 @@ export const segments = [
|
|
|
894
1042
|
"makuri-islands",
|
|
895
1043
|
0.31,
|
|
896
1044
|
"https://whatsonzwift.com/world/makuri-islands/segment/tower-sprint/reverse",
|
|
1045
|
+
"tower-sprint-reverse",
|
|
1046
|
+
undefined,
|
|
897
1047
|
undefined,
|
|
898
1048
|
undefined,
|
|
899
1049
|
undefined,
|
|
@@ -906,6 +1056,8 @@ export const segments = [
|
|
|
906
1056
|
"makuri-islands",
|
|
907
1057
|
0.32,
|
|
908
1058
|
"https://whatsonzwift.com/world/makuri-islands/segment/castle-park-sprint/forward",
|
|
1059
|
+
"castle-park-sprint",
|
|
1060
|
+
undefined,
|
|
909
1061
|
undefined,
|
|
910
1062
|
undefined,
|
|
911
1063
|
undefined,
|
|
@@ -918,6 +1070,8 @@ export const segments = [
|
|
|
918
1070
|
"makuri-islands",
|
|
919
1071
|
0.32,
|
|
920
1072
|
"https://whatsonzwift.com/world/makuri-islands/segment/castle-park-sprint/reverse",
|
|
1073
|
+
"castle-park-sprint-reverse",
|
|
1074
|
+
undefined,
|
|
921
1075
|
undefined,
|
|
922
1076
|
undefined,
|
|
923
1077
|
undefined,
|
|
@@ -930,6 +1084,8 @@ export const segments = [
|
|
|
930
1084
|
"makuri-islands",
|
|
931
1085
|
0.48,
|
|
932
1086
|
"https://whatsonzwift.com/world/makuri-islands/segment/alley-sprint/forward",
|
|
1087
|
+
"alley-sprint",
|
|
1088
|
+
undefined,
|
|
933
1089
|
30412916,
|
|
934
1090
|
"https://www.strava.com/segments/30412916",
|
|
935
1091
|
undefined,
|
|
@@ -942,6 +1098,8 @@ export const segments = [
|
|
|
942
1098
|
"makuri-islands",
|
|
943
1099
|
0.48,
|
|
944
1100
|
"https://whatsonzwift.com/world/makuri-islands/segment/alley-sprint/reverse",
|
|
1101
|
+
"alley-sprint-reverse",
|
|
1102
|
+
undefined,
|
|
945
1103
|
30412903,
|
|
946
1104
|
"https://www.strava.com/segments/30412903",
|
|
947
1105
|
undefined,
|
|
@@ -954,6 +1112,8 @@ export const segments = [
|
|
|
954
1112
|
"makuri-islands",
|
|
955
1113
|
0.49,
|
|
956
1114
|
"https://whatsonzwift.com/world/makuri-islands/segment/railway-sprint/forward",
|
|
1115
|
+
"railway-sprint",
|
|
1116
|
+
undefined,
|
|
957
1117
|
30412927,
|
|
958
1118
|
"https://www.strava.com/segments/30412927",
|
|
959
1119
|
undefined,
|
|
@@ -970,6 +1130,8 @@ export const segments = [
|
|
|
970
1130
|
undefined,
|
|
971
1131
|
undefined,
|
|
972
1132
|
undefined,
|
|
1133
|
+
undefined,
|
|
1134
|
+
undefined,
|
|
973
1135
|
],
|
|
974
1136
|
[
|
|
975
1137
|
"Tidepool Sprint",
|
|
@@ -982,6 +1144,8 @@ export const segments = [
|
|
|
982
1144
|
undefined,
|
|
983
1145
|
undefined,
|
|
984
1146
|
undefined,
|
|
1147
|
+
undefined,
|
|
1148
|
+
undefined,
|
|
985
1149
|
],
|
|
986
1150
|
[
|
|
987
1151
|
"Shisa Sprint Rev.",
|
|
@@ -994,6 +1158,8 @@ export const segments = [
|
|
|
994
1158
|
undefined,
|
|
995
1159
|
undefined,
|
|
996
1160
|
undefined,
|
|
1161
|
+
undefined,
|
|
1162
|
+
undefined,
|
|
997
1163
|
],
|
|
998
1164
|
[
|
|
999
1165
|
"Shisa Sprint",
|
|
@@ -1006,6 +1172,8 @@ export const segments = [
|
|
|
1006
1172
|
undefined,
|
|
1007
1173
|
undefined,
|
|
1008
1174
|
undefined,
|
|
1175
|
+
undefined,
|
|
1176
|
+
undefined,
|
|
1009
1177
|
],
|
|
1010
1178
|
[
|
|
1011
1179
|
"Village Sprint Rev.",
|
|
@@ -1014,6 +1182,8 @@ export const segments = [
|
|
|
1014
1182
|
"makuri-islands",
|
|
1015
1183
|
0.14,
|
|
1016
1184
|
"https://whatsonzwift.com/world/makuri-islands/segment/village-sprint/reverse",
|
|
1185
|
+
"village-sprint-reverse",
|
|
1186
|
+
undefined,
|
|
1017
1187
|
undefined,
|
|
1018
1188
|
undefined,
|
|
1019
1189
|
undefined,
|
|
@@ -1026,6 +1196,8 @@ export const segments = [
|
|
|
1026
1196
|
"makuri-islands",
|
|
1027
1197
|
0.13,
|
|
1028
1198
|
"https://whatsonzwift.com/world/makuri-islands/segment/country-sprint/reverse",
|
|
1199
|
+
"country-sprint-reverse",
|
|
1200
|
+
undefined,
|
|
1029
1201
|
undefined,
|
|
1030
1202
|
undefined,
|
|
1031
1203
|
undefined,
|
|
@@ -1038,6 +1210,8 @@ export const segments = [
|
|
|
1038
1210
|
"scotland",
|
|
1039
1211
|
1,
|
|
1040
1212
|
"https://whatsonzwift.com/world/scotland/segment/sgurr-summit-south/forward",
|
|
1213
|
+
"sgurr-summit-south",
|
|
1214
|
+
undefined,
|
|
1041
1215
|
33636430,
|
|
1042
1216
|
"https://www.strava.com/segments/33636430",
|
|
1043
1217
|
3.3,
|
|
@@ -1050,6 +1224,8 @@ export const segments = [
|
|
|
1050
1224
|
"scotland",
|
|
1051
1225
|
1.6,
|
|
1052
1226
|
"https://whatsonzwift.com/world/scotland/segment/sgurr-summit-north/reverse",
|
|
1227
|
+
"sgurr-summit-north",
|
|
1228
|
+
undefined,
|
|
1053
1229
|
33636401,
|
|
1054
1230
|
"https://www.strava.com/segments/33636401",
|
|
1055
1231
|
3.7,
|
|
@@ -1062,6 +1238,8 @@ export const segments = [
|
|
|
1062
1238
|
"scotland",
|
|
1063
1239
|
0.3,
|
|
1064
1240
|
"https://whatsonzwift.com/world/scotland/segment/the-clyde-kicker/forward",
|
|
1241
|
+
"",
|
|
1242
|
+
undefined,
|
|
1065
1243
|
undefined,
|
|
1066
1244
|
undefined,
|
|
1067
1245
|
3.6,
|
|
@@ -1074,6 +1252,8 @@ export const segments = [
|
|
|
1074
1252
|
"scotland",
|
|
1075
1253
|
0.2,
|
|
1076
1254
|
"https://whatsonzwift.com/world/scotland/segment/champion-s-sprint/forward",
|
|
1255
|
+
"the-clyde-kicker",
|
|
1256
|
+
undefined,
|
|
1077
1257
|
undefined,
|
|
1078
1258
|
undefined,
|
|
1079
1259
|
undefined,
|
|
@@ -1086,6 +1266,8 @@ export const segments = [
|
|
|
1086
1266
|
"scotland",
|
|
1087
1267
|
0.45,
|
|
1088
1268
|
"https://whatsonzwift.com/world/scotland/segment/breakaway-brae/forward",
|
|
1269
|
+
"breakaway-brae",
|
|
1270
|
+
undefined,
|
|
1089
1271
|
undefined,
|
|
1090
1272
|
undefined,
|
|
1091
1273
|
2,
|
|
@@ -1098,6 +1280,8 @@ export const segments = [
|
|
|
1098
1280
|
"scotland",
|
|
1099
1281
|
0.62,
|
|
1100
1282
|
"https://whatsonzwift.com/world/scotland/segment/breakaway-brae-reverse/reverse",
|
|
1283
|
+
"breakaway-brae-reverse",
|
|
1284
|
+
undefined,
|
|
1101
1285
|
33620168,
|
|
1102
1286
|
"https://www.strava.com/segments/33620168",
|
|
1103
1287
|
2.4,
|
|
@@ -1110,18 +1294,22 @@ export const segments = [
|
|
|
1110
1294
|
"scotland",
|
|
1111
1295
|
8.06,
|
|
1112
1296
|
"https://whatsonzwift.com/world/scotland/segment/loch-loop-reverse/reverse",
|
|
1297
|
+
undefined,
|
|
1298
|
+
undefined,
|
|
1113
1299
|
33620222,
|
|
1114
1300
|
"https://www.strava.com/segments/33620222",
|
|
1115
1301
|
undefined,
|
|
1116
1302
|
undefined,
|
|
1117
1303
|
],
|
|
1118
|
-
].map(([name, slug, type, world, distance, whatsOnZwiftUrl, stravaSegmentId, stravaSegmentUrl, avgIncline, climbType,]) => ({
|
|
1304
|
+
].map(([name, slug, type, world, distance, whatsOnZwiftUrl, zwiftBikesPath, zwifterBikesUrl, stravaSegmentId, stravaSegmentUrl, avgIncline, climbType,]) => ({
|
|
1119
1305
|
name,
|
|
1120
1306
|
slug,
|
|
1121
1307
|
type,
|
|
1122
1308
|
world,
|
|
1123
1309
|
distance,
|
|
1124
1310
|
whatsOnZwiftUrl,
|
|
1311
|
+
zwiftBikesPath,
|
|
1312
|
+
zwifterBikesUrl,
|
|
1125
1313
|
stravaSegmentId,
|
|
1126
1314
|
stravaSegmentUrl,
|
|
1127
1315
|
avgIncline,
|