-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreviews.json
1257 lines (1256 loc) · 77.6 KB
/
reviews.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[ { "id": "2575912510",
"userName": "Fletchy71",
"userUrl": "https://itunes.apple.com/us/reviews/id30470133",
"version": "9.8.1",
"score": 5,
"title": "Great Combo with Elemnt Bolt",
"text": "Used it twice for two 75km rides in Denmark, including sections of single track, as well as 32km MTB ride through single track. \n\nAt first, it seemed to simple when compared to RideWithGPS. My first impression was \"this looks too basic\". Then after playing with it.. I realized its UI didn’t need a lot of fuss. It just works. \n\nPlanning a route just involves clicking waypoint/breadcrumbs along the map.\n\n The MTB area I go has some complex \"Figure 8\" that crosses back over the existing route already ridden! I learned in these maze-like paths, I simply needed to add more waypoints/breadcrumbs to prevent the route from recalculating to an alternate route. Easy. \n\nFinding Komoot hard to fault as a route planner for the Elemnt Bolt. \n\nOne feature I would like is the ability to edit a planned route or a tour (logged ride) in the same way. For example:\n\nIn a planned route, I can edit the route, but I can’t add photos or journal the ride. \n\nOn a tour that I have ridden, I can add photos and notes to journal my ride... but I can’t edit the route. Of course that makes sense if you want to track your exact workout/trip. \n\nBut I like sharing routes with others.. and I don’t think they need to see that I rode 300m off route to go to the bathroom, or I decided to adventure off trail to a neighboring village which isn’t on the course. \n\nLoving the app! Works great with the Bolt. Highly recommended!",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "2587568538",
"userName": "sgt. bonghits",
"userUrl": "https://itunes.apple.com/us/reviews/id40219409",
"version": "9.8.1",
"score": 5,
"title": "Love Komoot!!",
"text": "I couldn’t happier with Komoot! Personal route setup is super easy! It will sync to my Wahoo Bolt in seconds. Do it! You know you want to now!!",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "2603770852",
"userName": "Architect84",
"userUrl": "https://itunes.apple.com/us/reviews/id111200796",
"version": "9.7.1",
"score": 5,
"title": "Great App",
"text": "Very enjoyable and useful!",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "2613823452",
"userName": "Mihaltanvicu",
"userUrl": "https://itunes.apple.com/us/reviews/id249412574",
"version": "9.8.1",
"score": 5,
"title": "Vick",
"text": "I love this App. I can take pictures, save the the map, very easy to use. Thank you.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "2628090313",
"userName": "njgym",
"userUrl": "https://itunes.apple.com/us/reviews/id217312944",
"version": "9.8.1",
"score": 2,
"title": "Not ready for prime time",
"text": "Based on routes proposed on local roads well known, this is no better than Google at recommending a really rideable route. 2 stars as an attaboy only.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "2661985777",
"userName": "Giovanni xmilkcratex",
"userUrl": "https://itunes.apple.com/us/reviews/id48770805",
"version": "9.8.2",
"score": 4,
"title": "Love after first ride",
"text": "I tested and trusted the komoot for the first time on overnight bike tour through the Catskills and had an excellent time. \n\nPersonally, I think the interface is really easy to use and better to edit routes compared to other similar apps. Planning a trip on my computer was super easy. However, I wish I could rename and add notes to waypoints. With that said, the simplicity and ease of use comes with a drawback. The edit features for the map feel limited compared to ridewithgps. \n\nThe routing itself was really good and straightforward for the most part. Didn’t lead me down any roads that made me feel unsafe. On the other hand, I was a little bummed that it didn’t include a railtrail bike-way that ran parallel to the car shared road it originally put us on. \n\nWasn’t until 20 miles later that I zoomed into the map and noticed the green road, indicating a bike path, that was hardly a mile further and it finished exactly where we needed to be. Would’ve preferred the extra distance for a bike trail any day. Especially if you’re using the \"touring\" feature. \n\nThere was also some really nice residential roads that added an extra 1-3 miles and some climbs but were a lot quieter and the cars didn’t drive by us at the same speed as interstate 28. \n\nReally awesome feature would be to include filters for even more route suggestions. \"Avoid highways/interstate\" or \"use residential roads when possible\" lastly, \"use trailways whenever possible\" with a \"distance increase disclaimer\". \n\nWould love to see the features grow for komoot and use it exclusively as my tour planning app. For now, I still rely on ride with gps to search for rides that locals do when traveling to a new place to make sure I don’t miss out on better roads and cool trails. I take those routes and edit the komoot suggested route accordingly.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "2668047030",
"userName": "jduprey",
"userUrl": "https://itunes.apple.com/us/reviews/id37255874",
"version": "9.8.2",
"score": 5,
"title": "Solid app that lets you ride with confidence",
"text": "Plan a route or add one shared with you via GPX or similar format. This app works well. Best of all is I don’t have to pay a subscription!!! Please share this app with others and let them know it exists. It works just as good as \"ride with gps\" and no nickel and dime subscription.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1797177215",
"userName": "Ralph8540",
"userUrl": "https://itunes.apple.com/us/reviews/id221349708",
"version": "9.3.1",
"score": 5,
"title": "Two Trips, Two Winners",
"text": "Just started using the app. So far I\"ve done one hike and one tandem bike ride. The app has worked flawlessly both times and I really like the way it interfaces with Apple Heart and Facebook. Will put it to a more serious test later this week when I climb Mt. Yale. Only issue is power management. Because it uses my IPhone SE GPS and altimeter, two hours is about all I get. Have purchased a 5X backup battery to keep the IPhone and app energized. Hope this does the trick.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1950642628",
"userName": "GlobalCreations",
"userUrl": "https://itunes.apple.com/us/reviews/id35856208",
"version": "9.5.1",
"score": 5,
"title": "Been Using It For Years",
"text": "Just got an iPhone X and Komoot still works perfectly. I used around 80% of the battery in around 5 hours while also using Avenza Maps off and on. I carry a battery pack because these types of apps do use a lot of energy. I also use the profiles and route maps for various things so it’s nice to be able to grab them for that.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "2012919135",
"userName": "Nycgaffer",
"userUrl": "https://itunes.apple.com/us/reviews/id86075773",
"version": "9.6.1",
"score": 3,
"title": "Promising app with flaws",
"text": "I like this app and hope they work out some of the kinks.\nThe first problem is that I have not been able to sync my wahoo cadence sensor, speed sensor or powercal powertap. Sent a query to tech support but did not get a reply. \nSecond problem Is route planning. Almost all my routes end up being loops which is a little tricky to work out and I like to revise them which is also awkward.\nPaying a one time fee is great. Much better than ridewithgps which bangs you for a subscription monthly.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1732042408",
"userName": "MarshallWayne",
"userUrl": "https://itunes.apple.com/us/reviews/id42619669",
"version": "9.3.1",
"score": 5,
"title": "Love this app!",
"text": "I\"m a huge fan of this app. I don\"t normally take time to write a review, but this app is fantastic. \n\nSure it tracks distance, speed, etc...that\"s typical. \n\nWhat I enjoy is typing in a destination and the app allows me to plot an interesting journey out of it all the while giving me voice directions so I can enjoy the day while getting a great workout in.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1788954716",
"userName": "iam4au2",
"userUrl": "https://itunes.apple.com/us/reviews/id471989881",
"version": "9.3.1",
"score": 5,
"title": "Ability to plan routes is fantastic",
"text": "I have several gps apps but...The ability to plan, search and discover routes is fantastic. I haven\"t had any negative issues yet. Definitely recommend.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "2085092656",
"userName": "comdorcet",
"userUrl": "https://itunes.apple.com/us/reviews/id30540307",
"version": "9.6.1",
"score": 2,
"title": "Quite annoying feature",
"text": "The most annoying feature is that it doesn\"t let you zoom in all the way, it always zooms out automatically. This wasn\"t always the case, apparently it\"s a \"feature\" they added (I asked about it and that\"s actually what they said). Oh and landscape mode doesn\"t work on older models (presumably another feature).",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "2356268356",
"userName": "gregors",
"userUrl": "https://itunes.apple.com/us/reviews/id35473470",
"version": "9.7.0",
"score": 4,
"title": "Great tool for planning cycling routes for Wahoo",
"text": "Great tool for planning routes and then making available for upload to Wahoo ELEMNT bike computers... but wish there was an easier way to drag an alter routes with pins on an iPad. Can be a bit tricky with loops and what the routing system thinks is outbound and returning segments of the ride (adding in route adjustments).",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1850591126",
"userName": "Würzburg1",
"userUrl": "https://itunes.apple.com/us/reviews/id564841931",
"version": "9.4",
"score": 5,
"title": "Very simple to use!",
"text": "Recently put komoot through its paces in the Franconian Swiss area. Tried most of the functionality and am very satisfied. Did go for the full unlock with the email set up offer. Good tool!",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1756766699",
"userName": "theharrypotterninja",
"userUrl": "https://itunes.apple.com/us/reviews/id116381121",
"version": "9.3.1",
"score": 5,
"title": "Got me through a solo 10 mile hike",
"text": "I have no experience hiking and this got my through a 10 mile hike alone. Really easy to use especially for directionally stupid people (ME).",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1822906472",
"userName": "zabadu",
"userUrl": "https://itunes.apple.com/us/reviews/id43250483",
"version": "9.3.2",
"score": 1,
"title": "No Good",
"text": "I downloaded and installed my \"free area\" and set it up to ride the trails in town (Knoxville, TN)\n\nFirst off, it it missing a bunch of trails. MTB project has them all listed, but this is missing a bunch of popular trails (many of the south loop trails).\n\nSecond, you cannot search for trails by name. I see the trail and it’s name on the Komoot Map, but if you type in it’s name the search pulls up some town 400 miles away. \n\nThis program may be good for biking areas that I can drive my car, but it fails miserably for mountain biking. \n\nIt’s too bad, as this looked like exactly the thing I was looking for. A way to explore new trails and have the trail directions show up on my Apple Watch.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1800607273",
"userName": "JD-Rugby",
"userUrl": "https://itunes.apple.com/us/reviews/id264617243",
"version": "9.3.1",
"score": 5,
"title": "Easy to use",
"text": "Turn by turn works great with offline maps",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "2066147158",
"userName": "Nlswitz",
"userUrl": "https://itunes.apple.com/us/reviews/id18195818",
"version": "9.6.1",
"score": 1,
"title": "Great potential but ...",
"text": "This app has great potential but it’s nearly impossible to put in a running route because it forces a round trip or with one way won’t allow a return to the beginning. I’d love to use to map out routes but it’s too frustrating and time consuming to fight with the route continually adjusting away from what I want",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1862718585",
"userName": "Jeanneau50DS",
"userUrl": "https://itunes.apple.com/us/reviews/id187146335",
"version": "9.4",
"score": 5,
"title": "Great app",
"text": "I\"ve used it now for six months in multiple countries, and it works well for both planning and riding.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1760248161",
"userName": "Dreena76",
"userUrl": "https://itunes.apple.com/us/reviews/id171332737",
"version": "9.3.1",
"score": 5,
"title": "So far....",
"text": "So good. I love that it tracks your route. I haven\"t had any issues. It is only my first use, though.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1805662167",
"userName": "emilydabuilder",
"userUrl": "https://itunes.apple.com/us/reviews/id629081750",
"version": "9.3.2",
"score": 5,
"title": "Convenience and Luxury!",
"text": "Convenient app to give you fastest BIKE routes!! Also found many trails in the city that I can bike around just for fun.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1897316780",
"userName": "call-sign Griz",
"userUrl": "https://itunes.apple.com/us/reviews/id548599892",
"version": "9.4.1",
"score": 5,
"title": "Awesome app! I live it",
"text": "Great voice directions and great information on the speed and mileage done",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "2134464894",
"userName": "IMAGINE 16",
"userUrl": "https://itunes.apple.com/us/reviews/id26665544",
"version": "9.6.1",
"score": 5,
"title": "First day",
"text": "Just started using it today it looks like it’s gonna be a keeper!",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1737135042",
"userName": "Mfortier",
"userUrl": "https://itunes.apple.com/us/reviews/id104768777",
"version": "9.3.1",
"score": 1,
"title": "Great Promise...issues",
"text": "I really thought this was going to be the biking app that I would keep. I could plan a route very easily at my house (using Wifi). But it kept locking up while I was actually biking and couldn\"t set a new route on the road.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "2007118559",
"userName": "nigbode",
"userUrl": "https://itunes.apple.com/us/reviews/id34100621",
"version": "9.6",
"score": 1,
"title": "Crashes immediately when hitting planning button",
"text": "New version downloaded today crashes everytime when trying to start planning.\nBad.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "2187876522",
"userName": "Gaffergary",
"userUrl": "https://itunes.apple.com/us/reviews/id154541930",
"version": "9.6.3",
"score": 5,
"title": "Big Bear riding at its best and with this altitude it’s good to know how far you’ve gone.",
"text": "I’m",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "2147209090",
"userName": "Finnsgrmr",
"userUrl": "https://itunes.apple.com/us/reviews/id270293867",
"version": "9.6.1",
"score": 5,
"title": "Travis Ranch Blvd to the lake",
"text": "It makes it more fun to document distance, elevation and with pics.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1931319430",
"userName": "Txww",
"userUrl": "https://itunes.apple.com/us/reviews/id37388602",
"version": "9.5",
"score": 1,
"title": "Only 1 county",
"text": "You only get 1 free county. Not a region like it says. If your ride goes from 1 county to another you have to buy that county also. Who rides in just 1 county on a long bike ride?",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1752237802",
"userName": "collon o",
"userUrl": "https://itunes.apple.com/us/reviews/id582861964",
"version": "9.3.1",
"score": 5,
"title": "Love it",
"text": "Grate app love it use it all the time",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1756725812",
"userName": "ejfflyer",
"userUrl": "https://itunes.apple.com/us/reviews/id613343822",
"version": "9.3.1",
"score": 5,
"title": "Exactly what I needed",
"text": "Excellent app",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1800298927",
"userName": "Bowhunter 32",
"userUrl": "https://itunes.apple.com/us/reviews/id260089159",
"version": "9.3.2",
"score": 5,
"title": "Road bike",
"text": "Amazing for road biking!",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "2364288068",
"userName": "Twags2",
"userUrl": "https://itunes.apple.com/us/reviews/id100024240",
"version": "9.7.0",
"score": 5,
"title": "Great cycling app",
"text": "Great cycling app",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1740145946",
"userName": "McCarthypd1",
"userUrl": "https://itunes.apple.com/us/reviews/id20787645",
"version": "9.3.1",
"score": 4,
"title": "Hike",
"text": "Hike is good. I hike. You hike. Fun.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1579771825",
"userName": "MusicDreamer101",
"userUrl": "https://itunes.apple.com/us/reviews/id30982290",
"version": "9.0",
"score": 5,
"title": "A Must Have App For Biking",
"text": "This app is absolutely amazing! I\"ve used other apps for tracking my rides and runs before but Komoot has a lot more to offer then the other apps I\"ve used. One of the biggest perks of this app is the fact you can plan your routs on a live map. All you have to do is go to the map in the app and drop pins, it will connect them and tell you how far your ride will be. This helps me out a lot because I\"m training for OCRs and Triathlons. With this app I can make sure I\"m increasing my mileage before each ride without guessing with apps that only tell you at the end.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1477456835",
"userName": "Hurri47",
"userUrl": "https://itunes.apple.com/us/reviews/id180054670",
"version": "8.4.1",
"score": 5,
"title": "Voice nav for cycling!",
"text": "My Garmin Edge has turn by turn navigation but you need to be looking at the screen. Not always easy in bright sun and traffic. I looked at several voice nav apps and Komoot is easily the best. The planning method is weird until you figure out the waypoints can be resequenced (duh). If you miss a turn, the app INSISTS on routing you to any missed waypoint until you reach another waypoint, and it resumes without comment. My takeaway from that is to not place waypoints in areas you might be freelancing. The funky rerouting and the lack of GPX import are my only complaints. Fine, fine app.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1703298415",
"userName": "Mitchell027",
"userUrl": "https://itunes.apple.com/us/reviews/id34163544",
"version": "9.1.2",
"score": 5,
"title": "Finally an excellent cycling app!",
"text": "I love the quality and attention to detail that this app offers. It\"s the only alternative to Google Maps that I actually enjoy using. \n\nPros:\n--> Road surface analysis and choices in planning route. \n--> Quick rerouting if I see an alternative way. \n--> Clean, high-quality interface to navigate. \n--> Useful cycling computer feedback and analysis. \n\nCons:\n--> Smart zoom is a little too distant on complex intersections. \n--> Current location button too small. \n--> Bicycle routing option can include some gravel roads. \n--> Road names aren\"t always included in voice navigation. \n\nSuggested improvements:\n--> Offer translate button for comments in various languages. \n--> Include zoom buttons for changing level of detail. \n--> Allow road names to be ommited from voice navigation. \n--> If user leaves route for more than 2-3 reroutings, assume they don\"t want to U-turn. \n\nOkay, keep up the good work! \n\nThank you!",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1702362548",
"userName": "riffraf",
"userUrl": "https://itunes.apple.com/us/reviews/id34941953",
"version": "9.1.2",
"score": 2,
"title": "So far, meh. Too many things wrong",
"text": "I installed the app and got my \"free region\" for voice guided navigation. I planned a ride entirely within the free region, but navigation and mapping stopped part way through the ride - even though I was entirely inside the supposed \"free region\" - and I\"m told I need to buy a bigger region for it to work. Is it a bug? Is it bait and switch? Is someone going to give me an answer?\n\nThe app also locked up twice on a 30 mile ride and failed to record the mileage. Not cool.\n\nAlso, the map used by the app just isn\"t all that accurate with regard to bike trails around here, and rerouted me down a 4 lane state highway instead through the bike path tunnel. (I followed their instructions about updating Open StreetMap, but here\"s the thing: Open StreetMap already had that bike tunnel in the database - Komoot just doesn\"t seem to see it.)\n\nNext, the weather forecast they provide reads only in Celsius. You\"re tring to market this in the USA? We use Fahrenheit.\n\nFinally, there doesn\"t seem to be much responsiveness when probelms are reported through the website.\n\nAt $27 for an app, I expect better.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1554584179",
"userName": "Biking is fun",
"userUrl": "https://itunes.apple.com/us/reviews/id215826298",
"version": "8.5.2",
"score": 5,
"title": "Best app for planning and recording routes",
"text": "I have had the app for about a year now. Used it a lot last summer to include one 150km ride, it was awesome. \nBeen looking at some other apps to track more information I would like to evaluate after my rides. However they do not support planning a route on the iPhone. \nI really enjoy planning a route from the komoot web page as it automatically updates your phone with the route. \n\nMy spouse thinks the app takes you on a run about route as sometimes it does not follow the actual bike path that is posted on the roads. But it does take the most direct route from my experience. And like a lot of others it does let you know when you deviate from the route. It also works great when you just hit record and ride freelance. \n\nOverall I think this is the best app though it does not have some of the collection data other apps have.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1223245203",
"userName": "Liam Resener",
"userUrl": "https://itunes.apple.com/us/reviews/id101227488",
"version": "6.7",
"score": 5,
"title": "Absolutely Fantastic",
"text": "This app is really great. I love being able to plan and track my hikes. It organizes every outing that I take now, and remembers which pictures I took on which trails.\n\nIf you are at all inclined to explore the outdoors, it is definitely worth paying for the downloadable maps to use offline. I am no longer even a little concerned to wander off the trail or about getting lost, because the GPS and offline map will tell you exactly how to get back to the trail.\n\nWell worth the download and in-app purchases.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1690841724",
"userName": "Isleofgough",
"userUrl": "https://itunes.apple.com/us/reviews/id147682015",
"version": "9.1.2",
"score": 5,
"title": "Best offline hiking app",
"text": "I used this offline in Canada, where it was more precise than two well known topographic apps, and the voice navigation was correct to within 10 feet. Battery use was minimal in airplane mode. Since downloads are related to hiking or biking routes, they don\"t have to comer a large area, yet there is lots of detail and storage space is reasonable. The only thing I don\"t like is that you have to create an account and sign in. Despite that, this is my favorite hiking and biking app.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1382306647",
"userName": "T.milliswag",
"userUrl": "https://itunes.apple.com/us/reviews/id139379437",
"version": "8.0.1",
"score": 5,
"title": "Great compared to google maps and other apps.",
"text": "This app is so easy to use and gives you the fastest route by bike or walking. Being over seas and using a apps to get around is important especially in Korea. This one was extremely helpful and showed current places and roads. Even outline restricted areas, parks. Don\"t like the fact that you have to pay to unlock larger areas though. But they do have to make money. Wish it was cheaper than the current prices.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1537987494",
"userName": "Checapelia",
"userUrl": "https://itunes.apple.com/us/reviews/id549373434",
"version": "8.5.1",
"score": 5,
"title": "Awesome!!",
"text": "As a city girl who recently moved to the mountains, walking into the woods is not something that comes naturally. My fear was getting lost. This was my first time using the app & it worked perfectly! Seeing the trails and being able to make informed decisions on what option to take definitely gave me confidence. I was able to really enjoy this first hike with my dog & the beautiful landscape without worrying about getting lost. Highly recommend this app!!",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1372048602",
"userName": "Kristen Hikes",
"userUrl": "https://itunes.apple.com/us/reviews/id28536602",
"version": "8.0.1",
"score": 4,
"title": "Just a few small improvements, please!",
"text": "Komoot is a great app for planning, pictures and sharing. I shared a two-week hiking trip around Mont Blanc with all of my friends and Komoot made it easy and convenient. My one complaint is that I wish it would give mile splits. I would also say that it is a bit of a battery sucker to use the planning mode and record your trip. Bring an extra battery pack if you\"re going to be out for more than 4-5 hours",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1612592040",
"userName": "Pazuzu1991",
"userUrl": "https://itunes.apple.com/us/reviews/id427368780",
"version": "9.0.1",
"score": 5,
"title": "Best app for exploring on the cheap",
"text": "First it\"s not perfect, but compared to all other adventure travel apps, it\"s the best I\"ve found. It lets you travel on the cheap. It\"s not the greatest for trip planning, but if you do the tours as recommended, it\"s like having that friend that knows were all the cool places are. Highly recommend for those liking to explore and experience a seance of adventure, on a budget.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1466088702",
"userName": "S6kpil",
"userUrl": "https://itunes.apple.com/us/reviews/id504489506",
"version": "8.4",
"score": 5,
"title": "Awesome sauce!!!",
"text": "This has it all. It will track your speed, distance, and you can add photos and share w others or on social media. You can pause it. It asks you to categorize the activity at the end. It will usually guess based on your speed. I use it to track distance and my trail paths. The map is interactive so I can also figure out where I\"m going.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1216279249",
"userName": "quandary1111",
"userUrl": "https://itunes.apple.com/us/reviews/id37063643",
"version": "6.6",
"score": 5,
"title": "Super helpful during trip to England",
"text": "American who recently took a trip to England and was unfortunately surprised to learn that most English \"walks\" are somewhat documented online but really, truly documented in pay only pamphlets and maps. I used the Cotswold region for a day to do an 18 mile hike, which was great, and bought the Derbyshire region for half the price of a map, and it was significantly more convenient! Thanks!",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1476355617",
"userName": "Joshuac",
"userUrl": "https://itunes.apple.com/us/reviews/id33679475",
"version": "8.4.1",
"score": 5,
"title": "THE Best App for Hiking and Biking Deutschland",
"text": "With easy to use features, turn-by-turn navigation and GPS, route planning, save-able maps (for when there\"s no service) and the ability to take pictures and share your routes, this is easily my favorite hiking and biking app. Only drawback is no sync/support for strava",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1716253191",
"userName": "VoidedPhoenix52",
"userUrl": "https://itunes.apple.com/us/reviews/id228226173",
"version": "9.1.2",
"score": 5,
"title": "Great, Very Polished App",
"text": "So I got this app pretty recently to help me find bike trails near me, and I was actually very surprised by how polished and good looking the app was! It\"s really easy to use, and although I\"m not a huge fan of paying for regions, I think $30 to unlock THE ENTIRE WORLD is a pretty reasonable price, and I\"m definitely going to be purchasing it soon.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1400275765",
"userName": "Tungsten_5927",
"userUrl": "https://itunes.apple.com/us/reviews/id16162386",
"version": "8.1",
"score": 5,
"title": "Finally the app I have been looking for",
"text": "Over the years I tried different apps to help me with my bike tours. None of them did quite the right stuff or wasn\"t easy to use. This one here does exactly what I want and it does it with the a single tab. Love it. 5 stars with an exclamation point!",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1627069847",
"userName": "Don1276",
"userUrl": "https://itunes.apple.com/us/reviews/id283240657",
"version": "9.1.1",
"score": 5,
"title": "Nice maps",
"text": "It\"s a nice app without many bells and whistles. Even when your hiking you see your map and stats at the same time. Most hiking apps you have to change pages to your mileage or the map. I\"m giving this app a good rating because it gets right to the point.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1434024850",
"userName": "Bike tourerer",
"userUrl": "https://itunes.apple.com/us/reviews/id30194246",
"version": "8.2",
"score": 5,
"title": "Less battery usage than google maps",
"text": "Works great for bike touring. Uses less battery life than google maps and works great, even when in airplane mode. Tracks your progress, giving you mileage as you go, and average speed, etc.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1573351048",
"userName": "Cdnpirate1",
"userUrl": "https://itunes.apple.com/us/reviews/id278433979",
"version": "9.0",
"score": 5,
"title": "Awesome",
"text": "I was told about this app by a sales person at a bicycle store. I downloaded this app and used it for the first time. \nIt is easy to use and tracks the distance and time perfectly. \nEasy to understand and set up as well\nHighly recommend",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1209982124",
"userName": "Iandava",
"userUrl": "https://itunes.apple.com/us/reviews/id168751992",
"version": "6.5.2",
"score": 5,
"title": "Great App For Cycling",
"text": "Komoot was recommended to me while on a cycling trip to Spain. I have to say that I love this app. Gives me all the information that I need, offers multiple route options, and also speaks out the directions - buy it!",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1418511612",
"userName": "MikeRazak",
"userUrl": "https://itunes.apple.com/us/reviews/id23995065",
"version": "8.2",
"score": 5,
"title": "Just great",
"text": "Downloaded just about every biking app and this is my favorite. Doesn\"t have all the stats you might want buy has just about everything you need. Very easy to use.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1611625011",
"userName": "cotzacola",
"userUrl": "https://itunes.apple.com/us/reviews/id101691641",
"version": "9.0.1",
"score": 5,
"title": "Amazing app",
"text": "This app let you know how much time it will take if you plan a trip depending on the physical fit you are on. You won\"t get this type of info in google maps.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1614656682",
"userName": "Lizzardk66",
"userUrl": "https://itunes.apple.com/us/reviews/id28378635",
"version": "9.1",
"score": 5,
"title": "Great App",
"text": "I love how easy it is to use and it incorporates photos you\"ve taken from your recorded exercise. It\"s also fun to be able to tag others on the same trip.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1417640112",
"userName": "Nfzd346",
"userUrl": "https://itunes.apple.com/us/reviews/id328362922",
"version": "8.2",
"score": 5,
"title": "Finally, the ultimate travelers\" cycling app",
"text": "Offline turn by turn voice navigation, socially shared routes, easy route creation and gpx upload via the web; outstanding. Finally!",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1656509349",
"userName": "Jimadkf",
"userUrl": "https://itunes.apple.com/us/reviews/id188211333",
"version": "9.1.2",
"score": 5,
"title": "Fantastic",
"text": "This app was awesome!! Gave us a route that kept us off roads the whole time and gave very direct and simple to follow instructions that showed up on my Fitbit blaze! Definitely recommend.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1709540276",
"userName": "ejteets",
"userUrl": "https://itunes.apple.com/us/reviews/id466236733",
"version": "9.1.2",
"score": 5,
"title": "Komoot",
"text": "I think this app is so awesome and you can track any sport that you want and you can track its miles per hour and how far you have to travel this is a great app",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1716166400",
"userName": "jbstinson",
"userUrl": "https://itunes.apple.com/us/reviews/id599893828",
"version": "9.1.2",
"score": 5,
"title": "Mountain biking",
"text": "Best app so far for tracking mountain bike riding. I wish It had a feature that showed the fastest speed and the slowest speed with the average speed though. Otherwise it\"s a great app.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1294397400",
"userName": "Ae2722",
"userUrl": "https://itunes.apple.com/us/reviews/id4182407",
"version": "7.2",
"score": 5,
"title": "Great outdoor app",
"text": "Great app to have with you to plan a hike or a mountain bike ride. I love the suggestions it generates and it makes it easy to plan a weekend hike. I wish the app had the ability to import GPS track files.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1350915861",
"userName": "Ethan Borden",
"userUrl": "https://itunes.apple.com/us/reviews/id120288909",
"version": "8.0",
"score": 5,
"title": "Nice & Simple",
"text": "Excited to use this app this summer. Has a simple UI and seems to integrate the social aspect very well. Don\"t know why one would get upset about creating an account...",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1413471496",
"userName": "Tonsky86",
"userUrl": "https://itunes.apple.com/us/reviews/id104836330",
"version": "8.2",
"score": 5,
"title": "Love this app",
"text": "Turn by turn is surprisingly hard to come by and this app has it. All of the great features one would expect from a sports GPS.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1183986298",
"userName": "KINU 79",
"userUrl": "https://itunes.apple.com/us/reviews/id403551133",
"version": "6.5",
"score": 5,
"title": "Can\"t Live Without It",
"text": "Very good app for mountain biking!\nI have tried many apps and this is by far the best one for mountain biking! I have told many people about this app, and they agree. Thank you, Komoot!",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1694112194",
"userName": "KC Hunter",
"userUrl": "https://itunes.apple.com/us/reviews/id593452475",
"version": "9.1.2",
"score": 5,
"title": "Tried a few other apps for biking but this reigns supreme!",
"text": "Tried others but to many limitations. This has it all.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1706852700",
"userName": "SuperCrowe",
"userUrl": "https://itunes.apple.com/us/reviews/id177077915",
"version": "9.1.2",
"score": 5,
"title": "Simple, easy, excellent",
"text": "Wanted a simple and free app to track the distance and map location of our family bike rides and this app meets my needs.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1436375054",
"userName": "Nai-De",
"userUrl": "https://itunes.apple.com/us/reviews/id39059509",
"version": "8.2",
"score": 1,
"title": "Won\"t work without online account and user tracking",
"text": "Thanks, but no thanks.\nLike any other app that upon launch requires me to first create and logon to an account before providing functionality, this app was deleted within seconds of being installed.\nI share my information with nobody, certainly not with dozens of app developers who want to monetize my data.\nBuhbye!",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1632141840",
"userName": "Olaf23",
"userUrl": "https://itunes.apple.com/us/reviews/id43776450",
"version": "9.1.1",
"score": 3,
"title": "Very good turn by turn navigation",
"text": "I use the app for road biking. It\"s good for planing new trips taking advantage from contributions of other users. The app should support iPad, which it doesn\"t. Also the price is to high for an app that lives from the user community.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1671485289",
"userName": "Dfghytuiopasthand",
"userUrl": "https://itunes.apple.com/us/reviews/id476387806",
"version": "9.1.2",
"score": 5,
"title": "Get this app",
"text": "This is so helpful now I can compete how fast I\"m going compared to my friends with having to buy expensive equipment",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1570337567",
"userName": "SairaLDiaz",
"userUrl": "https://itunes.apple.com/us/reviews/id167707054",
"version": "9.0",
"score": 5,
"title": "Amazing",
"text": "First ride n I love it! Hope it doesn\"t change.. I had another app n it didn\"t keep track or share info with health so is gone!",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1397399177",
"userName": "Jon Woodroof",
"userUrl": "https://itunes.apple.com/us/reviews/id146484244",
"version": "8.1",
"score": 5,
"title": "Best app for planning, tracking & sharing your rides & hikes",
"text": "Komoot has shown me the best roads, trails & more around the world. I\"ll die having seen more awesomeness in my lifetime thanks to this app!",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1510311106",
"userName": "Cstorm",
"userUrl": "https://itunes.apple.com/us/reviews/id43230195",
"version": "8.5",
"score": 5,
"title": "Awesome awesome awesome!",
"text": "Great app for tracking multiple types of activities can share photos and gives you stats on avgs and ups and downs.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1730688926",
"userName": "RLFlynn",
"userUrl": "https://itunes.apple.com/us/reviews/id202845936",
"version": "9.3",
"score": 5,
"title": "Love it!",
"text": "I find this app helps me plan my routes for hiking and biking, and then helps me keep track of my progress as I enjoy the routes outdoors",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1632428846",
"userName": "Odi-man",
"userUrl": "https://itunes.apple.com/us/reviews/id575760805",
"version": "9.1.1",
"score": 5,
"title": "Ease of use",
"text": "Was easy to use and met all my needs for route storage and speed calculation",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1659679488",
"userName": "Trivie Momma",
"userUrl": "https://itunes.apple.com/us/reviews/id223623378",
"version": "9.1.2",
"score": 5,
"title": "Just What I Was looking For",
"text": "Komoot is just what I was looking for. It is very easy to use and has great results. I can use it for running, hiking, bicycling and horseback riding. Love it!!!",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "746364487",
"userName": "Chuck-Bamberg",
"userUrl": "https://itunes.apple.com/us/reviews/id288717557",
"version": "4.6",
"score": 4,
"title": "Komoot Navigation",
"text": "Just discoved this route planner in Germany and it is much better than the dedicated Garmin GPS units. Unfortunately, only has maps for Germany and not USA yet. I saved the money of buying a dedicated GPS unit for hiking and biking",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1562401836",
"userName": "25pumpkin",
"userUrl": "https://itunes.apple.com/us/reviews/id72019326",
"version": "8.5.2",
"score": 5,
"title": "Get it now",
"text": "This is my favorite most used app on my iPhone I love it and have from the moment I purchased it",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1262117639",
"userName": "Frank_Pe",
"userUrl": "https://itunes.apple.com/us/reviews/id453777622",
"version": "7.0",
"score": 5,
"title": "Awesome Update!",
"text": "I was in love with the app already. The latest update makes it even better. The new map markers with trails are so helpful.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1731196770",
"userName": "JoelNL",
"userUrl": "https://itunes.apple.com/us/reviews/id34630724",
"version": "9.3",
"score": 5,
"title": "My favoriet app for planning cycling trips",
"text": "Especially when I\"ve got my bike with me on vacation, it\"s great to have this to help me pick great rides. Love it. Actively developed too!",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1428238684",
"userName": "Freemarkit",
"userUrl": "https://itunes.apple.com/us/reviews/id24662579",
"version": "8.2",
"score": 5,
"title": "Great GPS app with no hassle",
"text": "Free means free with Komoot, not like the other \"freemium\" bait-and-switchers.\n\nThis app got me through some confusing trails with no cell signal. I love it. Highly recommended.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1510246910",
"userName": "11827718",
"userUrl": "https://itunes.apple.com/us/reviews/id141080439",
"version": "8.5.1",
"score": 2,
"title": "Offline mode still doesn\"t work",
"text": "Downloading maps, save to offline and once you\"re out of network coverage you\"re stuffed. App didn\"t remember anything was downloaded and your left in the dark. Disappointing.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1606063821",
"userName": "Megsfolks",
"userUrl": "https://itunes.apple.com/us/reviews/id106925592",
"version": "9.0.1",
"score": 5,
"title": "Great for my road bike",
"text": "I like the display, easy to use (even for a tach challenged old guy). Haven\"t used it for a run, or hike yet but I\"m sure it will be great.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1472967038",
"userName": "Carneillian",
"userUrl": "https://itunes.apple.com/us/reviews/id173280723",
"version": "8.4.1",
"score": 5,
"title": "Versatility",
"text": "Works great for multiple sports and activities. I love being able to plan routes and go ad lib",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1511289053",
"userName": "Hunt Lai",
"userUrl": "https://itunes.apple.com/us/reviews/id103455736",
"version": "8.5.1",
"score": 5,
"title": "Great hiking apps",
"text": "Great apps with offline and navigation features. Use it a lot for my weekly bush walking.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1711230477",
"userName": "Lexicon83",
"userUrl": "https://itunes.apple.com/us/reviews/id127445496",
"version": "9.1.2",
"score": 3,
"title": "not worth it.",
"text": "routinely told me that i was off course on my tour, when \"500 feet to the right\" would have put me in the middle of an interstate, or the mississipi. sent me in figure eights repeatedly. missed important turns. when i finally got on course and had been following it for some time, i landed in a sand quarry. google maps did me just as wrong, but at least i would\"ve had an extra $8 in my pocket for a post-ride beer.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1628140050",
"userName": "Dadbike",
"userUrl": "https://itunes.apple.com/us/reviews/id360937836",
"version": "9.1.1",
"score": 5,
"title": "Great functionality",
"text": "Love the mapping and route planning as well as the ride tracking.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1651422455",
"userName": "Ccorn13",
"userUrl": "https://itunes.apple.com/us/reviews/id181043410",
"version": "9.1.2",
"score": 5,
"title": "My favorite MTB App!!!",
"text": "I\"ve been looking for an app that will navigate a route and I\"ve finally found it!",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1442941175",
"userName": "Btl182",
"userUrl": "https://itunes.apple.com/us/reviews/id184018814",
"version": "8.2",
"score": 5,
"title": "Great cycling Nav!!!",
"text": "Great little navigation. Files can be downloaded then uploaded to Strava, which is a big plus for me!!",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1419737087",
"userName": "Fpukqwe",
"userUrl": "https://itunes.apple.com/us/reviews/id157469528",
"version": "8.2",
"score": 5,
"title": "Works perfect even without gprs turned on!",
"text": "Love it, but sometimes it posts in German. And I don\"t get it.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1404728090",
"userName": "Joefsny",
"userUrl": "https://itunes.apple.com/us/reviews/id225816644",
"version": "8.1",
"score": 1,
"title": "No hiking trails no mountain bike trails paid $8.00 for offline maps that have nothing on them",
"text": "No hiking trails no mountain bike trails paid $8.00 for offline maps that have nothing on them or I can\"t find them one or the other .Calling apple for a refund on this one . Don\"t waste your money .",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1350867036",
"userName": "MGDelite",
"userUrl": "https://itunes.apple.com/us/reviews/id37573178",
"version": "8.0",
"score": 1,
"title": "Sign up and rides that are far away?",
"text": "It makes you sign up for some reason, and it gives you bike rides that are 1000 miles away! There weren\"t even any trails in my location, and you have to pay money for trails farther away in your area!",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1349920089",
"userName": "Steve in Kitsap",
"userUrl": "https://itunes.apple.com/us/reviews/id23663885",
"version": "8.0",
"score": 1,
"title": "Requires you to sign in. Instant delete",
"text": "I\"m cool with signing in to an app AFTER I get to see what they offer and if it opens additional features. However this app instantly requires you to sign in or start an account without even trying it. Instant delete.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1559610483",
"userName": "One Old Punk",
"userUrl": "https://itunes.apple.com/us/reviews/id37295056",
"version": "8.5.2",
"score": 5,
"title": "Fun app",
"text": "Fun to keep track of each ride and elevation, speed and time.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1643105272",
"userName": "chwasmer",
"userUrl": "https://itunes.apple.com/us/reviews/id175173712",
"version": "9.1.2",
"score": 5,
"title": "Amazing app - please release an iPad version!",
"text": "If you ever want to go anywhere outdoors, use this app!!",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1622246825",
"userName": "Gapi9",
"userUrl": "https://itunes.apple.com/us/reviews/id216960560",
"version": "9.1",
"score": 5,
"title": "Good maps low battery use",
"text": "Great",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1598305381",
"userName": "The real J. Elliott",
"userUrl": "https://itunes.apple.com/us/reviews/id124235953",
"version": "9.0.1",
"score": 5,
"title": "Great app..",
"text": "It actually tracked every single turn I made and direction I was going...",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1350809543",
"userName": "Twinsin",
"userUrl": "https://itunes.apple.com/us/reviews/id27157054",
"version": "8.0",
"score": 2,
"title": "Not helpful",
"text": "Not helpful content, crashes most times on a brand new phone and just poor content. Might want to rethink the idea and come back to the market with a real idea.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1667514345",
"userName": "Pyse77",
"userUrl": "https://itunes.apple.com/us/reviews/id585508735",
"version": "9.1.2",
"score": 5,
"title": "Awesome App",
"text": "Love the app! Very easy to figure out and love all the options available!",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1711561805",
"userName": "Chivis96",
"userUrl": "https://itunes.apple.com/us/reviews/id548082588",
"version": "9.1.2",
"score": 4,
"title": "Awesome",
"text": "I can finally keep track of my miles and speed 🤗",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1629719172",
"userName": "sclyons1",
"userUrl": "https://itunes.apple.com/us/reviews/id406128033",
"version": "9.1.1",
"score": 5,
"title": "Very Useful",
"text": "I have enjoyed this app so far! Just having it motivates me.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1638094187",
"userName": "S1thp0wa",
"userUrl": "https://itunes.apple.com/us/reviews/id329169796",
"version": "9.1.1",
"score": 5,
"title": "great app",
"text": "Absolutely love the sharing feature. Accurate and great stat display.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1654047446",
"userName": "Toni*24",
"userUrl": "https://itunes.apple.com/us/reviews/id287782001",
"version": "9.1.2",
"score": 5,
"title": "Fun!",
"text": "It keeps me going on my bike rides. I love how it tracks my miles and route.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1187350428",
"userName": "curtisthefox",
"userUrl": "https://itunes.apple.com/us/reviews/id34941516",
"version": "6.5.1",
"score": 1,
"title": "Crashes on Open",
"text": "After the last update, the app hangs on displaying the background of the app, then eventually crashes and closes out. I\"ve uninstalled and reinstalled the app, but it does now help. Using an iPhone 6.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1657702079",
"userName": "Ayyildiz_US",
"userUrl": "https://itunes.apple.com/us/reviews/id109588064",
"version": "9.1.2",
"score": 5,
"title": "Very good app.",
"text": "Easy to use and everything positive",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1528463295",
"userName": "_alinden",
"userUrl": "https://itunes.apple.com/us/reviews/id86228338",
"version": "8.5.1",
"score": 5,
"title": "Great hiking app!",
"text": "No matter where you are, there is a trail to hike. With Komoot you\"ll find it!",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1711328185",
"userName": "Sskud",
"userUrl": "https://itunes.apple.com/us/reviews/id199763418",
"version": "9.1.2",
"score": 5,
"title": "Amazing!",
"text": "Even elevation is included as well as distance and mph for a whole series of sports activities. LOVE LOVE LOVE this app.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1385138106",
"userName": "ShirleyWI",
"userUrl": "https://itunes.apple.com/us/reviews/id164165405",
"version": "8.0.1",
"score": 3,
"title": "Good but can be better",
"text": "This app doesn\"t magic in the USA, possibly due to small pool of current users and programmers working on USA areas.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1592069389",
"userName": "Cjbalmain",
"userUrl": "https://itunes.apple.com/us/reviews/id313880126",
"version": "9.0.1",
"score": 5,
"title": "Yes",
"text": "Good options and functions. Very convenient",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1553944775",
"userName": "JavaKnight3",
"userUrl": "https://itunes.apple.com/us/reviews/id106837333",
"version": "8.5.2",
"score": 5,
"title": "Best camping bike app",
"text": "I use this app whenever I hike or bike. REALY well designed. Good going❗",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1575234110",
"userName": "TheShineyOne",
"userUrl": "https://itunes.apple.com/us/reviews/id237086051",
"version": "9.0",
"score": 5,
"title": "Great FREE App!",
"text": "Needed something to track my milage and this delivered! Plus..tons of extras to add.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1423614497",
"userName": "Ropbon",
"userUrl": "https://itunes.apple.com/us/reviews/id139935370",
"version": "8.2",
"score": 5,
"title": "Nice navigation for bicycle turn by turn",
"text": "Great app.... !!!!",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1593457291",
"userName": "Flexo Mike",
"userUrl": "https://itunes.apple.com/us/reviews/id275411429",
"version": "9.0.1",
"score": 5,
"title": "Like it",
"text": "Works good. Easy to use.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1352971487",
"userName": "BamaSoxFan",
"userUrl": "https://itunes.apple.com/us/reviews/id34978948",
"version": "8.0",
"score": 1,
"title": "They will pester you with emails",
"text": "Sign up to join an app that shows me zero local routes and rides. The suggested \"local\" routes are hikes over the Pyrenees, the alps, San Francisco. Unfortunately I live in the southern US. Not worth your time.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1389550589",
"userName": "BrownLeopard",
"userUrl": "https://itunes.apple.com/us/reviews/id290044517",
"version": "8.0.1",
"score": 5,
"title": "Awesome app",
"text": "Never lets me down, wherever I am in Europe",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1687870134",
"userName": "Bli36",
"userUrl": "https://itunes.apple.com/us/reviews/id484969254",
"version": "9.1.2",
"score": 4,
"title": "Nice app",
"text": "Very cool app. Love all the different activities that it can record.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1354481845",
"userName": "dboblend",
"userUrl": "https://itunes.apple.com/us/reviews/id236363449",
"version": "8.0",
"score": 1,
"title": "Cool for dreaming not for life",
"text": "Locations are distant even though I\"m in the center of some of the best hiking in the USA. Needs more development before this would be useful for most people.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1373177775",
"userName": "Christpp",
"userUrl": "https://itunes.apple.com/us/reviews/id380817957",
"version": "8.0.1",
"score": 5,
"title": "Awesome app",
"text": "Really great app for a hiker, runner, or cyclist. Try it out",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1448140539",
"userName": "12mema",
"userUrl": "https://itunes.apple.com/us/reviews/id299821217",
"version": "8.3.1",
"score": 5,
"title": "Love it",
"text": "Keeps you motivated",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1683290498",
"userName": "Dwn 2",
"userUrl": "https://itunes.apple.com/us/reviews/id124898086",
"version": "9.1.2",
"score": 1,
"title": "Always crashing",
"text": "Never got it to work well keeps crashing.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1351502304",
"userName": "SargeyWargey",
"userUrl": "https://itunes.apple.com/us/reviews/id106398926",
"version": "8.0",
"score": 2,
"title": "What is it?",
"text": "I am avid road biker in northwest Arkansas. The app looks nice, but what does it do? If I pay the $9 what am I getting? Does it show me trails in the area?",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1518135904",
"userName": "Snidedog",
"userUrl": "https://itunes.apple.com/us/reviews/id245576146",
"version": "8.5.1",
"score": 5,
"title": "Kick Arse App",
"text": "Love it! Meets all my needs plus some!",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1387507486",
"userName": "Travelisme",
"userUrl": "https://itunes.apple.com/us/reviews/id21288550",
"version": "8.0.1",
"score": 1,
"title": "Worst app",
"text": "Just downloaded it and did a search for road bike routes in Golden and it found nothing. Went to highlights and got an add for a sandwich shop.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1368975016",
"userName": "clin0048",
"userUrl": "https://itunes.apple.com/us/reviews/id35514244",
"version": "8.0",
"score": 1,
"title": "A couple of catastrophic fails...",
"text": "1. Requires setting up an account before even using the app. Fail. \n2. No rides within 100 miles of Minneapolis MN. Fail.",
"url": "https://itunes.apple.com/us/review?id=447374873&type=Purple%20Software" },
{ "id": "1620221423",
"userName": "drimes",
"userUrl": "https://itunes.apple.com/us/reviews/id250177780",
"version": "9.1",
"score": 5,
"title": "Love it!",
"text": "Great app and easy to use!",