-
Notifications
You must be signed in to change notification settings - Fork 0
/
data_explode.csv
We can't make this file beautiful and searchable because it's too large.
3674 lines (3583 loc) · 823 KB
/
data_explode.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
id,longitude,latitude,address,postcode,comments,status
1563,-1.664528,53.817094,Springfield Commercial Centre Pudsey West Yorkshire,LS28 5LY,Charged via prior appointment only whilst visiting client on site. Very useful facility to have for destination charging.,['Unknown status']
1563,-1.664528,53.817094,Springfield Commercial Centre Pudsey West Yorkshire,LS28 5LY,"I have just got a electric car, how do I pay at this point?",['Unknown status']
1563,-1.664528,53.817094,Springfield Commercial Centre Pudsey West Yorkshire,LS28 5LY,All good. Hard to find (it's next to Tarte & Berry and Leeds Karate Academy). On site cafe closed all week though :(,['Unknown status']
2451,-1.665348,53.803221,7 Richardshaw Lane Pudsey West Yorkshire,LS28 6BN,"Admin, location type 'restaurant' please",['Unknown status']
2451,-1.665348,53.803221,7 Richardshaw Lane Pudsey West Yorkshire,LS28 6BN,Charger bay blocked by staff vehicles when I had food here,['Unknown status']
2451,-1.665348,53.803221,7 Richardshaw Lane Pudsey West Yorkshire,LS28 6BN,Successful charge and successful coffee,['Unknown status']
2451,-1.665348,53.803221,7 Richardshaw Lane Pudsey West Yorkshire,LS28 6BN,Great place and people.,['Unknown status']
3102,-1.569375,53.78715,Domestic Road Leeds West Yorkshire,LS12 6HG,Another one thats opening hours only,"['Unknown status', 'Unknown status']"
3103,-1.530569,53.748486,Holme Well Road Leeds West Yorkshire,LS10 4TQ,"Checked in on BP Pulse app. Failed first time, worked on second attempt.","['Available', 'Available', 'Available', 'Charging']"
3103,-1.530569,53.748486,Holme Well Road Leeds West Yorkshire,LS10 4TQ,"I'd like to assure you, this was a temporary issue caused by our recent server migration. Having looked into this further, I can see this charging unit is back online and in full working order. Marty^","['Available', 'Available', 'Available', 'Charging']"
3103,-1.530569,53.748486,Holme Well Road Leeds West Yorkshire,LS10 4TQ,Device A charges for few seconds and then stops,"['Available', 'Available', 'Available', 'Charging']"
3103,-1.530569,53.748486,Holme Well Road Leeds West Yorkshire,LS10 4TQ,DPD loves this charge point. They blocked three chargers and the final one is ICEd...,"['Available', 'Available', 'Available', 'Charging']"
3103,-1.530569,53.748486,Holme Well Road Leeds West Yorkshire,LS10 4TQ,Got 6.6kW. Can't see any signage about maximum stay in carpark.,"['Available', 'Available', 'Available', 'Charging']"
3103,-1.530569,53.748486,Holme Well Road Leeds West Yorkshire,LS10 4TQ,Free with BP Pulse app,"['Available', 'Available', 'Available', 'Charging']"
3103,-1.530569,53.748486,Holme Well Road Leeds West Yorkshire,LS10 4TQ,Socket 2 ICE'D by Vauxhall Mokka X. Informed driver that the space is for electric car charging and she just said 'yep' and walked into the store! Totally arrogant with no respect to electric car drivers.,"['Available', 'Available', 'Available', 'Charging']"
3103,-1.530569,53.748486,Holme Well Road Leeds West Yorkshire,LS10 4TQ,#bppulse successful charge 👍,"['Available', 'Available', 'Available', 'Charging']"
3103,-1.530569,53.748486,Holme Well Road Leeds West Yorkshire,LS10 4TQ,"Unable to start a charge via the app. When trying again, app immediately says there’s an error.","['Available', 'Available', 'Available', 'Charging']"
3103,-1.530569,53.748486,Holme Well Road Leeds West Yorkshire,LS10 4TQ,Report on Twitter mentioning Asda Leeds city council and Bp pulse,"['Available', 'Available', 'Available', 'Charging']"
3103,-1.530569,53.748486,Holme Well Road Leeds West Yorkshire,LS10 4TQ,"All 4 ICED, had to ask if they'd c move. Wouldn't have minded but with kids they have the family spaces to use","['Available', 'Available', 'Available', 'Charging']"
3103,-1.530569,53.748486,Holme Well Road Leeds West Yorkshire,LS10 4TQ,ICED by an idiot in a Range Rover,"['Available', 'Available', 'Available', 'Charging']"
3103,-1.530569,53.748486,Holme Well Road Leeds West Yorkshire,LS10 4TQ,Iced by a polo,"['Available', 'Available', 'Available', 'Charging']"
3103,-1.530569,53.748486,Holme Well Road Leeds West Yorkshire,LS10 4TQ,Today 1pm all 4 bays ICE went to aldi!,"['Available', 'Available', 'Available', 'Charging']"
3103,-1.530569,53.748486,Holme Well Road Leeds West Yorkshire,LS10 4TQ,2bays iced,"['Available', 'Available', 'Available', 'Charging']"
3103,-1.530569,53.748486,Holme Well Road Leeds West Yorkshire,LS10 4TQ,"All good, right at the front of store and coned off... spot on!","['Available', 'Available', 'Available', 'Charging']"
3103,-1.530569,53.748486,Holme Well Road Leeds West Yorkshire,LS10 4TQ,Working and cones out presumably to stop ice parking here - so all good !,"['Available', 'Available', 'Available', 'Charging']"
3103,-1.530569,53.748486,Holme Well Road Leeds West Yorkshire,LS10 4TQ,"All working.
However 3 of the 4 bays are I.C.Eed","['Available', 'Available', 'Available', 'Charging']"
3103,-1.530569,53.748486,Holme Well Road Leeds West Yorkshire,LS10 4TQ,Working. 4 charging points,"['Available', 'Available', 'Available', 'Charging']"
3103,-1.530569,53.748486,Holme Well Road Leeds West Yorkshire,LS10 4TQ,Working well :),"['Available', 'Available', 'Available', 'Charging']"
3103,-1.530569,53.748486,Holme Well Road Leeds West Yorkshire,LS10 4TQ,Charge and shop free service thanks Asda,"['Available', 'Available', 'Available', 'Charging']"
3103,-1.530569,53.748486,Holme Well Road Leeds West Yorkshire,LS10 4TQ,Nice and easy as it should be working all ok,"['Available', 'Available', 'Available', 'Charging']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,Back available now. Decent levels 100kW+,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,"BOTH chargers cordoned off due to building roof slipping. No access to these chargers for the foreseeable, despite still showing up as available.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,Around 115kW with 2 cars but only 2 stations so had to wait 20 mins for a slot.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,"Chargered no issue, but only got 53kW max, so ended up here a lot longer than anticipated.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,"This scum bag parked his model 3 for 15mins to make a phone call while not charging while people were queueing.
Turns out it’s not just ICE drivers","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,Rate dropped today but Tesla ranger came out and now back to normal.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,45kW. Was another car at same time.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,Slow charging says I'll be here for an hour 🙄,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,Getting around 45KW max. (Nobody using other charger. ),"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,Best kept secret!,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,"Used this charger yesterday, decent speed of 75-90kwh.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,"Slow charge today, trickling in at 52kw","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,Working fine.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,"95kw peak rate, easy location to get to off M62, Starbucks etc in hotel. Only 2 stalls though.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,Great,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,charger in corner of car park. Pin on Tesla navigation is accurate. 130kw so getting max charge speed.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,"Working, and quick charge.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,No only Tesla Vehicles,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,Do these work for none Tesla cars?,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,All good 👍,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,Hard to find! Drive past reception and turn left,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,All open & working. Just follow through to the back of the car park to find the chargers.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,All Good,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,All fine. Cars charging on both stalls.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,Up and running again,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,"Working again, all chargers in use","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,Open again,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,Open again checked today,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,no access to site. other CCS chargers nearby,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,Station temporarily closed due to COVID-19,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,Charging point 1A successful charge this morning,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,"CCS working on both points, however the Tesla supercharger is only working on 1 unit, seems like a cable issue.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,Not working,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,successful charge but still 64kw max,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,Won’t charge - Tesla Model X - Red Light in car,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,Can Other EVs Charge at this point?,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,124kW.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,very slow charger and also very busy. waited 40 mins and then had to charge for over an hour for half a charge.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,low charging speed,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,"My first experience of Tesla Superchargers. Everything was fine, got from 18% to 90% in the time it took us to get a sandwich and a drink 👍","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,Charged fine yesterday but only at 60kwh,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,Connectors working well,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,wont unlock,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,Working yesterday,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,Only getting 50kw across the two bays,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,Only getting maximum 31kw,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,Working great.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,Quiet tonight. Both free. Other Teslas parked in car park. Bar has all changed and is now quite unpleasant. A loud chapel to lager and sport.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,Works a treat!,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,ICE’d x2.... hotel staff less than helpful,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,"even though on my own, highest I could get was 93 (on both sides). Rang it in to Tesla who have raised a ticket","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,"Both fine, CCS cables on both","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,Skip lorry parked in one bay. Loads of free spaces elsewhere,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,if any of you good Tesla people have the chademo adapter there are are two Alfa power rapids nearby. This supercharger does indeed get busy.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,"Charging at 64 kW, with another model S charging at the same time. Lucky to get in, been checking all day and it’s been busy non-stop.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,Slow supercharging on 1b,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,fixed as of 5/9/18,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,1b now working. Tesla confirmed repair and I've tried it,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,1B very slow. reported to Tesla,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,Reported connector issue on B charger again as still not fixed. Charge fluctuating and really slow. A charger works fine.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,1b charger pulsing 6-26 kw. Reported 19/8.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,116kw,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,Really slow today!!,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,Not feeling and fast tonight. 300mi/hr,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,Nice fast charge today.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,"There are 2 chargers in this place. A little hard to find at the back of the hotel. Sometimes it’s a little slow as it peaks 60kwh, no matter your charge level.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,100kw and both bays free,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,Can you charge a nine Tesla on this charger,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3364,-1.585622,53.732774,Capitol Boulevard Leeds West Yorkshire,LS27 0TS,Successful fast charge last night. Short wait for free charge point.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3578,-1.543625,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,Price now 0.55p per kW/h,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3578,-1.543625,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,"Overnight charge £10 plus parking charge
Good clean car park","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3578,-1.543625,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,Now needs a Citicharge app to charge - works fine.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3578,-1.543625,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,Charged 50% in 8 hours only pulling 3kW,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3578,-1.543625,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,Late a at night took me 20 mins to find the right slot to scan the card to start the charge. Very poor and confusing layout of instructions.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3578,-1.543625,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,"Measurement is way off. Charged for 34.22kWh. But capacity in vehicle as I drove of only 23.1kWh, suspect I got not much more than 10 kWh so that's turned out very expensive. £8.60 charge. 4 hours park costs£10.50. sadly I was there an extra 30 minutes over the four, paid £13 for the up-to-6 hour rate. Other user couldn't get the system to work to register his ticket. I joked with him that worst case he'd get no charge for the electric, but I sense I may have paid his bill too, and who knows how many other vehicles it's charged!!! Other car parks with chargers are available nearby, give them a try ahead of using this as last resort. Unit I used turned out to be unlucky number 7. Units 5 & 6 were giving the other user grief. Nice idea but system really needs a full overhaul.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3578,-1.543625,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,Charging at 2kw so not very quick. Had to get a ticket from machine (booked parking online) but informed it will be refunded minus charge costs on exit.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3578,-1.543625,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,Process was very simple and many chargers were available. Although I didn't monitor closely I very much doubt I was getting the 7KW/H claimed. It felt more like 3 and was definitely a lot slower than my home charger of the same rate.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3578,-1.543625,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,"A bit pricey but efficient, if you can find the bay. Be helpful if chargers we signed from entrance","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3578,-1.543625,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,Fantastic set up here really impressed,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3578,-1.543625,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,Disappointing today. Did not give 7kw. Machine claimed 7.7kw but after 4 hours added only about 10kw. Another used warned me the rapid here have locked the cable in for over an hour for previous user and charged 2x £29 and still refused to connect.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3578,-1.543625,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,Turn up. plug in. present parking card at machine near bay 1 and walk away. the charge cost is then added to your parking ticket. Awesome.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3578,-1.543625,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,Successful Charge,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3578,-1.543625,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,Successful charge,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3578,-1.543625,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,"Clear instructions, and charging is added to your parking charge so no apps or anything required beside paying for parking with a debit card. How it should be done!","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3578,-1.543625,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,"What a fantastic set of charge points! 13 posts, plus two rapids and three Tesla bays. As other comments have said, go up the entrance ramp to floor one, up again to two then down to zero. Lots of lovely green lighting greets you. Clear charging instructions made hooking up a breeze. Been parked for about three hours and charging and parking cost £10 ish.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3578,-1.543625,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,Great facility. Fully charged on my return.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3578,-1.543625,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,"Located on Floor 0, go down a floor as you enter car park.
Overcharged, states 25p kWh, charged me £2.60 for approx. 5kWh.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3578,-1.543625,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,Thanks for the pricing info! We've now updated this point to help other EV users.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3578,-1.543625,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,25p/kW,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3578,-1.543625,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,working fine. Didn't seem to get charged when paying for parking!,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3578,-1.543625,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,All 13 machines now working (plus the three tesla ones opposite). No card or app required. Pay for charging and parking,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3578,-1.543625,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,Interesting device,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3578,-1.543625,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,Thanks for this information. The devices at this location have been updated.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3578,-1.543625,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,All the type 2 sockets are currently inoperable due to electrical work being done (Friday 22nd Dec should be OK). The three tesla sockets are fine. Also admin please update these units to be 13 posts (each with just one socket each),"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3578,-1.543625,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,Seemed to charge my VW Golf GTE to only 50% capacity in 3 hours. Queried with management,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3578,-1.543625,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,Seemed to charge my VW Golf GTE to 50% capacity only. Queried with management.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3578,-1.543625,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,Can I charge my Mitsubishi outlander phev here?,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3578,-1.543625,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,can i charge my Mitsubishi outlander phev here?,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3578,-1.543625,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,Great location! 239v and 32amps,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3578,-1.543625,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,Successful charge. £5 for parking £3 for charge.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3578,-1.543625,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,"5hr charge today for £7.50. If you are in a tesla, drive very slowly at top of first ramp unless you raise suspension. You will scrape front floor at anything other than crawling speed.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
3578,-1.543625,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,"£2.50 he plus 20p a kW
Weekends it's £1 a hour plus 20p a kW","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,This charger appears to be no longer free to charge. Was 25p kwhr this morning on podpoint,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,"Didnt charge, dont know why","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,All good,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,All good,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,All good,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,All good,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,Looks ok but not charging,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,"Could someone tell me what you mean by “iced”
I’ve seen a few comments saying that the parking was ‘ICEd’ and I’m just a bit confused","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,Was turned out at first but notified Aldi staff who turned power back on. Got successful 30 minute charge at 6.8 kW,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,"A works, B has no power. Also, power is turned off Sunday afternoon so neither work.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,Not working. Reported for a few weeks now. Red light flashing. Both A and B,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,Working fine. Just slow!,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,Plug B still not working,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,"Plug B not working. Plug A ok, and use this one as it’s 7kw, the doug-Carl is only 3kw","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,Same again today for 2/4 spaces,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,Charge not starting. Car app reports immediate interruption,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,these two bays are always iced. Aldi makes zero efforts to stop this. shoppers quite frankly don't give a ****.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,All other spaces ice’d atleast once during charge but good charge :),"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,In a sorry state but it works. Bays not marked so lots of icing.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,Both these chargers do not work. Each allow you to plug in and you believe your car is being charged. However this is definitely not the case. Can someone please let me know how to report this as it is in an ideal location?,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,"Successful charge, but had to reconnect every 20 mins or so","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,A still broken. The other post is ICEd,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,charged for 45 mins worked fine. the light was white before I plugged in and initiated a charge,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,Power completely dead to both charging points,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,A does not work,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,Doug now works!,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,Doug now works!,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,Used this evening. The other bay (one of the rapids) was ice'd when I got there.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,Bay 2 iced,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,Seems OK. charge post is a bit wobley,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,I have been charging here for about 15 minutes and the podpoint next to be has been ICED twice.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,Doug is still defective,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,Quick top up whilst shopping,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,You should update Bria-Roxy to 3kW. Both posts output 3kW.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,B works,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,Still defective on Doug. Carl side is ok,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,Works. To bad that most of the bays are ICEd,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,That happens a lot. Two of the EV charging spots were ICEd last week.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,Iced up.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,No juice from A but B works.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,"Doug-Carl PG-80163: A down, B up. Bria-Roxy PG-80160: A&B both up but both only 3kW not 7kW as stated.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,This post (nearest the store) works well.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,"Doug still poorly
Have tweeted pod point.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,Both sides of bria-roxy work fine,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,A side of doug-carl is poorly. Other three sockets are fine,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,"A side of doug carl still poorly, other three here work fine. Remember to confirm in app","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,Correction - all now PP RFID,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,Looking in Android most PP OC charge points now have network PP RFID!,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,Admin please change network to PodPoint open charge,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,Click the arrow in zap map and it should transfer coordinates to google maps or safari (whatever your phone uses) and direct you straight there.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,Thanks for letting us know. The charge point has now moved to a more accurate position.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,there is a possibility the postcode given here is wrong. Make your own investigations before relying on this site for a charge,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,"I was here today, after following sat nav to the postcode. All I could see was a building site. No Aldi, no car park, no charge points.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,site decommissioned,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,charged on 3 kWh charger successfully. 7 kWh chargers ice'd. no markings on electric charging spaces,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,charge for 1 hour around 20% on e-nv200. ICEd driver see EV don`t even care park anyway.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,"Works fine on 12th Feb. No app required and free to charge. Lots of problems with ICE cars blocking bays at this Aldi, but I have always found one of the four bays free.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,"Both devices are actually 3kw, regardless of the labeling","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,"Successfully charges my Zoe (R240) @ 3.3kw (as per CanZE) on all 4 sockets (2 posts, 2 sockets per post). First post is meant to charge at 7kw so not sure why it's only letting me pull 3.3kw.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,Currently charging over bria roxy (the one that was previously dead). Both it and Doug-Carl now listed in the podpoint app. Can someone confirm for definite both are 7kw?,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,Device Bria-Roxy has been removed. Doug-Carl has been upgraded to 7kW.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,Thanks Admin. I wonder if you would like to note the pod point numbers for each unit too? The 7kw one that's dead is bria-roxy PG-80160 and the 3kw one that works is Doug-carl PG-80163. Also I've reported the fault to both Aldi management and to Podpoint again today.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,"Hi James, thanks for reporting this and apologies for missing your earlier message. This has now been corrected.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,Please will admin correct these posts. One on the left should have two blue sockets (presently out of order) and one on the right two yellow ones (both presently working),"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,Pod point app (but not active yet so just plug in for free),"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,Left hand post (two 7kw type 2) totally dead. Right hand post (two 3kw type 2) works just by plugging in; no app needed. Neither post has a smart card reader so (when eventually enabled) will be app only. As already said these don't appear in the pod point android app at all yet.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,"What type of pump is this one Spike please? ChargeMaster? Is it free to use? (Sorry, I'm new to EV)","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,Only right hand post is working. Left had post not showing any signs of life,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6025,-1.542802,53.776626,Tunstall Road Leeds West Yorkshire,LS11 5JS,Aren't showing on the App so can't use. When I took a look all four bays were ICE'd,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6596,-1.574181,53.762762,Milshaw Park Lane Leeds West Yorkshire,LS11 0DL,Apparently these chargers are for HSBC office staff only,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
6596,-1.574181,53.762762,Milshaw Park Lane Leeds West Yorkshire,LS11 0DL,what card do you need to activate ?,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,"Doesn't work, looks from past comments it has been this way for a long time","['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,Seems a connection error,"['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,Charger out of order,"['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,Plug B seems to be having a problem but A works ok.,"['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,"free coffee & WiFi, friendly staff, nice place to spend 30 mins","['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,All ok. Plug needs a wiggle to click the lock in place. Very welcoming people and great coffee,"['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,Works fine but make sure you waggle the plug to make sure it’s locked in. Free coffee and drinks inside,"['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,All ok,"['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,10 min chademo charge earlier. closes 4pm on Sunday,"['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,"works fine, I hadn't attached the plug properly (staff showed me how to make sure it connects properly)","['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,"couldn't start a charge, will ask the staff in the dealership","['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,The charging fine. Sometimes need to wiggle the plug to get it to lock,"['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,rapid poorly. plenty of other Rapids nearby now.,"['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,"Charger is currently out. Awaiting an engineer to fix it. Apparently it might take two days to fix, so nothing till Wednesday 6th March? I had to wait an hour and chase people to get this update.","['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,good service. left vehicle with them to go shopping.,"['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,Very helpful staff. Charged there yesterday and mentioned I was over the road in Northern Snooker Centre if they needed me to move it. Later in the day they came over to check I had got my car because they were about to close.,"['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,"Nice charge on the chademo, thank you nissan leeds","['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,chademo all ok. and a free coffee as well!,"['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,Charging no problems,"['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,Charging fine,"['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,Successful charge.,"['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,Chad was fine this am.,"['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,Out of order,"['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,Lovely dealership with coffee & cookies. Tempted to swap the leaf for a GTR. Oh & chademo works but needs to be inserted firmly.,"['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,New Leaf taking 107 amps,"['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,Very friendly staff,"['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,All three doing their thing quite happily,"['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,All good today. Ensure the yellow pin goes OUT else it will error.,"['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,Rapid is fine. Just need to ensure that when chademo head inserted the yellow button comes OUT. Did it to me then i remembered about the button,"['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,"Turn up for the rapid, sadly the rapid is out of action ( card error) spoke to Nissan they apologise and did there best to help me, put me on a 7k but my car only has a 3kw board on it","['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,All working today. Initially errored but worked on second attempt.,"['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,charge unavailable card error displayed on the screen. Reported to dealer who was already aware and trying to get it fixed. 7kW charger working though,"['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,"Have charged here a few times without any problems, but found the gate coming down when i pulled up this evening. weekdays it's open until 19:30, but turns out it closes at 17:30 on Saturday and apparently 16:00 on a Sunday","['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,"Bays clear when I arrived and got charged up fine, nice friendly staff ?","['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,Charged yesterday fine but had a little difficulty getting the charger going. Had to push connector in hard. Think the connector is getting worn. But free coffee so fantastic service as normal ?,"['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,Fantastic service as usual and a free coffee,"['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,No problem. Staff invited me in for a coffee.,"['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,All fine on Chademo - ring first as they have a few LEAFS and eNV200's of their own in charge,"['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,Best to call ahead and let them know you're a LEAF owner.,"['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,Trouble free charge yesterday afternoon.,"['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,"Hi James, the location has now been updated!","['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,Please change the name from Benfield Motors to Lookers Nissan Leeds and add the chademo rapid,"['Unknown status', 'Unknown status', 'Unknown status']"
7876,-1.569947,53.801329,83-85 Kirkstall Road Leeds West Yorkshire,LS3 1HS,"The rapid is in, and working!","['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,"Not a Tesla charger, need the citi charge app which after registering worked fine, 7.5kw","['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,"These are no longer Tesla chargers, but require Citicharge app and no longer free. Located on the ground level, successful charge 29/10/22, but bays very narrow.","['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,"Working but only achieved 3.6 kW, not Tesla units. Wouldn’t release cable but phoned the number on the charger and they reset it to release the cable.","['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,Very slow 2.5kw average charge. 35ppkw all full when we arrived but went back 15 minutes later and one was just freeing. Other 2 had same cars on for the time of our visit. Not tesla but citicharge and need the app loaded with a prepayment so ultimately cost me more than planned but got us out of a bind.,"['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,Good charge with no issues. Second charger out of action but other 2 working. They are not Tesla chargers though and are owned by citicharge,"['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,Does not work with tesla,"['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,Pulled 1kw for about 5 minutes then it cut out. Also expensive and requires download of a b-list app - would not recommend,"['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,"Not Tesla specific, 3x untethered 7kw bays @35p/kwh currently. Needs the CitiCharge app to activate by scanning QR code. All very easy.","['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,None working,"['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,"Successful charge but Very slow.
Left car all day as was staying in hotel. Have been hit with a £30 charge despite receipt saying £8 and no information anywhere to explain the £30 charge","['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,"Not tessla now, use city charge app. Slow but ok for a destination charge.","['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,"Tried to charge yesterday, downloaded the app but unable to add payment method at the time, poor service","['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,Very slow only 3kw,"['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,Very slow 3mph 🙄,"['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,"Now changed to CitiCharge units - needs an app, not the worst I’ve used. Charging now, but oh-so slow.","['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,"No longer Tesla charges, these have now been replaced by 3 'CitiCharge' branded EVBox chargers. Charging has to be confirmed through the CitiCharge app and is charged at £0.25 per KWh.","['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,Faulty but it had been activated with no sign to say do not use. It did charge freely but doesn't release your charging cable and had to use the fuse switch in the stairwell to release.,"['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,Slow but free,"['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,"Right hand charger, furthest from wall which is coned off. Last time I visited, I noticed that someone moved the cone and plugged into this. Today, I did the same and it worked perfectly. I’ve edited the sign to reflect this. Only works on Tesla vehicles.","['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,Now the only working connector. CitiPark explained they are working to provide more chargers,"['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,I agree and emailed CitiPark. This was their response:,"['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,Seems to have no power.,"['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,Seemed to have power but LEDs remained red and the car reported now power.,"['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,"Connector out of service today and other two occupied for hours so unable to charge, need far more chargers in this busy car park, only three is ridiculous","['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,Central charger works well,"['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,"Works for all cars the middle connection , very slow charge but ok","['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,Left hand bay wouldn’t charge my Model 3. Tried the reset switch which didn’t help. Both other bays in use.,"['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,"Get here early to bag the (popular) non-Tesla bay. It’s not what you’d call a fast charge, but a welcome one nonetheless.","['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,"First Tesla hook up, successful charge 🚘🔌😀👍🏻","['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,Works great. Desperately need more though in a car park this size with over 1000 spaces!,"['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,Successful Tesla M3 charge (right hand bay) at 18 mi/hr overnight.,"['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,Can I ask what car you charged please? I have an Outlander PHEV with a type 2 to type 1 adapter and it doesn’t seem to work so not sure if it’s the charger or if it’s not compatible with my car!,"['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,Can I ask what car you charged please? I have an Outlander PHEV with a type 2 to type 1 adapter and it doesn’t seem to work so not sure if it’s the charger or if it’s not compatible with my car!,"['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,Can I ask what car you charged please? I have an Outlander PHEV with a type 2 to type 1 adapter and it doesn’t seem to work so not sure if it’s the charger or if it’s not compatible with my car!,"['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,Successful Charge at 20A Left hand Tesla Only Connector,"['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,Right hand Tesla Only Connector not working on Model3. Left Hand one OK,"['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,Charged in middle bay yesterday morning. Unless I'm missing something all three chargers are Type 2 and usable for any EV not just Teslas?!,"['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,Arrived at 7am to find all bays empty. Straight into the Non Tesla spit and charging well. There’s a sign asking you to move to another spot when full - good to see this.,"['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,Looked like it was working today as a Tesla was charging next to me.,"['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,"Hi there, got a few questions about the non-Tesla charger...
1. Is it now working again?
2. Is it a Type 2 charger?
3. Is it free to charge or is there a cost?
4. If it isn’t free, how much does it cost to charge for 3.5 hours?
Taking delivery of my first hybrid car (Volvo S90 T8) this Friday July 19 and have sent off for a discounted NHS parking card at this car park (fiver a day with the discount card, bargain!)
Any updates very gratefully received, thanks! :-)","['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,Non-Tesla in middle,"['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,Non-Tesla connection not working,"['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,parking rates,"['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,"I parked my Golf GTE in the middle bay (presumably device 2) on Monday the 27th. The bay is marked ‘Electric Vehicles’ and not ‘Tesla Vehicles’ as devices 1 and 3 are. After unplugging from a successful charge my vehicle still thought the plug was connected and wouldn’t start. Nothing I did fixed the situation and the AA had to recover the vehicle to a VW garage where it remains.
I will provide updates when I have them.","['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,Charges at approx 13 mi/hr,"['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,there are 3 chargers on the ground floor. they are all tesla destination chargers but the middle one is available for free public use. trouble is it has a lead (not a socket) with a type 2 plug on it.,"['Unknown status', 'Unknown status', 'Unknown status']"
8013,-1.530348,53.790416,Leeds Dock Multi-Storey Car Park Leeds West Yorkshire,LS10 1LE,"241v and 20amps, 13mph but the bays are too narrow for three Tesla's.","['Unknown status', 'Unknown status', 'Unknown status']"
8679,-1.543825,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,Additional info: Two of the Three chargers are working. One had a red flashing light. The other two worked great,"['Unknown status', 'Unknown status', 'Unknown status']"
8679,-1.543825,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,"Good charge. 7kw output. Arrived at 9am and was only car there, didn't seem overly tight space wise. You need to go up a level and down a level, follow the signs for citycharge, there is a dedicated charging area where all the chargers are located rather than dotted about around the carpark","['Unknown status', 'Unknown status', 'Unknown status']"
8679,-1.543825,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,Successful charge 👍,"['Unknown status', 'Unknown status', 'Unknown status']"
8679,-1.543825,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,2 tesla charging when we arrived..Very tight and had to use summons to get the car in. Good reliable charger,"['Unknown status', 'Unknown status', 'Unknown status']"
8679,-1.543825,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,No probs,"['Unknown status', 'Unknown status', 'Unknown status']"
8679,-1.543825,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,12.08.21 wouldn’t charge others working fine,"['Unknown status', 'Unknown status', 'Unknown status']"
8679,-1.543825,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,"successful charge for my Tesla 90D
well organised and on Saturday afternoon was pretty quiet","['Unknown status', 'Unknown status', 'Unknown status']"
8679,-1.543825,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,Successful charge on bay 8.,"['Unknown status', 'Unknown status', 'Unknown status']"
8679,-1.543825,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,A tesla currently charging on the middle one of three with the other two being blocked by Golf GTE. The non-tesla sockets here are currently out of order due to work being done (see other zap map entry). All on level 0 (which is up into the car park and then down again),"['Unknown status', 'Unknown status', 'Unknown status']"
8679,-1.543825,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,"It's on floor 0, to save you searching like I did! Good charge at 7kW overnight. Parking rather tight though.","['Unknown status', 'Unknown status', 'Unknown status']"
8679,-1.543825,53.802263,5 Merrion Way Leeds West Yorkshire,LS2 8BT,"Lots of charging bays, there must be 20! Successful charge. 20p per kWh!!!! All electric cars parked were not plugged in, not surprisingly.","['Unknown status', 'Unknown status', 'Unknown status']"
6548,-1.564783,53.767426,Old Lane Leeds West Yorkshire,LS11 8AG,"Could only use the BP Pulse charge, not the Engie one in the same carpark","['Charging', 'Available']"
6548,-1.564783,53.767426,Old Lane Leeds West Yorkshire,LS11 8AG,#bppulse successful charge 👍,"['Charging', 'Available']"
6548,-1.564783,53.767426,Old Lane Leeds West Yorkshire,LS11 8AG,Wouldn't authorise my BP Pulse RFID,"['Charging', 'Available']"
6548,-1.564783,53.767426,Old Lane Leeds West Yorkshire,LS11 8AG,Working fine but reported the broken led light on the right of the unit,"['Charging', 'Available']"
6548,-1.564783,53.767426,Old Lane Leeds West Yorkshire,LS11 8AG,"It isn't BP Pulse it's Engie, so I had to set up yet another account which was a pain - but charged OK in the end!","['Charging', 'Available']"
6548,-1.564783,53.767426,Old Lane Leeds West Yorkshire,LS11 8AG,Decent splash n dash,"['Charging', 'Available']"
6548,-1.564783,53.767426,Old Lane Leeds West Yorkshire,LS11 8AG,Excellent,"['Charging', 'Available']"
6548,-1.564783,53.767426,Old Lane Leeds West Yorkshire,LS11 8AG,"All good, nicely placed charger (left-hand side of car park, next to child/parent bays)","['Charging', 'Available']"
6548,-1.564783,53.767426,Old Lane Leeds West Yorkshire,LS11 8AG,Working,"['Charging', 'Available']"
6548,-1.564783,53.767426,Old Lane Leeds West Yorkshire,LS11 8AG,All Good,"['Charging', 'Available']"
6548,-1.564783,53.767426,Old Lane Leeds West Yorkshire,LS11 8AG,Used Wednesday night all good,"['Charging', 'Available']"
6548,-1.564783,53.767426,Old Lane Leeds West Yorkshire,LS11 8AG,All good as always. Pizza slice in the cafe indoors good as well.,"['Charging', 'Available']"
6548,-1.564783,53.767426,Old Lane Leeds West Yorkshire,LS11 8AG,Just one post with 2 x 7Kw sockets. Post labelled Chargemaster. Worked fine tonight and used the Chargemaster card to start and stop the charge. Charged at the full 7Kw rate.,"['Charging', 'Available']"
6548,-1.564783,53.767426,Old Lane Leeds West Yorkshire,LS11 8AG,"Successful Charge, lots of Space :)","['Charging', 'Available']"
6548,-1.564783,53.767426,Old Lane Leeds West Yorkshire,LS11 8AG,Went here however they told me they didn't have a card so had to use the Middleton one,"['Charging', 'Available']"
6548,-1.564783,53.767426,Old Lane Leeds West Yorkshire,LS11 8AG,"All fine, plugged into socket 1. Unit takes either chargemaster cards or the polar instant app","['Charging', 'Available']"
6548,-1.564783,53.767426,Old Lane Leeds West Yorkshire,LS11 8AG,"All working fine, both bays clear of ICErs.","['Charging', 'Available']"
6548,-1.564783,53.767426,Old Lane Leeds West Yorkshire,LS11 8AG,Charged today. Used the app - no issues.,"['Charging', 'Available']"
6548,-1.564783,53.767426,Old Lane Leeds West Yorkshire,LS11 8AG,All working fine. Charge bays well painted and signed,"['Charging', 'Available']"
9071,-1.562487,53.807893,Woodhouse Lane Leeds West Yorkshire,LS2 9JT,"Behind barrier as stated (so staff and official visitors only), and between the Western Lecture Theatre and Liberty Building","['Unknown status', 'Unknown status']"
9058,-1.552897,53.806329,Woodhouse Lane Leeds West Yorkshire,LS2 9JT,Currently blocked by construction in the university,"['Unknown status', 'Unknown status']"
9058,-1.552897,53.806329,Woodhouse Lane Leeds West Yorkshire,LS2 9JT,Currently blocked by construction at the university,"['Unknown status', 'Unknown status']"
9072,-1.552572,53.803947,Willow Terrace Road Leeds West Yorkshire,LS2 9JT,My wife works at the LGI would she be able to park here to charge whilst at work? Or would she need a uni permit?,"['Unknown status', 'Unknown status']"
9072,-1.552572,53.803947,Willow Terrace Road Leeds West Yorkshire,LS2 9JT,Chargepoint now fixed,"['Unknown status', 'Unknown status']"
9072,-1.552572,53.803947,Willow Terrace Road Leeds West Yorkshire,LS2 9JT,This has been reported to estates and an engineer has been booked to repair the unit,"['Unknown status', 'Unknown status']"
9072,-1.552572,53.803947,Willow Terrace Road Leeds West Yorkshire,LS2 9JT,Black bag over the top,"['Unknown status', 'Unknown status']"
9072,-1.552572,53.803947,Willow Terrace Road Leeds West Yorkshire,LS2 9JT,"Cannot get it to work despite several attempts. Tried the app, tried registering a card, tried waving a credit card in front of it. Useless app. Other cars have successfully charged there today. What am I doing wrong?!","['Unknown status', 'Unknown status']"
9072,-1.552572,53.803947,Willow Terrace Road Leeds West Yorkshire,LS2 9JT,"Both connecters ICE'd by a Uni Estates nv-200 and an e-golf, not plugged in","['Unknown status', 'Unknown status']"
9072,-1.552572,53.803947,Willow Terrace Road Leeds West Yorkshire,LS2 9JT,"Fastest “7kw” I’ve ever experienced. About 2 hours from 30% to full (52KwH Zoë ZE50). Maybe more like 22kwh? Either way, would recommend!","['Unknown status', 'Unknown status']"
9072,-1.552572,53.803947,Willow Terrace Road Leeds West Yorkshire,LS2 9JT,Maybe my first time using CYC but I couldn’t get it to start charging on connector A. I did manage to make B start but it stopped 2 minutes later.,"['Unknown status', 'Unknown status']"
9072,-1.552572,53.803947,Willow Terrace Road Leeds West Yorkshire,LS2 9JT,Both sides working fine (im leaving now - imagine the leeds uni points will be in demand due to today being freshers arrival) - todays parking code 100341,"['Unknown status', 'Unknown status']"
9072,-1.552572,53.803947,Willow Terrace Road Leeds West Yorkshire,LS2 9JT,"Socket A is not delivering any power. I did suspect this last visit, but confirmed now. Will phone CM shortly.","['Unknown status', 'Unknown status']"
9072,-1.552572,53.803947,Willow Terrace Road Leeds West Yorkshire,LS2 9JT,Both sides charging fine,"['Unknown status', 'Unknown status']"
9072,-1.552572,53.803947,Willow Terrace Road Leeds West Yorkshire,LS2 9JT,Both charging fine at present. I'm leaving shortly,"['Unknown status', 'Unknown status']"
9072,-1.552572,53.803947,Willow Terrace Road Leeds West Yorkshire,LS2 9JT,Charging up just fine,"['Unknown status', 'Unknown status']"
9072,-1.552572,53.803947,Willow Terrace Road Leeds West Yorkshire,LS2 9JT,Easy top up here,"['Unknown status', 'Unknown status']"
9072,-1.552572,53.803947,Willow Terrace Road Leeds West Yorkshire,LS2 9JT,Socket B now locks in place etc,"['Unknown status', 'Unknown status']"
9072,-1.552572,53.803947,Willow Terrace Road Leeds West Yorkshire,LS2 9JT,Connection B clicks on and off constantly when cable connected. Reported to CYC.,"['Unknown status', 'Unknown status']"
9288,-1.556111,53.807444,University Road Leeds West Yorkshire,LS2 9JT,Hoardings moved to make this charger visible. Inside barrier so staff and official visitors only,"['Unknown status', 'Unknown status']"
9289,-1.551318,53.805287,Vernon Road Leeds West Yorkshire,LS2 9JT,"Please, do not park your car in front of the charger if you don't intend to charge, it is really frustrating!","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9289,-1.551318,53.805287,Vernon Road Leeds West Yorkshire,LS2 9JT,Started charging. Seems to be free.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9289,-1.551318,53.805287,Vernon Road Leeds West Yorkshire,LS2 9JT,You don’t need an access card / membership / app - just plug in!,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9289,-1.551318,53.805287,Vernon Road Leeds West Yorkshire,LS2 9JT,Have downloaded the app but doesn’t seem to work. Have got to car to charge on the third point tried just by plugging in. Other points wouldn’t work even using the app or waving a credit card in front of it. Cannot get the one by the edge gym to work at all but other cars have managed successful charges. No idea what I’m doing wrong?! Any helpful suggestions?!,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9289,-1.551318,53.805287,Vernon Road Leeds West Yorkshire,LS2 9JT,"Bit confusing to start with, but got it working in the end. Successful charge","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9289,-1.551318,53.805287,Vernon Road Leeds West Yorkshire,LS2 9JT,Is the £1 connection fee mentioned in the description here correct?,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9289,-1.551318,53.805287,Vernon Road Leeds West Yorkshire,LS2 9JT,Doesn’t charge reported to CYC,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9289,-1.551318,53.805287,Vernon Road Leeds West Yorkshire,LS2 9JT,There are now 14 x 7kW charges at this location. All are free through Charge Your Car.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9289,-1.551318,53.805287,Vernon Road Leeds West Yorkshire,LS2 9JT,both sides of 70233 working,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9289,-1.551318,53.805287,Vernon Road Leeds West Yorkshire,LS2 9JT,"side A of 70212 working fine, other seven are vacant (public parking here on weekends)","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9289,-1.551318,53.805287,Vernon Road Leeds West Yorkshire,LS2 9JT,Porsche Cayenne blocking 70234!,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9289,-1.551318,53.805287,Vernon Road Leeds West Yorkshire,LS2 9JT,"Worked fine. If going during office hours, the EV bays get very full and some EV owners think it's okay to park there but not actually charge their car ...","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9289,-1.551318,53.805287,Vernon Road Leeds West Yorkshire,LS2 9JT,Today. Shush,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9289,-1.551318,53.805287,Vernon Road Leeds West Yorkshire,LS2 9JT,All four posts have green lights currently,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9289,-1.551318,53.805287,Vernon Road Leeds West Yorkshire,LS2 9JT,No power! - Reported to charge your car and University.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9289,-1.551318,53.805287,Vernon Road Leeds West Yorkshire,LS2 9JT,"All four appear to be working fine now. 2nd floor of the multi-storey, at the back. EVERYONE must visit the pay & display machine even if they have a code. Chargers NOT available to the paying public during office hours.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9289,-1.551318,53.805287,Vernon Road Leeds West Yorkshire,LS2 9JT,All appear to be working fine now,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,"Charger B giving 7kW as expected
A still OOU","['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,Connector A does not work at all,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,Still not fixed after reporting to pod point a few times,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,Not appearing in the app. Wonder if they're finally in the process of fixing socket A...,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,3 months on and socket A is still goosed :/,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,"Socket A reported over a month ago and still not fixed.
Socket B has been occupied by the same vehicle for nearly 3 hours","['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,"So annoying, there’s only ever one working down there and is never available 😔","['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,Not charging,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,Socket B fine. Socket A has been reported and Pod Point are awaiting site approval to attend and fix it.,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,Socket A not working!,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,Socket A not working,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,Problem free. Splendid,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,Well done podpoint performing well as usual 👌,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,Charged for a little over an hour whilst doing a little shopping,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,"Port A works at 1130am. Once confirm charge on the app, still stated available in app but still delivering charge while shopping.","['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,No problem log onto podpoint app 6.9 to 7.0 kW,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,Connected fine. No issues. Working well,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,Out Of Service,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,"Couldn't get past ""ongoing checks""","['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,Working fine right now .,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,Connects but didn't start charge. Usually no problems. Reported to podpoint.,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,Next bay was iced just before I left. Plenty of room elsewhere.,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,"Working fine, 3hr maximum stay in car park, enforced by ANPR.","['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,Connected to charge point B. Working okay. Zoe on point A seems to be okay as well.,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,"Only one connector working. Jeri side broken, Dave side charging fine.","['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,"Jeri not working, Dave charged fine","['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,ICEd by a taxi,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,All working fine.,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,Nice of this Chevy Trac to ICE the available space for charging.,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,"Successful Charge, and Free to Use","['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,"No problems confirming charge today, used pod B","['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,"Pod A said it had confirmed charge, but then stopped after 15 minutes. Pod B said it couldn't confirm charge, but carried on for 1/2 hour until we got bored and unplugged! Shops nearby close at 8pm","['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,unable to charge from port A (port B ok),"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,"Since September last year I can only confirm charge once in every 5 sessions on average, so the car stops charging after around 20 minutes. The charging status doesn't change from available when plugged in to either A or B port so whilst the application gives a charge confirmed message it doesn't actually confirm it.","['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,All fine,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,"claim charge didn't seem to work again, but got an hour's charge regardless","['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,got 30 mins from connector A despite website and app not claiming charge properly,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,"used left post today. came back after a while to find post turned blue after appearing to be ok for a while. app said it was claimed, but obviously the post didn't get the message. keep an eye on it and plug in again if necessary.","['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,left bay iced today,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,successfully charging on Dave,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,ICEberg (but I can see why they did it - few spaces for something that length),"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,Blue lights flashing red. Followed steps not charging both connectors. Red lights although app says charging,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,"Fine on B, but A ICEd","['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,Successful charge. Easier to use than CYC.,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,Successful charge,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,One space ICEd,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,All good and charger communicating with server properly for first time in a while.,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,"Charging for the next 2 hours on A
White Leaf that’s always charging is on B","['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,"Being iced by a white lead which parks here daily and plugs in all day, thereby blocking one connector for other users. Don't mind them charging, but they aren't moving on once finished.","['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,Charge still confirming in app however status doesn't change. no problem though still charging beyond 15 mins.,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,podpoint app didn't change status to charging when confirmed but continued to charge ok after 15 minute point,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,Toyota Ice. Appropriate name.,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,successful charge,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,Charging nicely,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,Free to charge but timely only 7kw,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,B connection keeps cutting out,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,All fine. There's now a Charge Here sign on the wall by the charge point.,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,successful charge although point A was showing red. reported to Pod Point,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,Admin please update network to Pod Point open charge,"['Unknown status', 'Unknown status']"
9745,-1.605053,53.817553,Bridge Road Leeds West Yorkshire,LS5 3BL,Charger located behind JD Sports. Bays are unmarked and there is no signage.,"['Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,It states on the Podpoont app that's all these rapid chargers have now gone up to 50p kwh but doesn't tell you on Zap ap or anywhere else,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,Didn’t work. Said not enough power when another vehicle is charging when no other vehicles were there.,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,"Says out of use, and someone has kindly left on floor so now sopping wet through","['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,"Says out if use on pod, I don't use this one but thought I'd share","['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,"Failed to charge, may be website problem, I am not sure","['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,Connector damaged unable to use,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,"At last was down to snail on id3 and needed fast charge as on way to London. Local tesco and Morrisons fast charge failed, all reported","['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,They need to ban this company it only seems to be dpd they use all the fast charge ones even at Tesco roundhay road so annoying,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,DPD van connected and fully charged for 2 hours. This company is abusing the network more and more often it needs to be addressed.,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,"Chademo connector is damaged, reported to Pod Point. last time this happened it took six months for them to fix it. Feel free to report it each time you go there","['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,First charge 55 mins....!,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,"Definitely not working at 50kwh speed, more like 35kwh? 11kwh delivered in 22min.
But it is working again so I suppose that's something.","['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,"Working well, unlike the CCS connector on the same unit.","['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,Couldn’t get it to charge on this connector despite trying 3 times. Swapped to 43kw,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,The same thing happened to me with the 50kwh in Stanningley,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,"""Charge already claimed"", though it isn't. Then holds the lead hostage","['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,Only 11kph,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,Someone had left the emergency stop pressed so this was showing not available-reset and all is well,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,"Unable to disconnect. Had to call the help center who, eventually, advised pressing the emergency stop button. That did the job!","['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,CCS being used when I got there but happy with 43kwh,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,problems connecting to app,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,"Finally after nine months of nagging them, an engineer has been out they replaced the Chademo, and now my car will charge again.","['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,Working,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,Good charge. Pod point reliable as always.,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,"Charged earlier today, worked fine.
All 3 chargers seem to be working, only tested CCS","['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,Still reports internal error,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,"Not working at all today, still showing as operational though.","['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,still reporting an internal error,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,Attempts to start then says internal error. Reported a second time to pod point,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,just topped up the Etron 50. 4% per 10 minutes. no issues with the Podpoint app,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,"Right by car park entrance, easy to use and worked perfectly","['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,Worked OK but a bit slow though. In car park of Lidl which has toilets but no coffee 😢,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,doesn't work.,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,keeps saying connection error and that the car is still turned on,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,Good location well marked and easy to use.,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,"First time using a public point.
Type 2 connector has a little damage but works fine.","['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,The Lidl rapids are now 23p/kW pre paid through the app.,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,CCS unavailable. T2 only providing 12kW. Otherwise all good,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,Still working perfectly. Not ICEd and no inconsiderate EV on charge,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,"No issues, not ICED. Good all round time on charge","['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,"Worked on the 5th attempt .
Guy on the chademo before seemed to have no issues
Ac worked ok","['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,Ccs kept having connector issues wouldn’t charge,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,All ok,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,"Charging to 100% on a rapid charger in a popular location is a very unpopular thing to do unless you are prepared to sit with your car and wait those final 25 minutes (when it takes a long time to go from 80% to 100%) so that you could let someone who needs the power take your place. If you’re new to EV charging, particularly rapid charging, please take this message as advice and not a rant. Rapid charging to 80% (maybe even 85%)is good practice, rapid charging to 100% is very bad practice.","['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,All fine 19/9/19,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,Working fine,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,All appears ok now. AC & DC charging together,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,DC not working,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,Arrived & Stop Error message on the screen Twisted the Red reset - as instructed. Was able to charge. Hoped to ChaDemO charge to 100%. Charging stopped at 86%. Possibly the heat is a factor? Otherwise fine.,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,all seems to working fine now. thank you Lidl!,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,Failed to initiate charging. Performed emergency reset. No change. Contacted pod point. Halfords available up the road @35p/kw,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,You may not want to hear this but cars sitting on Rapid chargers when they’re way past 80% charged are a nuisance as it takes for ever to get fully charged. I’m not referring to you specifically but you mention not being “fully charged” ... However aggressive assholes should be banned from life😳,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,Basically it was starting then cutting out. CCS on i3,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,Cvs connector issues,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,Unable to connect to car :-(,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,"Just done a charge but had to stop it early because a large man was very aggressive to me making me finish before fully charged , very sad man","['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,Does this charger still operate rapid and is it still free to shoppers?,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,Work great,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,I’ve spotted that happening when I have used this charger,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,"Complain to Pod-Point, they may get him banned","['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,All ok,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,All fine on CCS,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,There’s a BMW PHEV plugged in to the AC 43kW rapid for 50 minutes and drawn 2.9kWh of energy. No sign of the owner. Doubt anyone spends that long in Lidl so presumably he’s gone off somewhere. Why do people hog a rapid with a vehicle clearly incapable of rapid charging?,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,"Someone had pressed the emergency stop, twisted and pulled the button, waited 30 seconds and all ok.","['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,quick chademo charge,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,Great free rapid charger.,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,43kw while waiting for Lidl to open,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,All ok,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,All ok,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,All ok,"['Unknown status', 'Unknown status', 'Unknown status']"
9848,-1.493689,53.813753,144 Amberton Road Leeds West Yorkshire,LS9 6SR,All seems to be ok here. Leaf was using the 50kW feed so could only use the AC feed whilst doing a quick shop. Shame the i3 can only use 11kw of the 43kw on offer!,"['Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,"Not bad set up, just be good to modernise the 7KW units as CYC isn’t good unless you have there RFID card.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,"Just happened to have my 2 year old CYC RFID card with me and it worked!
I presume now BP Pulse have bought CYC it will bill my BP credit? Anyway, it worked, we had a lovely bus trip to Leeds for theatre and food then came back to a fully charged car. Very impressive facility
Well done LEEDS Team!","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,Spent an age downloading the app for it to not accept my payment card! Then realised I could get it to work with my BP Pulse card. Horrendously slow charge. Very frustrating experience,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,"App would not let me scroll down far enough to register my payment card issue date in 2021, only let me look to 2019","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,Absolute garbage. Don't waste your time. Half of them have no power to them. When you find one with power the App tells you it isn't available.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,Still worthless junk. App never lets you register a payment card and I'm not spending money on a proprietary rfid card just for the privilege of using these things. I'll just take my money elsewhere.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,Refused to connect through app. Tried to use this facility twice and always the same. Waste of time.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,Nightmare to initiate a charge. ChargeYourCar has been bought by BP pulse and the CYC app doesn’t work to add a card and you can’t use the BP Pulse app. Spent 40 mins on phone to BP before they eventually managed to initiate a charge. Have ordered a RFID card for £20 to see if that makes it work without having to go through the BP call centre every time.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,"Getting a charge eventually. Lots of chargers not powered. Units not accepting the app, but one eventually accepted my CYC card. Phew...","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,"cant use app, cant use website... avoid","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,Reported as not working but using the Polar plus card it works just fine,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,App not working to add card for payment. Saying plug is in use though. Saw some cars changing here successfully though!,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,Avoid,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,Avoid,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,Avoid,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,Avoid,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,Avoid,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,Avoid,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,All down avoid,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,All site down avoid,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,All down avoid.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,All systems down avoid for now.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,No chargers available due to covid testing,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,"all charges out of use due to the site being used as a covid testing area. There is equipment directly in front of all charges, so they're not even available for the use of nurses and so on.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,The Park & Ride is currently being used as a Covid NHS testing site and all of the charging points are out of use.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,Great first charge 👍,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,Constant loop saying insert charging cable remove charging cable. it's difficult to seat the actual connector. wasnt able to charge on this,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,Both the chargers on the80081 post aren’t working on the app. It can’t connect. I used 80082 instead,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,Successful charge now the charger is working,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,successful charge,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,80081 bay 1 iced. when they need to use a charger in the future maybe then they will realise,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,"Charging on 8083 type 2. Had an issue with 8081 with my BMW i3. Initiated via the phone as CYC app wouldn’t work. Very helpful helpline. Chargers located near the bust stop for park and ride with the inevitable ICE-Ing, unforgivably by another i3 parked nose in not charging","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,successful charge and charger back online on ZAP,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,both sockets are good,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,Sorry but I didn't regard the language as particularly strong. Certainly not as strong as the language you get from people that you politely point out that the spaces are for evs only. lol,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,Hi Frumtarn... we hear your fustration but please keep your language moderate. The EV community needs to win the hearts as well as the minds of ICE owners.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,ICE gits,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,and confusing markings??!,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,ice cars blocking chargers are not penalised. At least pretend there's a fine to discourage inconsiderate fossil owners.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,The two poorly A sockets remain poorly :(,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,80079 A side says ERROR RCD (as does the A side of 80085 still),"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
9996,-1.478916,53.777745,Pontefract Lane Leeds West Yorkshire,LS9 0PS,Available during park and ride opening hours only (til 9 M-F; 6? Sat; closed Sun),"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
10222,-1.545868,53.797974,Butts Court Leeds West Yorkshire,LS1 5JS,"Website does not “exist” no other instructions, no obvious app, couldn’t charge. Hmm!! I must be stupid","['Available', 'Available']"
10222,-1.545868,53.797974,Butts Court Leeds West Yorkshire,LS1 5JS,The signage is incorrect - Franklin EV doesn’t seem to exist but successful charge via the LifeEV app. 11kw though rather than the 22kw stated,"['Available', 'Available']"
10222,-1.545868,53.797974,Butts Court Leeds West Yorkshire,LS1 5JS,"Charger on level 2, the level you drive in on. Own cable needed. You have to walk to the edge of the car park to get a mobile signal and must use the Life EV app. You won't get anywhere near 22kW. I was pulling about 11.","['Available', 'Available']"
10222,-1.545868,53.797974,Butts Court Leeds West Yorkshire,LS1 5JS,Another vehicle plugged in and only delivered 6.9kWh in 3 hours. Tight space to get out of with a big vehicle due to bays behind. Otherwise quick and easy to set up with app.,"['Available', 'Available']"
10222,-1.545868,53.797974,Butts Court Leeds West Yorkshire,LS1 5JS,Don’t follow the instructions on the sign. Franklin energy is no more. You need the LiFe EV charging app to use this now,"['Available', 'Available']"
10222,-1.545868,53.797974,Butts Court Leeds West Yorkshire,LS1 5JS,"You need to use the App to start a session. Unfortunately, there was no phone signal in the car park, so I couldn't connect to kick off a charge. Poor planning.","['Available', 'Available']"
10222,-1.545868,53.797974,Butts Court Leeds West Yorkshire,LS1 5JS,Left car on charge for over two hours! For 15 miles!!!,"['Available', 'Available']"
10222,-1.545868,53.797974,Butts Court Leeds West Yorkshire,LS1 5JS,Good location and no problems charging the ipace,"['Available', 'Available']"
10222,-1.545868,53.797974,Butts Court Leeds West Yorkshire,LS1 5JS,"Would not start charging, moved to other connection and charging ok at 7kw","['Available', 'Available']"
10222,-1.545868,53.797974,Butts Court Leeds West Yorkshire,LS1 5JS,This car park and charger remain open with #Covid19 - this is on the network of our friends at Franklin Energy but can be accessed via our roaming agreement with them using our app or fob. Or their app or fob.,"['Available', 'Available']"
10222,-1.545868,53.797974,Butts Court Leeds West Yorkshire,LS1 5JS,left hand side... watch your aerial as you reverse!,"['Available', 'Available']"
10222,-1.545868,53.797974,Butts Court Leeds West Yorkshire,LS1 5JS,"Successful charge, great app works well!","['Available', 'Available']"
10222,-1.545868,53.797974,Butts Court Leeds West Yorkshire,LS1 5JS,Good location and well marked. App worked OK,"['Available', 'Available']"
10222,-1.545868,53.797974,Butts Court Leeds West Yorkshire,LS1 5JS,max 4 hours per charge. get the Life EV app before you arrive as 4G signal is not great,"['Available', 'Available']"
10222,-1.545868,53.797974,Butts Court Leeds West Yorkshire,LS1 5JS,user report,"['Available', 'Available']"
10222,-1.545868,53.797974,Butts Court Leeds West Yorkshire,LS1 5JS,Great location and fast 22kW charger!!!,"['Available', 'Available']"
10222,-1.545868,53.797974,Butts Court Leeds West Yorkshire,LS1 5JS,"Beware. Plugged in for a single charge here (C Zero, 16 kW battery nowhere near depleted) and have just been invoiced for more than £14. Provider website is an absolute nightmare to use as well.","['Available', 'Available']"
10222,-1.545868,53.797974,Butts Court Leeds West Yorkshire,LS1 5JS,"Conveniently located on level 2 (which is the first parking level from up the slope). Up the ramp, collect your entry ticket, left and look on your left.","['Available', 'Available']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Not available,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Unable to pay using evolt or BP pulse,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Out of order,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,It was dark and I couldn't see the chargers. Decided to move to somewhere better lit,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,How did u get it work? Use rfid or app?,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Plug B working fine,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Finally working again,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,App is broken (unable to register payment details as server down),"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,"Hopeless, almost half of 7kw chargers not working and the only rapid charger wasn't working either, phoned bp and explained, no luck either.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Wouldn’t connect to server,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Rapid charger. Without notice started charging BP Pulse charging rate for BP Pulse members. I found it when they took money from my bank account at the end of the month. They refused to refund. I canceled the subscription due to the chance they will charge me on other points without notice and info on their website or app.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Can’t connect,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Can’t connect,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Type 2 Charging perfectly fine with bp pulse card,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,"Failed to authenticate, phoned BP they said they haven’t had a chance to send an engineer out yet, four months ago","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,"Not working, failed to recognise CYC or BP Pulse RFID card. Spent 30 mins on the phone to BT but couldn’t get it to work - avoid","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,"Unable to accept card due to connectivity, was able to register details and register card ok but unable to connect for payment to charge","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Connector for ccs has do not use tag on,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Unable to validate user error message,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Hooray it is working again,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,"17 to 80%, no issue. Free to use with a tap with my old polar plus card. Behind the ice arena.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Doesn’t work. Theirs to authenticate but then fails ☹️,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,"Still not working, called BP again they haven’t had chance to send an engineer out to look at it yet, it’s been four weeks","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,"Reported this to bp pulse again, the server could not authenticate RFID card. They apologised that they had no previous reports, even though I did one three weeks ago.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Wouldn't connect to server to start the charge.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Out of order sign on connectors today,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Unable to connect to validation server and no couldn’t reset as they couldn’t remote connnect,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,"CCS still out of order. Others cannot validate user, support cannot start due to no communication with charger.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Out of operation and CHAdeMO socket covered up.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Faulty won’t do anything,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,"Zap-Map says it’s a fast BP Plus charger, charger says it’s Charge Your Car and is only 7Kw
App pretty useless. Difficult to navigate. Luckily have enough juice to get home. So abandoned.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Still faulty 18/11/21,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Still got a ‘do NOT use’ tag on. Lights on but nobody home!,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Appears to not charge but it works!,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Type AC 43 on Rapid faulty,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Are petrol station fuel pumps left ‘broken’ for weeks!,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,"Red lights. 40 minutes on the phone, they could not reset. Faulty","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,"Red lights. 40 minutes on the phone - unit faulty, unable to reset.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,"Worst experience trying to charge so far, only two 7kw chargers available out of 8, one being used tried to connect the cable to the other, flap locked phoned help desk tried to remotely unlock without success. Then tried the only 50kw charger there, download app but would not accept the start date of my card being 2021, gave up avoid this location until they get all these issues sorted out","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Charge your car is taken over by pulse. Pulse don’t have point listed so can’t start any charge for any point,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,"Couldn’t get App to work, so just scanned my debit card (which is the same as the one registered to my membership). 22kW in 32 mins (32% to 92% soc). Nice Metro bus station nearby; dry, warm and clean loos. Thank you Leeds City Council.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Needed resetting but charged OK,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Hi. What did it charge you?,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,"Also with adding, works with a debit or credit card as RFID. No idea what charge will be though.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Impenetrable. App doesn't work properly. Whole device seems locked down. Scream.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Easy peasy.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,"None of the charging points here are working. Called CYC, no help!","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,"New EV user and bit stuck. The cyc app doesn’t work. When I rang they said it’s now BP pulse as they’ve taken over and it’s no longer £1 connection fee but the BP fees. Is this correct? Also, can you just tap you contactless card? Thank you","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Yup all good,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,The charging app is not allowing new users to sign up to use these charging points. Returned 3 times this week and not able to charge here. Seems to be a company wide problem (Chargeyourcar),"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,"Was there on a Sunday so car park appeared closed, but adjoining car park open so was still able to access chargers. RFID’d a random card to open the plug and was a free vend thereafter. No connection charge.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,"Car park where main units are located is closed off for some reason. Barrier down, rubble piled at the exit.
There are other units but they're on the disabled bays.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,"Charge your card app not allowing me to register card, called for help, they were unable to start the charge remotely due to an issue with the unit","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,"Usual CYC faff, worked on 2nd attempt with Polar NFID card.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,"Usual CYC-app faff to get it working, but got it charging on the second go after no luck with CCS","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,"Rapid got red lights, and many travellers living there.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Blocked off for covid vaccinations. I wonder if they've shut any filling stations for covid?!,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Ok,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,"broken glass all over place from gypsy's, staff at park and ride not interested in clearing it up","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,"All Stations Broken - Rapid out of order
Plus car park is full of travellers","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,"They have opened the car park so they can use it as a Covid vaccination centre, so that means we can access the rapid charger again. It’s not showing on bp pulse network, but if you have the old polar map it shows on there and if you have an RFID card it will start","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,I reported this to cyc and they’ve replied saying it’s switched off because council not advised them to switch it back on yet. Have forwarded cyc’s reply to metro link.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,"70205 which is in the car park at the side of the amenity building, is now signed as disabled EV only, and in any event has no power to it. so no available chargers here at all presently Lane","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,"all charges in the main car parts, which includes the rapid, are barriered off and inaccessible.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,This is only charge point in the open part of the park and ride but it’s dead with no signs of life. You can see the ones I. The locked half all lit up and ready to use but unable to access.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Used slow charge (only one working) but had to plead to open the barrier as site is no longer accessible (aparantly its going to be used as a Covid test site),"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Number 2 broken,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Cable broken,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Barrier down and locked but crew in bus station can open it Don’t try and use the intercom as that doesn’t work. Once you are in they’ll put the barrier back down because there is another barrier further along that also opens to allow you out,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,"Sorry, I was being dumb. The chademo connector is hung on the side. It's only the front holder that's taped up.....","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,No chademo....,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,"wouldn't connect, app is useless too","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Car park closed and access to all chargers blocked,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Car park closed and access to chargers blocked,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Car park closed and access to chargers blocked,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Car park closed and all access blocked,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Elland Road car park closed and access to chargers blocked,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
1986,-1.576803,53.776693,Bobby Collins Way Leeds West Yorkshire,LS11 8TU,Whole car park closed and blocked off and ALL chargers inaccessible.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
11563,-1.536146,53.749337,16 Shelldrake Drive Leeds West Yorkshire,LS10 3NP,Patients or staff/business visitors?,['Unknown status']
11563,-1.536146,53.749337,16 Shelldrake Drive Leeds West Yorkshire,LS10 3NP,Not for public use,['Unknown status']
9073,-1.565638,53.818256,Cumberland Road Leeds West Yorkshire,LS2 9JT,Could not get app to work so could not get charge to work.,"['Unknown status', 'Unknown status']"
9073,-1.565638,53.818256,Cumberland Road Leeds West Yorkshire,LS2 9JT,both ev bays iced. luckily there's space round the back to park up near the charger.,"['Unknown status', 'Unknown status']"
9073,-1.565638,53.818256,Cumberland Road Leeds West Yorkshire,LS2 9JT,"Great, thanks for the info. We have updated the point.","['Unknown status', 'Unknown status']"
9073,-1.565638,53.818256,Cumberland Road Leeds West Yorkshire,LS2 9JT,"Found 70214. Location is Devonshire Hall (UoL halls of residence), Cumberland Road LS6 2EQ coordinates 53.818256, -1.565638 and please to be marked residents and visitors only. Works fine with polar card, and the CYC app correctly updates when each side is in use (I checked both sides as I am a nerd)","['Unknown status', 'Unknown status']"
9073,-1.565638,53.818256,Cumberland Road Leeds West Yorkshire,LS2 9JT,Can't locate this point 70214. Looked both side of Henry Price Residences and also the adjacent Institute for Transport Studies,"['Unknown status', 'Unknown status']"
11777,-1.579416,53.780662,151 Gelderd Road Leeds West Yorkshire,LS12 6BZ,Barriers up overnight. Dealership hours only,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
14700,-1.552042,53.796177,29 Wellington Street Leeds West Yorkshire,LS1 4DL,#bppulse ready to charge 👍,"['Available', 'Available', 'Available', 'Available']"
14700,-1.552042,53.796177,29 Wellington Street Leeds West Yorkshire,LS1 4DL,My friend plugged in to charge last night and in the morning non of the chargers were working and her start up battery had been completely drained.,"['Available', 'Available', 'Available', 'Available']"
14700,-1.552042,53.796177,29 Wellington Street Leeds West Yorkshire,LS1 4DL,Parking charges,"['Available', 'Available', 'Available', 'Available']"
14700,-1.552042,53.796177,29 Wellington Street Leeds West Yorkshire,LS1 4DL,32A,"['Available', 'Available', 'Available', 'Available']"
14700,-1.552042,53.796177,29 Wellington Street Leeds West Yorkshire,LS1 4DL,not working,"['Available', 'Available', 'Available', 'Available']"
14700,-1.552042,53.796177,29 Wellington Street Leeds West Yorkshire,LS1 4DL,nicely placed but half iced,"['Available', 'Available', 'Available', 'Available']"
14700,-1.552042,53.796177,29 Wellington Street Leeds West Yorkshire,LS1 4DL,Paid hotel car park but Polar charging tariff reasonable and just nice to be able to juice up and leave on 100%. Good to see more hotels doing this now.,"['Available', 'Available', 'Available', 'Available']"
14700,-1.552042,53.796177,29 Wellington Street Leeds West Yorkshire,LS1 4DL,All bays available,"['Available', 'Available', 'Available', 'Available']"
14700,-1.552042,53.796177,29 Wellington Street Leeds West Yorkshire,LS1 4DL,"Three of the four bays ICEd and it costs £15 for approximately 24 hours, but it works well.","['Available', 'Available', 'Available', 'Available']"
14700,-1.552042,53.796177,29 Wellington Street Leeds West Yorkshire,LS1 4DL,two of the four presently iced,"['Available', 'Available', 'Available', 'Available']"
14700,-1.552042,53.796177,29 Wellington Street Leeds West Yorkshire,LS1 4DL,4 chargers all ICEd,"['Available', 'Available', 'Available', 'Available']"
14700,-1.552042,53.796177,29 Wellington Street Leeds West Yorkshire,LS1 4DL,socket broken,"['Available', 'Available', 'Available', 'Available']"
14700,-1.552042,53.796177,29 Wellington Street Leeds West Yorkshire,LS1 4DL,Hey Crowne Plaza - what's the point of putting in charging points if you let Ice vehicles use them so that electric vehicle are marooned?,"['Available', 'Available', 'Available', 'Available']"
14700,-1.552042,53.796177,29 Wellington Street Leeds West Yorkshire,LS1 4DL,"I asked at reception and was told that the manager doesn't think it's for members of the public to use, but as there aren't many chargers I can use it and they would take my registration number so I don't get a fine.
Either way there's no barriers, it is a 7kw type 2 socket and regular parking is from 1.50 for an hour.","['Available', 'Available', 'Available', 'Available']"
8258,-1.448845,53.759097,59 Northwood Falls Woodlesford Leeds West Yorkshire,LS26 0NN,"Handy place to top up when I visit my dentist, cheers Conrad","['Unknown status', 'Unknown status']"
14860,-1.660724,53.807524,Town Street Pudsey West Yorkshire,LS28 6HQ,Successful charge with zap-pay,"['Unknown status', 'Unknown status', 'Unknown status']"
14860,-1.660724,53.807524,Town Street Pudsey West Yorkshire,LS28 6HQ,"Chademo still broken, getting enough to get home on the type 2","['Unknown status', 'Unknown status', 'Unknown status']"
14860,-1.660724,53.807524,Town Street Pudsey West Yorkshire,LS28 6HQ,Unable to start session using GeniePoint app or Zap-Pay.,"['Unknown status', 'Unknown status', 'Unknown status']"
14860,-1.660724,53.807524,Town Street Pudsey West Yorkshire,LS28 6HQ,Not working,"['Unknown status', 'Unknown status', 'Unknown status']"
14860,-1.660724,53.807524,Town Street Pudsey West Yorkshire,LS28 6HQ,Not working,"['Unknown status', 'Unknown status', 'Unknown status']"
14860,-1.660724,53.807524,Town Street Pudsey West Yorkshire,LS28 6HQ,Not working,"['Unknown status', 'Unknown status', 'Unknown status']"
14860,-1.660724,53.807524,Town Street Pudsey West Yorkshire,LS28 6HQ,"Failed to charge, even after calling support.","['Unknown status', 'Unknown status', 'Unknown status']"
14860,-1.660724,53.807524,Town Street Pudsey West Yorkshire,LS28 6HQ,"Chademo started then stopped, used T2 instead","['Unknown status', 'Unknown status', 'Unknown status']"
14860,-1.660724,53.807524,Town Street Pudsey West Yorkshire,LS28 6HQ,"Faulty still, reported to Geniepoint,","['Unknown status', 'Unknown status', 'Unknown status']"
14860,-1.660724,53.807524,Town Street Pudsey West Yorkshire,LS28 6HQ,Another charger not working. Why is the UK EV charging network so useless?,"['Unknown status', 'Unknown status', 'Unknown status']"
14860,-1.660724,53.807524,Town Street Pudsey West Yorkshire,LS28 6HQ,Chademo not working,"['Unknown status', 'Unknown status', 'Unknown status']"
14860,-1.660724,53.807524,Town Street Pudsey West Yorkshire,LS28 6HQ,My bad. Just chaedemo showing as faulty. CCS now working,"['Unknown status', 'Unknown status', 'Unknown status']"
14860,-1.660724,53.807524,Town Street Pudsey West Yorkshire,LS28 6HQ,CCS & chaedemo both faulted. Sounds like some cooling fans aren't working somewhere,"['Unknown status', 'Unknown status', 'Unknown status']"
14860,-1.660724,53.807524,Town Street Pudsey West Yorkshire,LS28 6HQ,"Successfully used yesterday at 18:30 ish, after an unsuccessful attempt at Charles Street, Farsley. Just around the corner from the Lidl charging point that was very busy!","['Unknown status', 'Unknown status', 'Unknown status']"
14860,-1.660724,53.807524,Town Street Pudsey West Yorkshire,LS28 6HQ,Had to register as I haven’t used GeniePoint before but it was really easy and worked straight away. No issues,"['Unknown status', 'Unknown status', 'Unknown status']"
14860,-1.660724,53.807524,Town Street Pudsey West Yorkshire,LS28 6HQ,working fine,"['Unknown status', 'Unknown status', 'Unknown status']"
14860,-1.660724,53.807524,Town Street Pudsey West Yorkshire,LS28 6HQ,not haven't been working for a long time,"['Unknown status', 'Unknown status', 'Unknown status']"
14860,-1.660724,53.807524,Town Street Pudsey West Yorkshire,LS28 6HQ,"hasn't been working for a long , not happy","['Unknown status', 'Unknown status', 'Unknown status']"
14860,-1.660724,53.807524,Town Street Pudsey West Yorkshire,LS28 6HQ,all fine today,"['Unknown status', 'Unknown status', 'Unknown status']"
14860,-1.660724,53.807524,Town Street Pudsey West Yorkshire,LS28 6HQ,Didn’t work,"['Unknown status', 'Unknown status', 'Unknown status']"
14860,-1.660724,53.807524,Town Street Pudsey West Yorkshire,LS28 6HQ,Works fine. No issues.,"['Unknown status', 'Unknown status', 'Unknown status']"
14860,-1.660724,53.807524,Town Street Pudsey West Yorkshire,LS28 6HQ,faulty. powered off. garage supposedly reported a few days ago... they certainly know now.,"['Unknown status', 'Unknown status', 'Unknown status']"
14860,-1.660724,53.807524,Town Street Pudsey West Yorkshire,LS28 6HQ,1 bay iced today,"['Unknown status', 'Unknown status', 'Unknown status']"
14860,-1.660724,53.807524,Town Street Pudsey West Yorkshire,LS28 6HQ,Yep this one is back up and running any problems please call us on 0203 598 4087,"['Unknown status', 'Unknown status', 'Unknown status']"
14860,-1.660724,53.807524,Town Street Pudsey West Yorkshire,LS28 6HQ,seems to work fine,"['Unknown status', 'Unknown status', 'Unknown status']"
14860,-1.660724,53.807524,Town Street Pudsey West Yorkshire,LS28 6HQ,As soon as we have an update we will let you know.,"['Unknown status', 'Unknown status', 'Unknown status']"
14860,-1.660724,53.807524,Town Street Pudsey West Yorkshire,LS28 6HQ,"Chademo works, but in half an hour i went from about 4% to 44% instead of the expected 70-80%. I have marked faulty and notified the helpline. If someone could visit with a CCS car that would be useful. My first rapid charge today (thurs) since tuesday.","['Unknown status', 'Unknown status', 'Unknown status']"
14860,-1.660724,53.807524,Town Street Pudsey West Yorkshire,LS28 6HQ,"A bit of an odd business decision to install a charger with connection fee + an unappealing 30p/kW, with a free PodPoint charger within 100 metres...","['Unknown status', 'Unknown status', 'Unknown status']"
14860,-1.660724,53.807524,Town Street Pudsey West Yorkshire,LS28 6HQ,This charger has had successful charges on it - any problems call us on 0203 598 4087,"['Unknown status', 'Unknown status', 'Unknown status']"
14860,-1.660724,53.807524,Town Street Pudsey West Yorkshire,LS28 6HQ,"With your other Leeds one being out of use, can you assure that this is actually working? There is really no incentive to visit and pay to test it.","['Unknown status', 'Unknown status', 'Unknown status']"
14860,-1.660724,53.807524,Town Street Pudsey West Yorkshire,LS28 6HQ,Apologies for the delay in replying! I will raise these issues and get back to you when I have an update!,"['Unknown status', 'Unknown status', 'Unknown status']"
14860,-1.660724,53.807524,Town Street Pudsey West Yorkshire,LS28 6HQ,It is a bit pointless it being there - I agree,"['Unknown status', 'Unknown status', 'Unknown status']"
14860,-1.660724,53.807524,Town Street Pudsey West Yorkshire,LS28 6HQ,both parking bays seemed to be an overflow fir the pub across the road. use the free podpoint charger in Lidl next door,"['Unknown status', 'Unknown status', 'Unknown status']"
14860,-1.660724,53.807524,Town Street Pudsey West Yorkshire,LS28 6HQ,"Any chance of putting this one on a cheaper tariff, given there's a free podpoint rapid literally next door?","['Unknown status', 'Unknown status', 'Unknown status']"
14860,-1.660724,53.807524,Town Street Pudsey West Yorkshire,LS28 6HQ,Another nice new one - let us know!,"['Unknown status', 'Unknown status', 'Unknown status']"
15028,-1.534125,53.787151,Jet Leeds West Yorkshire,LS10 1JU,No power,"['Available', 'Available', 'Available']"
15028,-1.534125,53.787151,Jet Leeds West Yorkshire,LS10 1JU,Still not working after almost a year.,"['Available', 'Available', 'Available']"
15028,-1.534125,53.787151,Jet Leeds West Yorkshire,LS10 1JU,Not working at the moment,"['Available', 'Available', 'Available']"
15028,-1.534125,53.787151,Jet Leeds West Yorkshire,LS10 1JU,Unit disconnected and faulty reported to Geniepoint,"['Available', 'Available', 'Available']"
15028,-1.534125,53.787151,Jet Leeds West Yorkshire,LS10 1JU,"Needed to top up before journey back home, usually call in to Ripon Morrisons or She'll on the a168 just before it becomes a19, however discovered this charge only pulling about 25, bit was cold battery was cold had been sat all day then drove 5 mins to there","['Available', 'Available', 'Available']"
15028,-1.534125,53.787151,Jet Leeds West Yorkshire,LS10 1JU,Successful charge via the app. Couldn't verify my credit card.,"['Available', 'Available', 'Available']"
15028,-1.534125,53.787151,Jet Leeds West Yorkshire,LS10 1JU,Successful charges today (twice).,"['Available', 'Available', 'Available']"
15028,-1.534125,53.787151,Jet Leeds West Yorkshire,LS10 1JU,Couldn't connect - three attempts,"['Available', 'Available', 'Available']"
15028,-1.534125,53.787151,Jet Leeds West Yorkshire,LS10 1JU,My fault🤭 all good👍,"['Available', 'Available', 'Available']"
15028,-1.534125,53.787151,Jet Leeds West Yorkshire,LS10 1JU,Connects but won't start charging😩,"['Available', 'Available', 'Available']"
15028,-1.534125,53.787151,Jet Leeds West Yorkshire,LS10 1JU,Worked nice. Charged my 30kwh Leaf from 20-100% in 40 minutes,"['Available', 'Available', 'Available']"
15028,-1.534125,53.787151,Jet Leeds West Yorkshire,LS10 1JU,"Couple of attempts to get started then chared at up to 43KW.
5 minutes walk to Leeds Armouries 26th cafe toilets and a very interesting place.","['Available', 'Available', 'Available']"
15028,-1.534125,53.787151,Jet Leeds West Yorkshire,LS10 1JU,"We have seen recent successful charges on all connectors. However, if you are at a charger and experiencing difficulties, please call our 24 hour helpline on 0203 598 4087 as there may be something that we can do remotely to assist. Thank you, GeniePoint Team.","['Available', 'Available', 'Available']"
15028,-1.534125,53.787151,Jet Leeds West Yorkshire,LS10 1JU,No power to unit,"['Available', 'Available', 'Available']"
15028,-1.534125,53.787151,Jet Leeds West Yorkshire,LS10 1JU,Worked fine although charging slowed down to 22kw after about 30 minutes of charging,"['Available', 'Available', 'Available']"
15028,-1.534125,53.787151,Jet Leeds West Yorkshire,LS10 1JU,"As the charger nearest to work I rely on it for a quick charge on my home.
Unfortunately it if the most unreliable charger never working :-(","['Available', 'Available', 'Available']"
15028,-1.534125,53.787151,Jet Leeds West Yorkshire,LS10 1JU,Seemed to connect but disconnected itself almost immediately,"['Available', 'Available', 'Available']"
15028,-1.534125,53.787151,Jet Leeds West Yorkshire,LS10 1JU,"Had same issue myself . The trick is do not connect it to your car, start the charge on the app and wait for the charging screen to appear, then connect to your car. It will then start with no problem. If you accidentally double click your unlock on your remote you will disconnect and it will not restart. If that happens you have to start again and waste a pound reconnecting","['Available', 'Available', 'Available']"
15028,-1.534125,53.787151,Jet Leeds West Yorkshire,LS10 1JU,"Couldn't connect, called support who concluded the charger was disconnected from network and couldn't help.","['Available', 'Available', 'Available']"
15028,-1.534125,53.787151,Jet Leeds West Yorkshire,LS10 1JU,All Good on AC 22kw socket,"['Available', 'Available', 'Available']"
15028,-1.534125,53.787151,Jet Leeds West Yorkshire,LS10 1JU,"Not connecting. Called support, they could not restarted","['Available', 'Available', 'Available']"
15028,-1.534125,53.787151,Jet Leeds West Yorkshire,LS10 1JU,"Charged using the website, account very easy to setup, it's Pay As You Go but in top-up units of £10 which seems a bit greedy.
Charging a connection fee is a bit greedy too. But needs must and this is very conveniently located if you're visiting from another city like us.","['Available', 'Available', 'Available']"
15028,-1.534125,53.787151,Jet Leeds West Yorkshire,LS10 1JU,Worked fine. A bit pricey.,"['Available', 'Available', 'Available']"
15028,-1.534125,53.787151,Jet Leeds West Yorkshire,LS10 1JU,Fast charge. Easy access.,"['Available', 'Available', 'Available']"
15028,-1.534125,53.787151,Jet Leeds West Yorkshire,LS10 1JU,Now works for me on chad,"['Available', 'Available', 'Available']"
15028,-1.534125,53.787151,Jet Leeds West Yorkshire,LS10 1JU,As soon as we have an update we will let you know.,"['Available', 'Available', 'Available']"
15028,-1.534125,53.787151,Jet Leeds West Yorkshire,LS10 1JU,Chad still poorly despite engineer visit. Helpline informed,"['Available', 'Available', 'Available']"
15028,-1.534125,53.787151,Jet Leeds West Yorkshire,LS10 1JU,"After the problems I had last week, Engineer visited this charger yesterday and confirmed that it hadn’t been set up properly and was unable to tell the difference between rapid and fast charging for billing purposes. Advised that it is now sorted! I wonder if someone could test out CHaDeMo just to see???","['Available', 'Available', 'Available']"
15028,-1.534125,53.787151,Jet Leeds West Yorkshire,LS10 1JU,"Absolute crap... DC Chademo not initialising. Customer service crap, Jet Petrie station came out to tell me off for using my phone near their LPG tanks. ****A.V.O.I.D*****","['Available', 'Available', 'Available']"
15028,-1.534125,53.787151,Jet Leeds West Yorkshire,LS10 1JU,To confirm chad still inop,"['Available', 'Available', 'Available']"
15028,-1.534125,53.787151,Jet Leeds West Yorkshire,LS10 1JU,Chademo still NOT working,"['Available', 'Available', 'Available']"
15028,-1.534125,53.787151,Jet Leeds West Yorkshire,LS10 1JU,"dc side still appears broken - couldn't start a chademo charge and after a couple of attempts it started reporting chademo and ccs as unavailable when trying to start a charge.
unit is now in comms and can interact with the app ok.
ac/type2 works fine. only took 0.2kWh but got a mail saying bill was £0.","['Available', 'Available', 'Available']"
15028,-1.534125,53.787151,Jet Leeds West Yorkshire,LS10 1JU,This has been reported to technical we will post an update when we have more info.,"['Available', 'Available', 'Available']"
15028,-1.534125,53.787151,Jet Leeds West Yorkshire,LS10 1JU,"Chad does not work. Touched my card, started whirring, heard it lock, but then unlock. Reported to helpline","['Available', 'Available', 'Available']"
15028,-1.534125,53.787151,Jet Leeds West Yorkshire,LS10 1JU,"doesn't work - no comms? app errors, can't register card.","['Available', 'Available', 'Available']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,Good charge 106mph but prices have gone up again to 50p/kWh,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,Successful at 49mi/hr. 50p/kWh,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,Easy to use with pod point app,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,Back up and running,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,Couldn't connect to charger from app at all,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,Type 2 working. CCS not working. Price has gone up to 40p per kWh in the last day or 2.,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,Just won't connect. Isolation error. Then the app said it was charging when it wasn't but wouldn't stop it from charging. Had to use the slower connection.,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,It’s back up and running 😂👍🏻,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,Worked fine today,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,I couldn't get the AC to charger my Zoe. Not had any trouble previously (probably a year or so ago now mind),"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,All good....spot on,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,Internal error,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,"Successful charge, did say the was an isolator error, but tried again and worked fine on the CCS. Not busy at all.","['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,Still not working and doesn’t come up on the app,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,I’ve got same issue it’s still not working after a month I’ve reported again today,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,Does anyone know why this charger has disappeared from the Pod Point app?,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,Not working contacted pod point services no reply as yet,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,Out of service,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,Error message connector rattles which isn't good,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,"Chademo connector broken, reported to Pod-point.
AC and CCS seemed to be working, unit on free vend","['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,"Tried yesterday and today, lets me claim the charge on app but won't begin charging. Another car plugged in on CCS is charging fine so think it's a connector issue.","['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,Chademo connector damaged and will not latch into place. Reported to pod point,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,Chademo not working again!,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,Good 50kW charge,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,When I try to charge it says: Charge already claimed and nothing happens. It doesn’t charge.,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,Unable to charge for last few days- says internal error,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,"Successful charge. Fast. Not free though, as some of the comments here. It’s £0.26 per kWh","['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,Working OK and on free vend,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,A successful charge,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,App not needed. Plug and go and free.,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,All good worked fine,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,On free vend and yes App isnt connecting. Just plug-in and OK,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,App would not connect,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,Couldn't initiate charge through app or pod point website. Reported to pod point. Tried to reset remotely and this failed,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,Not able to activate charge on Pod Point app - reported to Pod Point,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,Successful charge - no problem,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,Usual no-fuss connection and charge,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,Reported no service,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,Reported no service,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,"Used yesterday afternoon, no issues","['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,"First time using Pod-Point.
I managed to get a charge but had to disconnect and try a second time.
Managed to get 12kw charged in 19 mins for £2.96. £0.25 per KWh.","['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,No problem at all. £0.23 per kWh,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,isolation fault,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,+ 1 for the bakery!,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,"Easy to find, need the pod app to use.","['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,is this a free or paid charge?,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,40kW on CCS. Pastel de nata in LIDL with the visit - see bakery section.,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,All ok,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,Successful charge on Chademo.,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,"Have used this 3 times now. Great location for a bit of shopping, and it works, but at nothing like the advertised speed (for us anyway). Today it was running at around 12kwh by my calculations","['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,"Good charge on type 2.
The app seemed to think I was on chademo ?????","['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,"charged here for the first time just a couple of hours before the ""charges"" (excuse the pun) came in. very easy to use.","['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,"Was free to use now suddenly with no warning at a charge, very disappointed","['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,"Thanks Lidl, got us home from to Manchester from a gig in Leeds","['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,Fantastic,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,All working,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,Good charge on CHAdeMO. don't know about the others but nothing to suggest they don't work,"['Unknown status', 'Unknown status', 'Unknown status']"
12582,-1.661516,53.807215,Town Street Pudsey West Yorkshire,LS28 6HB,Working ok,"['Unknown status', 'Unknown status', 'Unknown status']"
10970,-1.576615,53.797302,Unit 2 Armley Road Leeds West Yorkshire,LS12 2QN,Don't work and very expensive at £2.50 per hour for a very slow charge if it did work,"['Unknown status', 'Unknown status']"
10970,-1.576615,53.797302,Unit 2 Armley Road Leeds West Yorkshire,LS12 2QN,"3.6kw. Tried MG ZS EV but it won’t charge on this. No fee though, if you can get it to work.","['Unknown status', 'Unknown status']"
10970,-1.576615,53.797302,Unit 2 Armley Road Leeds West Yorkshire,LS12 2QN,Not working. Only 3.6KV now,"['Unknown status', 'Unknown status']"
10970,-1.576615,53.797302,Unit 2 Armley Road Leeds West Yorkshire,LS12 2QN,Worked perfect for me but just very expensive. Used in emergency. Go to evcharge.online and put in UK------ number that you see on machine.,"['Unknown status', 'Unknown status']"
10970,-1.576615,53.797302,Unit 2 Armley Road Leeds West Yorkshire,LS12 2QN,"Neither of the charge points appeared to work properly, but we were charged £2.50 for using each one, and ended up with less charge than we started with.","['Unknown status', 'Unknown status']"
10970,-1.576615,53.797302,Unit 2 Armley Road Leeds West Yorkshire,LS12 2QN,Is this place 24/7?,"['Unknown status', 'Unknown status']"
10970,-1.576615,53.797302,Unit 2 Armley Road Leeds West Yorkshire,LS12 2QN,Duplicated entry. Please delete this,"['Unknown status', 'Unknown status']"
10970,-1.576615,53.797302,Unit 2 Armley Road Leeds West Yorkshire,LS12 2QN,Picture from user.,"['Unknown status', 'Unknown status']"
10970,-1.576615,53.797302,Unit 2 Armley Road Leeds West Yorkshire,LS12 2QN,Picture from user.,"['Unknown status', 'Unknown status']"
15316,-1.530556,53.803664,Unit B Regent Street Skinner Lane Leeds West Yorkshire,LS7 1AX,Post tested and fully operational.,"['Charging', 'Charging']"
15316,-1.530556,53.803664,Unit B Regent Street Skinner Lane Leeds West Yorkshire,LS7 1AX,This point is 100% dead - no power no lights,"['Charging', 'Charging']"
15316,-1.530556,53.803664,Unit B Regent Street Skinner Lane Leeds West Yorkshire,LS7 1AX,Still Dead No other,"['Charging', 'Charging']"
15316,-1.530556,53.803664,Unit B Regent Street Skinner Lane Leeds West Yorkshire,LS7 1AX,Dead - BP pulse said they’re waiting for Aldi to pay the bill 🤦🏻♂️,"['Charging', 'Charging']"
15316,-1.530556,53.803664,Unit B Regent Street Skinner Lane Leeds West Yorkshire,LS7 1AX,"Dead, no power to unit","['Charging', 'Charging']"
15316,-1.530556,53.803664,Unit B Regent Street Skinner Lane Leeds West Yorkshire,LS7 1AX,Dead No Power,"['Charging', 'Charging']"
15316,-1.530556,53.803664,Unit B Regent Street Skinner Lane Leeds West Yorkshire,LS7 1AX,"Had to call to get unit restarted to release cable, multiple occasions","['Charging', 'Charging']"
15316,-1.530556,53.803664,Unit B Regent Street Skinner Lane Leeds West Yorkshire,LS7 1AX,RFID is broken. Have to activate using app,"['Charging', 'Charging']"
15316,-1.530556,53.803664,Unit B Regent Street Skinner Lane Leeds West Yorkshire,LS7 1AX,Rejects RFID. App never accosted the charger.,"['Charging', 'Charging']"
15316,-1.530556,53.803664,Unit B Regent Street Skinner Lane Leeds West Yorkshire,LS7 1AX,Good 22KWh post,"['Charging', 'Charging']"
15316,-1.530556,53.803664,Unit B Regent Street Skinner Lane Leeds West Yorkshire,LS7 1AX,All good,"['Charging', 'Charging']"
15316,-1.530556,53.803664,Unit B Regent Street Skinner Lane Leeds West Yorkshire,LS7 1AX,All working as it should be 👍👍,"['Charging', 'Charging']"
15316,-1.530556,53.803664,Unit B Regent Street Skinner Lane Leeds West Yorkshire,LS7 1AX,All Good,"['Charging', 'Charging']"
15316,-1.530556,53.803664,Unit B Regent Street Skinner Lane Leeds West Yorkshire,LS7 1AX,DO NOT LEAVE THE SITE WHILST CHARGING. This site is monitored and any driver observed leaving the site whilst charging will receive a fine. The remain on site policy is rigorously enforced.,"['Charging', 'Charging']"
15316,-1.530556,53.803664,Unit B Regent Street Skinner Lane Leeds West Yorkshire,LS7 1AX,Frequent parking/UKCPC guy visiting to check people are not leaving the site. Watch out.,"['Charging', 'Charging']"
15316,-1.530556,53.803664,Unit B Regent Street Skinner Lane Leeds West Yorkshire,LS7 1AX,All Good,"['Charging', 'Charging']"
15316,-1.530556,53.803664,Unit B Regent Street Skinner Lane Leeds West Yorkshire,LS7 1AX,All Good on these 22k Chargers,"['Charging', 'Charging']"
15316,-1.530556,53.803664,Unit B Regent Street Skinner Lane Leeds West Yorkshire,LS7 1AX,this point is now being billed per-kwh,"['Charging', 'Charging']"
15316,-1.530556,53.803664,Unit B Regent Street Skinner Lane Leeds West Yorkshire,LS7 1AX,"have now seen parking ""penalty"" invoice from allegedly overstaying here.","['Charging', 'Charging']"
15316,-1.530556,53.803664,Unit B Regent Street Skinner Lane Leeds West Yorkshire,LS7 1AX,All working fine,"['Charging', 'Charging']"
15316,-1.530556,53.803664,Unit B Regent Street Skinner Lane Leeds West Yorkshire,LS7 1AX,working great. 3-phase 22kW.,"['Charging', 'Charging']"
15316,-1.530556,53.803664,Unit B Regent Street Skinner Lane Leeds West Yorkshire,LS7 1AX,All working fine,"['Charging', 'Charging']"
15316,-1.530556,53.803664,Unit B Regent Street Skinner Lane Leeds West Yorkshire,LS7 1AX,"didn't test unit but it looks ok.
car park still has 90min max stay signs but I'm not sure if the cameras are still present. can't see any. possibly there is no enforcement since poundworld, whose carpark it is, went bust.","['Charging', 'Charging']"
15316,-1.530556,53.803664,Unit B Regent Street Skinner Lane Leeds West Yorkshire,LS7 1AX,Blue lights back on after a period of being switched on. Didnt plug in but units are nearly new,"['Charging', 'Charging']"
15316,-1.530556,53.803664,Unit B Regent Street Skinner Lane Leeds West Yorkshire,LS7 1AX,All Working,"['Charging', 'Charging']"
15442,-1.494362,53.803045,York Road Leeds West Yorkshire,LS9 6NL,No longer here!,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
15442,-1.494362,53.803045,York Road Leeds West Yorkshire,LS9 6NL,gates are locked no access to chargers,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
15442,-1.494362,53.803045,York Road Leeds West Yorkshire,LS9 6NL,"Thanks for this info Esme, the charge point has been updated.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
15442,-1.494362,53.803045,York Road Leeds West Yorkshire,LS9 6NL,Numbered incorrectly on Zap-Map - left hand charger is 90 and 91 (not 89 and 90),"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
15442,-1.494362,53.803045,York Road Leeds West Yorkshire,LS9 6NL,Around the back of the building,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
15442,-1.494362,53.803045,York Road Leeds West Yorkshire,LS9 6NL,Admin please amend. UKEV0287 is a post on its own. 0288 and 0289 are a post. 0290 and 0291 are another post. Three posts five sockets.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,Max 42kW,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,Working averaging 42kw 👍🏻,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,Working averaging 42kw,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,Working averaging 40kw 👍🏻,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,Both units bagged over.,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,Both chargers have been vandalised with the cables being cut!,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,"Need to charge your Electric Vehicle ? I use the Instavolt mobile application, its really simple to use and I would recommend that you use it too. Enter this referral code
dXkdm
on signup and we will both receive a £5 account credit after your first charge. Click here<a href=""https://driver.emsp.instavolt.co.uk/referral/dXkdm"" title=""https://driver.emsp.instavolt.co.uk/referral/dXkdm"" target=""_blank"">https://driver.emsp.instavolt.co.uk/referral/dXkdm</a> to install the app and signup today.","['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,"Left hand charger is fine, right one out of service currently.","['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,"All good, price has gone up 84p I think","['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,50kw charging rate with no issues,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,Charging at 50kw. No issues,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,Working great. 57p!,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,Not working,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,"Good location, but charging maxed out at 25kw","['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,Charged me 15 pound for 20 percent the machine said 5 pound rip off,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,Working perfectly 👍🏻,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,Charger working - Averaging 42.5kw 👍🏻,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,"Charging point working, averaging 42.5 kw. 👍🏻","['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,All good,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,"Easy charge , easy pay , everything you want in a charge point.","['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,"All good, & someone also happily charging on Device 1.","['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,"Need to charge your Electric Vehicle ? I use the Instavolt mobile application, its really simple to use and I would recommend that you use it too. Enter this referral code 6Ja8X on signup and we will both receive a £5 account credit after your first charge. Click here<a href=""https://driver.emsp.instavolt.co.uk/referral/6Ja8X"" title=""https://driver.emsp.instavolt.co.uk/referral/6Ja8X"" target=""_blank"">https://driver.emsp.instavolt.co.uk/referral/6Ja8X</a> to install the app and signup today.","['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,"All good, with ChargePoint Card.","['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,"Both units were in use, but I parked in the bay next to a 95% full car and waited for it to finish, then helped myself to the released cable.","['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,"Working well, but only getting 34kW","['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,All fine.,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,Had to call the helpline as the available unit wouldn't read my RFID card. Customer Services answered really quickly and rebooted the device and then all was good. Great Service. Thank you Instavolt!,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,£0.40pkw fast charge. Very happy with fast charge.,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,"All working exactly as it should, well done Instavolt.","['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,Works great. Neither charger in use when we arrived.,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,Card reader was broken. Had to call to have the charger reset. Then I could charge.,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,Wokred earlier this evening.,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,"Need to charge your Electric Vehicle ? I use the Instavolt mobile application, its really simple to use and I would recommend that you use it too. Enter this referral code TcO83 on signup and we will both receive a £5 account credit after your first charge.","['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,"Need to charge your Electric Vehicle ? I use the Instavolt mobile application, its really simple to use and I would recommend that you use it too. Enter this referral code TcO83 on signup and we will both receive a £5 account credit after your first charge.","['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,Never used before. Impressed.,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,"Most reliable, sign up with referral code “toWad” to get £5 credit into your account","['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,Seem to be very reliable,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,Card Allen found in car park. Handed in to Halfords service centre,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,"Card reader would not work with my Instavolt RFID card, so used my debit card instead. No dramas and charging at 46kW alongside a Tesla M3 who is charging on the unit next door.","['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,Nice quick charge. Max 35 kw.,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,Nice quick charge. Charge at 35 kw max,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,"using the app, use this code for £5 free credit :) F6Ljt","['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,Assume RHSide is number2 that's what I used no issues use my chargepoint RFID card. Looks like the other side was working rolling text in window.,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,"Took two different cards and several attempts before I could connect, had this problem with another Instavolt","['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,No issues.,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,One broken,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,Arrived with 1 mile range. Phew.,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,"Cable slightly short - only able to charge as space to the left was empty - otherwise ok , used Etron charge card - got a Burger King whilst waiting .","['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,"It’s a bit hit and miss getting it working. It fails every day time if you plug to the car first. I have to tap my card, wait for £5 pre payment to go through then connect to car and press start","['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,No issues on CCS. Contactless very convenient.,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,"Love contactless, app free charging.","['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,Didn’t accept any of our contactless cards but the helpline answered immediately and gave us a free rapid charge🙂,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,Charged no problem.,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,"Fault 22, whatever that means. there's a second device though which is working. didn't call instavolt","['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,Device 1 didn’t connect but that may have been user error on my part! No probs with device 2.,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,"42kw, very easy payment system. Tesla M3 sr+","['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,Good!,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,All good,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,working fine,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,Now requesting £5 pre authorisation on charges,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,All ok,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,No problems,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,all fine,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,All good.,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,Both chargers had their emergency stop buttons pressed. Took about 5 minutes for the chargers to reboot. All ok,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,Great and so easy to use,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,Great and easy to use,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,"Seems emergency stop had been pressed. Rebooted, instavolt operator confirmed a ok their end","['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,All ok,"['Charging', 'Charging', 'Charging', 'Charging']"
16078,-1.467562,53.808438,Leeds Halford York Road Leeds West Yorkshire,LS14 6AX,All ok,"['Charging', 'Charging', 'Charging', 'Charging']"
18272,-1.519337,53.86409,Harrogate Road Harrogate Road Leeds West Yorkshire,LS17 8GS,School staff only,"['Available', 'Available']"
18272,-1.519337,53.86409,Harrogate Road Harrogate Road Leeds West Yorkshire,LS17 8GS,"this point is behjnd a barrier, and for school staff and official business visitors only - parents and other ad hoc visitors park in a separate car park. School reception is 0113 229 1552","['Available', 'Available']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,"Was able to charge successfully on Socket A, tried Socket B initially and it didn’t work","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,Doesn't work,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,"A Port not working, B port took over an hour for 4 KW","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,"Charged yesterday, every other bay ICE’d and port B on Dawn-Judy (adjacent to the space I parked in) was broken. Still charged very slowly despite mine being the only EV actually charging. Was charged by podpoint to use it.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,Only charging at 2.2kw and now charges 40p/kwh,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,Charging at 2.2kWh but still free,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,Very slow charge only charging at 10amps. Sign up saying charging tarring will apply but still showing free in the podpoint app.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,"Couldn’t charge car. Message saying it was already in use, no lights on B side of ChargePoint.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,No longer free charging from 24/10/22,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,Not working,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,Side B still not working,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,"Side B not working. Sick of this with Pod Point, going back to a petrol car next time.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,Side A not working,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,Dawn-Judy has issues,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,Easy and Free…,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,Slow but ok,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,Side B not working,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,"Had a successful charge at location but most of the points only 1 side will work. When it does work speeds are very up and down from 3.7-6.7kw.
Have reported to Pod Point","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,Started charging and was able to claim charge successfully. Charger stopped by itself after 91 minutes and flashed red. No idea why.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,"Not working, no power. 👎🏻","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,Not working,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,Starting to think these will never work,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,Socket B appeared to be working and app accepted charging confirmation but charging terminated soon after. Pod point advised.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,Not working again. Pretty poor up here now.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,No power to any units on site,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,Charger A working,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,Finally actually worked,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,Used B side A side does not appear to charge just flashing red...!,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,No light on side or charger and not charging on B side. Reported to PodPoint.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,Charger seems to be working again 🙌,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,All points offline.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,No power to any of the units,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,"Not working, only 2 showing as available but charge not connecting on both A and B","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,"Not working, unable to charge as charge station not powered.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,Only 2 charge points working currently,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,"Charger working, but at only 10A","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,"Chargers now working, but I'm only getting 10A charge","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,Did not work looks like out of order just flashes,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,All chargers still off :-(,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,"Appeared functional on the pod point app, but my light won't go green after confirming.","['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"
18973,-1.422951,53.799829,Thorpe Park Century Way Leeds West Yorkshire,LS15 8ZA,All chargers still not working. No power to any of them.,"['Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status', 'Unknown status']"