zwift-data 1.20.1 → 1.20.2

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.
Files changed (39) hide show
  1. package/lib/cjs/achievements.js +189 -942
  2. package/lib/cjs/bikeFrames.js +127 -742
  3. package/lib/cjs/bikeFrontWheels.js +63 -272
  4. package/lib/cjs/bikeRearWheels.js +64 -277
  5. package/lib/cjs/bikeShoes.js +19 -92
  6. package/lib/cjs/challenges.js +4 -17
  7. package/lib/cjs/glasses.js +26 -127
  8. package/lib/cjs/headgears.js +174 -547
  9. package/lib/cjs/jerseys.js +960 -4177
  10. package/lib/cjs/notableMomentTypes.js +14 -80
  11. package/lib/cjs/paintJobs.js +175 -686
  12. package/lib/cjs/routes.js +5398 -7204
  13. package/lib/cjs/runShirts.js +205 -762
  14. package/lib/cjs/runShoes.js +34 -147
  15. package/lib/cjs/runShorts.js +152 -517
  16. package/lib/cjs/segments.js +1044 -856
  17. package/lib/cjs/socks.js +121 -542
  18. package/lib/cjs/trainingPlans.js +30 -147
  19. package/lib/cjs/unlockableCategories.js +13 -50
  20. package/lib/esm/achievements.js +189 -942
  21. package/lib/esm/bikeFrames.js +127 -742
  22. package/lib/esm/bikeFrontWheels.js +63 -272
  23. package/lib/esm/bikeRearWheels.js +64 -277
  24. package/lib/esm/bikeShoes.js +19 -92
  25. package/lib/esm/challenges.js +4 -17
  26. package/lib/esm/glasses.js +26 -127
  27. package/lib/esm/headgears.js +174 -547
  28. package/lib/esm/jerseys.js +960 -4177
  29. package/lib/esm/notableMomentTypes.js +14 -80
  30. package/lib/esm/paintJobs.js +175 -686
  31. package/lib/esm/routes.js +5398 -7204
  32. package/lib/esm/runShirts.js +205 -762
  33. package/lib/esm/runShoes.js +34 -147
  34. package/lib/esm/runShorts.js +152 -517
  35. package/lib/esm/segments.js +1044 -856
  36. package/lib/esm/socks.js +121 -542
  37. package/lib/esm/trainingPlans.js +30 -147
  38. package/lib/esm/unlockableCategories.js +13 -50
  39. package/package.json +2 -1
