-
Notifications
You must be signed in to change notification settings - Fork 19
/
data.json
1017 lines (1012 loc) · 204 KB
/
data.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
{"data":[
{"id":"7DKv5H5Frt0", "title":"After ten years, it's time to stop making videos.", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"F0JDK_71yDg", "title":"Britain's power grid is turning inside-out.", "lat":"53.14456", "long":"-0.99061", "category":"Places", "comment":"National Grid Training Centre", "status":"mapped", "internal_comment":""},
{"id":"Zl_5LT2fzak", "title":"Why the government drops flies on California", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"hNZy603as5w", "title":"A robot just swapped my electric car's battery", "lat":"52.01173", "long":"4.31533", "category":"Places", "comment":"The battery swap station", "status":"mapped", "internal_comment":""},
{"id":"pU9sHwNKc2c", "title":"Why don't subtitles match dubbing?", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"LDiXNsWQzD0", "title":"Why use many streetlights when one will do?", "lat":"30.24141", "long":"-97.74739", "category":"Places", "comment":"The Moonlight Tower where Tom filmed at. <a href=\"https://overpass-turbo.eu/s/1Er5\">A map of all of them can be found here.</a> ", "status":"mapped", "internal_comment":""},
{"id":"jplrbxI5GN8", "title":"I've wanted to drive these tiny ships for years.", "lat":"53.60902", "long":"19.50855", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"lIbfMjZ0ME4", "title":"Every mistake I've made since 2014.", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":"Just referencing other videos"},
{"id":"CmZdGo6b5yA", "title":"Does the language you speak change how you think?", "lat":"", "long":"", "category":"Linguistics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"j3OqAN4ISOw", "title":"Boarding planes could have been very different", "lat":"45.459207", "long":"-73.753281", "category":"Places", "comment":"Terminal with the mobile lounges", "status":"mapped", "internal_comment":""},
{"id":"XQIu5tZ0vbQ", "title":"0-100 in less than a second. And I'm driving.", "lat":"47.405443", "long":"8.63179", "category":"Other", "comment":"Location of the race track", "status":"mapped", "internal_comment":""},
{"id":"CkZyZFa5qO0", "title":"there’dn’t’ve", "lat":"", "long":"", "category":"Linguistics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"ZgDBIzClmPg", "title":"I finally rode the weird, curved German elevator.", "lat":"52.36757", "long":"9.7375", "category":"Places", "comment":"", "status":"mapped", "internal_comment":"Entry of the Building"},
{"id":"QqRREz0iBes", "title":"The largest telescope that will ever be built*", "lat":"-24.58922", "long":"-70.19164", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"3kwDVw0u4Kw", "title":"These houses are spheres", "lat":"51.729813", "long":"5.306812", "category":"Places", "comment":"Bolwoningen", "status":"mapped", "internal_comment":""},
{"id":"3kwDVw0u4Kw", "title":"These houses are spheres", "lat":"51.920187", "long":"4.490562", "category":"Places", "comment":"The Cube Houses in Rotterdam", "status":"mapped", "internal_comment":""},
{"id":"TFpzps-DCb0", "title":"How languages steal words from each other", "lat":"", "long":"", "category":"Linguistics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"ZNVuIU6UUiM", "title":"This library has every book ever published.", "lat":"51.52997", "long":"-0.12767", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"Is_wu0VRIqQ", "title":"Why are adverts so loud?", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"1yfX84RMQ3M", "title":"This man built his office inside an elevator", "lat":"49.2232", "long":"17.65890", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"_G2Q1qsoGEU", "title":"No-one built these for 5,000 years… until now.", "lat":"52.87374", "long":"-2.67877", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"nbafT2w0cCQ", "title":"This town throws pennies at people. They hurt.", "lat":"50.79951", "long":"-3.18961", "category":"Places", "comment":"The building from which the first pennies were thrown in the video", "status":"mapped", "internal_comment":""},
{"id":"R2oD1ZHNMFE", "title":"This town banned cars (except tiny electric ones)", "lat":"46.01950", "long":"7.74611", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"85BykUan6pw", "title":"Storing dead people at -196°C", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"xq4ZkfojSis", "title":"A bear found my GoPro and took a selfie", "lat":"44.65559", "long":"-111.09769", "category":"Things", "comment":"A slightly different location in the Grizzly & Wolf Discovery Center than the previous videos", "status":"mapped", "internal_comment":""},
{"id":"Oarf76MCrss", "title":"Grizzly bear GoPro selfie: raw unedited footage", "lat":"44.65533", "long":"-111.09771", "category":"Other", "comment":"A slightly different location in the Grizzly & Wolf Discovery Center than the previous video", "status":"mapped", "internal_comment":""},
{"id":"Xn_O2li_jpk", "title":"If this survives for an hour, it passes the Bear Test.", "lat":"44.65615", "long":"-111.09869", "category":"Things", "comment":"The location of the Grizzly & Wolf Discovery Center", "status":"mapped", "internal_comment":""},
{"id":"gisdyTBMNyQ", "title":"I thought this rotating house was impossible.", "lat":"32.76796", "long":"-116.98343", "category":"Things", "comment":"The location of the rotating house", "status":"mapped", "internal_comment":""},
{"id":"EN9JzxzDXU0", "title":"How can you legally fly a plane designed in 1910?", "lat":"39.59352", "long":"-84.22813", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"ca0RpxknHCI", "title":"Six months from now, this channel stops.", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"rn_8GXNN7_Q", "title":"The first jungle gym was meant to hack kids' brains", "lat":"42.10240", "long":"-87.73327", "category":"Things", "comment":"The location of Winnetka Historical Society", "status":"mapped", "internal_comment":""},
{"id":"72RxerDwzEo", "title":"The cable car that you pedal by hand", "lat":"46.25065", "long":"13.72629", "category":"Places", "comment":"Kurukula", "status":"mapped", "internal_comment":""},
{"id":"tMlHDnbEIDA", "title":"This submarine simulator floats through a tiny world", "lat":"43.84381", "long":"12.27040", "category":"Other", "comment":"The old mill, where Bathysphere Project at Explorandia is located. Please don't show up there unannounced. Go to their website first ( https://www.explorandia.it/page/bathysphere ), read it and contect them accordingly.", "status":"mapped", "internal_comment":""},
{"id":"ar0klhiJfDI", "title":"No-one knows how explosions work (yet)", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"xWL40q3DMoQ", "title":"This is an excuse to show you a really good tunnel", "lat":"52.20840", "long":"-1.22088", "category":"BuiltForScience", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"Sj3iI9jZCX8", "title":"Shake tables are way more complex than I thought", "lat":"32.89369", "long":"-117.10912", "category":"BuiltForScience", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"1v8u3ua6BPk", "title":"The people who get paid to get sick", "lat":"51.51598", "long":"-0.06605", "category":"BuiltForScience", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"b5Oy29TEVOE", "title":"The world's cleanest railway", "lat":"45.19495", "long":"5.70669", "category":"BuiltForScience", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"evV05QeSjAw", "title":"How they saved the holes in Swiss cheese", "lat":"46.93008", "long":"7.42294", "category":"Things", "comment":"Please note: this building is not for public access.", "status":"mapped", "internal_comment":""},
{"id":"lPaQInkWV7g", "title":"The military base where you drive over the runway", "lat":"46.739991", "long":"8.116112", "category":"Places", "comment":"South barrier", "status":"mapped", "internal_comment":""},
{"id":"KRIBVykhpC4", "title":"It's the Matrix, but for locusts.", "lat":"47.69159", "long":"9.18700", "category":"BuiltForScience", "comment":"The Department of Collective Behaviour of the Max Planck Institute of Animal Behavior, at the University of Konstanz", "status":"mapped", "internal_comment":""},
{"id":"bPTSSHRnnWw", "title":"This tiny hovercraft went viral.", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"4ZX9T0kWb4Y", "title":"I rode the world's fastest train.", "lat":"35.58331", "long":"138.92582", "category":"Places", "comment":"Yamanashi Prefectural Maglev Exhibition Center", "status":"mapped", "internal_comment":""},
{"id":"voYdl7IFZsM", "title":"I climbed inside a giant robotic parking garage", "lat":"33.57206", "long":"133.57217", "category":"Places", "comment":"Eco Park at the GIKEN Kochi Head Office", "status":"mapped", "internal_comment":""},
{"id":"Kn56bMZ9OE8", "title":"A bus that transforms into a train", "lat":"33.60634", "long":"134.35102", "category":"Places", "comment":"The station where the bus became the train in the video.", "status":"mapped", "internal_comment":""},
{"id":"Kn56bMZ9OE8", "title":"A bus that transforms into a train", "lat":"33.54696", "long":"134.28814", "category":"Places", "comment":"The station where the train became the bus in the video.", "status":"mapped", "internal_comment":""},
{"id":"_8W2LIfl5RE", "title":"Things are changing at the world's oldest hotel", "lat":"35.55452", "long":"138.30613", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"cUkoqppoFr8", "title":"The city with a hundred private cable cars", "lat":"-41.21758", "long":"174.88417", "category":"Things", "comment":"Mapped to the workshop location of Access Automation and not to any of the private cable cars, as they are not meant to be visited by tourists.", "status":"mapped", "internal_comment":""},
{"id":"wcp1BfPUeOc", "title":"This is “impossible”, but New Zealand is trying anyway.", "lat":"-41.3169", "long":"174.8055", "category":"Things", "comment":"the approximate location of the trap in the buffer zone", "status":"mapped", "internal_comment":""},
{"id":"YTHZLKFblKo", "title":"This café sends food through pneumatic tubes", "lat":"-43.53511", "long":"172.64048", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"jPhJbKBuNnA", "title":"I tried using AI. It scared me.", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"7qNOtgrIjO4", "title":"Google gave the Shweeb $1,000,000.", "lat":"-38.08744", "long":"176.19036", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"bu5-VERN3XY", "title":"Why Australia bottles up its air", "lat":"-40.68296", "long":"144.69002", "category":"BuiltForScience", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"6o38C-ultvw", "title":"I took a ride on a moving radio telescope", "lat":"-32.99836", "long":"148.26349", "category":"BuiltForScience", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"PSrO55KS6VY", "title":"These chickens save lives.", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"2nQ-rijlX3o", "title":"This rollercoaster doesn't stop automatically", "lat":"-37.86823", "long":"144.97626", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"FhHM9MT41IE", "title":"The \"architecture graveyard\" is alive and well", "lat":"35.31569", "long":"-120.65336", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"t19wSDqf6qo", "title":"3D printing my own abdomen for robot surgery", "lat":"44.638958", "long":"-123.100973", "category":"BuiltForScience", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"Wif1EAgEQKI", "title":"I was wrong (and so was everyone)", "lat":"51.51004", "long":"-0.08564", "category":"Other", "comment":"Putting the marker for the correction video next to the marker of the original video.", "status":"mapped", "internal_comment":""},
{"id":"Wif1EAgEQKI", "title":"I was wrong (and so was everyone)", "lat":"51.50492", "long":"-0.13709", "category":"Other", "comment":"Putting the marker for the correction video next to the marker of the original video.", "status":"mapped", "internal_comment":""},
{"id":"vIfC4Aj05Ps", "title":"The US government is giving out free wasps", "lat":"44.93035", "long":"-122.99308", "category":"Things", "comment":"", "status":"mapped", "internal_comment":"researched by Finn who got the coordinates by submitting a public records request to the Oregon Department of Agriculture."},
{"id":"eMTZvA8iFgI", "title":"Firing radioactive stuff at high speed under city streets", "lat":"49.24714", "long":"-123.23018", "category":"BuiltForScience", "comment":"The accelerator, where the Rabbit Line starts.", "status":"mapped", "internal_comment":""},
{"id":"eMTZvA8iFgI", "title":"Firing radioactive stuff at high speed under city streets", "lat":"49.26438", "long":"-123.24432", "category":"BuiltForScience", "comment":"The hospital, where the Rabbit Line ends.", "status":"mapped", "internal_comment":""},
{"id":"nCrTsWtPVIY", "title":"Why has no-one built a power station here yet?", "lat":"45.26087", "long":"-66.08748", "category":"Places", "comment":"The reversing falls in Saint John", "status":"mapped", "internal_comment":""},
{"id":"nCrTsWtPVIY", "title":"Why has no-one built a power station here yet?", "lat":"46.09169", "long":"-64.76413", "category":"Places", "comment":"The place in Moncton, where Tom filmed the tidal wave.", "status":"mapped", "internal_comment":""},
{"id":"I99Qgb4mE5I", "title":"Why build a diving board twice the Olympic height?", "lat":"45.55962", "long":"-73.55267", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"wbVIBmoUdUs", "title":"This river can be switched on and off", "lat":"45.37730", "long":"-71.93776", "category":"BuiltForScience", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"MYqCWxdM4ww", "title":"This electric ferry is plugged into the mains", "lat":"56.60852", "long":"10.30102", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"B5IbSOo4o5o", "title":"I can't do this forever.", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"i0RkEs3Xwf0", "title":"Is Poland's tap water really protected by clams?", "lat":"52.22160", "long":"21.05684", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"zCDIhq9nMBE", "title":"The government approves of this shark now.", "lat":"51.75892", "long":"-1.21328", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"AcQifPHcMLE", "title":"This 1970s tank simulator drives through a tiny world", "lat":"47.60939", "long":"8.19362", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"mwx_rumXUAw", "title":"Keeping the world's longest railroad tunnel safe", "lat":"46.37256", "long":"8.92543", "category":"Places", "comment":"The south entrance of the Gotthard Base tunnel, where Tom was filming", "status":"mapped", "internal_comment":""},
{"id":"Ei6LKHNFpeE", "title":"I finally found a useful monorail.", "lat":"46.15177", "long":"8.72351", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"pk9v3m7Slv8", "title":"I thought the treadmill crane was fictional.", "lat":"47.58338", "long":"3.15504", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"yWYkoZKHLfg", "title":"Why do YouTubers clap at the start of videos?", "lat":"40.31262", "long":"-74.60565", "category":"Other", "comment":"The place of the plaque for the alien landing site from War of the Worlds.", "status":"mapped", "internal_comment":"If Tom ever makes another video about this place, this marker should be replaced."},
{"id":"CwABJGzifao", "title":"How much helium does it take to lift a person?", "lat":"49.45182", "long":"-1.38088", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"q3LuZeekVX4", "title":"This is the most interesting roof in London.", "lat":"51.50103", "long":"-0.17741", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"FJIzV0yYu0c", "title":"This massive truck makes artificial earthquakes", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"t3oLeSPINOk", "title":"Why the US Army electrifies this water", "lat":"41.64206", "long":"-88.05971", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"2vd8Wfk9im0", "title":"Delivering mail by jumping from a moving boat", "lat":"42.58997", "long":"-88.43618", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"XxCha4Kez9c", "title":"How the US Postal Service reads terrible handwriting", "lat":"40.74329", "long":"-112.00504", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"QazsDS8TQ0w", "title":"A geyser that shoots sparkling mineral water", "lat":"42.65728", "long":"-111.60521", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"KPPiOFaAlig", "title":"A 400-year-old festival has the world's largest walking robot", "lat":"49.30468", "long":"12.84856", "category":"Places", "comment":"The Dragon Cave", "status":"mapped", "internal_comment":""},
{"id":"hECaXfk2Wo4", "title":"I visited the Yellowstone Zone of Death", "lat":"44.13991", "long":"-111.05036", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"PKs73A-TIWM", "title":"Flying here is (surprisingly) legal", "lat":"40.68924", "long":"-74.04450", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"RJAYZgOZS08", "title":"A working flight simulator, no computers necessary", "lat":"43.04708", "long":"-76.15558", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"uAdmzyKagvE", "title":"This clock was famous, but the internet ruined it.", "lat":"52.2615", "long":"4.7812", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"hSmtKMx1CB4", "title":"Can you really drive while facing backwards?", "lat":"48.80510", "long":"2.40106", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"m0mwlSZ0bQQ", "title":"It's a pile of mining waste. Want to go skiing on it?", "lat":"49.53131", "long":"11.96545", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"cz231Zi8Z7g", "title":"Maybe rich people should build weird fountains again", "lat":"51.31592", "long":"9.39631", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"SSg3T0aK-ck", "title":"I rode a giant mechanical elephant. You can too.", "lat":"47.20616", "long":"-1.56447", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"nGlhMk1hEZw", "title":"The massive Fatigue Carousel helps keep roads safe", "lat":"47.15362", "long":"-1.64139", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"3fJhTu-0zmo", "title":"I flew with birds. You can too.", "lat":"45.0753", "long":"2.9903", "category":"Places", "comment":"The aerodrome, where the flights start.", "status":"mapped", "internal_comment":""},
{"id":"_zJbi9YatcA", "title":"You're not allowed in this cave. But there's a copy.", "lat":"44.40712", "long":"4.42673", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"6kolTgj7uQc", "title":"Europe's toughest airport landing used to be a lot harder", "lat":"32.69534", "long":"-16.77664", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"19o8yPaVp58", "title":"Speeding downhill on a sofa is a tourist attraction in Madeira", "lat":"32.67540", "long":"-16.90267", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"swLyst02ZK4", "title":"The bridge that must legally wobble", "lat":"51.89653", "long":"-8.49919", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"uXlQuTRSmzc", "title":"My robot double sells out (so I don't have to)", "lat":"50.15122", "long":"-5.09807", "category":"Other", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"yqciKS_N0K8", "title":"How does Britain know what time it is?", "lat":"54.9137", "long":"-3.2826", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"ce-QHeZnVu4", "title":"The giant archive hidden under the British countryside", "lat":"53.21049", "long":"-2.52101", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"JA3RXeds0_g", "title":"Reopening an airport terminal is harder than you might think", "lat":"51.15613", "long":"-0.16296", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"iQGl-ffVtaM", "title":"14 science fiction stories in under 6 minutes", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"mzAfich6mow", "title":"After 140 years, these old wire signals still keep trains safe", "lat":"56.39382", "long":"-5.11210", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"ELGWbY4xBDs", "title":"The Elie Chainwalk is safe, as long as you follow the signs", "lat":"56.18731", "long":"-2.86477", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"kBaLb1C4WAg", "title":"This town forgot to be a city", "lat":"51.38938", "long":"0.50141", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"ceWZslOfEjs", "title":"The top secret plan to explode a nuclear bomb in Yorkshire", "lat":"54.3896", "long":"-0.8153", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"9XSzwbFCFtc", "title":"The giant chainmail box that stops a house dissolving", "lat":"56.01704", "long":"-4.72813", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"EfdwRRpiYGQ", "title":"Literally just three minutes where I talk about some rocks", "lat":"55.93133", "long":"-2.30168", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"LKSTmcvEdoU", "title":"Inside the British laboratory that protects the world's chocolate", "lat":"51.40705", "long":"-0.92417", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"rssBd3fX8fw", "title":"There's a £100,000 coin buried under this London building", "lat":"51.52106", "long":"-0.12877", "category":"Things", "comment":"Senate House, where the remaining coin is supposedly buried underneith", "status":"mapped", "internal_comment":""},
{"id":"rssBd3fX8fw", "title":"There's a £100,000 coin buried under this London building", "lat":"53.74353", "long":"-1.54710", "category":"Things", "comment":"St. Cross Church, in Middleton, where the coin was stolen from", "status":"mapped", "internal_comment":""},
{"id":"rssBd3fX8fw", "title":"There's a £100,000 coin buried under this London building", "lat":"53.83016", "long":"-1.61828", "category":"Things", "comment":"Church of St Mary the Blessed Virgin, in Hawksworth, Leeds, where the penny was dug up and sold", "status":"mapped", "internal_comment":""},
{"id":"NYj3DnI81AQ", "title":"Ten years ago, I predicted 2022. Did I get it right?", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"rhJWD2TMiYE", "title":"The metres-high mountain of mannequins in the Midlands", "lat":"53.04548", "long":"-0.63361", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"FJSI7QTAt_o", "title":"Five YouTubers. Five games. $10,000. ⋮ Money: the full series", "lat":"", "long":"", "category":"Games", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"e0elNU0iOMY", "title":"The hidden background noise that can catch criminals", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"eY-XHAoVEeU", "title":"The Thames Barrier must never fail. Here's why it doesn't.", "lat":"51.49701", "long":"0.03696", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"k7fXbdRH9v4", "title":"The world's most expensive object by weight", "lat":"51.51031", "long":"-0.12212", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"xym2R6_Qd7c", "title":"The town where holding fireworks over your head is a tradition", "lat":"51.12796", "long":"-3.00572", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"zZkusjDFlS0", "title":"The tunnel where people pay to inhale radioactive gas", "lat":"49.83971", "long":"7.85137", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"NL5sRCRa7AE", "title":"This tiny railroad across the sea has an important job", "lat":"54.5543", "long":"8.8464", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"o-oVXYkBwgw", "title":"Why this \"falling rocks\" sign is more important than most", "lat":"46.67048", "long":"9.59331", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"PkW9wx7Kbws", "title":"An actual, real-world use for robot dogs", "lat":"46.93837", "long":"10.06002", "category":"Things", "comment":"The entrance to the plant shown in the video (Note: this is not open to the public, do not visit!)", "status":"mapped", "internal_comment":""},
{"id":"_3P_S7pL7Yg", "title":"The highway where trucks work like electric trains", "lat":"53.8291", "long":"10.5497", "category":"Things", "comment":"The eHighway test area between Reinfeld and Lübeck", "status":"mapped", "internal_comment":""},
{"id":"2h1s6S4kotE", "title":"The shooting range where you fire over a busy road", "lat":"46.67036", "long":"7.60909", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"A6F96xSoLPg", "title":"The world's only float-through McDonalds", "lat":"53.55178", "long":"10.04644", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"A2g4u9F9i90", "title":"I thought the Schmid Peoplemover was impossible", "lat":"48.72066", "long":"9.38195", "category":"Places", "comment":"The Schmid Peoplemover featured in the video in Altbach, Germany", "status":"mapped", "internal_comment":""},
{"id":"A2g4u9F9i90", "title":"I thought the Schmid Peoplemover was impossible", "lat":"52.49363", "long":"13.49828", "category":"Places", "comment":"The other still functional Schmid Peoplemover in Berlin Rummelsburg, that was not featured in the video", "status":"mapped", "internal_comment":""},
{"id":"A2g4u9F9i90", "title":"I thought the Schmid Peoplemover was impossible", "lat":"48.47775", "long":"9.22861", "category":"Places", "comment":"The third Schmid Peoplemover that is now defunct in Pfullingen, Germany", "status":"mapped", "internal_comment":""},
{"id":"6TLcaJdsRr0", "title":"The world's most useful model railway", "lat":"49.88008", "long":"8.62561", "category":"Places", "comment":"Eisenbahnbetriebsfeld Darmstadt", "status":"mapped", "internal_comment":""},
{"id":"10Y-gWNJ2Sw", "title":"The public toll road with no speed limit", "lat":"50.3393", "long":"6.9482", "category":"Places", "comment":"Start of the Nordschleifen (north loop)", "status":"mapped", "internal_comment":""},
{"id":"KVXVNX4Crh4", "title":"Three strange river crossings", "lat":"53.45915", "long":"-2.39508", "category":"Places", "comment":"the Hulmes Ferry,", "status":"mapped", "internal_comment":""},
{"id":"KVXVNX4Crh4", "title":"Three strange river crossings", "lat":"53.38534", "long":"-2.52856", "category":"Places", "comment":"the Thelwall Ferry", "status":"mapped", "internal_comment":""},
{"id":"KVXVNX4Crh4", "title":"Three strange river crossings", "lat":"53.40751", "long":"-2.45901", "category":"Places", "comment":"the Warburton Toll Bridge", "status":"mapped", "internal_comment":""},
{"id":"vdvIY0CJaXw", "title":"Why this observatory fires lasers at satellites", "lat":"50.8673796", "long":"0.3361487", "category":"BuiltForScience", "comment":"NERC's Space Geodesy Facility", "status":"mapped", "internal_comment":""},
{"id":"dzYP01CPC6E", "title":"I took the world's shortest flight. It was underwhelming.", "lat":"59.351264", "long":"-2.899113", "category":"Places", "comment":"Papa Westray airport, the airport Tom sets off from.", "status":"mapped", "internal_comment":""},
{"id":"8UmsfXWzvEA", "title":"The Islands With Too Much Power", "lat":"59.086455", "long":"-3.074773", "category":"Things", "comment":"Approximate location Tom filmed his monologue", "status":"mapped", "internal_comment":""},
{"id":"hUyvk_hdMNs", "title":"I helped cover a 5,000-year-old monument with worn-out tires", "lat":"58.997060", "long":"-3.214854", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"iitXhgif_lo", "title":"How one little boat (and me) held up miles of London traffic at Tower Bridge", "lat":"51.505756", "long":"-0.074921", "category":"Things", "comment":"The control booth Tom operates the bridge from.", "status":"mapped", "internal_comment":""},
{"id":"kZ1CZh85Ugs", "title":"The diving gondola: a strange elevator to the ocean floor", "lat":"54.141310", "long":"10.965894", "category":"Places", "comment":"The diving gondola featured in the video, there are three others on the German Baltic sea coast: in Zingst, Sellin and Zinnowitz.", "status":"mapped", "internal_comment":""},
{"id":"fzfpExS_wic", "title":"I tried to film a volcano and it was a complete disaster", "lat":"63.8885", "long":"-22.2711", "category":"Other", "comment":"The volcano Tom was trying to film", "status":"mapped", "internal_comment":""},
{"id":"7JTWc6jWZ9Q", "title":"An Unedited, Rain-Soaked Ride on Claughton's Aerial Ropeway", "lat":"54.08792", "long":"-2.66429", "category":"Other", "comment":"The ropeway is not a tourist attraction but working equipment of a mine operation. View it from the street and be careful not to cause any traffic issues and don't enter the private property.", "status":"mapped", "internal_comment":""},
{"id":"6RiYXI1Tfu4", "title":"The UK's last aerial ropeway uses no power, moves 300 tonnes a day, and will be gone by 2036.", "lat":"54.09126", "long":"-2.66989", "category":"Things", "comment":"The ropeway is not a tourist attraction but working equipment of a mine operation. View it from the street and be careful not to cause any traffic issues and don't enter the private property.", "status":"mapped", "internal_comment":""},
{"id":"ssZ_8cqfBlE", "title":"How many robots does it take to run a grocery store?", "lat":"51.494992", "long":"0.163899", "category":"Other", "comment":"Not open to the public.", "status":"mapped", "internal_comment":"While the warehouse may be mapable, it is not open to the public"},
{"id":"ecVHYg4_vZw", "title":"The Shocking New Use for Red Telephone Boxes", "lat":"51.259254", "long":"0.307663", "category":"Things", "comment":"The telephone box featured in the video.", "status":"mapped", "internal_comment":""},
{"id":"J3F2odr2MsQ", "title":"History forgot these old fireworks. We recreated them.", "lat":"53.09418", "long":"-3.80659", "category":"Things", "comment":"The historic rock cannon in Betws-y-Coed", "status":"mapped", "internal_comment":""},
{"id":"g_2SlqF0kA0", "title":"Landing at the only airport that's also a public beach", "lat":"57.0245", "long":"-7.4458", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"H2ZBSFiuWIo", "title":"The world's last turntable ferry has a really clever design", "lat":"57.2282", "long":"-5.6603", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"suAC_PDP3Sk", "title":"The Accidental Rush for Anthrax Island", "lat":"57.8896", "long":"-5.4709", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"jYgiV4Iz7I0", "title":"The Long-Forgotten History of the British Moon Spacesuit", "lat":"52.65382", "long":"-1.13246", "category":"Things", "comment":"The National Space Center in Leicester.", "status":"mapped", "internal_comment":""},
{"id":"2tdiKTSdE9Y", "title":"I promise this story about microwaves is interesting.", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"3FxfXVuHRjM", "title":"The Beach Where Lego Keeps Washing Up", "lat":"50.34771", "long":"-5.15735", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"UWSckm8zTc8", "title":"Taking The Emergency Exit From A Wind Turbine", "lat":"53.819171", "long":"-0.704066", "category":"Other", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"AJ38l6DX4f8", "title":"England's Oldest Attraction Turns Teddy Bears To Stone", "lat":"54.00392", "long":"-1.47182", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"Fw6GjAPpKuA", "title":"I asked an AI for video ideas for other YouTubers. It went badly.", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"HeKuX063bcs", "title":"What Color Is My Hoodie?", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"LyfnoEa-P58", "title":"It's like a spaceship for sharks.", "lat":"53.73876", "long":"-0.33054", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"OOWcTV2nEkU", "title":"The Difference Between High Explosives and Low Explosives", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"dUnGvH8fUUc", "title":"Why Shakespeare Could Never Have Been French", "lat":"", "long":"", "category":"Linguistics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"OW5MlvvqGjM", "title":"Why No-One Will Save Covehithe, The Village That Will Soon Crumble Into The Sea", "lat":"52.37718", "long":"1.71069", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"nqJiWbD08Yw", "title":"Why Real Explosions Don't Look Like Movie Explosions", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"iZnLZFRylbs", "title":"Why Progress Bars Don't Move Smoothly ▓▓▓░░░░░░", "lat":"", "long":"", "category":"TheBasics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"TfVYxnhuEdU", "title":"I asked an AI for video ideas, and they were actually good", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"L-x8DYTOv7w", "title":"YouTubers have to declare ads. Why doesn't anyone else?", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"sehyLDPeB6M", "title":"Why 18th-Century Firefighters Let Some Buildings Burn", "lat":"51.51009", "long":"-0.08595", "category":"Things", "comment":"The pilar commemorating the Great Fire of London", "status":"mapped", "internal_comment":""},
{"id":"sehyLDPeB6M", "title":"Why 18th-Century Firefighters Let Some Buildings Burn", "lat":"51.50507", "long":"-0.13738", "category":"Things", "comment":"The fire mark on the wall of St. James Palace shown in the video.", "status":"mapped", "internal_comment":""},
{"id":"NUyXiiIGDTo", "title":"Hill Hill Hill Hill, debunked, debunked", "lat":"54.73944", "long":"-3.23489", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"8xD1K121mbQ", "title":"The Radioactive Beach In New York", "lat":"40.58152", "long":"-73.89610", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"xCn03u_Jvuo", "title":"Trying To Create an AI Tom Scott (on a $100 budget)", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"99_Abbuf3cQ", "title":"Australia's Bushfire-Hunting Satellites", "lat":"-34.49528", "long":"115.97504", "category":"BuiltForScience", "comment":"Coordinates of the Dave Evens Bicentennial Tree", "status":"mapped", "internal_comment":""},
{"id":"jt8tonZm968", "title":"Trying To Fail A Drug Test On Purpose", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"dcuNq3Bw9Xs", "title":"How Weird Is My Audience? I Polled 15,408 People To Find Out", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"mUF4afxMpQk", "title":"The Greatest Title Sequence I've Ever Seen", "lat":"54.68972", "long":"-3.12875", "category":"Other", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"nQOroZNr_fw", "title":"The Never-Used Road Where The BBC Crash Cars", "lat":"51.53283", "long":"-2.43405", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"qYlmFfsyLMo", "title":"How Many Languages Are There?", "lat":"", "long":"", "category":"Linguistics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"mM7C_Pw7OL8", "title":"Walking The Most Dangerous Path In Britain", "lat":"51.5640", "long":"0.8836", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"OFRjZtYs3wY", "title":"Why The Web Is Such A Mess", "lat":"", "long":"", "category":"TheBasics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"IsWJKyR664s", "title":"I Almost Learned To Fly A Jetpack", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"m__OZ3ZsO4Y", "title":"Five Things You Can't Do On British Television", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"LseK5gp66u8", "title":"The Pumps That Must Run Forever, Or Part Of Germany Floods", "lat":"51.51937", "long":"6.98982", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"ZLF7yife8YE", "title":"My Unlicensed Hovercraft Bar Is Technically Legal", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"N1AL2EMvVy0", "title":"It’s pronounced GIF.", "lat":"", "long":"", "category":"Linguistics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"5te73hfCpuU", "title":"The Theme Park Inside An Old Nuclear Power Plant", "lat":"51.7633", "long":"6.3288", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"mU2hjhw1RCs", "title":"We Built A Lie-Detector Skeleton From 1927", "lat":"51.5121", "long":"-0.0314", "category":"Other", "comment":"The Limehouse Town Hall was used as a filming Location for the Video 'We Built A Lie-Detector Skeleton From 1927'. It has also been used for the Video 'Stopping A Laser Beam In Mid-Air' and is being used for the videos on The Technical Difficulties channel so far. It has also been the filming locaiton for the 'Two Of These People Are Lying' Christmas Special.", "status":"mapped", "internal_comment":""},
{"id":"KXJSjte_OAI", "title":"How Binary Search Makes Computers Much, Much Faster", "lat":"", "long":"", "category":"TheBasics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"Irv3KJR6B80", "title":"The Tiny Monorails That Once Carried James Bond", "lat":"50.8980505", "long":"-0.5392448", "category":"Things", "comment":"The Amberley Museum, where Tom filmed the Roadmachines Mono-Rail. Keep in mind that this is not a regular attraction at the museum. ", "status":"mapped", "internal_comment":""},
{"id":"OgMXjAQ5q14", "title":"Would You Swim In Power Plant Wastewater?", "lat":"63.8793", "long":"-22.4450", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"ALy6e7GbDRQ", "title":"1,204,986 Votes Decided: What Is The Best Thing?", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"xIDr5n9UIR4", "title":"DISCONNECTED: The Champion of Champions Grand Final", "lat":"", "long":"", "category":"Games", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"-khe6IY9bTM", "title":"Swimming Between Two Continents, Debunked", "lat":"63.86831", "long":"-22.67546", "category":"Places", "comment":"Bridge between continents", "status":"mapped", "internal_comment":""},
{"id":"-khe6IY9bTM", "title":"Swimming Between Two Continents, Debunked", "lat":"64.25516", "long":"-21.11699", "category":"Places", "comment":"Silfra fissure", "status":"mapped", "internal_comment":""},
{"id":"RDsRFpVp0kk", "title":"DISCONNECTED with Vanessa from Braincraft, Kati Morton and Jarvis Johnson", "lat":"", "long":"", "category":"Games", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"1TDIAObsqcs", "title":"Which Is \"Bouba\", and Which Is \"Kiki\"?", "lat":"", "long":"", "category":"Linguistics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"Odq0ggVVRyM", "title":"DISCONNECTED with Alec of Technology Connections, Sally Le Page, and Arun from mrwhosetheboss", "lat":"", "long":"", "category":"Games", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"hr03xF08qoU", "title":"Is The Most Northern Part Of Iceland Still There?", "lat":"67.15054", "long":"-18.68309", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"zV14G-Sxu7M", "title":"DISCONNECTED with Jaiden Animations, Ellen Rose and Hank Green", "lat":"", "long":"", "category":"Games", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"lCA0II1sVZA", "title":"The Part Of Britain That Rises And Falls Twice A Day", "lat":"50.103030", "long":"-5.542767", "category":"Things", "comment":"Filming location", "status":"mapped", "internal_comment":""},
{"id":"hGRii5f_uSc", "title":"Why You Should Turn On Two Factor Authentication", "lat":"", "long":"", "category":"TheBasics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"mmh819Lfgfs", "title":"For 21 Years, No-One In Britain Knew How Long An Inch Was", "lat":"51.498072", "long":"-0.126041", "category":"Things", "comment":"Filming location", "status":"mapped", "internal_comment":""},
{"id":"3-naCd-DwvU", "title":"The Village That The Luftwaffe Bombed By Mistake", "lat":"53.053914", "long":"-1.203621", "category":"Things", "comment":"Rough location of the Linby docks", "status":"mapped", "internal_comment":""},
{"id":"8YUWDrLazCg", "title":"A Million Dollars vs A Billion Dollars, Visualized: A Road Trip", "lat":"51.532292", "long":"0.137595", "category":"Other", "comment":"Start of the video", "status":"mapped", "internal_comment":""},
{"id":"8YUWDrLazCg", "title":"A Million Dollars vs A Billion Dollars, Visualized: A Road Trip", "lat":"51.385511", "long":"1.345146", "category":"Other", "comment":"End of the video", "status":"mapped", "internal_comment":""},
{"id":"-fXmaeDMsh0", "title":"The Abandoned Hill With Two Members Of Parliament", "lat":"51.093215", "long":"-1.804671", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"E5HRvQNg4pQ", "title":"Why You Can Spot Bad Green Screen", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"V5u9JSnAAU4", "title":"I Asked 64,182 People About “Jingle Bells, Batman Smells”. Here's What I Found Out.", "lat":"", "long":"", "category":"Linguistics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"nLCAvIr9rWo", "title":"The World's First Internet Bench", "lat":"52.244861", "long":"0.716579", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"3dYc0Ouxhx0", "title":"How England's Oldest Road Was Nearly Lost Forever", "lat":"52.314609", "long":"0.628810", "category":"Things", "comment":"Location of the Footpath sign", "status":"mapped", "internal_comment":"Compiled using path data from https://ldwa.org.uk/"},
{"id":"X6NJkWbM1xk", "title":"The Worst Typo I Ever Made", "lat":"", "long":"", "category":"TheBasics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"qu4zyRqILYM", "title":"Ə: The Most Common Vowel in English", "lat":"", "long":"", "category":"Linguistics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"CkysCJBdGtw", "title":"Why Some \"Remastered\" Music Videos Look Awful", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"eqvBaj8UYz4", "title":"Are There Problems That Computers Can't Solve?", "lat":"", "long":"", "category":"TheBasics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"IJEaMtNN_dM", "title":"The Hidden Rules of Conversation", "lat":"", "long":"", "category":"Linguistics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"SYeeTvitvFU", "title":"Why This British Crossroads Is So Dangerous", "lat":"50.86323", "long":"-1.45329", "category":"Things", "comment":"The intersection Ipley Cross was redesigned and remodelled to make it safer. It was reopened in January 2022 (<a href=\"https://www.hants.gov.uk/News/25012022Ipleycrossroadsopening\">source</a>)", "status":"mapped", "internal_comment":""},
{"id":"bC6tngl0PTI", "title":"Why You Can't Name A File CON In Windows", "lat":"", "long":"", "category":"TheBasics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"dt22yWYX64w", "title":"Abso-b████y-lutely: Expletive Infixation", "lat":"", "long":"", "category":"Linguistics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"BxV14h0kFs0", "title":"This Video Has 8,597,328 Views", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":"one could maybe map the White Cliffs of Dover here, but is only very vagely related to the video itself"},
{"id":"h9j89L8eQQk", "title":"Why Dark Video Is A Terrible Blocky Mess", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"1Jwo5qc78QU", "title":"YouTube's Copyright System Isn't Broken. The World's Is.", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"WUVZbBBHrI4", "title":"Inside The Billion-Euro Nuclear Reactor That Was Never Switched On", "lat":"48.35483", "long":"15.88488", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"wD79NZroV88", "title":"Why You Can't Buy Dasani Water in Britain", "lat":"51.41359", "long":"0.11859", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"tozuzV5YZ7U", "title":"Stopping A Laser Beam In Mid-Air", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"feCQPD9DSOA", "title":"The Country Where All Public Transit Is Free", "lat":"49.59997", "long":"6.13416", "category":"Places", "comment":"Main Station of Luxembourg City", "status":"mapped", "internal_comment":""},
{"id":"m3vIEKWrP9Q", "title":"The Sentences Computers Can't Understand, But Humans Can", "lat":"", "long":"", "category":"TheBasics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"VMinwf-kRlA", "title":"Why The Dutch Headwind Cycling Championships Are Difficult And Amazing", "lat":"51.60921", "long":"3.68326", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"6otW6OXjR8c", "title":"Why TRUE + TRUE = 2: Data Types", "lat":"", "long":"", "category":"TheBasics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"Mw44wHG4KOc", "title":"The Bridge That's In Two Countries At The Same Time", "lat":"49.47166", "long":"6.36789", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"rBPLgtfouIs", "title":"How To Grow A Martian Salad On Earth", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"8Gk7EvCQGoo", "title":"How Neurosurgeons Navigate Inside The Brain", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"RGuJga2Gl_k", "title":"Why My Teenage Code Was Terrible: Sorting Algorithms and Big O Notation", "lat":"", "long":"", "category":"TheBasics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"D3jxx8Yyw1c", "title":"Why 2020 Started On December 30th", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"gGMkHzWXjI8", "title":"Why Do We Move Our Hands When We Talk?", "lat":"", "long":"", "category":"Linguistics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"xGQgmmrXONk", "title":"Why The World's Littlest Skyscraper Was A Massive Scam", "lat":"33.91446", "long":"-98.48984", "category":"Places", "comment":"Newby-McMahon Building in Wichita Falls, Texas, USA", "status":"mapped", "internal_comment":""},
{"id":"LkH2r-sNjQs", "title":"Why Electronic Voting Is Still A Bad Idea", "lat":"", "long":"", "category":"TheBasics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"CVAlKJbQ_gE", "title":"Can The Words You Read Change Your Behavior?", "lat":"", "long":"", "category":"Linguistics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"mOy8Xjaa_o8", "title":"Is The World Running Out Of Helium?", "lat":"35.353961", "long":"-101.99419", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"TL4xc5bsSUU", "title":"Why The Elevator Shaft Was Invented Before The Elevator", "lat":"40.7292131", "long":"-73.9907902", "category":"Things", "comment":"Cooper Union Foundation Building in NYC", "status":"mapped", "internal_comment":""},
{"id":"DpfrGZJyKmo", "title":"I Almost Learned To Fly In The World's Only Wingsuit Tunnel", "lat":"59.3488286", "long":"17.96089", "category":"Places", "comment":"Indoor Wingsuit Flying Stockholm", "status":"mapped", "internal_comment":""},
{"id":"SFkoLYrJGCM", "title":"How The Netherlands Simulated The Sea Before Computers: The Waterloopbos", "lat":"52.675061", "long":"5.9201748", "category":"BuiltForScience", "comment":"Visitor Center of the Waterloopbos", "status":"mapped", "internal_comment":""},
{"id":"WVDQEoe6ZWY", "title":"This Video Is Sponsored By ███ VPN", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"7dlLmeage2U", "title":"The Giant Art That Keeps Planes Quiet", "lat":"52.3190", "long":"4.6835", "category":"Places", "comment":"Landartpark Buitenschot", "status":"mapped", "internal_comment":""},
{"id":"dPb9o3uDF_Q", "title":"Why Helsinki's Library Robots Aren't Important", "lat":"60.1738", "long":"24.9381", "category":"Things", "comment":"The Helsinki Central Library Oodi", "status":"mapped", "internal_comment":""},
{"id":"39nNXdBFQhA", "title":"The Self-Driving Race Car", "lat":"52.07748", "long":"-1.01963", "category":"Other", "comment":"Silverstone National Circut that Tom was driven on", "status":"mapped", "internal_comment":""},
{"id":"aoy_WJ3mE50", "title":"Inside The Tunnels That Will Store Nuclear Waste For 100,000 Years", "lat":"61.234324", "long":"21.458778", "category":"Places", "comment":"The coordinates of the wooden platform on which Tom was standing outside of the Olkiluoto Nuclear Power Plant Visitor Center.", "status":"mapped", "internal_comment":""},
{"id":"WEGzvZ85dgs", "title":"What Counts As The World's Shortest River?", "lat":"47.53450", "long":"-111.22984", "category":"Things", "comment":"Roe River in Giant Springs, Montana, USA", "status":"mapped", "internal_comment":""},
{"id":"WEGzvZ85dgs", "title":"What Counts As The World's Shortest River?", "lat":"62.649818", "long":"26.048321", "category":"Things", "comment":"Kuokanjoki River in Finland", "status":"mapped", "internal_comment":""},
{"id":"n-Ej2EtE744", "title":"The Toxic Pit With A $3 Admission Fee", "lat":"46.01172", "long":"-112.51791", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"zFiNmEWXPPM", "title":"The Only Bit Of Louisiana's Coast That Isn't Sinking", "lat":"29.4811768", "long":"-91.4517873", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"ZWQDSoxLr08", "title":"Cash and Grab (with Bird Keeper Toby and Inés from Draw Curiosity)", "lat":"", "long":"", "category":"Games", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"9uZam0ubq-Y", "title":"The Language Sounds That Could Exist, But Don't", "lat":"", "long":"", "category":"Linguistics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"4FnEABV8AG0", "title":"Checkpoint (with Ashens and the Polybius Heist crew)", "lat":"", "long":"", "category":"Games", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"o1zNIm8GVPY", "title":"I'm Not A Robot ✅", "lat":"", "long":"", "category":"TheBasics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"AOGLBbH2apM", "title":"Personal Best (with dodie, Sammy Paul, Daniel J Layton and Reb Day)", "lat":"", "long":"", "category":"Games", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"HuGHV0fbBiE", "title":"Flying A Plane With Fireworks On The Wings", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"IP-rGJKSZ3s", "title":"The Two Generals’ Problem", "lat":"", "long":"", "category":"TheBasics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"eGnH0KAXhCw", "title":"Why “No Problem” Can Seem Rude: Phatic Expressions", "lat":"", "long":"", "category":"Linguistics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"Z5JC9Ve1sfI", "title":"The Fetch-Execute Cycle: What's Your Computer Actually Doing?", "lat":"", "long":"", "category":"TheBasics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"dLQQ1F7hplA", "title":"How To Stop A Colossal Bridge Corroding", "lat":"53.7065", "long":"-0.4501", "category":"Things", "comment":"The location of Humber Bridge.", "status":"mapped", "internal_comment":""},
{"id":"fS4X1JfX6_Q", "title":"why typing like this is sometimes okay.", "lat":"", "long":"", "category":"Linguistics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"cfJOW2PtrGk", "title":"The Giant Underground Tunnels Protecting Tokyo From Floods", "lat":"35.997475", "long":"139.8092568", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"UaGTFeibOEk", "title":"Why You Can't Trust Me", "lat":"-29.0030342", "long":"134.7588589", "category":"Other", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"6Y4QGFte3T8", "title":"The World's First Solar Powered Train", "lat":"-28.641801", "long":"153.611168", "category":"Places", "comment":"The Byron Beach Station", "status":"mapped", "internal_comment":""},
{"id":"-fu03F-Iah8", "title":"Mr Olds’ Remarkable Elevator", "lat":"-25.52881", "long":"152.70051", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"sstRJcaFU9U", "title":"The One-Lane Bridge Shared By Cars And Trains", "lat":"-45.71705", "long":"170.34587", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"0MqtTlzde0g", "title":"What Counts As The Steepest Street In The World?", "lat":"-45.84949", "long":"170.53462", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"ef1jPbezKDM", "title":"Testing A Zip Line That Goes Round Corners", "lat":"-43.5335027", "long":"172.6307921", "category":"BuiltForScience", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"VRUmt_4F_58", "title":"The Circle Visible From Space", "lat":"-39.29610", "long":"174.06389", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"cqUYYF6KmW0", "title":"The First 3D Color X-Rays", "lat":"", "long":"", "category":"BuiltForScience", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"OQ7uq04fEjs", "title":"The Brain-Eating Amoebas of Kerosene Creek", "lat":"-38.33552", "long":"176.38635", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"kQ8WI3nc1l0", "title":"The Hundred-Tonne Robots That Help Keep New Zealand Running", "lat":"-36.8439", "long":"174.7773", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"j9JD9W0n7gE", "title":"The Sculpture That Looks Like A Real-Life Cartoon", "lat":"-36.526", "long":"174.435667", "category":"Places", "comment":"The location of the Horizon sculpture.", "status":"mapped", "internal_comment":""},
{"id":"a4N4yQB_B4c", "title":"Where Two Oceans Meet, Debunked", "lat":"-34.43146", "long":"172.68304", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"juRkaqkDfCM", "title":"I Drove My Childhood Favorite Racing Game In Real Life", "lat":"49.33155", "long":"-123.26448", "category":"Other", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"bJ_seXo-Enc", "title":"The Artificial Gravity Lab", "lat":"42.36920", "long":"-71.25750", "category":"BuiltForScience", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"jhQa9xLk5qk", "title":"Blindfold Balancing in the Spinning Space Chair", "lat":"42.36908", "long":"-71.25684", "category":"BuiltForScience", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"rApTzWboLrA", "title":"The Library of Rare Colors", "lat":"42.37416", "long":"-71.11415", "category":"BuiltForScience", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"6lTrkC8LFMc", "title":"Keep It or Dump It (with Matthew, who is lovely but not internet famous)", "lat":"", "long":"", "category":"Games", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"bOWse-Xm6Ao", "title":"The Last Play-For-Cash Fascination Parlor", "lat":"42.26918", "long":"-70.85479", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"RAgbu7eDm44", "title":"Above Average (with too many people to fit in this title)", "lat":"", "long":"", "category":"Games", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"AtkmDmMzZO8", "title":"The Broken Building That Must Not Be Destroyed", "lat":"55.97031", "long":"-4.64053", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"WnxVOw1uhTw", "title":"Weight For It (with Evan Edinger and Luke Cutforth)", "lat":"", "long":"", "category":"Games", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"kxuwPRY8kEo", "title":"A Questionable Experiment in Motion Sickness", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"yRz-Dl60Lfc", "title":"Why Denmark Is .09 Seconds Behind The World", "lat":"55.18884", "long":"15.00000", "category":"Things", "comment":"Tom's position on the beach", "status":"mapped", "internal_comment":""},
{"id":"i09V6SkVkz8", "title":"How Auto-Tune Works", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"d8BcCLLX4N4", "title":"Slowing Down A Stock Exchange With 38 Miles Of Cable", "lat":"40.7108388", "long":"-74.0116498", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"Q7tX_B88MZk", "title":"I Got To See And Hold My Brain", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"1Nh_vxpycEA", "title":"This Is Your Brain On Stale Air", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"-eVd2Ugk9BU", "title":"How Knot To Hang A Painting", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"2F0V9MjrhXE", "title":"The Fishermen That Hold Their Breath For 10 Minutes", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"GFWsYJ0_KMI", "title":"Why NASA Spun Astronauts Around, But Doesn't Any More", "lat":"34.71017", "long":"-86.65257", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"NQ5cf_WuJs0", "title":"The Canyon That Humans Made By Accident", "lat":"32.0688127", "long":"-84.9079406", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"3L1QIJ9PQ2M", "title":"Stealing Our Friend's Brain Backup PRANK (GONE WRONG!!!) 🤯🤯🤯", "lat":"", "long":"", "category":"⏩ (A Future)", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"LZM9YdO_QKk", "title":"The Consequences of Your Code", "lat":"", "long":"", "category":"TheBasics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"WByBm2SwKk8", "title":"Your New Social Credit Score", "lat":"", "long":"", "category":"⏩ (A Future)", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"pcVGqtmd2wM", "title":"The City of Golf Carts", "lat":"33.40235", "long":"-84.56839", "category":"Places", "comment":"The golf cart parking lot of the Peachtree City High School.", "status":"mapped", "internal_comment":""},
{"id":"-JlxuQ7tPgQ", "title":"The Artificial Intelligence That Deleted A Century", "lat":"", "long":"", "category":"⏩ (A Future)", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"lyvylw5Lwx0", "title":"The Other Tree That Owns Itself", "lat":"31.89834", "long":"-85.14603", "category":"Things", "comment":"The less popular tree in Eufaula, Alabama.", "status":"mapped", "internal_comment":""},
{"id":"lyvylw5Lwx0", "title":"The Other Tree That Owns Itself", "lat":"33.95501", "long":"-83.38239", "category":"Things", "comment":"The popular tree in Athens, Georgia.", "status":"mapped", "internal_comment":""},
{"id":"bd0HA_n2cjw", "title":"The Sweater Curse and Clothing Controversies: Citation Needed 8x06", "lat":"", "long":"", "category":"Citation", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"YNPpB_BRZJ8", "title":"An American Stonehenge: The Mysterious Georgia Guidestones", "lat":"34.23191", "long":"-82.89445", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"GmAdG9YNkTE", "title":"The Crazy Eights Incident and the Pumpy Thing: Citation Needed 8x05", "lat":"40.6289", "long":"-83.5945", "category":"Citation", "comment":"Rough location of where the train was stopped.", "status":"mapped", "internal_comment":""},
{"id":"GmAdG9YNkTE", "title":"The Crazy Eights Incident and the Pumpy Thing: Citation Needed 8x05", "lat":"41.5782", "long":"-83.4958", "category":"Citation", "comment":"The CSX Walbridge Yard, where the incident started.", "status":"mapped", "internal_comment":""},
{"id":"lLUcOFwZvyY", "title":"Testing The World's Longest Echo", "lat":"57.739955", "long":"-4.203319", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"2M-vxb_Bt3k", "title":"Hail Cannons and Operation Popeye: Citation Needed 8x04", "lat":"", "long":"", "category":"Citation", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"RY_2gElt3SA", "title":"Why Computers Can't Count Sometimes", "lat":"", "long":"", "category":"TheBasics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"blN49yGet8g", "title":"Juan Pujol Garcia and Thirtynineitude: Citation Needed 8x03", "lat":"", "long":"", "category":"Citation", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"6Jx_bJgIFhI", "title":"Britain's Largest Battery Is Actually A Lake", "lat":"53.11866", "long":"-4.11351", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"1nd5HsxWXTI", "title":"The Norwegian Butter Crisis and the Ark of Taste: Citation Needed 8x02", "lat":"", "long":"", "category":"Citation", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"u9FVoDiuq6Q", "title":"Why Do London's Manholes Keep Exploding?", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"pkU8u-FCs1Q", "title":"The Battle of Fishguard and \"Brandy\": Citation Needed 8x01", "lat":"51.99400", "long":"-4.97617", "category":"Citation", "comment":"The Royal Oak Pub in Fishguard that Lord Cawdor used as his headquarter.", "status":"mapped", "internal_comment":""},
{"id":"2yWWFLI5kFU", "title":"᚛ᚈᚑᚋ ᚄᚉᚑᚈᚈ᚜ and ᚛ᚑᚌᚐᚋ᚜", "lat":"51.51935", "long":"-0.12828", "category":"Things", "comment":"The British Museum, where the ogham stone featured in the video is on display.", "status":"mapped", "internal_comment":""},
{"id":"G025oxyWv0E", "title":"If Educational Videos Were Filmed Like Music Videos", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"zp4BMR88260", "title":"What's The Longest Word You Can Write With Seven-Segment Displays?", "lat":"", "long":"", "category":"TheBasics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"cPeVsniB7b0", "title":"How The First Ever Telecoms Scam Worked", "lat":"45.91298", "long":"4.68363", "category":"Things", "comment":"The Semaphore Tower infront of which Tom is standing in the video. Surprisingly it is not on route from Tours to Bordeaux", "status":"mapped", "internal_comment":""},
{"id":"Trqqn2xPaY0", "title":"Wingwalking Isn't What It Used To Be, And That's A Good Thing", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"nyD7FMwhwxc", "title":"We Made a Banhammer (feat. NerdCubed)", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"cECsj2Bznig", "title":"The Collapsible Crash Test Robot Car", "lat":"", "long":"", "category":"BuiltForScience", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"9LZEZ5QuyzM", "title":"Why You Don't Want To Go Viral", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"3tO3h9APNbM", "title":"The Quiz That Was Shared A Million Times", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"h0AMaW4XRCI", "title":"That Time I Got In Trouble With The Government", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"nl2mQ2HiJZc", "title":"Your Private Messages Might Travel Under This Beach", "lat":"50.04313", "long":"-5.65093", "category":"Things", "comment":"The Porthcurno Beach", "status":"mapped", "internal_comment":""},
{"id":"s6kNR8Mj0ZE", "title":"I Hit 3,000-Year-Old Art with a Hammer", "lat":"51.5777074", "long":"-1.5670484", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"04F5osXK4vw", "title":"Testing The Sound Mirrors That Protected Britain", "lat":"50.95565", "long":"0.95358", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"pLBcp3nJlFQ", "title":"The Nuclear Reactor Run By Students", "lat":"45.48088", "long":"-122.62694", "category":"BuiltForScience", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"h6RRNNztN5o", "title":"How The 90s VHS Look Works", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"tDRBOiX0D6M", "title":"Coming Soon: The Technical Difficulties Experiments", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"bjl9CpAirtE", "title":"Stories I Can't Tell", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"Y27lFsPEZ30", "title":"We Should Let Some Wildfires Burn", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"kHMNX3IXnvs", "title":"The Drink With A Human Toe In It", "lat":"64.06224", "long":"-139.43328", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"Et3YW_qS_1o", "title":"Watching for Nuclear Attack at the Top of the World", "lat":"69.44354", "long":"-132.99921", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"tElglktwLzQ", "title":"Lateral Game 6: The Grand Final", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"frhMomcKT9o", "title":"The New Highway to the Arctic Ocean", "lat":"68.3698", "long":"-133.7448", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"isswoCInW3Y", "title":"Lateral Game 5: The Last Chance", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"E4nZDSLdIiM", "title":"Freezing 200,000 Tons of Lethal Arsenic Dust", "lat":"62.4997", "long":"-114.3586", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"F5e4t07E_Dg", "title":"Lateral Game 4: The Fast Route to the Final", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"q1oRaUTbk3k", "title":"Tilting an Icy Floor Until You Fall Over: WinterLab", "lat":"43.65666", "long":"-79.38976", "category":"BuiltForScience", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"rQ6bUrkR4YE", "title":"Lateral Game 3: the First Elimination Match", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"DWYthXD14pw", "title":"The Town That Was Burned for Science: Aultsville", "lat":"44.9551753", "long":"-75.0297455", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"AQ73ROd0JBA", "title":"Lateral: Game 2 with Geoff Marshall, Vicki Pipe, LDShadowLady and Smallishbeans", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"EocJm3Dry4E", "title":"The US-Canada Border Splits This Road Down The Middle", "lat":"45.00583", "long":"-72.13816", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"_xS-BIcu4ew", "title":"Lateral: Game 1 with Kat Arney, Helen Arney, Simon Clark, and Sally Le Page", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"CB3LJdMYzrQ", "title":"A Town Called Asbestos", "lat":"45.772526", "long":"-71.948665", "category":"Places", "comment":"A random point in Asbestos", "status":"mapped", "internal_comment":""},
{"id":"vBgulDeV2RU", "title":"Keeping Aircraft Safe without Radar: The North Atlantic Tracks", "lat":"48.966199", "long":"-54.597818", "category":"Things", "comment":"Nav Canada Area Control Centre in Gander", "status":"mapped", "internal_comment":""},
{"id":"jC4NNUYIIdM", "title":"⚫ How The Black Point Message Crashes Android Apps", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"YKAblynZYhI", "title":"2½ Hours of Unedited Garlic Bread Flight Footage", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"c8W-auqg024", "title":"We Sent Garlic Bread to the Edge of Space, Then Ate It", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"DMKcO-T5Y4o", "title":"G-Force, Jerk, and Passing Out In A Centrifuge", "lat":"", "long":"", "category":"BuiltForScience", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"nAsrsMPftOI", "title":"Making an International Standard Cup of Tea", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"C2NNujJKJL4", "title":"The US President's Bulletproof Railcar", "lat":"25.61719", "long":"-80.40064", "category":"Places", "comment":"the Gold Coast Railroad Museum in Miami", "status":"mapped", "internal_comment":""},
{"id":"ZrP0Mqj9U_c", "title":"The 1940s Mermaid Show That's Still Pulling Crowds", "lat":"28.51748", "long":"-82.57366", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"RYGFczNMAMk", "title":"How Formation Flying Works (feat. the Red Arrows!)", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"bij-JjzCa7o", "title":"Why European Clocks are Running Slow, and British Clocks Aren't", "lat":"51.44", "long":"0.716667", "category":"Things", "comment":"Site of the power facility in the background of the video, and where the BritNed electricity cable discussed comes ashore in the UK.", "status":"mapped", "internal_comment":""},
{"id":"d99_h30swtM", "title":"The Moiré Effect Lights That Guide Ships Home", "lat":"51.9576467", "long":"1.2766001", "category":"Things", "comment":"The Inogon Leading Marks in the Shotley Gate Marina, from the Google Streetview images", "status":"mapped", "internal_comment":""},
{"id":"d99_h30swtM", "title":"The Moiré Effect Lights That Guide Ships Home", "lat":"50.856008", "long":"-1.329103", "category":"Things", "comment":"The Inogon Leading Marks in the Southampton Water, where Tom filmed the video.", "status":"mapped", "internal_comment":""},
{"id":"dabnx8VSdkE", "title":"Launching An Entire Fireworks Display At Once", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"DSG-zxGRkJw", "title":"The European City Centre With No Street Names", "lat":"49.4878", "long":"8.4662", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"vxfJbW6KDp4", "title":"Making Artificial Earthquakes with a Four-Tonne Steel Ball", "lat":"51.54608", "long":"9.96380", "category":"BuiltForScience", "comment":"Location of the drop tower.", "status":"mapped", "internal_comment":""},
{"id":"OCLaeBAkFAY", "title":"Faceswapping, Unethical Videos, and Future Shock", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"Ii_Gz1WbBGA", "title":"Controlling An Airport From 80 Miles Away", "lat":"51.5037", "long":"0.0488", "category":"Places", "comment":"London City Airport", "status":"mapped", "internal_comment":""},
{"id":"Ii_Gz1WbBGA", "title":"Controlling An Airport From 80 Miles Away", "lat":"50.8867707", "long":"-1.2856619", "category":"Places", "comment":"NATS Swanwick headquarters", "status":"mapped", "internal_comment":""},
{"id":"gTF8KYoJkMM", "title":"Canada's Most Successful King", "lat":"43.6958803", "long":"-79.3903509", "category":"Things", "comment":"The grave of William Lyon Mackenzie King, which is not located at the Snake Island, where most of the video was shot.", "status":"mapped", "internal_comment":""},
{"id":"oyC4lLTOyL8", "title":"A Language Made Of Music", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"viRVFxvXSss", "title":"Sign Language Isn't Universal", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"BP9HNVuGb-g", "title":"17 Tonnes of Spinning Glass: Making the World's Largest Telescope", "lat":"32.22893", "long":"-110.94883", "category":"BuiltForScience", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"6gNn9OG7dPU", "title":"Atomic Annie and Blue Peacock: Citation Needed 7x06", "lat":"", "long":"", "category":"Citation", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"Q-v4LsbFc5c", "title":"This Video Is 2D And 3D Simultaneously: the Pulfrich Effect", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"C666j39s3wc", "title":"John Stonehouse and Dropped Trousers: Citation Needed 7x05", "lat":"", "long":"", "category":"Citation", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"KOJnOCdBr4s", "title":"The Null Hypothesis", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"Q3KT-OOg9y0", "title":"The Flip Flap Railroad and Marshmallow Bearings: Citation Needed 7x04", "lat":"40.8694", "long":"-75.7497", "category":"Citation", "comment":"Location of the former Mauch Chunk Switchback Railway", "status":"mapped", "internal_comment":""},
{"id":"Q3KT-OOg9y0", "title":"The Flip Flap Railroad and Marshmallow Bearings: Citation Needed 7x04", "lat":"40.57536", "long":"-73.97966", "category":"Citation", "comment":"Location of the former Sea Lion Park (now Conny Island) in which the Flip Flap Railway (wooden looping roller coaster) was located.", "status":"mapped", "internal_comment":""},
{"id":"Q3KT-OOg9y0", "title":"The Flip Flap Railroad and Marshmallow Bearings: Citation Needed 7x04", "lat":"41.18987", "long":"-74.50712", "category":"Citation", "comment":"Location of the former Action Park with the Cannonball Loop water slide. The slide itself has been dismantled.", "status":"mapped", "internal_comment":""},
{"id":"FO_Ox_dH0M8", "title":"How Zero-G Planes Work", "lat":"", "long":"", "category":"BuiltForScience", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"H2J1vOpzOI0", "title":"Turra Coo and Four-Legged Juggling: Citation Needed 7x03", "lat":"57.53731", "long":"-2.46056", "category":"Citation", "comment":"The location of the Turra Coo statue.", "status":"mapped", "internal_comment":""},
{"id":"k27hqCKhD_c", "title":"Monkey Shipwrecks and Football Mascots: Citation Needed 7x03 Bonus Material", "lat":"54.6890", "long":"-1.2127", "category":"Citation", "comment":"The Victoria Park Stadium where the Hartlepool Football Club is playing it's home games.", "status":"mapped", "internal_comment":""},
{"id":"YF6xzqOfCD8", "title":"Batman and a Village of Fools: Gotham, England", "lat":"52.86830", "long":"-1.20608", "category":"Things", "comment":"The location of the statue/pillar.", "status":"mapped", "internal_comment":""},
{"id":"cDboEgjZjAE", "title":"The Sark Football Team and Hovercraft Enthusiasm: Citation Needed 7x02", "lat":"49.43176", "long":"-2.35554", "category":"Citation", "comment":"Just the center of Sark, not the football field itself.", "status":"mapped", "internal_comment":""},
{"id":"w2A8q3XIhu0", "title":"Why Hold Music Sounds Worse Now", "lat":"52.05591", "long":"-0.80481", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"nrU8Kh6Mf7o", "title":"Charles Blondin and the Stolen Point: Citation Needed 7x01", "lat":"", "long":"", "category":"Citation", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"zOgle88sKro", "title":"The German Town That's Literally Breaking Apart", "lat":"47.88158", "long":"7.73155", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"_-aDHxoblr4", "title":"Is It Dangerous To Talk To A Camera While Driving?", "lat":"41.70909", "long":"-91.59926", "category":"BuiltForScience", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"1cUUfMeOijg", "title":"The Lava Lamps That Help Keep The Internet Secure", "lat":"37.78035", "long":"-122.39056", "category":"Places", "comment":"The San Francisco Office of Cloudflare. You will probably not get in there and see the lava lamps yourself.", "status":"mapped", "internal_comment":""},
{"id":"4JAjIjXbe3Y", "title":"The Story of Salvation Mountain", "lat":"33.2542", "long":"-115.4725552", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"YQ6vWW9BEKU", "title":"What Is Sea Level, Anyway?", "lat":"33.12657", "long":"-115.51659", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"Ef93WmlEho0", "title":"Why California's Musical Road Sounds Terrible", "lat":"34.73318", "long":"-118.19432", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"b6utGZQ9Sks", "title":"The Reaction Ferries of Basel: What Have We Missed?", "lat":"47.55524", "long":"7.60262", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"cfSIC8jwbQs", "title":"The Centuries-Old Debt That's Still Paying Interest", "lat":"51.9698", "long":"5.1800", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"-DGXHMOhXAw", "title":"Rotary Jails and Accidental Amputations", "lat":"40.04389", "long":"-86.90181", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"JsTptu56GM8", "title":"How Computers Compress Text: Huffman Coding and Huffman Trees", "lat":"", "long":"", "category":"TheBasics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"PB7HT3BZLzM", "title":"A Nuclear Waste Dump You Can Walk On: Weldon Spring, Missouri", "lat":"38.69813", "long":"-90.72831", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"jvJzi0BXcGI", "title":"The US Government's $983 Freeze-Dried Urine", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"DTRb6G9c9wU", "title":"Inside The Giant American Freezer Filled With Polar Ice", "lat":"39.71288", "long":"-105.12452", "category":"BuiltForScience", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"i8P5a1uqIMw", "title":"What Counts as a Mountain?", "lat":"39.58834", "long":"-105.64369", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"QPZ0pIK_wsc", "title":"FizzBuzz: One Simple Interview Question", "lat":"", "long":"", "category":"TheBasics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"diPiSHxfGyE", "title":"Connectome Scanning: Looking at the Brain's Wiring", "lat":"51.49287", "long":"-3.18470", "category":"BuiltForScience", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"_NzVmtbPOrM", "title":"I Can't Show You How Pink This Pink Is", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"RA5UiLYWdbM", "title":"Why Old Screens Make A ᴴᶦᵍʰ ᴾᶦᵗᶜʰᵉᵈ Noise", "lat":"52.20783", "long":"0.14900", "category":"Things", "comment":"The Cambridge Centre for Computing History", "status":"mapped", "internal_comment":""},
{"id":"KrO_ZMQ8aFc", "title":"Benjamin Rush and Inventing the Bucket: Citation Needed 6x06", "lat":"", "long":"", "category":"Citation", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"CINVwWHlzTY", "title":"Why The Government Shouldn't Break WhatsApp", "lat":"", "long":"", "category":"TheBasics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"gcRJr9xQSAE", "title":"Acoustic Kitty and Bat Bombs: Citation Needed 6x05", "lat":"", "long":"", "category":"Citation", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"kdTsbFS4xmI", "title":"An Elevator That Actually Goes Sideways", "lat":"48.17917", "long":"8.62484", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"qFL_JAkWZy8", "title":"Julie D'Aubigny and Dueling Scars: Citation Needed 6x04", "lat":"", "long":"", "category":"Citation", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"i8MFK0w0hlg", "title":"The Runways of Fire That Let WW2 Planes Land In Fog: FIDO", "lat":"52.26812", "long":"-0.18492", "category":"Things", "comment":"The location of the plaque shown in the video and the entrance to the former air force base", "status":"mapped", "internal_comment":""},
{"id":"PfdBTsyrqaI", "title":"The Museum of Failure", "lat":"56.04052", "long":"12.70226", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"RC2qosa3Wjo", "title":"Stephens Island Wren and the Cobra Effect: Citation Needed 6x03", "lat":"-40.6654", "long":"174.0006", "category":"Citation", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"fq7oauciBdc", "title":"Blocking People in Real Life: Tom Scott at An Evening of Unnecessary Detail", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"QXW2-LBf-5E", "title":"The $100 Hamburger and Tach Time: Citation Needed 6x02", "lat":"", "long":"", "category":"Citation", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"jGo9gYypQc8", "title":"The Poison Garden of Alnwick", "lat":"55.41343", "long":"-1.69984", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"6TsEGt841pw", "title":"Jack Churchill and a Live Studio Audience: Citation Needed 6x01", "lat":"", "long":"", "category":"Citation", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"nUB7IflBBrc", "title":"The World's Most Powerful Tidal Current: the Saltstraumen Maelstrom", "lat":"67.23147", "long":"14.61551", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"BSpAWkQLlgM", "title":"Why The YouTube Algorithm Will Always Be A Mystery", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"d3WiRunOsWY", "title":"How The Arecibo Telescope Could Help Save The World", "lat":"18.34420", "long":"-66.75273", "category":"BuiltForScience", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"yy16KFzM4XU", "title":"Why Sci-Fi Alien Planets Look The Same: Hollywood's Thirty-Mile Zone", "lat":"34.07603", "long":"-118.37661", "category":"Things", "comment":"The center of the TMZ (intersection of Beverly Boulevard and North La Cienega Boulevard)", "status":"mapped", "internal_comment":"maybe some of the often used scenes that he mentioned could also be mapped"},
{"id":"wEjy8iaUPmo", "title":"How To Not Break A Mars Rover", "lat":"34.20235", "long":"-118.16996", "category":"BuiltForScience", "comment":"The precise location of the Mars Yard", "status":"mapped", "internal_comment":""},
{"id":"YLlzx6v8CcA", "title":"Voyager 1's Getting Closer to Earth Right Now", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"L3iJjrQmEho", "title":"Drones vs Lightning ⚡", "lat":"53.4760", "long":"-2.2345", "category":"BuiltForScience", "comment":"The building in which the School of Electrical and Electronic Engineering resides, to which the high voltage lab belongs", "status":"mapped", "internal_comment":""},
{"id":"EN6COaYLS_A", "title":"Why This “Zero Calorie Sweetener” Isn’t Zero Calories", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"KGne-ZUZCg0", "title":"Why Song Translations Usually Suck", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"NF_2Io7g9fE", "title":"The Foil That Went To The Moon And Back", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"VnvGwFegbC8", "title":"The Disaster That Changed Engineering: The Hyatt Regency Collapse", "lat":"39.085", "long":"-94.58", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"Ri_4dDvcZeM", "title":"You Can Hear The Difference Between Hot and Cold Water", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"l6lGe5jgZgI", "title":"One Town, Four Elements: Ytterby", "lat":"59.4265", "long":"18.353528", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"oGUcAg4W2hw", "title":"The Beer Pipeline of Bruges", "lat":"51.20222", "long":"3.22391", "category":"Places", "comment":"The marker points to the brewery in the old town, where the pipeline starts.", "status":"mapped", "internal_comment":""},
{"id":"8T7ux3DXP_w", "title":"Inside YouTube's Mixed Reality VR Lab", "lat":"40.7424762", "long":"-74.0061197", "category":"Places", "comment":"Youtube Space New York", "status":"mapped", "internal_comment":""},
{"id":"kMLYLcniXIc", "title":"The World Is Slowly Running Out Of Sand", "lat":"38.931214", "long":"-74.958848", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"Q4WL5OuJfC4", "title":"America's First Supermodel: Audrey Munson", "lat":"40.75284", "long":"-73.98196", "category":"Things", "comment":"The statue \"Beauty\" from the video.", "status":"mapped", "internal_comment":""},
{"id":"Q4WL5OuJfC4", "title":"America's First Supermodel: Audrey Munson", "lat":"40.71538", "long":"-73.99504", "category":"Things", "comment":"The statue \"Spirit of Commerce\" at the Manhattan Bridge Arch", "status":"mapped", "internal_comment":""},
{"id":"Q4WL5OuJfC4", "title":"America's First Supermodel: Audrey Munson", "lat":"40.80175", "long":"-73.96825", "category":"Things", "comment":"The \"Isidor and Ida Straus Memorial\" at Straus Park", "status":"mapped", "internal_comment":""},
{"id":"Q4WL5OuJfC4", "title":"America's First Supermodel: Audrey Munson", "lat":"40.79863", "long":"-73.97323", "category":"Things", "comment":"The \"Firemen's Memorial\" at Riverside Drive", "status":"mapped", "internal_comment":""},
{"id":"Q4WL5OuJfC4", "title":"America's First Supermodel: Audrey Munson", "lat":"40.768242", "long":"-73.981012", "category":"Things", "comment":"The \"USS Maine Monument\" in Central Park", "status":"mapped", "internal_comment":""},
{"id":"4gE9qxX5VjE", "title":"Elia: The World's Most Frustrating Work of Art", "lat":"56.127222", "long":"9.026944", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"VdmQp9M9jUo", "title":"ᚼᛒ: Harald Bluetooth and Your Phone", "lat":"55.756592", "long":"9.419593", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"4aCMDQsx740", "title":"Zero-G Experiments on Earth: The Bremen Drop Tower", "lat":"53.11034", "long":"8.85789", "category":"BuiltForScience", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"cdPymLgfXSY", "title":"The Little-Known Patterns on British Streets", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"KwHj4lj3F-k", "title":"The Confusing Borders of Lake Constance", "lat":"47.5371", "long":"9.5505", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"TGyHJ-xmcuc", "title":"Fallout Shelters and Zurich's Water: Swiss Resilience", "lat":"47.37311", "long":"8.54042", "category":"Things", "comment":"This video is relevant for the entire city of Zurich.", "status":"mapped", "internal_comment":""},
{"id":"nIkLMmh9KGc", "title":"Why YouTube Streams Don't Count For Christmas № 1", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"uf6fghQYCVk", "title":"Science vs the Weather: Salford's Energy House", "lat":"53.475836", "long":"-2.294109", "category":"BuiltForScience", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"bUIiUXvnkUQ", "title":"In Old Movies, Why The Dial Tone After Someone Hangs Up?", "lat":"47.540906", "long":"-122.323208", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"EiZU3BvqvP4", "title":"Wheels, Bombs, and Perpetual Motion Machines", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":"this was filmed at the Royal Institute but those coordinates have nothing to do with the content of the video. If anybody finds the location there the giant wheel in Los Angles was, it would be worth putting it here."},
{"id":"-so4bLE5kPc", "title":"The City of the Dead: Colma, California", "lat":"37.6766", "long":"-122.4584", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"i70wkxmumAw", "title":"Stopping a Disastrous Plan with Science: the Bay Model", "lat":"37.863547", "long":"-122.494939", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"-zjJpFYtx9s", "title":"Arson as a Christmas Tradition: The Gävle Goat", "lat":"60.67266", "long":"17.14645", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"TIxt9guMbXo", "title":"The World's Most Famous Teapot: The Utah Teapot", "lat":"37.414202", "long":"-122.077472", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"y9pknU0zv9c", "title":"3D Printing Stainless Steel with Giant Robot Arms", "lat":"37.800187", "long":"-122.397410", "category":"Things", "comment":"", "status":"mapped", "internal_comment":"Same as Space Invaders"},
{"id":"MA9Du5l7qV0", "title":"The Spider Dress That Reacts To Personal Space Invaders", "lat":"37.80085", "long":"-122.39643", "category":"Things", "comment":"", "status":"mapped", "internal_comment":"Same as Robot Arms"},
{"id":"8lQtdhtw5eI", "title":"The Grave of the Man Who Never Was: Operation Mincemeat", "lat":"37.290671", "long":"-6.931483", "category":"Things", "comment":"Center of graveyard, locating individual grave next to impossible", "status":"mapped", "internal_comment":""},
{"id":"TEdsQmjLMKs", "title":"The Bizarre Plan to Drain the Mediterranean: Atlantropa", "lat":"35.9647", "long":"-5.5042", "category":"Things", "comment":"This video is relevant for the entire Mediterranean Sea", "status":"mapped", "internal_comment":""},
{"id":"gGXjWqVeVJE", "title":"The Solar Power Towers of Southern Spain", "lat":"37.442217", "long":"-6.254156", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"QCwpVtqcqNE", "title":"The Zip Line Across Time Zones", "lat":"37.477214", "long":"-7.465052", "category":"Other", "comment":"Mapped location is the starting point of the zipline", "status":"mapped", "internal_comment":""},
{"id":"Fl1Z205KKNA", "title":"Classic Trivia Question Cards: Citation Needed Live, The Encore", "lat":"", "long":"", "category":"Citation", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"8cICu9HtGhQ", "title":"The World's Most Dangerous Path Isn't So Dangerous Any More", "lat":"36.915859", "long":"-4.771640", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"4iSncY1_CzY", "title":"The Ice Block Expedition and Chainsaw Licenses: Citation Needed LIVE, Part 2", "lat":"", "long":"", "category":"Citation", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"iaSaWfw07Sw", "title":"Pod Cars of the Past and Future: The Morgantown PRT", "lat":"39.642533", "long":"-79.964973", "category":"Places", "comment":"Mapped location is PRT railyard", "status":"mapped", "internal_comment":""},
{"id":"RzfiF9ccZvQ", "title":"Ruth Belville and Time Balls: Citation Needed LIVE, Part 1", "lat":"51.47793", "long":"-0.00141", "category":"Citation", "comment":"The Shepherd Gate Clock at the Greenwich Observatory where Ruth Belville got the daily time.", "status":"mapped", "internal_comment":""},
{"id":"eQEGPATQe5s", "title":"The Town Where Wi-Fi Is Banned: The Green Bank Telescope and the Quiet Zone", "lat":"38.432200", "long":"-79.839767", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"PBZ728jH7j0", "title":"Cold Wars, Cruise Ships, and the Northwest Passage", "lat":"74.697524", "long":"-94.829346", "category":"Things", "comment":"Mapped location is centre of town", "status":"mapped", "internal_comment":""},
{"id":"xW4hI_METac", "title":"ᑖᒻ ᔅᑳᑦ and ᖃᓂᐅᔮᖅᐸᐃᑦ", "lat":"79.988932", "long":" -85.941134", "category":"Things", "comment":"Mapped location is centre of town", "status":"mapped", "internal_comment":""},
{"id":"5G9BHrAgQz0", "title":"Internet to the Arctic: A Greenlandic Relay Station", "lat":"69.210611", "long":"-51.111260", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"QnM2tVZr7Fs", "title":"No-One Knows Who Got To The North Pole First", "lat":"85", "long":"0", "category":"Things", "comment":"The marker does not show the north pole, but a place 5° south of it, because the mapping software/card projection makes it difficult to set a marker at 90° Latitude.", "status":"mapped", "internal_comment":""},
{"id":"PT7KPztnIXw", "title":"The Front Falls Off: Glaciers Don't Go Backwards", "lat":"69.152675", "long":"-50.516459", "category":"Things", "comment":"Mapped location is roughly middle of glacier", "status":"mapped", "internal_comment":""},
{"id":"vULUkp7Ttss", "title":"Listening for Nuclear Tests at the Top of the World", "lat":"77.463099", "long":"-69.182991", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"WKQT1MXfasM", "title":"Seeing Things: Visual Disturbances We All Experience", "lat":"", "long":"", "category":"Things", "comment":"Literally within your eyes", "status":"no coordinates", "internal_comment":""},
{"id":"KK3FQXObWEs", "title":"The Fake-British Ghost Town In China: Thames Town", "lat":"31.029032", "long":"121.197999", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"pt2fSq46Pcw", "title":"Why Mountain Dew Rots Your Teeth More Than Coca-Cola", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"UtQGYz4f3YQ", "title":"The Battery That's Lasted 176 Years", "lat":"51.759418", "long":"-1.256286", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"5uz6xOFWi4A", "title":"The Problem With Renewable Energy (and how we're fixing it)", "lat":"56.569406", "long":"-3.746880", "category":"Things", "comment":"This particular wind turbine", "status":"mapped", "internal_comment":""},
{"id":"txqfRsQkFMc", "title":"Hebocon UK: Deliberately Terrible Robot Fighting", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"Vcx7_1yphJI", "title":"The Mushroom Cloud Over Britain: RAF Fauld and the Hanbury Crater", "lat":"52.847352", "long":"-1.730805", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"642x2Y3Zla0", "title":"The Fake Vinegar In British Fish and Chip Shops", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"cDZjm4f9CEo", "title":"No, Pokémon Go Can't Read Your Email", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"Za96MbXuwEQ", "title":"Camille Flammarion and a Spiritualist Story: Citation Needed 5x05", "lat":"", "long":"", "category":"Citation", "comment":"", "status":"open", "internal_comment":""},
{"id":"QWItLyDzMyE", "title":"The Scientifically Inaccurate Dinosaurs That Must Stay That Way", "lat":"51.417397", "long":"-0.067992", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"vs3XJTYli10", "title":"Camp Bonifas and Yorkshire Scouting: Citation Needed 5x04", "lat":"37.95609", "long":"126.67264", "category":"Citation", "comment":"This is the location of the monument of the axe murder incident.", "status":"mapped", "internal_comment":""},
{"id":"vs3XJTYli10", "title":"Camp Bonifas and Yorkshire Scouting: Citation Needed 5x04", "lat":"37.93284", "long":"126.72642", "category":"Citation", "comment":"This is the entrance to the Camp Bonifas, not the location of the golf course.", "status":"mapped", "internal_comment":"If anybody knows the precise location of the golf course, please add it here."},
{"id":"3WHmETKW72E", "title":"The Bus Replacement Rail Service (yes, that's the right way round)", "lat":"55.405739", "long":"-3.766628", "category":"Places", "comment":"Roughly the middle of the track", "status":"mapped", "internal_comment":""},
{"id":"4F7WCutpsJw", "title":"The Man Who Invented, Then Hated, Shopping Malls", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"ObEJk4bAV8M", "title":"BackpackersXpress and the Disco Carriage: Citation Needed 5x03", "lat":"", "long":"", "category":"Citation", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"JKCBeDeVxkg", "title":"Nobody's Exactly Sure How Much A Kilogram Is Right Now", "lat":"51.426801", "long":"-0.344715", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"4og8wG8VQWM", "title":"Thomas Midgley Jr and a Pope Infestation: Citation Needed 5x02", "lat":"", "long":"", "category":"Citation", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"2NGc3-df8sA", "title":"The Flower That Smells Like Death", "lat":"50.361165", "long":"-4.744834", "category":"Things", "comment":"Rough center of the Eden Project site", "status":"mapped", "internal_comment":""},
{"id":"48in2BIx4ds", "title":"The Hydraulic Telegraph and Latin Grease: Citation Needed 5x01", "lat":"", "long":"", "category":"Citation", "comment":"", "status":"open", "internal_comment":""},
{"id":"ic_FpRG7Z_k", "title":"Why You Can't Advertise Cancer Cures In Britain", "lat":"51.521677", "long":"-0.121115", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"CcZdwX4noCE", "title":"Why Web Filters Don't Work: Penistone and the Scunthorpe Problem", "lat":"53.52544", "long":"-1.62252", "category":"Other", "comment":"", "status":"mapped", "internal_comment":"Penistone"},
{"id":"CcZdwX4noCE", "title":"Why Web Filters Don't Work: Penistone and the Scunthorpe Problem", "lat":"53.58622", "long":"-0.65192", "category":"Other", "comment":"", "status":"mapped", "internal_comment":"Scunthorpe"},
{"id":"xl6jzEhxoVA", "title":"Questionable with Jay Foreman, Sarah Breese and Will Seaward", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"r6Rp-uo6HmI", "title":"Why Snow and Confetti Ruin YouTube Video Quality", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"A739p5HkRZ8", "title":"The Strangest Elevator In Italy: the Ascensore Castello d'Albertis-Montegalletto, Genoa", "lat":"44.416711", "long":"8.923744", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"mCSUmwP02T8", "title":"The Most Dangerous Stretch of Water in the World: The Strid at Bolton Abbey, Yorkshire", "lat":"54.003604", "long":"-1.903086", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"Lsiq_3-cSHs", "title":"The Not-Quite-Robots That Help Fix Fusion Reactors", "lat":"51.659184", "long":"-1.226319", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"IrtGp8hv-0Y", "title":"Help, My Fusion Reactor's Making A Weird Noise", "lat":"51.659170", "long":"-1.22631", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"1bO8zEaSuWg", "title":"In Norway, Everyone Can Know How Much You Earn", "lat":"59.910509", "long":"10.760742", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":"It would be possbile to put the marker at the tax office, but this doesn't help much."},
{"id":"qsjVfJur1ac", "title":"Order and Chaos - Hannah Nicklin vs Emma Blackery - Game On 1x06", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"5OPkGQoPeHk", "title":"Accidental Emoji Expert: Tom Scott at An Evening of Unnecessary Detail", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"GLqJvWlEolk", "title":"Quiz Buzz - Steven Bridges vs Emma Blackery - Game On 1x05", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"sP2qqMegNKA", "title":"The First Ever Wireless Hack: Marconi vs Maskelyne", "lat":"50.046310", "long":"-5.655702", "category":"Other", "comment":"", "status":"mapped", "internal_comment":"Placed in middle of Porthcurno, can't find former tower location"},
{"id":"sP2qqMegNKA", "title":"The First Ever Wireless Hack: Marconi vs Maskelyne", "lat":"51.509669", "long":"-0.142268", "category":"Other", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"0qy-2uPRzK8", "title":"Weighted War - Steven Bridges vs Hannah Nicklin - Game On 1x04", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"gocwRvLhDf8", "title":"Will YouTube Ever Run Out Of Video IDs?", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"zMLE7a3faI4", "title":"Black Hole - Emma Blackery vs Katie Steckles - Game On 1x03", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"18_6kLLKoEc", "title":"Why You Should Write Down Your Goals", "lat":"51.508782", "long":"0.002657", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"iGjPn8V4O9E", "title":"Driving Through Russia Without A Visa: The Saatse Boot", "lat":"57.910207", "long":"27.720240", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"MifSLmBQltk", "title":"Tumblin-Dice: Hannah Nicklin vs Katie Steckles - Game On 1x02", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"R9u41aeItss", "title":"Unexploded Bombs off the British Coast: the SS Richard Montgomery", "lat":"51.464596", "long":"0.787679", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"4gZwGTT3jXg", "title":"Rock Paper Scissors Hammer Helmet: Steven Bridges vs Emma Blackery - Game On 1x01", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"m5dXWJi4pIA", "title":"Inside A Satellite Clean Room", "lat":"51.989203", "long":"4.363013", "category":"Places", "comment":"Fun fact: this company is now known as Innovative Solutions In Space, or ISIS for short!", "status":"mapped", "internal_comment":""},
{"id":"Mm5khEUIBx0", "title":"Power, Politics and Pragmatism: The British National Grid", "lat":"", "long":"", "category":"Things", "comment":"Unknown location underneath London", "status":"no coordinates", "internal_comment":""},
{"id":"MVI87HzfskQ", "title":"Why 1/1/1970 Bricks Your iPhone", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"3kgI-TZXCa8", "title":"Victor Lustig and Binary Points: Citation Needed 4x05", "lat":"48.85822", "long":"2.29448", "category":"Citation", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"odX81LsE5RY", "title":"What Counts as the World's Largest Clock?", "lat":"51.217911", "long":"6.761588", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"bbptPx9dmC4", "title":"The Biathlon: Firing Guns Under Pressure", "lat":"61.129799", "long":"10.497694", "category":"Other", "comment":"Roughly here in this winter sports park", "status":"mapped", "internal_comment":""},
{"id":"G6f5k_nO9ZY", "title":"Shanghai Fugu and Mucky Fat: Citation Needed 4x04", "lat":"", "long":"", "category":"Citation", "comment":"", "status":"open", "internal_comment":""},
{"id":"xo6IubbQuCk", "title":"The Second Largest Freezer in Norway", "lat":"61.238811", "long":"10.466098", "category":"Other", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"IQ3kQPWlU-o", "title":"How To Make Snow", "lat":"61.238314", "long":"10.463002", "category":"Other", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"Sw5VU0GE_Wo", "title":"Cello Scrotum and Radium Water: Citation Needed 4x03", "lat":"", "long":"", "category":"Citation", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"d10k3iiZ_xk", "title":"How \"Crash Safari\" Reboots Your Phone", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"F4KZLcvMQWg", "title":"Why Wuppertal's Suspended Monorail Wasn't The Future Of Travel", "lat":"51.255539", "long":"7.146555", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"1KzcZZ_3vL8", "title":"Project Cybersyn and Military Fridges: Citation Needed 4x02", "lat":"", "long":"", "category":"Citation", "comment":"", "status":"open", "internal_comment":""},
{"id":"8-evKtoPN-8", "title":"Calling The Police Doesn't Charge Your Phone Battery", "lat":"51.524024", "long":"-0.720868", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"9PlQPJmh95U", "title":"Graham Island and Ye Starbucks: Citation Needed 4x01", "lat":"37.166667", "long":"12.716667", "category":"Citation", "comment":"There is nothing on the map because Graham Island now only exists as a sea mount", "status":"mapped", "internal_comment":""},
{"id":"Ki8BLLnWyJY", "title":"Crosswalks Don't Always Make You Safer", "lat":"51.532054", "long":"-0.177348", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"4SyetdjWMuw", "title":"Why Britain Sucks At Product Placement", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"dkSslseq9Y8", "title":"Seeing Other People's Steam Accounts: The Christmas Caching Catastrophe", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"kNm-b1UXGTY", "title":"A Christmas Computer Bug, and the Future of Files", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"rTwg3oWnUgc", "title":"Automated Weapons and the Battlefield of 2050", "lat":"51.492963", "long":"-0.082656", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"S0zMip62o5E", "title":"The Greatest Simulators On Earth: Mevea Simulation in Finland", "lat":"61.062218", "long":"28.097538", "category":"Other", "comment":"Location of the simulator", "status":"mapped", "internal_comment":""},
{"id":"S0zMip62o5E", "title":"The Greatest Simulators On Earth: Mevea Simulation in Finland", "lat":"61.142600", "long":"28.801927", "category":"Other", "comment":"Location of the machine", "status":"mapped", "internal_comment":""},
{"id":"LrT4urHj61g", "title":"Drones, Deserts and Danger", "lat":"35.186365", "long":"-117.766135", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"bUknYGEbLsg", "title":"700 Flavours of Soda Pop: Galco's in Los Angeles", "lat":"34.118576", "long":"-118.193492", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"yeQ-6eyMQ_o", "title":"How The Rosetta Stone Unlocked Hieroglyphics", "lat":"51.519276", "long":"-0.126839", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"5erVH-zk7Uk", "title":"The Collapsed Dam That Stopped Los Angeles", "lat":"34.546845", "long":"-118.512575", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"KUdQ7gxU6Rg", "title":"Why I Can't Show You The H******** S***", "lat":"34.134017", "long":"-118.321832", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"cxxGf82as4Q", "title":"Goalball: Blindfold Paralympic Reverse Dodgeball", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"XvHcZciihJw", "title":"The Bielefeld Conspiracy", "lat":"52.029105", "long":"8.534293", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"QXuTz-5N1Aw", "title":"The Strange St Pauli Elbtunnel", "lat":"53.543843", "long":"9.966526", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"BTPToO-gfTE", "title":"Britain's End-of-the-World Bunkers", "lat":"51.667631", "long":"0.279147", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"RGNLyYGpv8Y", "title":"Simulating a Universe: the EAGLE Project at Durham University", "lat":"54.766730", "long":"-1.574429", "category":"Other", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"qHO9gARac-w", "title":"Archimedes and a Boat Lift: the Falkirk Wheel", "lat":"56.000300", "long":"-3.841700", "category":"Places", "comment":"Actual coordinates from the video", "status":"mapped", "internal_comment":""},
{"id":"lIFE7h3m40U", "title":"The Art of the Bodge: How I Made The Emoji Keyboard", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"0fw5Cyh21TE", "title":"The Link That Can Crash Chrome: http://a/%%30%30", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"3AtBE9BOvvk", "title":"Real Life Emoji Keyboard!", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"mh1UXi0csqc", "title":"The Man Who Had Himself Taxidermied: Jeremy Bentham", "lat":"51.524698", "long":"-0.133544", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"xXC6U0NfJg8", "title":"Sinking Ship Simulator: The Royal Navy's Damage Repair Instructional Unit", "lat":"50.819695", "long":"-1.097750", "category":"Other", "comment":"Actual location of the instructional unit", "status":"mapped", "internal_comment":""},
{"id":"H-I6drGa2pk", "title":"The Secret Underground Pipeline Across Britain", "lat":"51.769420", "long":"-2.334772", "category":"Things", "comment":"Yes, this is the actual pipeline section the video was shot at", "status":"mapped", "internal_comment":""},
{"id":"tZnoS6rPzmI", "title":"Amphibious Weed-Cutting Boat!", "lat":"51.301464", "long":"1.158903", "category":"Other", "comment":"Somewhere on this river", "status":"mapped", "internal_comment":""},
{"id":"kjQLT5CKEAU", "title":"G-Forces, Gliders, and Graveyard Spirals", "lat":"51.915516", "long":"-1.137137", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"zJt8yzR2aoY", "title":"So You've Learned To Teleport", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"1poq11wp1zU", "title":"The Abandoned Village of Imber: How Far Can Emergency Powers Go?", "lat":"51.237944", "long":"-2.053007", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"eYH1lPm41-0", "title":"Hovercraft, Concorde, and the Dreams of the 1970s", "lat":"50.732964", "long":"-1.158596", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"gwgzTsO46yc", "title":"Jimmy Carter's Rabbit and Tinfoil Hats: Citation Needed 3x05", "lat":"32.0424552", "long":"-84.4133167", "category":"Citation", "comment":"Not sure if this is the correct lake, but it is a lake close to the former Carter home with a berth and a road for easy access.", "status":"mapped", "internal_comment":""},
{"id":"KxzOQwktMCc", "title":"The Weirdest Bridge in Wales: The Newport Transporter Bridge", "lat":"51.570659", "long":"-2.985623", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"xbi6eoh63ZQ", "title":"The Russian Woodpecker of Chernobyl: How To See Over The Horizon", "lat":"51.304811", "long":"30.065233", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"egbJ8p2UVKk", "title":"Sidney Weltmer and the Queen's Package: Citation Needed 3x04", "lat":"", "long":"", "category":"Citation", "comment":"", "status":"open", "internal_comment":""},
{"id":"BhYEkRjUWM8", "title":"How to Visit Chernobyl", "lat":"51.391816", "long":"30.074624", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"uV4Kz2ednjs", "title":"Radioactive Bananas in Chernobyl", "lat":"51.408000", "long":"30.056000", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"vK8ykPmtRyg", "title":"Containing the Worst Nuclear Disaster in History: Chernobyl's New Confinement Structure", "lat":"51.389305", "long":"30.094154", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"nKOcrH_PyU0", "title":"Sergeant Reckless and Terry Google: Citation Needed 3x03", "lat":"", "long":"", "category":"Citation", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"0Sz55gmNUaI", "title":"The World's Largest Indoor Waterpark", "lat":"52.038000", "long":"13.749000", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"6qNawyzVGbc", "title":"The Boobrie and Conservative Pandas: Citation Needed 3x02", "lat":"", "long":"", "category":"Citation", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"zCfPlxTayqY", "title":"The Giant Cranes and Robots That Keep Civilisation Running", "lat":"51.505694", "long":"0.499039", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"2otrhYbE0b8", "title":"The SS Bessemer and Ask Heaves: Citation Needed 3x01", "lat":"", "long":"", "category":"Citation", "comment":"", "status":"open", "internal_comment":""},
{"id":"EwQdK4Y1Pkg", "title":"Are Batteries Heavier When They're Full? (with Robert Llewellyn!)", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"ch7HwhGynXk", "title":"The Islands Where Guns are Required", "lat":"78.2239", "long":"15.6411", "category":"Places", "comment":"The location of the polar bear statue", "status":"mapped", "internal_comment":""},
{"id":"eFJ-ze2-SqU", "title":"How To Visit Svalbard", "lat":"78.2461", "long":"15.4993", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"oZ2Qms2fMH8", "title":"The Sundial That Works 24 Hours A Day", "lat":"78.2223272", "long":"15.6297617", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"Uqjg8Kk1HXo", "title":"Why Leap Seconds Cause Glitches", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"pwGcrSuAIuc", "title":"What's The Doomsday Seed Vault Really For?", "lat":"78.2357", "long":"15.4911", "category":"Places", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"AGXbiSwcqtM", "title":"The Sightlines of London", "lat":"51.4467", "long":"-0.2894", "category":"Things", "comment":"The avenue of trees in Richmond Park", "status":"mapped", "internal_comment":""},
{"id":"AGXbiSwcqtM", "title":"The Sightlines of London", "lat":"51.5138", "long":"-0.0821", "category":"Things", "comment":"The location of 'The Cheesegrater', also known as 122 Leadenhall Street", "status":"mapped", "internal_comment":""},
{"id":"AGXbiSwcqtM", "title":"The Sightlines of London", "lat":"51.51954", "long":"-0.13170", "category":"Things", "comment":"'The Building Center' where the 'New London Model' is located", "status":"mapped", "internal_comment":""},
{"id":"m8niIHChc1Y", "title":"What Counts as a Word?", "lat":"", "long":"", "category":"Linguistics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"wVBZLoNffPw", "title":"The Toxic Blue Lagoon of Buxton", "lat":"53.2464", "long":"-1.8533", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"bxARj07jFp0", "title":"Long and Short Words: Language Typology", "lat":"", "long":"", "category":"Linguistics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"YgJBD1wf-YQ", "title":"Paternoster Lifts: Dangerous, Obsolete and Quite Fun (including over the top!)", "lat":"53.38275", "long":"-1.48740", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"Qh8QlfYLUO0", "title":"Why Can't Adults Learn Languages Like Children?", "lat":"", "long":"", "category":"Linguistics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"oE93J33SfHY", "title":"The Most Complex Borders in Europe: Why Do We Have Nations?", "lat":"51.4428", "long":"4.9309", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"hJLMSllzoLA", "title":"The Effective Power Bug: Why Can Weird Text Crash Your iPhone?", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"ldT2g2qDQNQ", "title":"Crash Blossoms and Being Drunk: Ambiguity", "lat":"", "long":"", "category":"Linguistics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"S9E1wsxOSzM", "title":"The Fictional Bridges That Became Real", "lat":"51.85204", "long":"4.33721", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"jE2PP7EowdM", "title":"The Speed of Outrage: Tom Scott at Thinking Digital 2015", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"GAgp7nXdkLU", "title":"Why Computers Suck At Translation", "lat":"", "long":"", "category":"Linguistics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"jkdwK_74eEs", "title":"How The Netherlands Stopped The Wind", "lat":"51.899670", "long":"4.225507", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"B5a6wrJpxP4", "title":"Risk, Immortality, and the Terrifying Pulpit Rock", "lat":"58.98640", "long":"6.18865", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"LG-X23aVud0", "title":"Ships, Mines and Magnetism", "lat":"51.50493", "long":"-0.07142", "category":"Things", "comment":"The location where the HMS Middleton was docked in the video.", "status":"mapped", "internal_comment":""},
{"id":"iCQEc736GO4", "title":"The Human-Powered, Giant Theme Park Playground: Ai Pioppi", "lat":"45.84323", "long":"12.17970", "category":"Other", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"egeMAIXYIvI", "title":"7 Illegal Things To Do In A British Election", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"GAKwRou6HUw", "title":"The 400,000,000-Year Link Between Scotland and Canada", "lat":"57.32431", "long":"-4.44398", "category":"Things", "comment":"Urquhart Castle on the shore of Loch Ness", "status":"mapped", "internal_comment":""},
{"id":"GAKwRou6HUw", "title":"The 400,000,000-Year Link Between Scotland and Canada", "lat":"48.919", "long":"-57.448", "category":"Things", "comment":"The center of Grand Lake in Newfoundland, which used to be the same fault line as Loch Ness", "status":"mapped", "internal_comment":""},
{"id":"t60EfnqZKrQ", "title":"How To Make Something One Atom Thick", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":"Though this was shot at the University of Bristol, the video is more about the techique of creating something 1 atom thick than the laboratory itself."},
{"id":"SdxzvQG3aic", "title":"The Bubble: imagine the web without trolls, or shocks, or spam", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"QixlLU15CIc", "title":"Turnpikes and Tolls: What if all major roads were private?", "lat":"51.43671", "long":"-0.08132", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"c5Az7Rez3Rk", "title":"How to Program a Quantum Computer (sort of)", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":"Though this was shot at the University of Bristol, the video is more about quantum computers than the laboratory itself."},
{"id":"pj9-vL5JFqo", "title":"The Driverless Cars of Greenwich", "lat":"51.50165", "long":"0.00468", "category":"Things", "comment":"The starting point of Tom's journey", "status":"mapped", "internal_comment":""},
{"id":"l0fViGU-Snc", "title":"Standing in a Hurricane in Slow Motion", "lat":"50.93623", "long":"-1.39458", "category":"Other", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"msPCQgRPPjI", "title":"How Green Screen Worked Before Computers", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"09mpgUzVc5g", "title":"How Many Colours Are In A Rainbow?", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"EvJtyE2N6l4", "title":"The Swarm and the Giant Jam Sandwich: Citation Needed 2x07", "lat":"", "long":"", "category":"Citation", "comment":"", "status":"open", "internal_comment":""},
{"id":"0-ZeCXYr_Uw", "title":"The British Rail Flying Saucer", "lat":"51.52167", "long":"-0.16219", "category":"Things", "comment":"The Landmark Hotel which was formerly the headquarter of British Rail", "status":"mapped", "internal_comment":""},
{"id":"kssR0xrdHN8", "title":"Lisa Clayton and Cake Black Holes: Citation Needed 2x06", "lat":"", "long":"", "category":"Citation", "comment":"", "status":"open", "internal_comment":""},
{"id":"D22BOOGbpFM", "title":"The Magic Roundabout: Swindon's Terrifying Traffic Circle and Emergent Behaviour", "lat":"51.56284", "long":"-1.77146", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"9kmlwZ_BOvU", "title":"The Flitch of Bacon and a Goose on a Train: Citation Needed 2x05", "lat":"", "long":"", "category":"Citation", "comment":"", "status":"open", "internal_comment":""},
{"id":"CgJudU_jlZ8", "title":"The Moonpig Bug: How 3,000,000 Customers' Details Were Exposed", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"DmvHZ4omB2A", "title":"Why The Prime Meridian Isn't At 0º", "lat":"51.47795", "long":"-0.00149", "category":"Things", "comment":"The location of the Prime Meridian", "status":"mapped", "internal_comment":""},
{"id":"DmvHZ4omB2A", "title":"Why The Prime Meridian Isn't At 0º", "lat":"51.47795", "long":"0.00000", "category":"Things", "comment":"The location where the GPS says the longitude is 0 (with the same latitude as the Prime Meridian statue)", "status":"mapped", "internal_comment":""},
{"id":"xfHStwlDIGg", "title":"A Message from Earth and Flappy Gloves: Citation Needed 2x04", "lat":"", "long":"", "category":"Citation", "comment":"", "status":"open", "internal_comment":""},
{"id":"IHv3wSYi9PA", "title":"Why Doesn't Britain Have Rabies?", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"p7I4xpSz6-Y", "title":"Can It Be \"Too Cold To Snow\"?", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"LGwgT5jho6I", "title":"Ley Lines and Avebury Henge, the Better Version of Stonehenge", "lat":"51.42855", "long":"-1.85405", "category":"Things", "comment":"The center of the circle with the road running through it and the village in the middle.", "status":"mapped", "internal_comment":""},
{"id":"K1uqcG7KyrI", "title":"The Centennial Light and Edison the Cheat: Citation Needed 2x03", "lat":"37.68017", "long":"-121.73946", "category":"Citation", "comment":"Location of the Fire Station where the Centennial Light is located.", "status":"mapped", "internal_comment":""},
{"id":"ML5TaNlwgeg", "title":"The Hottest Place in Britain, and the BBC Theme Park", "lat":"51.46014", "long":"0.31175", "category":"Things", "comment":"", "status":"mapped", "internal_comment":"not sure if this is the correct position of the weather station"},
{"id":"iW9YwL39lPU", "title":"The Coffin Ray and Hugging a Penguin: Citation Needed 2x02", "lat":"", "long":"", "category":"Citation", "comment":"", "status":"open", "internal_comment":""},
{"id":"gN_PK5pXmIY", "title":"Do The Numbers On Toaster Dials Mean Minutes?", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"VxBlyZAl5MQ", "title":"The Concrete Pillars On Top Of British Hills: Trig Points", "lat":"51.459755", "long":"-0.023888", "category":"Things", "comment":"The trig point from the video", "status":"mapped", "internal_comment":""},
{"id":"DQztJBFYIcE", "title":"Thomas Trueblood and the Ridiculous Marathon: Citation Needed 2x01", "lat":"", "long":"", "category":"Citation", "comment":"", "status":"open", "internal_comment":""},
{"id":"OSlGJ9FNHOk", "title":"Why \"Four Score and Seven Years Ago\"?", "lat":"38.88926", "long":"-77.04984", "category":"Things", "comment":"The Lincoln Memorial in Washington DC", "status":"mapped", "internal_comment":""},
{"id":"OSlGJ9FNHOk", "title":"Why \"Four Score and Seven Years Ago\"?", "lat":"39.82099", "long":"-77.23177", "category":"Things", "comment":"The Soldiers' National Monument at the Gettysburg Cemetery, close to where Lincoln gave the Gettysburg Address", "status":"mapped", "internal_comment":""},
{"id":"NOsFLzpfRpU", "title":"The Floating Lighthouse in New York: The Lightship Ambrose", "lat":"40.70532", "long":"-74.00246", "category":"Things", "comment":"Location of the Ambrose in the harbour at the South Street Seaport Museum", "status":"mapped", "internal_comment":""},
{"id":"juZqGU9iuq0", "title":"The Liquid Nitrogen Tanks of New York", "lat":"40.75984", "long":"-73.98039", "category":"Things", "comment":"The location of the nitrogen tanks from the video. There are many more around the city.", "status":"mapped", "internal_comment":""},
{"id":"yWjpR365-h4", "title":"The Diner Where You Microwaved Your Own Food", "lat":"40.75304", "long":"-73.98024", "category":"Things", "comment":"The location of the former Tad's Varieties", "status":"mapped", "internal_comment":""},
{"id":"ey6JPPGgZl8", "title":"There's a Bit of England in New York, Literally", "lat":"40.73755", "long":"-73.97274", "category":"Things", "comment":"The location of plaque at Waterside Plaza in New York", "status":"mapped", "internal_comment":""},
{"id":"ey6JPPGgZl8", "title":"There's a Bit of England in New York, Literally", "lat":"51.4530472", "long":"-2.5976882", "category":"Things", "comment":"The location of plaque in Bristol", "status":"mapped", "internal_comment":""},
{"id":"RILkh2S1lvo", "title":"What Did Witches Actually Use?", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"E-m6vc7lsmE", "title":"The Man Who Set Up His Own Toll Road, Without Permission", "lat":"51.39668", "long":"-2.42260", "category":"Things", "comment":"The Toll Road is not used anymore, as the construction on the main road is finished. The marker show the western beginning (or end) of the road.", "status":"mapped", "internal_comment":""},
{"id":"HfHgUu_8KgA", "title":"Why Britain Uses Separate Hot and Cold Taps", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"aKShnpOXqn0", "title":"The Shellshock Bug In About Four Minutes", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"wBlAQLvVGJA", "title":"How To Snap Someone's Neck", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"lbXL57-mB-I", "title":"Scotland is Rising and England is Sinking, Literally", "lat":"51.4976", "long":"0.0369", "category":"Things", "comment":"The Thames Barrier", "status":"mapped", "internal_comment":""},
{"id":"k3R1ajg8dTY", "title":"How to Land a Plane in an Emergency", "lat":"52.21047", "long":"0.17621", "category":"Other", "comment":"The location of Virtual Aviation Flight Training Centre", "status":"mapped", "internal_comment":""},
{"id":"_kBlH-DQsEg", "title":"2030: Privacy's Dead. What happens next?", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"x5KH4bUt8X8", "title":"Ultrasonically Vaporized Vodka!", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"GsyhGHUEt-k", "title":"Emojli: Behind the Scenes and Why You Should Never Build An App", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"b_vMclfCoFA", "title":"The Ice Bucket Challenge Lowers Your Heart Rate", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"wCQSIub_g7M", "title":"How To Read Text In Binary", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"UNHhfykh5Qc", "title":"Third Person Driving with a Drone", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"yoMOAIzBSpY", "title":"YouTube Doesn't Know Your Password", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"qVVAirwMLns", "title":"Gravity Doesn't Always Point Straight To The Earth's Core", "lat":"51.35568", "long":"0.55979", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"hqF1dr5dNgE", "title":"Giant Underground Trampolines!", "lat":"53.00510", "long":"-3.93978", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"NQrxzgd6ASA", "title":"What's The Longest Word In The English Language?", "lat":"53.22092", "long":"-4.20936", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"cLVWRHuPsas", "title":"Some Places Have Lower Gravity Than Others", "lat":"53.00521", "long":"-3.93979", "category":"Things", "comment":"The zip line itself is on the mountain next to it, but here is the office of the company that provides the service.", "status":"mapped", "internal_comment":""},
{"id":"UEfP1OKKz_Q", "title":"British Plugs Are Better Than All Other Plugs, And Here's Why", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"iyybPvRsEuY", "title":"Emojli: the emoji-only network.", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"sTzp76JXsoY", "title":"Why Do Flag Emoji Count As Two Characters?", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"d9Qnobvx_kM", "title":"The Equation of Time: Clocks Vs Sundials", "lat":"51.54029", "long":"-0.01821", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"uhtUYzubRHU", "title":"How Do You Make Something Last 1,000 Years?", "lat":"51.50767", "long":"0.00829", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"zv0kZKC6GAM", "title":"How The Self-Retweeting Tweet Worked: Cross-Site Scripting (XSS) and Twitter", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"TUKQfMFKfjk", "title":"Fail-Safe vs. Fail-Deadly (with Colin Furze)", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"_BMlu2wgBJs", "title":"The Nuclear Reactor In The Middle Of London", "lat":"51.48277", "long":"-0.00636", "category":"Things", "comment":"The King William Court of the Old Royal Naval College", "status":"mapped", "internal_comment":""},
{"id":"W1WGBhTuLpQ", "title":"The Most Ridiculous Game Of Football In History", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"BNVT7LP0Ouw", "title":"Angels Are Actually Pretty Terrifying", "lat":"54.91411", "long":"-1.58948", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"6T5h0SuavgM", "title":"The Arctic Winter Games and Dropping the Bomb: Citation Needed 1x09", "lat":"", "long":"", "category":"Citation", "comment":"", "status":"open", "internal_comment":""},
{"id":"BgAdeuxkUyY", "title":"How YouTube Video Stabilization Works", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"nOly_oe5UsI", "title":"How Does Eurovision Break Ties?", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"_IesM6EVC9U", "title":"The Flag of Mars and Rods from God: Citation Needed 1x08", "lat":"75.431319", "long":"-89.823386", "category":"Citation", "comment":"Position of the Flashline Mars Arctic Research Station", "status":"mapped", "internal_comment":""},
{"id":"9mYQT7oyctA", "title":"The Counts of Andechs and Motorway Service Stations: Citation Needed 1x07", "lat":"", "long":"", "category":"Citation", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"3woUopc1ZS4", "title":"The Early Steam Train With No Brakes: Stephenson's Rocket", "lat":"53.96053", "long":"-1.09756", "category":"Things", "comment":"The entrance of the National Railway Museum in York, where the replica of the Stephenson Rocket can be ridden on.", "status":"mapped", "internal_comment":""},
{"id":"g1KTl176Mww", "title":"Neckarwestheim and the End of the World: Citation Needed 1x06", "lat":"49.041111", "long":"9.175", "category":"Citation", "comment":"The actual strange part about this nuclear power plant was never mentioned in the video. There is a public hiking path going through the area of the plant. When you reach the fence, you have to ring a bell and a guard comes that will accompany you the almost 500 meters to the other end of the path. ", "status":"mapped", "internal_comment":""},
{"id":"FX1slLeJRPg", "title":"The Three Types of Twilight, and The Days Without Night", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"YN_F9bNuF0I", "title":"Chess Clock Jenga", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"R31xj7Ybxhc", "title":"Bossche Bol and Nun's Puffs: Citation Needed 1x05", "lat":"", "long":"", "category":"Citation", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"SopJr0yHt-w", "title":"The Rise and Fall of the Gasometer", "lat":"51.4785", "long":"-0.1461", "category":"Things", "comment":"The Battersea Park Gasometer", "status":"mapped", "internal_comment":""},
{"id":"v0e8GV6QKf4", "title":"Simplehuman and Russian Toilette: Citation Needed 1x04", "lat":"", "long":"", "category":"Citation", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"rE5dW3BTpn4", "title":"From Missingno to Heartbleed: Buffer Exploits and Buffer Overflows", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"mRQt_PMhBXY", "title":"The Level Crossing You Have To Power Yourself", "lat":"51.27491", "long":"1.05945", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"RYENl-P3Zh8", "title":"Stefania Follini and a Moon Theremin: Citation Needed 1x03", "lat":"", "long":"", "category":"Citation", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"ByUPFYxy5vw", "title":"Is \"Paris Syndrome\" A Real Thing?", "lat":"48.85154", "long":"2.35157", "category":"Things", "comment":"The bridge with the locks", "status":"mapped", "internal_comment":""},
{"id":"XrCJJP_KOlY", "title":"The Newgate Novel and Condiments on Toast: Citation Needed 1x02", "lat":"", "long":"", "category":"Citation", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"ekHhmaA8mfQ", "title":"Facebook for Oculus Rift: The Commercial", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"VYH87V6EHrk", "title":"Privacy In France: A Lot Of French People Might Be About To Sue Me", "lat":"48.85696", "long":"2.29650", "category":"Things", "comment":"The general rules apply to all of France, but the example with the Eiffel Tower is somewhat specific to this location.", "status":"mapped", "internal_comment":""},
{"id":"GMwnyWP52Ys", "title":"Point Zero: Where All Roads Start", "lat":"48.8533249", "long":"2.3488596", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"oIYcbJKSLxQ", "title":"The Big Lobster and Drive-through Booze: Citation Needed 1x01", "lat":"-36.82369", "long":"139.86315", "category":"Citation", "comment":"The list of all the other big things can be found in the <a href=\"https://en.wikipedia.org/wiki/Australia%27s_big_things\">Wikipedia article on <i>Australia's big things</i></a>", "status":"mapped", "internal_comment":""},
{"id":"lj-DS8SMxSw", "title":"The 19th Century Channel Tunnel Wasn't Just A Dream", "lat":"51.0138", "long":"1.4969", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"vWmDHO_0P5Q", "title":"British Tanks Are Better Than All Other Tanks, And Here's Why", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"XwpJ01nguoo", "title":"The London Railway of the Dead", "lat":"51.49926", "long":"-0.11358", "category":"Things", "comment":"The London Necropolis Railway Station", "status":"mapped", "internal_comment":""},
{"id":"_LPw1hlMCaA", "title":"Britain Has 555 Phone Numbers Too", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"z49LjJj3VTI", "title":"Never Call Someone \"Tired and Emotional\" In England", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"PHrWzF2VuAg", "title":"Origami In Space", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"z_1mi9w-NwE", "title":"Why Do We Not Have A Cure For The Common Cold Yet?", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"rQB5OWyGVWU", "title":"How Does A Geyser Work?", "lat":"64.31275", "long":"-20.30075", "category":"Things", "comment":"The Strokkur Geysir from the video", "status":"mapped", "internal_comment":""},
{"id":"D3AS55mitNk", "title":"Let's Play: Bar Billiards", "lat":"51.54936", "long":"-0.05932", "category":"Other", "comment":"The video was recorded at The Pembury Tavern", "status":"mapped", "internal_comment":""},
{"id":"zvIoKEpD-hI", "title":"Let's Talk About Names. In Iceland.", "lat":"64.12526", "long":"-20.52417", "category":"Things", "comment":"The cathedral (Skálholtsdómkirkja) where the list of Iceland's bishops is located, which was shown in the video.", "status":"mapped", "internal_comment":""},
{"id":"KzQw00SSOQQ", "title":"Moss Is Terrible For Emergency Navigation", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"yg67YXYedwo", "title":"The Mississippi River Wants To Move", "lat":"30.44990", "long":"-91.19085", "category":"Things", "comment":"The location of the big red \"Batton Rouge\" sign.", "status":"mapped", "internal_comment":""},
{"id":"RuzoIG9py_c", "title":"Why Was AllAdvantage.com Popular In Beverly Hills?", "lat":"34.07216", "long":"-118.40224", "category":"Things", "comment":"Center of Beverly Hills", "status":"mapped", "internal_comment":"The video was shot in New Orleans, but the content doesn't really relate to it, besides mentioning the first digit of the zip code once."},
{"id":"OlJlBIMQy7k", "title":"Disney Could Go Nuclear If They Wanted To", "lat":"28.3740", "long":"-81.5494", "category":"Things", "comment":"The center of Epcot (Experimental prototype community of tomorrow)", "status":"mapped", "internal_comment":""},
{"id":"z45obkskRmw", "title":"The SPF Rating On Sunscreen Is Questionable At Best", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"XUece-2WmuM", "title":"How To Tell If You're Dreaming", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"VBs_ABt-hRc", "title":"The Datablast: Experimental Interactive TV From The 1990s", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"IsmjW7-IaSo", "title":"How To Fall Into A Swimming Pool", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"zPtbzJlcNKc", "title":"Your GPS Shuts Down If It Goes Too Fast", "lat":"28.52325", "long":"-80.68311", "category":"Things", "comment":"The Rocket Garden at the Kennedy Space Center Visitor Complex", "status":"mapped", "internal_comment":""},
{"id":"89VAPZz1Nf0", "title":"The Hard Part About Getting To Orbit Isn't The Height", "lat":"28.6080", "long":"-80.6042", "category":"Things", "comment":"Launch Pad 39 A at Cape Canaveral", "status":"mapped", "internal_comment":""},
{"id":"1W3AylLOHx4", "title":"How To Throw A Bucket Of Water At Someone", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"Wm8ZoVQ_OJo", "title":"The Image That Can Break Your Brain", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"mwDkg3pPfjE", "title":"British Ice Cream Doesn't Have To Contain Milk", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"w3CO2SyXDZc", "title":"Einstein Wasn't The First Scientist To Talk About Relativity", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"fa28lIGuxq8", "title":"Why Do Reversing Trucks Not Beep Any More?", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"lyHbCAY3hqM", "title":"Why Is London's Cable Car So Damn High?", "lat":"51.5030", "long":"0.0123", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"Ko51cynAjzY", "title":"British Nuclear War from Beyond the Grave: The Letter of Last Resort", "lat":"51.47474", "long":"-0.10612", "category":"Things", "comment":"The \"Camberwell Submarine\"", "status":"mapped", "internal_comment":""},
{"id":"XS36ijvZOME", "title":"Why Wind Farms Don't Always Turn When It's Windy", "lat":"55.7083", "long":"-4.3217", "category":"Things", "comment":"Most likely not the correct wind farm or even turbine", "status":"mapped", "internal_comment":"Location estimated based on this youtube comment: \"Eaglesham outside Glasgow I think\" by user AndrewHendo (https://www.youtube.com/watch?v=XS36ijvZOME&lc=z12xivoguxa5dzebk04cjrx5hnm3frvogmg0k.1468066526544860 )"},
{"id":"uJ105LKFCVU", "title":"Can You Cook Bacon Using Hair Curlers?", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"B29jqZWMLkM", "title":"How To Slap Someone Across The Face", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"FGxKQvdLrng", "title":"How To Strangle Someone", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"y4GB_NDU43Q", "title":"Single Point of Failure: The (Fictional) Day Google Forgot To Check Passwords", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"SmOsTHaqFSU", "title":"Platform 9¾ Is In The Wrong Place", "lat":"51.53192", "long":"-0.12401", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"DNUhKkNY6x0", "title":"A Zeppelin, A Cat, and The World's First In-Flight Radio Message", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"B98O6LlLT4Y", "title":"You Can Gold Plate Your Tongue For About $2", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"fRPWlBAgSnw", "title":"The Secret Button on Pedestrian Crossings", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"AVHHs3YUm00", "title":"The Thames Still Has Some 19th Century Stink In It", "lat":"51.50845", "long":"-0.12025", "category":"Things", "comment":"Location where the video was shot", "status":"mapped", "internal_comment":""},
{"id":"OFaxb-UwZX8", "title":"Members of Parliament Aren't Allowed To Resign", "lat":"51.50031", "long":"-0.12508", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"OcPqk-O-fD4", "title":"Danger: Humans", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"uzP8FFKpwQ0", "title":"Why Does Nighttime Smartphone Footage Look All Flickery in Europe?", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"jJWgRghIihQ", "title":"The Underground Roundabouts of Tromsø", "lat":"69.65819", "long":"18.95502", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"oqbsxjmB49Q", "title":"The 134-Hour Television Show from the Arctic Circle", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"tMR25RSOzFo", "title":"The Secret Pattern That Stops You Copying Bank Notes", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"nYxFrMNWbtI", "title":"How To Make An Orange Peel Flamethrower", "lat":"", "long":"", "category":"Things", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"SQ3g5gPKlDM", "title":"Why Aren't There More Helicopter Crashes In London?", "lat":"51.48501", "long":"-0.12800", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"X5V45wYwrkY", "title":"There Are Special Crossings For Horses In Britain", "lat":"51.50261", "long":"-0.14978", "category":"Things", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"3-4A5bXi2Dw", "title":"Making Flaps Vibrate In Your Throat: Voicing", "lat":"", "long":"", "category":"Linguistics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"qOcxwRc2Epg", "title":"Why You Can Tweet More In Japanese: What Counts As A Character?", "lat":"", "long":"", "category":"Linguistics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"mTm1tJYr5_M", "title":"Adjectival Order: Why A \"Big Red Balloon\", not a \"Red Big Balloon\"?", "lat":"", "long":"", "category":"Linguistics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"SVWvkZbhgAc", "title":"Why Do We Have \"Ye Olde\"? Obsolete Letters, and the Mysteries of Ye Olde Ming", "lat":"", "long":"", "category":"Linguistics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"XvQZmqv7bKI", "title":"How Many Gs Do You Pull in an Elevator?", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"RIuf1V1FhpY", "title":"Oversight: Thank you for volunteering, citizen.", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"0h-gbeI0AFQ", "title":"Mele Kalikimaka: Why You Can't Say \"Christmas\" in Hawaiian", "lat":"", "long":"", "category":"Linguistics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"46ehrFk-gLk", "title":"Gender Neutral Pronouns: They're Here, Get Used To Them", "lat":"", "long":"", "category":"Linguistics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"j9Q1cM7_ai4", "title":"Ghoti and the Ministry of Helth: Spelling Reform", "lat":"", "long":"", "category":"Linguistics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"2qT8ZYewYEY", "title":"There's Nothing Wrong With Saying \"10 Items or Less\": Descriptivism vs Prescriptivism", "lat":"", "long":"", "category":"Linguistics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"wA2xRVMOThc", "title":"Why You Swear in Anglo-Saxon and Order Fancy Food in French: Registers", "lat":"", "long":"", "category":"Linguistics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"zYd_8-Ps_kw", "title":"Whatever Happened to Tom's Hoodie?: Tom Scott at Thinking Digital 2013", "lat":"54.96473", "long":"-1.61120", "category":"Other", "comment":"Location of the Parking Lot where Tom burned his hoodie.", "status":"mapped", "internal_comment":""},
{"id":"2TtnD4jmCDQ", "title":"All The Colours, Including Grue: How Languages See Colours Differently", "lat":"", "long":"", "category":"Linguistics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"QYlVJlmjLEc", "title":"Fantastic Features We Don't Have In The English Language", "lat":"", "long":"", "category":"Linguistics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"ld3A3QCpXd4", "title":"Why Jonathan Ross Can't Pronounce His Rs", "lat":"", "long":"", "category":"Linguistics", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"9eTTjHZmY0E", "title":"Instant Whey", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"IrHRQSm6LIs", "title":"Lies on the London Underground", "lat":"51.5120", "long":"-0.1753", "category":"Other", "comment":"Lancaster Gate", "status":"mapped", "internal_comment":""},
{"id":"IrHRQSm6LIs", "title":"Lies on the London Underground", "lat":"51.51338", "long":"-0.08897", "category":"Other", "comment":"Bank Station", "status":"mapped", "internal_comment":""},
{"id":"IrHRQSm6LIs", "title":"Lies on the London Underground", "lat":"51.53023", "long":"-0.12393", "category":"Other", "comment":"King's Cross Station", "status":"mapped", "internal_comment":""},
{"id":"WjpQexdcybs", "title":"A Spaceship Simulator in a Caravan: the LHS Bikeshed", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"_1YzU1DN1zk", "title":"Yorkshire Yoga", "lat":"53.95966", "long":"-1.08200", "category":"Other", "comment":"Just a random place in York. You can do your yoga routine in any place you want to, as long as it is within Yorkshire .", "status":"mapped", "internal_comment":""},
{"id":"3P0BKrOlBVM", "title":"A Brief History of Lyric Videos", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"rJGifTou5FE", "title":"Ten Illegal Things To Do In London", "lat":"51.5362", "long":"-0.1617", "category":"Other", "comment":"This video is relevant for the entire City of London. The marker sits on the top of Primrose Hill, which is a beautiful place to fly a kite or in the winter to slide on snow", "status":"mapped", "internal_comment":""},
{"id":"DSUviSwTvS4", "title":"Facebook Graph Search: a more realistic commercial", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"Zf6C-pZ3heY", "title":"When Facebook Resurrected the Dead", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"MtCeGWo7wZE", "title":"Instagram's New Terms of Service: A Statement From The CEO (Parody)", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"flS2KruJF68", "title":"If Self-Checkout Machines Used Famous Voices", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"ltVtHNJcp9o", "title":"Four Men in a Car: The Technical Difficulties team take a road trip", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"ZDnFNUqf3hg", "title":"iOS 6 Maps: an explanation from Apple (parody)", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"WcPhMqLPuvQ", "title":"\"Is This You?\" - lifelogging, privacy and scandal by Tom Scott at Electromagnetic Field 2012", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"rbenrpfuxHs", "title":"The Large Piña Collider: a pina colada with SCIENCE.", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"dZYltLm8Nzk", "title":"Nyan Fax!", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"IFe9wiDfb0E", "title":"Welcome to Life: the singularity, ruined by lawyers", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"t3TAOYXT840", "title":"Google Glasses: A New Way to Hurt Yourself (parody of Google's Project Glass)", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"T_KB_RcU0LQ", "title":"Robocoaster Challenge: Reciting Shakespeare while attached to a giant robot arm", "lat":"51.34779", "long":"-2.98594", "category":"Other", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"iPG-ji3zt7A", "title":"Caution: High Speed Balls - A Ping Pong Ball Launcher for BBC Click", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"NJ3tf_1h8Yk", "title":"The Northern Nocturnal Cracker Consumption Championships", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"0vXEdGZ9jWo", "title":"Mint Sauce Bottle Rocket: SCIENCE!", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"cYVBshcN7wU", "title":"I Know What You Did Five Minutes Ago", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"aNN4Oo0KhZo", "title":"Kinect-Controlled Tesla Coils: The Evil Genius Simulator", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"yhNohhCnX2I", "title":"Maker Faire UK in 30 Seconds", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"_DmknfWyvzU", "title":"CharityShock - Donate online, give someone an electric shock.", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"MwWACB6w8D0", "title":"Human vs Rat: The Maze Challenge", "lat":"51.50804", "long":"-0.12805", "category":"Other", "comment":"The maze featured in the video was a temporary attraction in 2010.", "status":"mapped", "internal_comment":""},
{"id":"PzXoWJSnUEY", "title":"The Technical Difficulties: Show 3", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"4teSu_JDc0w", "title":"The Technical Difficulties: Show 2", "lat":"54.2819", "long":"-0.3951", "category":"Other", "comment":"The South Bay in Scarborough", "status":"mapped", "internal_comment":""},
{"id":"Zodxs8fYz5c", "title":"The Technical Difficulties: Show 1", "lat":"51.481870", "long":"-3.176369", "category":"Other", "comment":"most possible location where the video display board (\"Date This Man\") was featured at the end.", "status":"mapped", "internal_comment":"Location represents a best guess based on streetview information from background shops and the presense of such a screen"},
{"id":"Zodxs8fYz5c", "title":"The Technical Difficulties: Show 1", "lat":"37.80746", "long":"-122.42177", "category":"Other", "comment":"The end of Jefferson Street in Fisherman's Wharf, the start of the Google Street View Race.", "status":"mapped", "internal_comment":""},
{"id":"Zodxs8fYz5c", "title":"The Technical Difficulties: Show 1", "lat":"37.80237", "long":"-122.40584", "category":"Other", "comment":"Coit Tower on top of Telegraph Hill in San Francisco, the goal of the Google Street View Race.", "status":"mapped", "internal_comment":""},
{"id":"QVM-7JM4lyk", "title":"The Webcycle: the faster you pedal, the faster your internet goes.", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"t2tYvANA8to", "title":"Breaking the News: Tom Scott and Matt Gray bonehead the budget", "lat":"51.49910", "long":"-0.12620", "category":"Other", "comment":"The place where Tom was on TV the first time (on that day).", "status":"mapped", "internal_comment":""},
{"id":"-CV-lkyXepA", "title":"Thinking Digital 2009: Tom Scott on graphs, Hans Zimmer, Eurovision and tea cosies", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"axtfB7QPTiw", "title":"Captain Obvious", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"8eXj97stbG8", "title":"Two Drums and a Cymbal Fall off a Cliff", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"L1TDePrRomY", "title":"Appalling Visual Puns № 5", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"O7asOSBNCIc", "title":"The Fire Jugglers of York", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"A8dXBA_XTLk", "title":"Appalling Visual Puns № 4", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"NuRa_sbJpxE", "title":"The 30 Second Bacon Sandwich", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"3-IXD2GVTYQ", "title":"Appalling Visual Puns № 3", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"atRhyxNK27w", "title":"Washing Machine Cookery", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"kzwQ5NHXE-k", "title":"Appalling Visual Puns № 2", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"3WbCadQiV24", "title":"The Matt Gray High Five Face Off", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"PNLy3iw6sqI", "title":"Timelapse: 1,000 Balloons in 6 Hours", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"_qNzrC9YpjE", "title":"Tesco Value Spiderman", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"U7eLBwCAwmo", "title":"You Cannot Remove Your Fingerprints With Pineapple", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"Xrh-AfAz-34", "title":"Appalling Visual Puns № 1", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"6N8q2xkirCQ", "title":"Salmon in a Dishwasher", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"RzqW2biaXMo", "title":"The Coruscant Juggling Club", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"dK-pMy_jOKI", "title":"On A Pirate Ship - Jay Foreman feat. Mad Cap'n Tom", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"dNOWXi8KoOs", "title":"Fun With A Giant Slingshot", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"sZ363XfT8fk", "title":"Pastaaargh: pasta, cooked with a kettle", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"nkTyWTC9UZc", "title":"Extra Light Pancakes", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"MrppkAIVhH4", "title":"Breakfast: Fortified With Iron", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"comment":"//Videos from Matt and Toms Channel"},
{"id":"AlNNkeB9pjU", "title":"Beards, Beasts and Blagging | Two Of These People Are Lying 4x02", "lat":"48.86150", "long":"2.33380", "category":"ParkBench", "comment":"Location where the \"Plot of the rue Saint-Nicaise\" took place (second article from the show)", "status":"mapped", "internal_comment":"Coordinates from the French Wikipedia: https://fr.wikipedia.org/wiki/Attentat_de_la_rue_Saint-Nicaise , the streets have been greatly remodelled since then: https://commons.wikimedia.org/wiki/File:Turgot_Attentat_rue_St-Nicaise.jpg "},
{"id":"NPaz6mFsSjU", "title":"The \"Two Of These People Are Lying\" Christmas Special", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"GJOMsMKBj54", "title":"Tech Dif Make Ice Cream - Will It Soft Serve?", "lat":"", "long":"", "category":"Other", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"ZhhGnmcOz5g", "title":"\"Down A Bit From Tromsø\" | Two Of These People Are Lying 3x03", "lat":"", "long":"", "category":"Games", "comment":"", "status":"open", "internal_comment":""},
{"id":"xxHFkOff9T8", "title":"Suspicious Saints | Two Of These People Are Lying 3x02", "lat":"", "long":"", "category":"Games", "comment":"", "status":"open", "internal_comment":""},
{"id":"jq_Kh2rV3x8", "title":"Sir Tony of Hawksville | Two Of These People Are Lying 3x01", "lat":"", "long":"", "category":"Games", "comment":"", "status":"open", "internal_comment":""},
{"id":"RgtaOqe0mUM", "title":"Matt's Scaly Kettle | Two Of These People Are Lying 2x04 | The Technical Difficulties", "lat":"", "long":"", "category":"Games", "comment":"", "status":"open", "internal_comment":""},
{"id":"2JuqkQcDEjw", "title":"The Sweaty Column | Two Of These People Are Lying 2x03 | The Technical Difficulties", "lat":"", "long":"", "category":"Games", "comment":"", "status":"open", "internal_comment":""},
{"id":"phL7P6gtZRM", "title":"Not Even A Real Abbot | Two Of These People Are Lying 2x02 | The Technical Difficulties", "lat":"", "long":"", "category":"Games", "comment":"", "status":"open", "internal_comment":""},
{"id":"nR3KGXd6MtQ", "title":"Thin Necks and Terrifying Tractors | Two Of These People Are Lying 2x01 | The Technical Difficulties", "lat":"", "long":"", "category":"Games", "comment":"", "status":"open", "internal_comment":""},
{"id":"TdtFzHBY4v0", "title":"\"Duryard!\" | Two Of These People Are Lying 1x03 | The Technical Difficulties", "lat":"", "long":"", "category":"Games", "comment":"", "status":"open", "internal_comment":""},
{"id":"3yFEfOYTNoE", "title":"Parading Around The Parish | Two Of These People Are Lying 1x02 | The Technical Difficulties", "lat":"", "long":"", "category":"Games", "comment":"", "status":"open", "internal_comment":""},
{"id":"3UAOs9B9UH8", "title":"Meatballs, Noseflutes and Judith | Two Of These People Are Lying 1x01 | The Technical Difficulties", "lat":"", "long":"", "category":"Games", "comment":"", "status":"open", "internal_comment":""},
{"id":"e4qplnaPjbk", "title":"Inchindown Oil Tanks: Behind The Scenes", "lat":"57.7421", "long":"-4.2009", "category":"ParkBench", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"paA7ek43ACc", "title":"The Park Bench: 2015-2018", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"W2NgBTi7zxo", "title":"The Technical Difficulties Play Mario Kart 8", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"VSAc4pg57i8", "title":"Tabletop Time Machine II – Experiment 4", "lat":"36.01573", "long":"-114.73790", "category":"ParkBench", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"xAJvdFGWUTU", "title":"The Format Laboratory – Experiment 3", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"eyjMH77lTzg", "title":"Reverse Trivia, But This Time With Video – Experiment 2", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"um7Nfjac5To", "title":"Tabletop Time Machine – Experiment 1", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"WXF0uYdILGc", "title":"We Toured The Restricted Parts of Heathrow Airport", "lat":"51.47219", "long":"-0.45982", "category":"ParkBench", "comment":"The luggage storage building.", "status":"mapped", "internal_comment":""},
{"id":"V7D25mjdt4I", "title":"Behind The Scenes of Tom Passing Out In A Centrifuge", "lat":"51.2748294", "long":"-0.760025", "category":"ParkBench", "comment":"The Centrifuge Building on Centrifuge Way in Farnborough", "status":"mapped", "internal_comment":""},
{"id":"Je0UVD_4vDM", "title":"A Break In The Bench‽", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"ZjFZe_jCKkQ", "title":"Tom Flew With The Red Arrows. Seriously, He Can't Quite Believe It Either!", "lat":"53.30324", "long":"-0.54625", "category":"ParkBench", "comment":"The Red Arrows hangar on RAF Scampton near Lincoln.", "status":"mapped", "internal_comment":""},
{"id":"LM0zwSkc-JE", "title":"Matt Gets In A Giggle Loop For Two Solid Minutes", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"nv_sfcMyD14", "title":"Travel Optimisations With Chelsea", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"0BC1Mzgh0eY", "title":"How We Made The Fireworks Video", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"iZRI4d__kwI", "title":"Matt Got An Actual Instant Photo Camera", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"rbwh1JLD-6s", "title":"It's Okay To Screw Up Sometimes, We Hope", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"kgOJPKAwiIk", "title":"Every Video We've Ever Published But They're At 1000× Normal Speed", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"-MyrZF5QGVo", "title":"Rejects from Tom's Ideas Board 2: The Modern Years", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"bYrqg4-_xeQ", "title":"Matt and Tom's Quickfire Opinions", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"11PseWcwfSI", "title":"MSN Messenger, Pub Flares, and a Surprise Dog", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"pCh-Hf-j-is", "title":"Matt Shows You How To Juggle With Slow Motion", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"V1OG8nn9QcU", "title":"Don't Shoot for the Moon and Miss", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"ShInYg-OEr4", "title":"The GoPro Fusion is Brilliant but Flawed", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"f-pMLZP6HL8", "title":"Bonus Zero-G Footage: Cockpit & Cabin Parabolas", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"2IrAU3eb1W8", "title":"Tom's Zero G Flailing", "lat":"44.8381541", "long":"-0.7152998", "category":"ParkBench", "comment":"the building of Novespace at the Bordeaux Airport", "status":"mapped", "internal_comment":""},
{"id":"FnUmcA7E_tw", "title":"Cramped Super 8 with Sammy Paul", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"PcNcJBR7aLc", "title":"Hovercraft Adventures, Behind The Scenes", "lat":"52.20325", "long":"-0.27853", "category":"ParkBench", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"yhaigO_Vdzg", "title":"Fifteen Minutes of Old School Video Game Nostalgia", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"M9vufh4uQ7M", "title":"Letters and Mottos and Eagle Scouts", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"LeoklwonIMQ", "title":"Matt and Tom's Controversial Opinions", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"QR_8ck8veU0", "title":"High Winds and Helicopters: Tom's Failed Video", "lat":"36.08199", "long":"-115.17277", "category":"ParkBench", "comment":"The Welcome to Fabulous Las Vegas Sign", "status":"mapped", "internal_comment":""},
{"id":"-VA4SxVngFc", "title":"Matt and Tom Visit Bramble Bank", "lat":"50.7923", "long":"-1.2898", "category":"ParkBench", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"qHR3PjgEuAs", "title":"Funny TV, Kids' Cartoons, and Tom's Thoughts on the New Star Trek", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"J6v4_5a6XNs", "title":"Matt's Dream Jobs and Grown-Up Work Experience", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"SpNlp6AtTOE", "title":"How and Why We Shredded Your Comments", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"SborjlpiYtQ", "title":"Rejects from Tom's Ideas Board: The Early Years", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"XTgNVVFxXBE", "title":"Unseen Citation Needed Warmup Footage", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"xHPsUmq5k74", "title":"Public Speaking, Broadcast Lag, and How To Get Used To Your Own Face", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"cGqEBvlmFAQ", "title":"You Successfully Stalked Us, Please Don't Do It Again.", "lat":"38.1230", "long":"-89.7017", "category":"ParkBench", "comment":"mapped close to but not on the coordinates of the original video, so the markers don't overlap", "status":"mapped", "internal_comment":""},
{"id":"vXwb_7DdZeQ", "title":"We Shred Your Comments, Live", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"30iLtOlfSh8", "title":"Matt and Tom's 100,000 Subscriber Eclipse", "lat":"37.813363", "long":"-89.736213", "category":"ParkBench", "comment":"", "status":"mapped", "internal_comment":"the precise location of this video will be hopefully revieled soon."},
{"id":"LsxRaFNropw", "title":"Tom Rants About Phone Numbers For Roughly Sixteen Minutes", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"qYdWTPAxCOs", "title":"Matt Does Not Film Everything", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"3dHBpr44ra0", "title":"Please Stop Calling Us", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"zOwP0KUlnZg", "title":"Irving Finkel Teaches Us Cuneiform", "lat":"51.51856", "long":"-0.12661", "category":"ParkBench", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"qsJIrzRVTrw", "title":"Snapchat Spectacles: Matt's First Impressions", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"M8HRP-iqHRE", "title":"Why Tom Couldn't Show You The World's Largest Artificial Sun", "lat":"50.91036", "long":"6.38234", "category":"ParkBench", "comment":"The Synlight Building", "status":"mapped", "internal_comment":""},
{"id":"BnzN3zDKFEI", "title":"A Park Bench Public Apology", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"D1WqlRx2siQ", "title":"What Matt and Tom Use To Make Videos: The Kit List, 2017 Edition", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"b0NIUelXSVY", "title":"Failure to Launch: Four Minutes of Not Starting A Video", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"7lHZHqqHWng", "title":"People Bought Sex Things With Our Amazon Affiliate Link (feat. Hannah Witton)", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"QdJzibQuyHE", "title":"Why You Won't Hear Matt Sing", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"6s9aGt2Lkgw", "title":"A VFX Breakdown, Obscure References, and Ducklings", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"nOQNAzvZQnA", "title":"Places to Eat in London", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"mappable", "internal_comment":"there are a lot of places to map here"},
{"id":"ZIuU6jlpC24", "title":"Being Recognised While At Work, And Radio Voices", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"QZAWqk-wrzc", "title":"Behind the Scenes at the Arecibo Radio Telescope", "lat":"18.34682", "long":"-66.75237", "category":"ParkBench", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"TLgplc9A-So", "title":"Tom's Five Minute Theory: History's Repeating Itself, and Doctor Who's Getting Cancelled In 2019", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"ugqyW2xUeu4", "title":"How We Got Into The Jet Propulsion Laboratory", "lat":"34.19964", "long":"-118.17507", "category":"ParkBench", "comment":"The marker shows the JPL Visitor Center", "status":"mapped", "internal_comment":""},
{"id":"_pl7UO9u7xg", "title":"Board Games You May Enjoy", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"6Ev4et7xadk", "title":"We Answer Your Questions #HighQualitySockContent", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"czEF9afhY8o", "title":"Matt Got Universally Moist", "lat":"34.13843", "long":"-118.35511", "category":"ParkBench", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"zK7rPpm6Aw0", "title":"We Are Sick Of Each Other!", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"Hd7d1TTcxq8", "title":"We Drove The California Desert in a Mustang", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"mappable", "internal_comment":"there are several places that can be mapped: California City, the wind farm, the SpaceX Rocket, the Hyperloop Test Segment (preferably the section that crossed the train track)"},
{"id":"Ufbme0Iefs0", "title":"Tom's Going On Holiday. (Or Vacation. Whatever.)", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"8yj0E0wxZZo", "title":"We're Sorry, Bro", "lat":"59.51643", "long":"17.64271", "category":"ParkBench", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"s1H6SVe_rrQ", "title":"The Video That Failed: The Myth of the Uppsala Scream", "lat":"59.8538", "long":"17.6131", "category":"ParkBench", "comment":"This is at one of the student housing complex of the university of Uppsala, but not necessarily where Tom filmed the video.", "status":"mapped", "internal_comment":""},
{"id":"Xdl7VaxdTzA", "title":"Five Minutes in Matt's Mind", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"9q0KM39EvhM", "title":"We Sold Loads Of Earplugs: Why We Don't Get Brand Deals #MattGraySellsOut", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"p_7xrnVaPI0", "title":"Tom's Lucky Trip to Denmark", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"LiVM6JqJiaA", "title":"Matt Tried An HTC Vive", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"hRE0Ha4J--o", "title":"Our Last Video Except Every Time We Say 'Bremen' It Gets Faster", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"v3-W_sdv9Vo", "title":"What We Got Up To At The Bremen Drop Tower", "lat":"53.11011", "long":"8.85805", "category":"ParkBench", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"rrBkvj9Ynu4", "title":"People Bought More Weird Things With Our Amazon Affiliate Link", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"gzJePUquk1o", "title":"Get Some God Damn…", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"bL2n6P4Tkh4", "title":"Matt and Tom's Channel Trailer", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"QR9FwcwxTG4", "title":"The Pogues Game 2016, and Better Christmas Songs", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"fJdw-BVIcGQ", "title":"Airport Angst and Genuine Germans", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"2zfs2TNy2Tw", "title":"Q&A with Matt Parker, Stand-Up Mathematician: LIVE", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"AvU_3czsQY8", "title":"Fear", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"cf2T_Skq1xc", "title":"One Year Of The Bench, And A Cry For Help", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"djgofQKWmXc", "title":"Matt Lost His Camera Under Spacelab‽", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"VTx9lYpfWSg", "title":"GoPro Hero 5: Why you should upgrade right now!", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"kjR_mDX_GyQ", "title":"Park Bench: Live!", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"bqfBvB7ERho", "title":"Matt Controlled The World's Largest Steerable Radio Telescope!", "lat":"38.43326", "long":"-79.84000", "category":"ParkBench", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"64pYTYx_6eU", "title":"The National Radio Quiet Zone Reporting Is Bollocks", "lat":"38.43326", "long":"-79.84000", "category":"ParkBench", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"N5oGTbB8RTk", "title":"Tales From The Arctic 3: The Auction, Driving the Ship and Coming Home", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"Xx7UdKm4x7c", "title":"Tales From The Arctic 2: Helicopters, Ice Fjords, and the hunt for Science", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"W3WuxFuPSu0", "title":"Tales From The Arctic 1: The Arrival, The Icebreaker, and The Roommate.", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"sqErjG-w-4I", "title":"A Message From Tom and a Behind The Scenes", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"r-2wNbYC8NQ", "title":"What Does A Broadcast Engineer Do?", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"rTW661upLJw", "title":"Jay Foreman, Singing, and Syllables", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"mz347Y9iXBY", "title":"Motivation", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"ZnrjN0HrMU4", "title":"Tom's Going To The Arctic For Three Weeks. Matt Isn't: What Should He Do?", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"gLau-MAHAOY", "title":"Cocktail Robots and Fire Pong: Electromagnetic Field 2016", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"Szf7w-ycMgc", "title":"14 Minutes, 47 Questions", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"20wPewvbNU0", "title":"50 Shades of Matt Gray", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"4qvn3FrHutU", "title":"The Where Do You Get Your Ideas From Ramble", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"T8fdVOM8Dc4", "title":"Looking Back On Advent Locker, With Dan", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"t3yprYosMmQ", "title":"Graphics Heavy Productions", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"M2rhc7mPqWI", "title":"Tom Joined Snapchat And Surprisingly He Likes It", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"_JQDc9fNWtw", "title":"People Bought Weird Things With Our Amazon Affiliate Link", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"k8D0EmoHClM", "title":"Books We've Read That You Might Like", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"kiKy2VCKJQI", "title":"Running Live Events: Twelve Minutes of Unfocused Rambling", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"mKo1WHPL2sc", "title":"We Loved The 90s", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"mSPhclmRzck", "title":"The Second Greatest Prank Tom Ever Pulled (feat. Tim)", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"pD14BluqmsM", "title":"That Time We Went To Eurovision with Tim", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"QZCWoYKVWSU", "title":"The Technical Difficulties Q&A with Gary and Chris", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"JQGQpGJcXIY", "title":"We Visited Some Big Science", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"9a5jY7544wk", "title":"Tom Interviewed Edward Snowden And There's No Video Of It", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"GwCZapqViCo", "title":"Things To Do In London: The Ones You Might Not Know", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"LcUoVZwLUOE", "title":"Editing: Why Game On & Citation Needed Take So Long", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"u1KEr7mRyUg", "title":"The Ballad of Mad Cap'n Tom, Part 2", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"Dyy41yAs8nc", "title":"Matt Bought A DJI Osmo And It's Surprisingly Good", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"wNIMMgcifqs", "title":"The Kit List: What We Use To Make Videos", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"KCR2kHrr4oA", "title":"We Got Pulled Over By The Estonian Military", "lat":"57.9123", "long":"27.7183", "category":"ParkBench", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"oFrh8LozkAA", "title":"Tom Fell Through A Frozen Lake In Estonia", "lat":"59.226687", "long":"24.195815", "category":"ParkBench", "comment":"The frozen lake", "status":"mapped", "internal_comment":""},
{"id":"oFrh8LozkAA", "title":"Tom Fell Through A Frozen Lake In Estonia", "lat":"59.588718", "long":"25.612841", "category":"ParkBench", "comment":"The submarine base", "status":"mapped", "internal_comment":""},
{"id":"AhqNMb0fOJU", "title":"The Lies of Lenses: Behind The Scenes In Sheerness", "lat":"51.440326", "long":"0.781087", "category":"ParkBench", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"z148F3o6FAQ", "title":"North vs South", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"bzoD3pQoAIQ", "title":"Travel: Why Matt's Tired And How Tom Gets About So Much", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"0vFbJXd59iU", "title":"That Time We Bought A Pair Of Ducks", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"ztYapweHD3g", "title":"The Ballad of Mad Cap'n Tom: Part 1", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"JkO8_xdySHg", "title":"Looking Back At Two Drums And A Cymbal, Seven Years Later", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"AQMBq_fxMO0", "title":"Producers and Directors: What Do They Do?", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"8SZCGpzNx4o", "title":"Why We Bleep Some Swearing", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"R6MVaWr-XTk", "title":"How Did You Get Where You Are, Working \"With Computers\"?", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"-O355FuraDY", "title":"The Matt Gray High Five Face Off, Six Years Later", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"p4SoSBo_nsI", "title":"Why Does Tom Always Wear Red T-Shirts?", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"igg3XHl1wAc", "title":"What's A British Christmas Like?", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"w04WmOzK4UY", "title":"The Economics of YouTube: How Do You Support Yourself?", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"jtZku8qpwKI", "title":"Tales of the Unexpected: Gastric Distress", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"QxuljDAAafw", "title":"Breaking The News, Six Years Later", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"RT4EhX8F4nw", "title":"The Finnish-Russian Border, and a Conveniently Placed Hut", "lat":"60.958795", "long":"28.536687", "category":"ParkBench", "comment":"Bench location", "status":"mapped", "internal_comment":"Was wondering where this bench is, so looked for it on the map. Wasn't listed, and found it myself."},
{"id":"dvr0LzEb0ww", "title":"Mevea Simulation and a Finnish Steelworks: Behind The Scenes", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"4uC3S9m1hJs", "title":"The End of Emojli: The Post-Mortem", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"id":"Fl-TnkmhTOM", "title":"Welcome to Matt and Tom's Park Bench", "lat":"", "long":"", "category":"ParkBench", "comment":"", "status":"open", "internal_comment":""},
{"comment":"//Videos from Tom's second channel: Tom Scott plus"},
{"id":"MvbAEEBLva8", "title":"It's time to terrify my production team.", "lat":"50.10177", "long":"-122.93614", "category":"Plus", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"ZmWREtcDVBE", "title":"Who's faster around London: a taxi driver or a GPS?", "lat":"51.53788", "long":"-0.10538", "category":"Plus", "comment":"Location of the final meeting point", "status":"mapped", "internal_comment":""},
{"id":"qvot0oeaH_4", "title":"Tom Scott vs TomSka: who is the best Tom?", "lat":"", "long":"", "category":"Plus", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"uYLwEcxsDkI", "title":"I chased the Jet Lag team around London", "lat":"51.51616", "long":"-0.11613", "category":"Plus", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"S9GJRC5XSXc", "title":"I'm not scary. Can I terrify someone in a haunted house?", "lat":"28.33026", "long":"-81.51611", "category":"Plus", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"AbTDzPUDxqY", "title":"I'm not a pilot. Can I land a 737?", "lat":"53.40935", "long":"-6.23557", "category":"Plus", "comment":"Facilities of the Airline Flight Academy, not available for public visits though.", "status":"mapped", "internal_comment":""},
{"id":"GdxFY_wtiOI", "title":"We drove from Pratt's Bottom to Balls Cross.", "lat":"51.33898", "long":"0.11234", "category":"Plus", "comment":"Pratt's Bottom", "status":"mapped", "internal_comment":""},
{"id":"GdxFY_wtiOI", "title":"We drove from Pratt's Bottom to Balls Cross.", "lat":"51.28115", "long":"0.00413", "category":"Plus", "comment":"Titsey Viewpoint car park", "status":"mapped", "internal_comment":""},
{"id":"GdxFY_wtiOI", "title":"We drove from Pratt's Bottom to Balls Cross.", "lat":"51.27978", "long":"-0.27450", "category":"Plus", "comment":"The Cock Inn", "status":"mapped", "internal_comment":""},
{"id":"GdxFY_wtiOI", "title":"We drove from Pratt's Bottom to Balls Cross.", "lat":"51.05313", "long":"-0.30478", "category":"Plus", "comment":"Huxley’s Birds of Prey Centre", "status":"mapped", "internal_comment":""},
{"id":"GdxFY_wtiOI", "title":"We drove from Pratt's Bottom to Balls Cross.", "lat":"51.02727", "long":"-0.58976", "category":"Plus", "comment":"Balls Cross (approximate location of the sign)", "status":"mapped", "internal_comment":""},
{"id":"NuEgjAMfdIY", "title":"He tracked me with an AirTag. Now it's my turn.", "lat":"52.95431", "long":"-1.14994", "category":"Plus", "comment":"The starting point of the chase.", "status":"mapped", "internal_comment":""},
{"id":"JYsDN6-XRrc", "title":"I gave my producer an actual tattoo.", "lat":"", "long":"", "category":"Plus", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"nEU3gajt5aA", "title":"We tried the Hot Ones sauces. It was painful.", "lat":"", "long":"", "category":"Plus", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"0sowY00Ld_Y", "title":"I tried professional wrestling. It hurt.", "lat":"", "long":"", "category":"Plus", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"LN1CdJxY2_I", "title":"I've never ridden a horse, but we're trying jousting anyway.", "lat":"52.29826", "long":"-1.57301", "category":"Plus", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"RhOTMyzTDJw", "title":"I tried tightrope walking, and it was terrifying.", "lat":"51.154499", "long":"-2.513184", "category":"Plus", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"FU9J6mrKE28", "title":"I can't cook, but the person in my ear can.", "lat":"", "long":"", "category":"Plus", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"-BdZPFzH2JY", "title":"I'm scared of rollercoasters. Can I get over my fear?", "lat":"52.98701", "long":"-1.88282", "category":"Plus", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"Tvflpm-shoY", "title":"I'm really bad at flying a hovercraft", "lat":"52.44124", "long":"-1.03149", "category":"Plus", "comment":"Location of the Axceler-8 Hovercraft Centre", "status":"mapped", "internal_comment":""},
{"id":"qG04nqjL_iA", "title":"This cave kicked my ass. I went back for a rematch.", "lat":"53.34025", "long":"-1.77894", "category":"Plus", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"T4tcZAduiVk", "title":"I tried herding sheep, and the sheep won.", "lat":"", "long":"", "category":"Plus", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"icQmJ4Ty0Os", "title":"Tom Scott gets set on fire (by an expert stunt team)", "lat":"", "long":"", "category":"Plus", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"GmC05wOc5Dw", "title":"Can you stalk someone with an Apple AirTag?", "lat":"", "long":"", "category":"Plus", "comment":"", "status":"no coordinates", "internal_comment":"There is no point in mapping the various places that Tom went by on his chase"},
{"id":"EwXx1AgEVA0", "title":"I tried to make a mug, but I couldn't handle it", "lat":"", "long":"", "category":"Plus", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"gmqUvDGRKhk", "title":"Beardyman remixes Tom Scott's voice into hyperpop", "lat":"", "long":"", "category":"Plus", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"9GxXjTQSrLU", "title":"I have no athletic skills. I tried parkour.", "lat":"55.97219", "long":"-3.18452", "category":"Plus", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"rs1WF2SkjuY", "title":"She's blind. I'm blindfolded. We're going to fly a plane.", "lat":"51.32285", "long":"-0.84084", "category":"Plus", "comment":"Aerobility at Blackbushe Airport, where Lucy and Tom flew from", "status":"mapped", "internal_comment":""},
{"id":"7EwRD6SzXws", "title":"Playing electric-shock Operation vs an actual doctor", "lat":"51.50505", "long":"-0.08852", "category":"Plus", "comment":"Location of The Old Operating Theatre Museum and Herb Garret, where the video was filmed", "status":"mapped", "internal_comment":""},
{"id":"HZCwg_9zq2A", "title":"We made hot sauce ice cream. It might have been a mistake.", "lat":"", "long":"", "category":"Plus", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"HwuwgJR2Qg8", "title":"Jill Bearup throws Tom Scott through a window", "lat":"", "long":"", "category":"Plus", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"2QKPQ6JYVhU", "title":"Can auto-tune make me a good singer?", "lat":"", "long":"", "category":"Plus", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"P7GKK3liv8M", "title":"I can't ride a bike. How fast can Mike Boyd teach me?", "lat":"", "long":"", "category":"Plus", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"TaFTKRjMY68", "title":"I regret being the host of this | Tom Scott, Matt Parker, dodie, and Sophie Ward play No Thanks", "lat":"", "long":"", "category":"Plus", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"e2HUg144liM", "title":"I tried blacksmithing and only got slightly burned", "lat":"", "long":"", "category":"Plus", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"Z-iNAyu-ejo", "title":"I don't like coffee. Can James Hoffmann change that?", "lat":"", "long":"", "category":"Plus", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"9KOZUw_Ah8w", "title":"I tried caving and found out I'm very bad at caving", "lat":"53.34019", "long":"-1.77842", "category":"Plus", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"rK2locyo-Pc", "title":"non-extreme, entirely normal $0,000 game of Skull", "lat":"", "long":"", "category":"Plus", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"N9OKVCt8dOM", "title":"I tried aerobatics with Jay Foreman and neither of us could handle it | Tom Scott plus", "lat":"52.08255", "long":"0.05880", "category":"Plus", "comment":"Location of the British Aerobatic Academy in Fowlmere", "status":"mapped", "internal_comment":""},
{"id":"d9zHO6Lh2zY", "title":"Tom Scott plus: the new second channel", "lat":"", "long":"", "category":"Plus", "comment":"", "status":"no coordinates", "internal_comment":""},
{"comment":"//Videos from Tom's, Gary's, Chris's, Matt's (second) channel: The Technical Difficulties"},
{"id":"egcruMiZLso", "title":"That hippo's gonna fly. ■ Reverse Trivia 1x04", "lat":"", "long":"", "category":"TechDif", "comment":"", "status":"open", "internal_comment":""},
{"id":"vV_CdR_tHAA", "title":"Real commitment to the bit. ■ Reverse Trivia 1x03", "lat":"", "long":"", "category":"TechDif", "comment":"", "status":"open", "internal_comment":""},
{"id":"GhZ7q7CBTAI", "title":"A wet place in the south. ■ Reverse Trivia 1x02", "lat":"", "long":"", "category":"TechDif", "comment":"", "status":"open", "internal_comment":""},
{"id":"-1B-1EYsLk4", "title":"Wedge a bike up 'em. ■ Reverse Trivia 1x01", "lat":"", "long":"", "category":"TechDif", "comment":"", "status":"open", "internal_comment":""},
{"id":"OwQwz07-DFc", "title":"Gary ends the season with a banger", "lat":"53.9451", "long":"-1.09274", "category":"TechDif", "comment":"Knavesmire Butchers", "status":"mapped", "internal_comment":""},
{"id":"G1yQsPI5ub0", "title":"Matt tries not to fall over", "lat":"51.52054", "long":"-0.20484", "category":"TechDif", "comment":"Skatepark BaySixty6", "status":"mapped", "internal_comment":""},
{"id":"6CJZ5BwpuRk", "title":"Tom becomes the Mayor of Hell", "lat":"42.43446", "long":"-83.98596", "category":"TechDif", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"nUf8-P3d5mk", "title":"Chris does drag", "lat":"", "long":"", "category":"TechDif", "comment":"", "status":"no coordinates", "internal_comment":""},
{"id":"AL0ls_UpT8w", "title":"Gary makes a very loud noise", "lat":"59.85400", "long":"-1.27462", "category":"TechDif", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"B84B4VMs09k", "title":"Chris moves a boat down some steps", "lat":"53.85611", "long":"-1.83802", "category":"TechDif", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"ULoZP4GIcbg", "title":"Tom takes a walk up a hill", "lat":"63.41846", "long":"-19.01008", "category":"TechDif", "comment":"The Icelandic Lava Show", "status":"mapped", "internal_comment":""},
{"id":"ULoZP4GIcbg", "title":"Tom takes a walk up a hill", "lat":"63.8989", "long":"-22.2486", "category":"TechDif", "comment":"The volcano Tom wanted to watch", "status":"mapped", "internal_comment":""},
{"id":"eiTuwQGImNo", "title":"Matt has one hour to hover a helicopter", "lat":"50.86022", "long":"-0.75505", "category":"TechDif", "comment":"Elite Helicopters at Goodwood Aerodrome", "status":"mapped", "internal_comment":""},
{"id":"UV5B9jqxvGs", "title":"Chris puts his beard in significant peril", "lat":"", "long":"", "category":"TechDif", "comment":"", "status":"no coordinates", "internal_comment":"Chris said 'undisclosed location', so I assume he wouldn't want this to be mapped, even if someone figures out, where exactly he was."},
{"id":"-BBe7NNIqGo", "title":"Matt gets angry at some clay", "lat":"51.58099", "long":"-0.02489", "category":"TechDif", "comment":"approximate location of the pottery studio from Jo Davis", "status":"mapped", "internal_comment":""},
{"id":"Q1YXekapPdA", "title":"Tom fulfills a childhood dream", "lat":"51.42380", "long":"-0.13112", "category":"TechDif", "comment":"", "status":"mapped", "internal_comment":""},
{"id":"inIX6XbDjjU", "title":"Gary cooks bacon on a steam engine's firebox", "lat":"53.829437", "long":"-1.948933", "category":"TechDif", "comment":"", "status":"mapped", "internal_comment":""},