@@ -1,857 +1,1045 @@
1
- // prettier-ignore
2
1
  export const segments = [
3
- {
4
- "name": "Ballon Sprint",
5
- "slug": "ballon-sprint",
6
- "type": "sprint",
7
- "world": "france",
8
- "distance": 0.212,
9
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/france/segment/ballon-sprint/forward"
10
- },
11
- {
12
- "name": "Ballon Sprint Rev.",
13
- "slug": "ballon-sprint-rev",
14
- "type": "sprint",
15
- "world": "france",
16
- "stravaSegmentId": 24700963,
17
- "stravaSegmentUrl": "https://www.strava.com/segments/24700963",
18
- "distance": 0.325,
19
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/france/segment/ballon-sprint-reverse/reverse"
20
- },
21
- {
22
- "name": "Broad St.",
23
- "slug": "broad-st",
24
- "type": "sprint",
25
- "world": "richmond",
26
- "distance": 0.283,
27
- "stravaSegmentId": 12128880,
28
- "stravaSegmentUrl": "https://www.strava.com/segments/12128880",
29
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/richmond/segment/broad-st/forward"
30
- },
31
- {
32
- "name": "Broad St. Rev.",
33
- "slug": "broad-st-rev",
34
- "type": "sprint",
35
- "world": "richmond",
36
- "distance": 0.064,
37
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/richmond/segment/broad-st/reverse"
38
- },
39
- {
40
- "name": "Fuego Flats",
41
- "slug": "fuego-flats",
42
- "type": "sprint",
43
- "world": "watopia",
44
- "stravaSegmentId": 20350107,
45
- "stravaSegmentUrl": "https://www.strava.com/segments/20350107",
46
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/watopia/segment/fuego-flats/forward",
47
- "distance": 0.496
48
- },
49
- {
50
- "name": "Fuego Flats Rev.",
51
- "slug": "fuego-flats-rev",
52
- "type": "segment",
53
- "world": "watopia",
54
- "stravaSegmentId": 20350066,
55
- "stravaSegmentUrl": "https://www.strava.com/segments/20350066",
56
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/watopia/segment/fuego-flats-reverse/reverse",
57
- "distance": 7.1
58
- },
59
- {
60
- "name": "Innsbruck Sprint",
61
- "slug": "innsbruck-sprint",
62
- "type": "sprint",
63
- "world": "innsbruck",
64
- "distance": 0.3,
65
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/innsbruck/segment/sprint/forward"
66
- },
67
- {
68
- "name": "Innsbruck Sprint Rev.",
69
- "slug": "innsbruck-sprint-rev",
70
- "type": "sprint",
71
- "world": "innsbruck",
72
- "distance": 0.2,
73
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/innsbruck/segment/sprint/reverse"
74
- },
75
- {
76
- "name": "Lutece Sprint",
77
- "slug": "lutece-sprint",
78
- "type": "sprint",
79
- "world": "paris",
80
- "distance": 0.148,
81
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/paris/segment/lutece-sprint/forward"
82
- },
83
- {
84
- "name": "Lutece Sprint Rev.",
85
- "slug": "lutece-sprint-rev",
86
- "type": "sprint",
87
- "world": "paris",
88
- "distance": 0.225,
89
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/paris/segment/lutece-reverse-sprint/reverse"
90
- },
91
- {
92
- "name": "Marina Sprint",
93
- "slug": "marina-sprint",
94
- "type": "sprint",
95
- "world": "france",
96
- "stravaSegmentId": 24710590,
97
- "stravaSegmentUrl": "https://www.strava.com/segments/24710590",
98
- "distance": 0.338,
99
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/france/segment/marina-sprint/forward"
100
- },
101
- {
102
- "name": "Marina Sprint Rev.",
103
- "slug": "marina-sprint-rev",
104
- "type": "sprint",
105
- "world": "france",
106
- "distance": 0.193,
107
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/france/segment/marina-sprint-reverse/reverse"
108
- },
109
- {
110
- "name": "Richmond Sprint",
111
- "slug": "richmond-sprint",
112
- "type": "sprint",
113
- "world": "richmond",
114
- "distance": 0.221,
115
- "stravaSegmentId": 12128762,
116
- "stravaSegmentUrl": "https://www.strava.com/segments/12128762",
117
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/richmond/segment/sprint/forward"
118
- },
119
- {
120
- "name": "Richmond Sprint Rev.",
121
- "slug": "richmond-sprint-rev",
122
- "type": "sprint",
123
- "world": "richmond",
124
- "distance": 0.203,
125
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/richmond/segment/sprint/reverse"
126
- },
127
- {
128
- "name": "New York Sprint",
129
- "slug": "new-york-sprint",
130
- "type": "sprint",
131
- "world": "new-york",
132
- "distance": 0.15,
133
- "avgIncline": -4.3,
134
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/new-york/segment/ny-sprint/forward"
135
- },
136
- {
137
- "name": "New York Sprint Rev.",
138
- "slug": "new-york-sprint-rev",
139
- "type": "climb",
140
- "world": "new-york",
141
- "distance": 0.23,
142
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/new-york/segment/ny-sprint/reverse"
143
- },
144
- {
145
- "name": "Pavé Sprint",
146
- "slug": "pave-sprint",
147
- "type": "sprint",
148
- "world": "france",
149
- "distance": 0.333,
150
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/france/segment/pave-sprint/forward"
151
- },
152
- {
153
- "name": "Pavé Sprint Rev.",
154
- "slug": "pave-sprint-rev",
155
- "type": "sprint",
156
- "world": "france",
157
- "distance": 0.334,
158
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/france/segment/pave-sprint-reverse/reverse"
159
- },
160
- {
161
- "name": "London Sprint",
162
- "slug": "london-sprint",
163
- "type": "sprint",
164
- "world": "london",
165
- "distance": 0.2,
166
- "stravaSegmentId": 12749402,
167
- "stravaSegmentUrl": "https://www.strava.com/segments/12749402",
168
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/london/segment/sprint/forward"
169
- },
170
- {
171
- "name": "London Sprint Rev.",
172
- "slug": "london-sprint-rev",
173
- "type": "sprint",
174
- "world": "london",
175
- "distance": 0.2,
176
- "stravaSegmentId": 12749377,
177
- "stravaSegmentUrl": "https://www.strava.com/segments/12749377",
178
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/london/segment/sprint/reverse"
179
- },
180
- {
181
- "name": "Watopia Sprint",
182
- "slug": "watopia-sprint",
183
- "type": "sprint",
184
- "world": "watopia",
185
- "stravaSegmentId": 12109305,
186
- "stravaSegmentUrl": "https://www.strava.com/segments/12109305",
187
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/watopia/segment/sprint/forward",
188
- "distance": 0.36
189
- },
190
- {
191
- "name": "Watopia Sprint Rev.",
192
- "slug": "watopia-sprint-rev",
193
- "type": "sprint",
194
- "world": "watopia",
195
- "stravaSegmentId": 12109228,
196
- "stravaSegmentUrl": "https://www.strava.com/segments/12109228",
197
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/watopia/segment/sprint/reverse",
198
- "distance": 0.2
199
- },
200
- {
201
- "name": "Yorkshire Sprint",
202
- "slug": "yorkshire-sprint",
203
- "type": "sprint",
204
- "world": "yorkshire",
205
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/yorkshire/segment/yorkshire-sprint/forward",
206
- "distance": 0.25
207
- },
208
- {
209
- "name": "Yorkshire Sprint Rev.",
210
- "slug": "yorkshire-sprint-rev",
211
- "type": "sprint",
212
- "world": "yorkshire",
213
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/yorkshire/segment/yorkshire-sprint-reverse/reverse",
214
- "distance": 0.4,
215
- "stravaSegmentId": 21748007,
216
- "stravaSegmentUrl": "https://www.strava.com/segments/21748007"
217
- },
218
- {
219
- "name": "Alpe du Zwift",
220
- "slug": "alpe-du-zwift",
221
- "type": "climb",
222
- "world": "watopia",
223
- "climbType": "HC",
224
- "distance": 12.44,
225
- "avgIncline": 8.5,
226
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/watopia/segment/alpe-du-zwift/forward",
227
- "stravaSegmentUrl": "https://www.strava.com/segments/17267489",
228
- "stravaSegmentId": 17267489
229
- },
230
- {
231
- "name": "Epic KOM",
232
- "slug": "epic-kom",
233
- "type": "climb",
234
- "world": "watopia",
235
- "climbType": "2",
236
- "distance": 9.49,
237
- "avgIncline": 4,
238
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/watopia/segment/epic-kom/forward",
239
- "stravaSegmentUrl": "https://www.strava.com/segments/16784833",
240
- "stravaSegmentId": 16784833
241
- },
242
- {
243
- "name": "Epic KOM Rev.",
244
- "slug": "epic-kom-rev",
245
- "type": "climb",
246
- "world": "watopia",
247
- "climbType": "2",
248
- "distance": 6.27,
249
- "avgIncline": 6.3,
250
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/watopia/segment/epic-kom/reverse",
251
- "stravaSegmentId": 16784850,
252
- "stravaSegmentUrl": "https://www.strava.com/segments/16784850"
253
- },
254
- {
255
- "name": "Hilly Loop",
256
- "slug": "hilly-loop",
257
- "type": "segment",
258
- "world": "watopia",
259
- "distance": 9.01,
260
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/watopia/segment/hilly-loop/forward",
261
- "stravaSegmentUrl": "https://www.strava.com/segments/12118362",
262
- "stravaSegmentId": 12118362
263
- },
264
- {
265
- "name": "Hilly Loop Rev.",
266
- "slug": "hilly-loop-rev",
267
- "type": "segment",
268
- "world": "watopia",
269
- "distance": 9.01,
270
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/watopia/segment/hilly-loop/reverse",
271
- "stravaSegmentId": 12128037,
272
- "stravaSegmentUrl": "https://www.strava.com/segments/12128037"
273
- },
274
- {
275
- "name": "Jungle Loop",
276
- "slug": "jungle-loop",
277
- "type": "segment",
278
- "world": "watopia",
279
- "distance": 7.8,
280
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/watopia/segment/jungle-loop/forward",
281
- "stravaSegmentId": 16359371,
282
- "stravaSegmentUrl": "https://www.strava.com/segments/16359371"
283
- },
284
- {
285
- "name": "Jungle Loop Rev.",
286
- "slug": "jungle-loop-rev",
287
- "type": "segment",
288
- "world": "watopia",
289
- "distance": 7.8,
290
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/watopia/segment/jungle-loop/reverse",
291
- "stravaSegmentId": 16359363,
292
- "stravaSegmentUrl": "https://www.strava.com/segments/16359363"
293
- },
294
- {
295
- "name": "Titans Grove KOM",
296
- "slug": "titans-grove-kom",
297
- "type": "climb",
298
- "world": "watopia",
299
- "distance": 2.6,
300
- "avgIncline": 2.2,
301
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/watopia/segment/titans-grove-kom/forward",
302
- "stravaSegmentId": 21343975,
303
- "stravaSegmentUrl": "https://www.strava.com/segments/21343975"
304
- },
305
- {
306
- "name": "Titans Grove KOM Rev.",
307
- "slug": "titans-grove-kom-rev",
308
- "type": "climb",
309
- "world": "watopia",
310
- "distance": 0.89,
311
- "avgIncline": 6.6,
312
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/watopia/segment/titans-grove-kom/reverse",
313
- "stravaSegmentId": 21343961,
314
- "stravaSegmentUrl": "https://www.strava.com/segments/21343961"
315
- },
316
- {
317
- "name": "Volcano Circuit",
318
- "slug": "volcano-circuit",
319
- "type": "segment",
320
- "world": "watopia",
321
- "distance": 4.2,
322
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/watopia/segment/volcano/forward",
323
- "stravaSegmentUrl": "https://www.strava.com/segments/14032406",
324
- "stravaSegmentId": 14032406
325
- },
326
- {
327
- "name": "Volcano Circuit Rev.",
328
- "slug": "volcano-circuit-rev",
329
- "type": "segment",
330
- "world": "watopia",
331
- "distance": 4.2,
332
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/watopia/segment/volcano/reverse",
333
- "stravaSegmentId": 14032426,
334
- "stravaSegmentUrl": "https://www.strava.com/segments/14032426"
335
- },
336
- {
337
- "name": "Volcano KOM",
338
- "slug": "volcano-kom",
339
- "type": "climb",
340
- "world": "watopia",
341
- "distance": 3.75,
342
- "avgIncline": 3.2,
343
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/watopia/segment/volcano-kom/forward",
344
- "stravaSegmentId": 14270131,
345
- "stravaSegmentUrl": "https://www.strava.com/segments/14270131"
346
- },
347
- {
348
- "name": "Zwift KOM",
349
- "slug": "zwift-kom",
350
- "type": "climb",
351
- "world": "watopia",
352
- "distance": 0.9,
353
- "avgIncline": 5,
354
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/watopia/segment/zwift-kom/forward",
355
- "stravaSegmentUrl": "https://www.strava.com/segments/12109030",
356
- "stravaSegmentId": 12109030
357
- },
358
- {
359
- "name": "Zwift KOM Rev.",
360
- "slug": "zwift-kom-rev",
361
- "type": "climb",
362
- "world": "watopia",
363
- "distance": 2.4,
364
- "avgIncline": 2,
365
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/watopia/segment/zwift-kom/reverse",
366
- "stravaSegmentId": 12128029,
367
- "stravaSegmentUrl": "https://www.strava.com/segments/12128029"
368
- },
369
- {
370
- "name": "Bologna TT",
371
- "slug": "bologna-tt",
372
- "type": "climb",
373
- "world": "bologna",
374
- "distance": 8,
375
- "avgIncline": 2.8,
376
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/bologna-tt/segment/bologna-tt/forward",
377
- "stravaSegmentId": 20560239,
378
- "stravaSegmentUrl": "https://www.strava.com/segments/20560239"
379
- },
380
- {
381
- "name": "Central Park Loop Rev.",
382
- "slug": "central-park-loop-rev",
383
- "type": "segment",
384
- "world": "new-york",
385
- "distance": 9.7,
386
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/new-york/segment/central-park-loop/reverse",
387
- "stravaSegmentUrl": "https://www.strava.com/segments/19170661",
388
- "stravaSegmentId": 19170661
389
- },
390
- {
391
- "name": "New York KOM",
392
- "slug": "new-york-kom",
393
- "type": "climb",
394
- "world": "new-york",
395
- "distance": 1.4,
396
- "avgIncline": 6.1,
397
- "climbType": "4",
398
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/new-york/segment/new-york-kom/forward",
399
- "stravaSegmentUrl": "https://www.strava.com/segments/19141090",
400
- "stravaSegmentId": 19141090
401
- },
402
- {
403
- "name": "New York KOM Rev.",
404
- "slug": "new-york-kom-rev",
405
- "type": "climb",
406
- "world": "new-york",
407
- "distance": 1.1,
408
- "avgIncline": 5.7,
409
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/new-york/segment/new-york-kom/reverse",
410
- "stravaSegmentId": 19141092,
411
- "stravaSegmentUrl": "https://www.strava.com/segments/19141092"
412
- },
413
- {
414
- "name": "23rd St.",
415
- "slug": "23rd-st",
416
- "type": "climb",
417
- "world": "richmond",
418
- "distance": 0.275,
419
- "avgIncline": 10,
420
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/richmond/segment/23rd-st/forward",
421
- "stravaSegmentUrl": "https://www.strava.com/segments/12128917",
422
- "stravaSegmentId": 12128917
423
- },
424
- {
425
- "name": "23rd St. Rev",
426
- "slug": "23rd-st-rev",
427
- "type": "climb",
428
- "world": "richmond",
429
- "distance": 1.1,
430
- "avgIncline": 3.5,
431
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/richmond/segment/23rd-st/reverse",
432
- "stravaSegmentId": 22813206,
433
- "stravaSegmentUrl": "https://www.strava.com/segments/22813206"
434
- },
435
- {
436
- "name": "Richmond KOM",
437
- "slug": "richmond-kom",
438
- "type": "climb",
439
- "distance": 0.644,
440
- "avgIncline": 6.4,
441
- "world": "richmond",
442
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/richmond/segment/kom/forward",
443
- "stravaSegmentId": 12128826,
444
- "stravaSegmentUrl": "https://www.strava.com/segments/12128826"
445
- },
446
- {
447
- "name": "Richmond KOM Rev.",
448
- "slug": "richmond-kom-rev",
449
- "type": "climb",
450
- "distance": 0.7,
451
- "avgIncline": 3.4,
452
- "world": "richmond",
453
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/richmond/segment/kom/reverse",
454
- "stravaSegmentUrl": "https://www.strava.com/segments/26935782",
455
- "stravaSegmentId": 26935782
456
- },
457
- {
458
- "name": "Richmond UCI Cource",
459
- "slug": "richmond-uci-course",
460
- "type": "segment",
461
- "world": "richmond",
462
- "distance": 16.2,
463
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/richmond/segment/uci-course/forward",
464
- "stravaSegmentId": 12128718,
465
- "stravaSegmentUrl": "https://www.strava.com/segments/12128718"
466
- },
467
- {
468
- "name": "Fox Hill",
469
- "slug": "fox-hill",
470
- "type": "climb",
471
- "distance": 2.4,
472
- "avgIncline": 4.9,
473
- "world": "london",
474
- "climbType": "4",
475
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/london/segment/fox-hill/forward",
476
- "stravaSegmentUrl": "https://www.strava.com/segments/16802545",
477
- "stravaSegmentId": 16802545
478
- },
479
- {
480
- "name": "Box Hill",
481
- "slug": "box-hill",
482
- "type": "climb",
483
- "distance": 3,
484
- "avgIncline": 4.3,
485
- "world": "london",
486
- "climbType": "4",
487
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/london/segment/box-hill/reverse",
488
- "stravaSegmentId": 12744502,
489
- "stravaSegmentUrl": "https://www.strava.com/segments/12744502"
490
- },
491
- {
492
- "name": "Leith Hill",
493
- "slug": "leith-hill",
494
- "type": "climb",
495
- "distance": 1.9,
496
- "avgIncline": 6.8,
497
- "world": "london",
498
- "climbType": "4",
499
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/london/segment/leith-hill/forward",
500
- "stravaSegmentId": 16781411,
501
- "stravaSegmentUrl": "https://www.strava.com/segments/16781411"
502
- },
503
- {
504
- "name": "Keith Hill",
505
- "slug": "keith-hill",
506
- "type": "climb",
507
- "distance": 4.34,
508
- "avgIncline": 5,
509
- "world": "london",
510
- "climbType": "3",
511
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/london/segment/keith-hill/reverse",
512
- "stravaSegmentUrl": "https://www.strava.com/segments/16781407",
513
- "stravaSegmentId": 16781407
514
- },
515
- {
516
- "name": "London Loop",
517
- "slug": "london-loop",
518
- "type": "segment",
519
- "distance": 14.96,
520
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/london/segment/london-loop/reverse",
521
- "world": "london",
522
- "stravaSegmentUrl": "https://www.strava.com/segments/12749649",
523
- "stravaSegmentId": 12749649
524
- },
525
- {
526
- "name": "Aqueduc KOM",
527
- "slug": "aqueduc-kom",
528
- "type": "climb",
529
- "distance": 0.42,
530
- "avgIncline": 3,
531
- "world": "france",
532
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/france/segment/aqueduc-kom/forward",
533
- "stravaSegmentUrl": "https://www.strava.com/segments/24700976",
534
- "stravaSegmentId": 24700976
535
- },
536
- {
537
- "name": "Aqueduc KOM Rev.",
538
- "slug": "aqueduc-kom-rev",
539
- "type": "climb",
540
- "distance": 0.403,
541
- "avgIncline": 5,
542
- "world": "france",
543
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/france/segment/aqueduc-kom/reverse",
544
- "stravaSegmentUrl": "https://www.strava.com/segments/24701010",
545
- "stravaSegmentId": 24701010
546
- },
547
- {
548
- "name": "Petit KOM",
549
- "slug": "petit-kom",
550
- "type": "climb",
551
- "climbType": "4",
552
- "distance": 2.7,
553
- "avgIncline": 4,
554
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/france/segment/petit-kom/forward",
555
- "world": "france",
556
- "stravaSegmentUrl": "https://www.strava.com/segments/24690967",
557
- "stravaSegmentId": 24690967
558
- },
559
- {
560
- "name": "Ventoux KOM",
561
- "slug": "ventoux-kom",
562
- "type": "climb",
563
- "distance": 19,
564
- "avgIncline": 8,
565
- "world": "france",
566
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/france/segment/ventoux-kom/forward",
567
- "stravaSegmentUrl": "https://www.strava.com/segments/24682578",
568
- "stravaSegmentId": 24682578
569
- },
570
- {
571
- "name": "Innsbruck KOM",
572
- "slug": "innsbruck-kom",
573
- "type": "climb",
574
- "distance": 7.4,
575
- "avgIncline": 6,
576
- "world": "innsbruck",
577
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/innsbruck/segment/kom/forward",
578
- "climbType": "2",
579
- "stravaSegmentUrl": "https://www.strava.com/segments/18397965",
580
- "stravaSegmentId": 18397965
581
- },
582
- {
583
- "name": "Innsbruck KOM Rev.",
584
- "slug": "innsbruck-kom-rev",
585
- "type": "climb",
586
- "distance": 5.79,
587
- "avgIncline": 8,
588
- "world": "innsbruck",
589
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/innsbruck/segment/kom/reverse",
590
- "climbType": "2",
591
- "stravaSegmentUrl": "https://www.strava.com/segments/18397927",
592
- "stravaSegmentId": 18397927
593
- },
594
- {
595
- "name": "Innsbruck UCI Lap",
596
- "slug": "innsbruck-uci-lap",
597
- "type": "segment",
598
- "world": "innsbruck",
599
- "distance": 23.65,
600
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/innsbruck/segment/uci-lap/forward",
601
- "stravaSegmentId": 18398895,
602
- "stravaSegmentUrl": "https://www.strava.com/segments/18398895"
603
- },
604
- {
605
- "name": "Yorkshire KOM",
606
- "slug": "yorkshire-kom",
607
- "type": "climb",
608
- "distance": 1.2,
609
- "avgIncline": 5.5,
610
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/yorkshire/segment/yorkshire-kom/forward",
611
- "world": "yorkshire",
612
- "stravaSegmentId": 21747822,
613
- "stravaSegmentUrl": "https://www.strava.com/segments/21747822"
614
- },
615
- {
616
- "name": "Yorkshire KOM Rev.",
617
- "slug": "yorkshire-kom-rev",
618
- "type": "climb",
619
- "distance": 1.2,
620
- "avgIncline": 3.8,
621
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/yorkshire/segment/yorkshire-kom/reverse",
622
- "world": "yorkshire",
623
- "stravaSegmentId": 21747891,
624
- "stravaSegmentUrl": "https://www.strava.com/segments/21747891"
625
- },
626
- {
627
- "name": "Crit City",
628
- "slug": "crit-city",
629
- "type": "segment",
630
- "distance": 1.95,
631
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/crit-city/segment/crit-city/forward",
632
- "world": "crit-city",
633
- "stravaSegmentId": 22445564,
634
- "stravaSegmentUrl": "https://www.strava.com/segments/22445564"
635
- },
636
- {
637
- "name": "Crit City Rev.",
638
- "slug": "crit-city-rev",
639
- "type": "segment",
640
- "distance": 1.95,
641
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/crit-city/segment/crit-city/reverse",
642
- "world": "crit-city",
643
- "stravaSegmentId": 22419554,
644
- "stravaSegmentUrl": "https://www.strava.com/segments/22419554"
645
- },
646
- {
647
- "name": "Prime",
648
- "slug": "prime",
649
- "type": "climb",
650
- "distance": 0.197,
651
- "avgIncline": 4,
652
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/crit-city/segment/prime/forward",
653
- "world": "crit-city"
654
- },
655
- {
656
- "name": "Prime Rev.",
657
- "slug": "prime-rev",
658
- "type": "sprint",
659
- "distance": 0.288,
660
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/crit-city/segment/prime/reverse",
661
- "world": "crit-city"
662
- },
663
- {
664
- "name": "Champs Elysées",
665
- "slug": "champs-elysees",
666
- "type": "segment",
667
- "distance": 6.62,
668
- "world": "paris",
669
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/paris/segment/champs-elysees/forward",
670
- "stravaSegmentId": 24674235,
671
- "stravaSegmentUrl": "https://www.strava.com/segments/24674235"
672
- },
673
- {
674
- "name": "Champs Elysées Rev.",
675
- "slug": "champs-elysees-rev",
676
- "type": "segment",
677
- "distance": 6.62,
678
- "world": "paris",
679
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/paris/segment/champs-elysees/reverse",
680
- "stravaSegmentId": 24674248,
681
- "stravaSegmentUrl": "https://www.strava.com/segments/24674248"
682
- },
683
- {
684
- "name": "Country Sprint",
685
- "slug": "country-sprint",
686
- "type": "sprint",
687
- "distance": 0.146,
688
- "world": "makuri-islands",
689
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/makuri-islands/segment/country-sprint/forward"
690
- },
691
- {
692
- "name": "Castle KOM",
693
- "slug": "castle-kom",
694
- "type": "climb",
695
- "distance": 2.69,
696
- "avgIncline": 2.45,
697
- "world": "makuri-islands",
698
- "stravaSegmentId": 28433453,
699
- "stravaSegmentUrl": "https://www.strava.com/segments/28433453",
700
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/makuri-islands/segment/castle-kom/forward"
701
- },
702
- {
703
- "name": "Village Sprint",
704
- "slug": "village-sprint",
705
- "type": "sprint",
706
- "distance": 0.15,
707
- "avgIncline": 0.99,
708
- "world": "makuri-islands",
709
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/makuri-islands/segment/village-sprint/forward"
710
- },
711
- {
712
- "name": "Temple KOM from Fishing Village Side",
713
- "slug": "temple-kom-from-fishing-village-side",
714
- "type": "climb",
715
- "distance": 2.51,
716
- "avgIncline": 3.95,
717
- "climbType": "4",
718
- "world": "makuri-islands",
719
- "stravaSegmentId": 28432259,
720
- "stravaSegmentUrl": "https://www.strava.com/segments/28432259",
721
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/makuri-islands/segment/temple-kom/forward"
722
- },
723
- {
724
- "name": "Temple KOM from Castle Side",
725
- "slug": "temple-kom-from-castle-side",
726
- "type": "climb",
727
- "distance": 1.88,
728
- "avgIncline": 3.59,
729
- "world": "makuri-islands",
730
- "stravaSegmentId": 28432293,
731
- "stravaSegmentUrl": "https://www.strava.com/segments/28432293",
732
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/makuri-islands/segment/temple-kom/reverse"
733
- },
734
- {
735
- "name": "Rooftop KOM",
736
- "slug": "rooftop-kom",
737
- "type": "climb",
738
- "distance": 1.87,
739
- "avgIncline": 2.7,
740
- "world": "makuri-islands",
741
- "stravaSegmentId": 30407861,
742
- "stravaSegmentUrl": "https://www.strava.com/segments/30407861",
743
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/makuri-islands/segment/rooftop-kom/forward"
744
- },
745
- {
746
- "name": "Tower Sprint",
747
- "slug": "tower-sprint",
748
- "type": "sprint",
749
- "distance": 0.31,
750
- "world": "makuri-islands",
751
- "stravaSegmentId": 30412571,
752
- "stravaSegmentUrl": "https://www.strava.com/segments/30412571",
753
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/makuri-islands/segment/tower-sprint/forward"
754
- },
755
- {
756
- "name": "Tower Sprint Rev.",
757
- "slug": "tower-sprint-rev",
758
- "type": "sprint",
759
- "distance": 0.31,
760
- "world": "makuri-islands",
761
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/makuri-islands/segment/tower-sprint/reverse"
762
- },
763
- {
764
- "name": "Castle Park Sprint",
765
- "slug": "castle-park-sprint",
766
- "distance": 0.32,
767
- "type": "sprint",
768
- "world": "makuri-islands",
769
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/makuri-islands/segment/castle-park-sprint/forward"
770
- },
771
- {
772
- "name": "Castle Park Sprint Rev.",
773
- "slug": "castle-park-sprint-rev",
774
- "distance": 0.32,
775
- "type": "sprint",
776
- "world": "makuri-islands",
777
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/makuri-islands/segment/castle-park-sprint/reverse"
778
- },
779
- {
780
- "name": "Alley Sprint",
781
- "slug": "alley-sprint",
782
- "distance": 0.48,
783
- "type": "sprint",
784
- "world": "makuri-islands",
785
- "stravaSegmentId": 30412916,
786
- "stravaSegmentUrl": "https://www.strava.com/segments/30412916",
787
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/makuri-islands/segment/alley-sprint/forward"
788
- },
789
- {
790
- "name": "Alley Sprint Rev.",
791
- "slug": "alley-sprint-rev",
792
- "distance": 0.48,
793
- "type": "sprint",
794
- "world": "makuri-islands",
795
- "stravaSegmentId": 30412903,
796
- "stravaSegmentUrl": "https://www.strava.com/segments/30412903",
797
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/makuri-islands/segment/alley-sprint/reverse"
798
- },
799
- {
800
- "name": "Railway Sprint",
801
- "slug": "railway-sprint",
802
- "distance": 0.49,
803
- "type": "sprint",
804
- "world": "makuri-islands",
805
- "stravaSegmentId": 30412927,
806
- "stravaSegmentUrl": "https://www.strava.com/segments/30412927",
807
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/makuri-islands/segment/railway-sprint/forward"
808
- },
809
- {
810
- "name": "Boardwalk Sprint",
811
- "slug": "boardwalk-sprint",
812
- "distance": 0.24,
813
- "type": "sprint",
814
- "world": "makuri-islands",
815
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/makuri-islands/segment/boardwalk-sprint/forward"
816
- },
817
- {
818
- "name": "Tidepool Sprint",
819
- "slug": "tidepool-sprint",
820
- "distance": 0.31,
821
- "type": "sprint",
822
- "world": "makuri-islands",
823
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/makuri-islands/segment/tidepool-sprint/reverse"
824
- },
825
- {
826
- "name": "Shisa Sprint Rev.",
827
- "slug": "shisa-sprint-rev",
828
- "distance": 0.29,
829
- "type": "sprint",
830
- "world": "makuri-islands",
831
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/makuri-islands/segment/shisa-sprint/reverse"
832
- },
833
- {
834
- "name": "Shisa Sprint",
835
- "slug": "shisa-sprint",
836
- "distance": 0.28,
837
- "type": "sprint",
838
- "world": "makuri-islands",
839
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/makuri-islands/segment/shisa-sprint/forward"
840
- },
841
- {
842
- "name": "Village Sprint Rev.",
843
- "slug": "village-sprint-rev",
844
- "distance": 0.14,
845
- "type": "sprint",
846
- "world": "makuri-islands",
847
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/makuri-islands/segment/village-sprint/reverse"
848
- },
849
- {
850
- "name": "Country Sprint Rev.",
851
- "slug": "country-sprint-rev",
852
- "distance": 0.13,
853
- "type": "sprint",
854
- "world": "makuri-islands",
855
- "whatsOnZwiftUrl": "https://whatsonzwift.com/world/makuri-islands/segment/country-sprint/reverse"
856
- }
857
- ];
2
+ [
3
+ "Ballon Sprint",
4
+ "ballon-sprint",
5
+ "sprint",
6
+ "france",
7
+ 0.212,
8
+ "https://whatsonzwift.com/world/france/segment/ballon-sprint/forward",
9
+ undefined,
10
+ undefined,
11
+ undefined,
12
+ undefined,
13
+ ],
14
+ [
15
+ "Ballon Sprint Rev.",
16
+ "ballon-sprint-rev",
17
+ "sprint",
18
+ "france",
19
+ 0.325,
20
+ "https://whatsonzwift.com/world/france/segment/ballon-sprint-reverse/reverse",
21
+ 24700963,
22
+ "https://www.strava.com/segments/24700963",
23
+ undefined,
24
+ undefined,
25
+ ],
26
+ [
27
+ "Broad St.",
28
+ "broad-st",
29
+ "sprint",
30
+ "richmond",
31
+ 0.283,
32
+ "https://whatsonzwift.com/world/richmond/segment/broad-st/forward",
33
+ 12128880,
34
+ "https://www.strava.com/segments/12128880",
35
+ undefined,
36
+ undefined,
37
+ ],
38
+ [
39
+ "Broad St. Rev.",
40
+ "broad-st-rev",
41
+ "sprint",
42
+ "richmond",
43
+ 0.064,
44
+ "https://whatsonzwift.com/world/richmond/segment/broad-st/reverse",
45
+ undefined,
46
+ undefined,
47
+ undefined,
48
+ undefined,
49
+ ],
50
+ [
51
+ "Fuego Flats",
52
+ "fuego-flats",
53
+ "sprint",
54
+ "watopia",
55
+ 0.496,
56
+ "https://whatsonzwift.com/world/watopia/segment/fuego-flats/forward",
57
+ 20350107,
58
+ "https://www.strava.com/segments/20350107",
59
+ undefined,
60
+ undefined,
61
+ ],
62
+ [
63
+ "Fuego Flats Rev.",
64
+ "fuego-flats-rev",
65
+ "segment",
66
+ "watopia",
67
+ 7.1,
68
+ "https://whatsonzwift.com/world/watopia/segment/fuego-flats-reverse/reverse",
69
+ 20350066,
70
+ "https://www.strava.com/segments/20350066",
71
+ undefined,
72
+ undefined,
73
+ ],
74
+ [
75
+ "Innsbruck Sprint",
76
+ "innsbruck-sprint",
77
+ "sprint",
78
+ "innsbruck",
79
+ 0.3,
80
+ "https://whatsonzwift.com/world/innsbruck/segment/sprint/forward",
81
+ undefined,
82
+ undefined,
83
+ undefined,
84
+ undefined,
85
+ ],
86
+ [
87
+ "Innsbruck Sprint Rev.",
88
+ "innsbruck-sprint-rev",
89
+ "sprint",
90
+ "innsbruck",
91
+ 0.2,
92
+ "https://whatsonzwift.com/world/innsbruck/segment/sprint/reverse",
93
+ undefined,
94
+ undefined,
95
+ undefined,
96
+ undefined,
97
+ ],
98
+ [
99
+ "Lutece Sprint",
100
+ "lutece-sprint",
101
+ "sprint",
102
+ "paris",
103
+ 0.148,
104
+ "https://whatsonzwift.com/world/paris/segment/lutece-sprint/forward",
105
+ undefined,
106
+ undefined,
107
+ undefined,
108
+ undefined,
109
+ ],
110
+ [
111
+ "Lutece Sprint Rev.",
112
+ "lutece-sprint-rev",
113
+ "sprint",
114
+ "paris",
115
+ 0.225,
116
+ "https://whatsonzwift.com/world/paris/segment/lutece-reverse-sprint/reverse",
117
+ undefined,
118
+ undefined,
119
+ undefined,
120
+ undefined,
121
+ ],
122
+ [
123
+ "Marina Sprint",
124
+ "marina-sprint",
125
+ "sprint",
126
+ "france",
127
+ 0.338,
128
+ "https://whatsonzwift.com/world/france/segment/marina-sprint/forward",
129
+ 24710590,
130
+ "https://www.strava.com/segments/24710590",
131
+ undefined,
132
+ undefined,
133
+ ],
134
+ [
135
+ "Marina Sprint Rev.",
136
+ "marina-sprint-rev",
137
+ "sprint",
138
+ "france",
139
+ 0.193,
140
+ "https://whatsonzwift.com/world/france/segment/marina-sprint-reverse/reverse",
141
+ undefined,
142
+ undefined,
143
+ undefined,
144
+ undefined,
145
+ ],
146
+ [
147
+ "Richmond Sprint",
148
+ "richmond-sprint",
149
+ "sprint",
150
+ "richmond",
151
+ 0.221,
152
+ "https://whatsonzwift.com/world/richmond/segment/sprint/forward",
153
+ 12128762,
154
+ "https://www.strava.com/segments/12128762",
155
+ undefined,
156
+ undefined,
157
+ ],
158
+ [
159
+ "Richmond Sprint Rev.",
160
+ "richmond-sprint-rev",
161
+ "sprint",
162
+ "richmond",
163
+ 0.203,
164
+ "https://whatsonzwift.com/world/richmond/segment/sprint/reverse",
165
+ undefined,
166
+ undefined,
167
+ undefined,
168
+ undefined,
169
+ ],
170
+ [
171
+ "New York Sprint",
172
+ "new-york-sprint",
173
+ "sprint",
174
+ "new-york",
175
+ 0.15,
176
+ "https://whatsonzwift.com/world/new-york/segment/ny-sprint/forward",
177
+ undefined,
178
+ undefined,
179
+ -4.3,
180
+ undefined,
181
+ ],
182
+ [
183
+ "New York Sprint Rev.",
184
+ "new-york-sprint-rev",
185
+ "climb",
186
+ "new-york",
187
+ 0.23,
188
+ "https://whatsonzwift.com/world/new-york/segment/ny-sprint/reverse",
189
+ undefined,
190
+ undefined,
191
+ undefined,
192
+ undefined,
193
+ ],
194
+ [
195
+ "Pavé Sprint",
196
+ "pave-sprint",
197
+ "sprint",
198
+ "france",
199
+ 0.333,
200
+ "https://whatsonzwift.com/world/france/segment/pave-sprint/forward",
201
+ undefined,
202
+ undefined,
203
+ undefined,
204
+ undefined,
205
+ ],
206
+ [
207
+ "Pavé Sprint Rev.",
208
+ "pave-sprint-rev",
209
+ "sprint",
210
+ "france",
211
+ 0.334,
212
+ "https://whatsonzwift.com/world/france/segment/pave-sprint-reverse/reverse",
213
+ undefined,
214
+ undefined,
215
+ undefined,
216
+ undefined,
217
+ ],
218
+ [
219
+ "London Sprint",
220
+ "london-sprint",
221
+ "sprint",
222
+ "london",
223
+ 0.2,
224
+ "https://whatsonzwift.com/world/london/segment/sprint/forward",
225
+ 12749402,
226
+ "https://www.strava.com/segments/12749402",
227
+ undefined,
228
+ undefined,
229
+ ],
230
+ [
231
+ "London Sprint Rev.",
232
+ "london-sprint-rev",
233
+ "sprint",
234
+ "london",
235
+ 0.2,
236
+ "https://whatsonzwift.com/world/london/segment/sprint/reverse",
237
+ 12749377,
238
+ "https://www.strava.com/segments/12749377",
239
+ undefined,
240
+ undefined,
241
+ ],
242
+ [
243
+ "Watopia Sprint",
244
+ "watopia-sprint",
245
+ "sprint",
246
+ "watopia",
247
+ 0.36,
248
+ "https://whatsonzwift.com/world/watopia/segment/sprint/forward",
249
+ 12109305,
250
+ "https://www.strava.com/segments/12109305",
251
+ undefined,
252
+ undefined,
253
+ ],
254
+ [
255
+ "Watopia Sprint Rev.",
256
+ "watopia-sprint-rev",
257
+ "sprint",
258
+ "watopia",
259
+ 0.2,
260
+ "https://whatsonzwift.com/world/watopia/segment/sprint/reverse",
261
+ 12109228,
262
+ "https://www.strava.com/segments/12109228",
263
+ undefined,
264
+ undefined,
265
+ ],
266
+ [
267
+ "Yorkshire Sprint",
268
+ "yorkshire-sprint",
269
+ "sprint",
270
+ "yorkshire",
271
+ 0.25,
272
+ "https://whatsonzwift.com/world/yorkshire/segment/yorkshire-sprint/forward",
273
+ undefined,
274
+ undefined,
275
+ undefined,
276
+ undefined,
277
+ ],
278
+ [
279
+ "Yorkshire Sprint Rev.",
280
+ "yorkshire-sprint-rev",
281
+ "sprint",
282
+ "yorkshire",
283
+ 0.4,
284
+ "https://whatsonzwift.com/world/yorkshire/segment/yorkshire-sprint-reverse/reverse",
285
+ 21748007,
286
+ "https://www.strava.com/segments/21748007",
287
+ undefined,
288
+ undefined,
289
+ ],
290
+ [
291
+ "Alpe du Zwift",
292
+ "alpe-du-zwift",
293
+ "climb",
294
+ "watopia",
295
+ 12.44,
296
+ "https://whatsonzwift.com/world/watopia/segment/alpe-du-zwift/forward",
297
+ 17267489,
298
+ "https://www.strava.com/segments/17267489",
299
+ 8.5,
300
+ "HC",
301
+ ],
302
+ [
303
+ "Epic KOM",
304
+ "epic-kom",
305
+ "climb",
306
+ "watopia",
307
+ 9.49,
308
+ "https://whatsonzwift.com/world/watopia/segment/epic-kom/forward",
309
+ 16784833,
310
+ "https://www.strava.com/segments/16784833",
311
+ 4,
312
+ "2",
313
+ ],
314
+ [
315
+ "Epic KOM Rev.",
316
+ "epic-kom-rev",
317
+ "climb",
318
+ "watopia",
319
+ 6.27,
320
+ "https://whatsonzwift.com/world/watopia/segment/epic-kom/reverse",
321
+ 16784850,
322
+ "https://www.strava.com/segments/16784850",
323
+ 6.3,
324
+ "2",
325
+ ],
326
+ [
327
+ "Hilly Loop",
328
+ "hilly-loop",
329
+ "segment",
330
+ "watopia",
331
+ 9.01,
332
+ "https://whatsonzwift.com/world/watopia/segment/hilly-loop/forward",
333
+ 12118362,
334
+ "https://www.strava.com/segments/12118362",
335
+ undefined,
336
+ undefined,
337
+ ],
338
+ [
339
+ "Hilly Loop Rev.",
340
+ "hilly-loop-rev",
341
+ "segment",
342
+ "watopia",
343
+ 9.01,
344
+ "https://whatsonzwift.com/world/watopia/segment/hilly-loop/reverse",
345
+ 12128037,
346
+ "https://www.strava.com/segments/12128037",
347
+ undefined,
348
+ undefined,
349
+ ],
350
+ [
351
+ "Jungle Loop",
352
+ "jungle-loop",
353
+ "segment",
354
+ "watopia",
355
+ 7.8,
356
+ "https://whatsonzwift.com/world/watopia/segment/jungle-loop/forward",
357
+ 16359371,
358
+ "https://www.strava.com/segments/16359371",
359
+ undefined,
360
+ undefined,
361
+ ],
362
+ [
363
+ "Jungle Loop Rev.",
364
+ "jungle-loop-rev",
365
+ "segment",
366
+ "watopia",
367
+ 7.8,
368
+ "https://whatsonzwift.com/world/watopia/segment/jungle-loop/reverse",
369
+ 16359363,
370
+ "https://www.strava.com/segments/16359363",
371
+ undefined,
372
+ undefined,
373
+ ],
374
+ [
375
+ "Titans Grove KOM",
376
+ "titans-grove-kom",
377
+ "climb",
378
+ "watopia",
379
+ 2.6,
380
+ "https://whatsonzwift.com/world/watopia/segment/titans-grove-kom/forward",
381
+ 21343975,
382
+ "https://www.strava.com/segments/21343975",
383
+ 2.2,
384
+ undefined,
385
+ ],
386
+ [
387
+ "Titans Grove KOM Rev.",
388
+ "titans-grove-kom-rev",
389
+ "climb",
390
+ "watopia",
391
+ 0.89,
392
+ "https://whatsonzwift.com/world/watopia/segment/titans-grove-kom/reverse",
393
+ 21343961,
394
+ "https://www.strava.com/segments/21343961",
395
+ 6.6,
396
+ undefined,
397
+ ],
398
+ [
399
+ "Volcano Circuit",
400
+ "volcano-circuit",
401
+ "segment",
402
+ "watopia",
403
+ 4.2,
404
+ "https://whatsonzwift.com/world/watopia/segment/volcano/forward",
405
+ 14032406,
406
+ "https://www.strava.com/segments/14032406",
407
+ undefined,
408
+ undefined,
409
+ ],
410
+ [
411
+ "Volcano Circuit Rev.",
412
+ "volcano-circuit-rev",
413
+ "segment",
414
+ "watopia",
415
+ 4.2,
416
+ "https://whatsonzwift.com/world/watopia/segment/volcano/reverse",
417
+ 14032426,
418
+ "https://www.strava.com/segments/14032426",
419
+ undefined,
420
+ undefined,
421
+ ],
422
+ [
423
+ "Volcano KOM",
424
+ "volcano-kom",
425
+ "climb",
426
+ "watopia",
427
+ 3.75,
428
+ "https://whatsonzwift.com/world/watopia/segment/volcano-kom/forward",
429
+ 14270131,
430
+ "https://www.strava.com/segments/14270131",
431
+ 3.2,
432
+ undefined,
433
+ ],
434
+ [
435
+ "Zwift KOM",
436
+ "zwift-kom",
437
+ "climb",
438
+ "watopia",
439
+ 0.9,
440
+ "https://whatsonzwift.com/world/watopia/segment/zwift-kom/forward",
441
+ 12109030,
442
+ "https://www.strava.com/segments/12109030",
443
+ 5,
444
+ undefined,
445
+ ],
446
+ [
447
+ "Zwift KOM Rev.",
448
+ "zwift-kom-rev",
449
+ "climb",
450
+ "watopia",
451
+ 2.4,
452
+ "https://whatsonzwift.com/world/watopia/segment/zwift-kom/reverse",
453
+ 12128029,
454
+ "https://www.strava.com/segments/12128029",
455
+ 2,
456
+ undefined,
457
+ ],
458
+ [
459
+ "Bologna TT",
460
+ "bologna-tt",
461
+ "climb",
462
+ "bologna",
463
+ 8,
464
+ "https://whatsonzwift.com/world/bologna-tt/segment/bologna-tt/forward",
465
+ 20560239,
466
+ "https://www.strava.com/segments/20560239",
467
+ 2.8,
468
+ undefined,
469
+ ],
470
+ [
471
+ "Central Park Loop Rev.",
472
+ "central-park-loop-rev",
473
+ "segment",
474
+ "new-york",
475
+ 9.7,
476
+ "https://whatsonzwift.com/world/new-york/segment/central-park-loop/reverse",
477
+ 19170661,
478
+ "https://www.strava.com/segments/19170661",
479
+ undefined,
480
+ undefined,
481
+ ],
482
+ [
483
+ "New York KOM",
484
+ "new-york-kom",
485
+ "climb",
486
+ "new-york",
487
+ 1.4,
488
+ "https://whatsonzwift.com/world/new-york/segment/new-york-kom/forward",
489
+ 19141090,
490
+ "https://www.strava.com/segments/19141090",
491
+ 6.1,
492
+ "4",
493
+ ],
494
+ [
495
+ "New York KOM Rev.",
496
+ "new-york-kom-rev",
497
+ "climb",
498
+ "new-york",
499
+ 1.1,
500
+ "https://whatsonzwift.com/world/new-york/segment/new-york-kom/reverse",
501
+ 19141092,
502
+ "https://www.strava.com/segments/19141092",
503
+ 5.7,
504
+ undefined,
505
+ ],
506
+ [
507
+ "23rd St.",
508
+ "23rd-st",
509
+ "climb",
510
+ "richmond",
511
+ 0.275,
512
+ "https://whatsonzwift.com/world/richmond/segment/23rd-st/forward",
513
+ 12128917,
514
+ "https://www.strava.com/segments/12128917",
515
+ 10,
516
+ undefined,
517
+ ],
518
+ [
519
+ "23rd St. Rev",
520
+ "23rd-st-rev",
521
+ "climb",
522
+ "richmond",
523
+ 1.1,
524
+ "https://whatsonzwift.com/world/richmond/segment/23rd-st/reverse",
525
+ 22813206,
526
+ "https://www.strava.com/segments/22813206",
527
+ 3.5,
528
+ undefined,
529
+ ],
530
+ [
531
+ "Richmond KOM",
532
+ "richmond-kom",
533
+ "climb",
534
+ "richmond",
535
+ 0.644,
536
+ "https://whatsonzwift.com/world/richmond/segment/kom/forward",
537
+ 12128826,
538
+ "https://www.strava.com/segments/12128826",
539
+ 6.4,
540
+ undefined,
541
+ ],
542
+ [
543
+ "Richmond KOM Rev.",
544
+ "richmond-kom-rev",
545
+ "climb",
546
+ "richmond",
547
+ 0.7,
548
+ "https://whatsonzwift.com/world/richmond/segment/kom/reverse",
549
+ 26935782,
550
+ "https://www.strava.com/segments/26935782",
551
+ 3.4,
552
+ undefined,
553
+ ],
554
+ [
555
+ "Richmond UCI Cource",
556
+ "richmond-uci-course",
557
+ "segment",
558
+ "richmond",
559
+ 16.2,
560
+ "https://whatsonzwift.com/world/richmond/segment/uci-course/forward",
561
+ 12128718,
562
+ "https://www.strava.com/segments/12128718",
563
+ undefined,
564
+ undefined,
565
+ ],
566
+ [
567
+ "Fox Hill",
568
+ "fox-hill",
569
+ "climb",
570
+ "london",
571
+ 2.4,
572
+ "https://whatsonzwift.com/world/london/segment/fox-hill/forward",
573
+ 16802545,
574
+ "https://www.strava.com/segments/16802545",
575
+ 4.9,
576
+ "4",
577
+ ],
578
+ [
579
+ "Box Hill",
580
+ "box-hill",
581
+ "climb",
582
+ "london",
583
+ 3,
584
+ "https://whatsonzwift.com/world/london/segment/box-hill/reverse",
585
+ 12744502,
586
+ "https://www.strava.com/segments/12744502",
587
+ 4.3,
588
+ "4",
589
+ ],
590
+ [
591
+ "Leith Hill",
592
+ "leith-hill",
593
+ "climb",
594
+ "london",
595
+ 1.9,
596
+ "https://whatsonzwift.com/world/london/segment/leith-hill/forward",
597
+ 16781411,
598
+ "https://www.strava.com/segments/16781411",
599
+ 6.8,
600
+ "4",
601
+ ],
602
+ [
603
+ "Keith Hill",
604
+ "keith-hill",
605
+ "climb",
606
+ "london",
607
+ 4.34,
608
+ "https://whatsonzwift.com/world/london/segment/keith-hill/reverse",
609
+ 16781407,
610
+ "https://www.strava.com/segments/16781407",
611
+ 5,
612
+ "3",
613
+ ],
614
+ [
615
+ "London Loop",
616
+ "london-loop",
617
+ "segment",
618
+ "london",
619
+ 14.96,
620
+ "https://whatsonzwift.com/world/london/segment/london-loop/reverse",
621
+ 12749649,
622
+ "https://www.strava.com/segments/12749649",
623
+ undefined,
624
+ undefined,
625
+ ],
626
+ [
627
+ "Aqueduc KOM",
628
+ "aqueduc-kom",
629
+ "climb",
630
+ "france",
631
+ 0.42,
632
+ "https://whatsonzwift.com/world/france/segment/aqueduc-kom/forward",
633
+ 24700976,
634
+ "https://www.strava.com/segments/24700976",
635
+ 3,
636
+ undefined,
637
+ ],
638
+ [
639
+ "Aqueduc KOM Rev.",
640
+ "aqueduc-kom-rev",
641
+ "climb",
642
+ "france",
643
+ 0.403,
644
+ "https://whatsonzwift.com/world/france/segment/aqueduc-kom/reverse",
645
+ 24701010,
646
+ "https://www.strava.com/segments/24701010",
647
+ 5,
648
+ undefined,
649
+ ],
650
+ [
651
+ "Petit KOM",
652
+ "petit-kom",
653
+ "climb",
654
+ "france",
655
+ 2.7,
656
+ "https://whatsonzwift.com/world/france/segment/petit-kom/forward",
657
+ 24690967,
658
+ "https://www.strava.com/segments/24690967",
659
+ 4,
660
+ "4",
661
+ ],
662
+ [
663
+ "Ventoux KOM",
664
+ "ventoux-kom",
665
+ "climb",
666
+ "france",
667
+ 19,
668
+ "https://whatsonzwift.com/world/france/segment/ventoux-kom/forward",
669
+ 24682578,
670
+ "https://www.strava.com/segments/24682578",
671
+ 8,
672
+ undefined,
673
+ ],
674
+ [
675
+ "Innsbruck KOM",
676
+ "innsbruck-kom",
677
+ "climb",
678
+ "innsbruck",
679
+ 7.4,
680
+ "https://whatsonzwift.com/world/innsbruck/segment/kom/forward",
681
+ 18397965,
682
+ "https://www.strava.com/segments/18397965",
683
+ 6,
684
+ "2",
685
+ ],
686
+ [
687
+ "Innsbruck KOM Rev.",
688
+ "innsbruck-kom-rev",
689
+ "climb",
690
+ "innsbruck",
691
+ 5.79,
692
+ "https://whatsonzwift.com/world/innsbruck/segment/kom/reverse",
693
+ 18397927,
694
+ "https://www.strava.com/segments/18397927",
695
+ 8,
696
+ "2",
697
+ ],
698
+ [
699
+ "Innsbruck UCI Lap",
700
+ "innsbruck-uci-lap",
701
+ "segment",
702
+ "innsbruck",
703
+ 23.65,
704
+ "https://whatsonzwift.com/world/innsbruck/segment/uci-lap/forward",
705
+ 18398895,
706
+ "https://www.strava.com/segments/18398895",
707
+ undefined,
708
+ undefined,
709
+ ],
710
+ [
711
+ "Yorkshire KOM",
712
+ "yorkshire-kom",
713
+ "climb",
714
+ "yorkshire",
715
+ 1.2,
716
+ "https://whatsonzwift.com/world/yorkshire/segment/yorkshire-kom/forward",
717
+ 21747822,
718
+ "https://www.strava.com/segments/21747822",
719
+ 5.5,
720
+ undefined,
721
+ ],
722
+ [
723
+ "Yorkshire KOM Rev.",
724
+ "yorkshire-kom-rev",
725
+ "climb",
726
+ "yorkshire",
727
+ 1.2,
728
+ "https://whatsonzwift.com/world/yorkshire/segment/yorkshire-kom/reverse",
729
+ 21747891,
730
+ "https://www.strava.com/segments/21747891",
731
+ 3.8,
732
+ undefined,
733
+ ],
734
+ [
735
+ "Crit City",
736
+ "crit-city",
737
+ "segment",
738
+ "crit-city",
739
+ 1.95,
740
+ "https://whatsonzwift.com/world/crit-city/segment/crit-city/forward",
741
+ 22445564,
742
+ "https://www.strava.com/segments/22445564",
743
+ undefined,
744
+ undefined,
745
+ ],
746
+ [
747
+ "Crit City Rev.",
748
+ "crit-city-rev",
749
+ "segment",
750
+ "crit-city",
751
+ 1.95,
752
+ "https://whatsonzwift.com/world/crit-city/segment/crit-city/reverse",
753
+ 22419554,
754
+ "https://www.strava.com/segments/22419554",
755
+ undefined,
756
+ undefined,
757
+ ],
758
+ [
759
+ "Prime",
760
+ "prime",
761
+ "climb",
762
+ "crit-city",
763
+ 0.197,
764
+ "https://whatsonzwift.com/world/crit-city/segment/prime/forward",
765
+ undefined,
766
+ undefined,
767
+ 4,
768
+ undefined,
769
+ ],
770
+ [
771
+ "Prime Rev.",
772
+ "prime-rev",
773
+ "sprint",
774
+ "crit-city",
775
+ 0.288,
776
+ "https://whatsonzwift.com/world/crit-city/segment/prime/reverse",
777
+ undefined,
778
+ undefined,
779
+ undefined,
780
+ undefined,
781
+ ],
782
+ [
783
+ "Champs Elysées",
784
+ "champs-elysees",
785
+ "segment",
786
+ "paris",
787
+ 6.62,
788
+ "https://whatsonzwift.com/world/paris/segment/champs-elysees/forward",
789
+ 24674235,
790
+ "https://www.strava.com/segments/24674235",
791
+ undefined,
792
+ undefined,
793
+ ],
794
+ [
795
+ "Champs Elysées Rev.",
796
+ "champs-elysees-rev",
797
+ "segment",
798
+ "paris",
799
+ 6.62,
800
+ "https://whatsonzwift.com/world/paris/segment/champs-elysees/reverse",
801
+ 24674248,
802
+ "https://www.strava.com/segments/24674248",
803
+ undefined,
804
+ undefined,
805
+ ],
806
+ [
807
+ "Country Sprint",
808
+ "country-sprint",
809
+ "sprint",
810
+ "makuri-islands",
811
+ 0.146,
812
+ "https://whatsonzwift.com/world/makuri-islands/segment/country-sprint/forward",
813
+ undefined,
814
+ undefined,
815
+ undefined,
816
+ undefined,
817
+ ],
818
+ [
819
+ "Castle KOM",
820
+ "castle-kom",
821
+ "climb",
822
+ "makuri-islands",
823
+ 2.69,
824
+ "https://whatsonzwift.com/world/makuri-islands/segment/castle-kom/forward",
825
+ 28433453,
826
+ "https://www.strava.com/segments/28433453",
827
+ 2.45,
828
+ undefined,
829
+ ],
830
+ [
831
+ "Village Sprint",
832
+ "village-sprint",
833
+ "sprint",
834
+ "makuri-islands",
835
+ 0.15,
836
+ "https://whatsonzwift.com/world/makuri-islands/segment/village-sprint/forward",
837
+ undefined,
838
+ undefined,
839
+ 0.99,
840
+ undefined,
841
+ ],
842
+ [
843
+ "Temple KOM from Fishing Village Side",
844
+ "temple-kom-from-fishing-village-side",
845
+ "climb",
846
+ "makuri-islands",
847
+ 2.51,
848
+ "https://whatsonzwift.com/world/makuri-islands/segment/temple-kom/forward",
849
+ 28432259,
850
+ "https://www.strava.com/segments/28432259",
851
+ 3.95,
852
+ "4",
853
+ ],
854
+ [
855
+ "Temple KOM from Castle Side",
856
+ "temple-kom-from-castle-side",
857
+ "climb",
858
+ "makuri-islands",
859
+ 1.88,
860
+ "https://whatsonzwift.com/world/makuri-islands/segment/temple-kom/reverse",
861
+ 28432293,
862
+ "https://www.strava.com/segments/28432293",
863
+ 3.59,
864
+ undefined,
865
+ ],
866
+ [
867
+ "Rooftop KOM",
868
+ "rooftop-kom",
869
+ "climb",
870
+ "makuri-islands",
871
+ 1.87,
872
+ "https://whatsonzwift.com/world/makuri-islands/segment/rooftop-kom/forward",
873
+ 30407861,
874
+ "https://www.strava.com/segments/30407861",
875
+ 2.7,
876
+ undefined,
877
+ ],
878
+ [
879
+ "Tower Sprint",
880
+ "tower-sprint",
881
+ "sprint",
882
+ "makuri-islands",
883
+ 0.31,
884
+ "https://whatsonzwift.com/world/makuri-islands/segment/tower-sprint/forward",
885
+ 30412571,
886
+ "https://www.strava.com/segments/30412571",
887
+ undefined,
888
+ undefined,
889
+ ],
890
+ [
891
+ "Tower Sprint Rev.",
892
+ "tower-sprint-rev",
893
+ "sprint",
894
+ "makuri-islands",
895
+ 0.31,
896
+ "https://whatsonzwift.com/world/makuri-islands/segment/tower-sprint/reverse",
897
+ undefined,
898
+ undefined,
899
+ undefined,
900
+ undefined,
901
+ ],
902
+ [
903
+ "Castle Park Sprint",
904
+ "castle-park-sprint",
905
+ "sprint",
906
+ "makuri-islands",
907
+ 0.32,
908
+ "https://whatsonzwift.com/world/makuri-islands/segment/castle-park-sprint/forward",
909
+ undefined,
910
+ undefined,
911
+ undefined,
912
+ undefined,
913
+ ],
914
+ [
915
+ "Castle Park Sprint Rev.",
916
+ "castle-park-sprint-rev",
917
+ "sprint",
918
+ "makuri-islands",
919
+ 0.32,
920
+ "https://whatsonzwift.com/world/makuri-islands/segment/castle-park-sprint/reverse",
921
+ undefined,
922
+ undefined,
923
+ undefined,
924
+ undefined,
925
+ ],
926
+ [
927
+ "Alley Sprint",
928
+ "alley-sprint",
929
+ "sprint",
930
+ "makuri-islands",
931
+ 0.48,
932
+ "https://whatsonzwift.com/world/makuri-islands/segment/alley-sprint/forward",
933
+ 30412916,
934
+ "https://www.strava.com/segments/30412916",
935
+ undefined,
936
+ undefined,
937
+ ],
938
+ [
939
+ "Alley Sprint Rev.",
940
+ "alley-sprint-rev",
941
+ "sprint",
942
+ "makuri-islands",
943
+ 0.48,
944
+ "https://whatsonzwift.com/world/makuri-islands/segment/alley-sprint/reverse",
945
+ 30412903,
946
+ "https://www.strava.com/segments/30412903",
947
+ undefined,
948
+ undefined,
949
+ ],
950
+ [
951
+ "Railway Sprint",
952
+ "railway-sprint",
953
+ "sprint",
954
+ "makuri-islands",
955
+ 0.49,
956
+ "https://whatsonzwift.com/world/makuri-islands/segment/railway-sprint/forward",
957
+ 30412927,
958
+ "https://www.strava.com/segments/30412927",
959
+ undefined,
960
+ undefined,
961
+ ],
962
+ [
963
+ "Boardwalk Sprint",
964
+ "boardwalk-sprint",
965
+ "sprint",
966
+ "makuri-islands",
967
+ 0.24,
968
+ "https://whatsonzwift.com/world/makuri-islands/segment/boardwalk-sprint/forward",
969
+ undefined,
970
+ undefined,
971
+ undefined,
972
+ undefined,
973
+ ],
974
+ [
975
+ "Tidepool Sprint",
976
+ "tidepool-sprint",
977
+ "sprint",
978
+ "makuri-islands",
979
+ 0.31,
980
+ "https://whatsonzwift.com/world/makuri-islands/segment/tidepool-sprint/reverse",
981
+ undefined,
982
+ undefined,
983
+ undefined,
984
+ undefined,
985
+ ],
986
+ [
987
+ "Shisa Sprint Rev.",
988
+ "shisa-sprint-rev",
989
+ "sprint",
990
+ "makuri-islands",
991
+ 0.29,
992
+ "https://whatsonzwift.com/world/makuri-islands/segment/shisa-sprint/reverse",
993
+ undefined,
994
+ undefined,
995
+ undefined,
996
+ undefined,
997
+ ],
998
+ [
999
+ "Shisa Sprint",
1000
+ "shisa-sprint",
1001
+ "sprint",
1002
+ "makuri-islands",
1003
+ 0.28,
1004
+ "https://whatsonzwift.com/world/makuri-islands/segment/shisa-sprint/forward",
1005
+ undefined,
1006
+ undefined,
1007
+ undefined,
1008
+ undefined,
1009
+ ],
1010
+ [
1011
+ "Village Sprint Rev.",
1012
+ "village-sprint-rev",
1013
+ "sprint",
1014
+ "makuri-islands",
1015
+ 0.14,
1016
+ "https://whatsonzwift.com/world/makuri-islands/segment/village-sprint/reverse",
1017
+ undefined,
1018
+ undefined,
1019
+ undefined,
1020
+ undefined,
1021
+ ],
1022
+ [
1023
+ "Country Sprint Rev.",
1024
+ "country-sprint-rev",
1025
+ "sprint",
1026
+ "makuri-islands",
1027
+ 0.13,
1028
+ "https://whatsonzwift.com/world/makuri-islands/segment/country-sprint/reverse",
1029
+ undefined,
1030
+ undefined,
1031
+ undefined,
1032
+ undefined,
1033
+ ],
1034
+ ].map(([name, slug, type, world, distance, whatsOnZwiftUrl, stravaSegmentId, stravaSegmentUrl, avgIncline, climbType,]) => ({
1035
+ name,
1036
+ slug,
1037
+ type,
1038
+ world,
1039
+ distance,
1040
+ whatsOnZwiftUrl,
1041
+ stravaSegmentId,
1042
+ stravaSegmentUrl,
1043
+ avgIncline,
1044
+ climbType,
1045
+ }));