forked from UKHackspaceFoundation/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.json
1687 lines (1687 loc) · 65.2 KB
/
data.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"name": "091 Labs",
"nestaRecord": "N",
"town": "Galway",
"country": "Ireland",
"mainWebsiteUrl": "http://091labs.com/",
"logoImageUrl": "https://pbs.twimg.com/profile_images/378800000382126955/7dcd8a5ab250526a681bcd26c8ba5825.png",
"status": "Active",
"classification": "Hackspace",
"havePremises": "Yes",
"contactEmail": "[email protected]",
"addressFirstLine": "091 Labs, Roxboro House, Raleigh Row",
"combinedAddress": "091 Labs, Roxboro House, Raleigh Row, Galway, Ireland",
"lat": 53.2701621,
"lng": -9.062673799999999,
"mapUrl": "http://maps.google.com/?q=53.2701621,-9.0626738",
"region": "Republic of Ireland",
"townNotInName": true,
"longname": "091 Labs (Galway)"
},
{
"name": "57 North Hacklab",
"nestaRecord": "N",
"town": "Aberdeen",
"country": "Scotland",
"mainWebsiteUrl": "http://57north.co/",
"logoImageUrl": "https://57north.org.uk/img/logo.png",
"status": "Active",
"classification": "Hackspace",
"havePremises": "Yes",
"contactEmail": "[email protected]",
"addressFirstLine": "3rd Floor, 35a Union Street",
"postcode": "AB11 5BN",
"combinedAddress": "3rd Floor, 35a Union Street, Aberdeen, AB11 5BN, Scotland",
"lat": 57.1472427,
"lng": -2.0956103,
"mapUrl": "http://maps.google.com/?q=57.1472427,-2.0956103",
"region": "North East Scotland",
"townNotInName": true,
"longname": "57 North Hacklab (Aberdeen)"
},
{
"name": "AberLab",
"nestaRecord": "N",
"town": "Aberystwyth",
"country": "Wales",
"mainWebsiteUrl": "https://www.facebook.com/AberLabUK/",
"logoImageUrl": "https://pbs.twimg.com/profile_images/580705096264212480/316o9Dy-.jpg",
"status": "Active",
"classification": "Hackspace",
"havePremises": "No",
"contactEmail": "[email protected]",
"combinedAddress": "Aberystwyth, Wales",
"lat": 52.41530299999999,
"lng": -4.08292,
"mapUrl": "http://maps.google.com/?q=52.415303,-4.08292",
"region": "Mid and West Wales",
"townNotInName": true,
"longname": "AberLab (Aberystwyth)"
},
{
"name": "Access Space",
"nestaRecord": "Y",
"town": "Sheffield",
"country": "England",
"mainWebsiteUrl": "http://www.access-space.org/",
"logoImageUrl": "https://pbs.twimg.com/profile_images/583629344624508930/mT8qwNtu.png",
"status": "Active",
"classification": "Hackspace",
"havePremises": "Yes",
"contactEmail": "[email protected]",
"addressFirstLine": "Unit 1, AVEC Bldg, 3-7 Sidney St",
"postcode": "S1 4RG",
"combinedAddress": "Unit 1, AVEC Bldg, 3-7 Sidney St, Sheffield, S1 4RG, England",
"lat": 53.3760991,
"lng": -1.4676234,
"mapUrl": "http://maps.google.com/?q=53.3760991,-1.4676234",
"region": "Yorkshire and the Humber",
"townNotInName": true,
"longname": "Access Space (Sheffield)"
},
{
"name": "Badhack - Basingstoke and Deane Makerspace",
"nestaRecord": "N",
"town": "Basingstoke",
"country": "England",
"mainWebsiteUrl": "http://basingstokemakerspace.org.uk/",
"logoImageUrl": "https://pbs.twimg.com/profile_images/829116103183986689/qwC8a_qL.jpg",
"status": "Starting",
"classification": "Hackspace",
"havePremises": "No",
"contactEmail": "[email protected]",
"combinedAddress": "Basingstoke, England",
"lat": 51.26654,
"lng": -1.0923964,
"mapUrl": "http://maps.google.com/?q=51.26654,-1.0923964",
"region": "South East England",
"townNotInName": false,
"longname": "Badhack - Basingstoke and Deane Makerspace"
},
{
"name": "Barnsley.io",
"nestaRecord": "N",
"town": "Barnsley",
"country": "England",
"mainWebsiteUrl": "http://barnsley.io/",
"logoImageUrl": "http://barnsley.io/img/b_sensor_round.png",
"status": "Active",
"classification": "Hackspace",
"havePremises": "No",
"contactEmail": "[email protected]",
"combinedAddress": "Barnsley, England",
"lat": 53.55263,
"lng": -1.479726,
"mapUrl": "http://maps.google.com/?q=53.55263,-1.479726",
"region": "Yorkshire and the Humber",
"townNotInName": false,
"longname": "Barnsley.io"
},
{
"name": "Blackpool Makerspace",
"nestaRecord": "N",
"town": "Blackpool",
"country": "England",
"mainWebsiteUrl": "https://blackpoolmakerspace.wordpress.com/",
"logoImageUrl": "https://pbs.twimg.com/profile_images/435420638170185728/CZ830IkB_400x400.jpeg",
"status": "Active",
"classification": "Hackspace",
"havePremises": "Yes",
"addressFirstLine": "The Basement, Crossways Hotel, 64 Tyldesley Road",
"postcode": "FY1 5DF",
"combinedAddress": "The Basement, Crossways Hotel, 64 Tyldesley Road, Blackpool, FY1 5DF, England",
"lat": 53.8069997,
"lng": -3.0538902,
"mapUrl": "http://maps.google.com/?q=53.8069997,-3.0538902",
"region": "North West England",
"townNotInName": false,
"longname": "Blackpool Makerspace"
},
{
"name": "Bridge Rectifier",
"nestaRecord": "N",
"town": "Hebden Bridge",
"country": "England",
"mainWebsiteUrl": "http://bridgerectifier.org.uk/",
"logoImageUrl": "http://bridgerectifier.org.uk/app/uploads/2016/03/rectifier-1.png",
"status": "Active",
"classification": "Hackspace",
"havePremises": "Yes",
"contactEmail": "[email protected]",
"addressFirstLine": "Unit 1B, Hebble End Works",
"postcode": "HX7 6HJ",
"combinedAddress": "Unit 1B, Hebble End Works, Hebden Bridge, HX7 6HJ, England",
"lat": 53.740489,
"lng": -2.015991,
"mapUrl": "http://maps.google.com/?q=53.740489,-2.015991",
"region": "Yorkshire and the Humber",
"townNotInName": true,
"longname": "Bridge Rectifier (Hebden Bridge)"
},
{
"name": "Bristol Hackspace",
"nestaRecord": "Y",
"town": "Bristol",
"country": "England",
"mainWebsiteUrl": "http://bristol.hackspace.org.uk/",
"logoImageUrl": "http://bristol.hackspace.org.uk/wordpress/wp-content/themes/hackzine-6-00/images/hackspacelogo100x100.png",
"status": "Active",
"classification": "Hackspace",
"havePremises": "Yes",
"numMembers": 95,
"contactEmail": "[email protected]",
"addressFirstLine": "G11, BV Studios, 37 Philip St",
"postcode": "BS3 4EA",
"combinedAddress": "G11, BV Studios, 37 Philip St, Bristol, BS3 4EA, England",
"lat": 51.4427524,
"lng": -2.5925249,
"mapUrl": "http://maps.google.com/?q=51.4427524,-2.5925249",
"region": "South West England",
"townNotInName": false,
"longname": "Bristol Hackspace"
},
{
"name": "Build Brigton Hackspace",
"nestaRecord": "N",
"town": "Brighton",
"country": "England",
"mainWebsiteUrl": "http://buildbrighton.com/",
"logoImageUrl": "http://buildbrighton.com/wp-content/uploads/2016/04/black-white-buildbrighton-logo.png",
"status": "Active",
"classification": "Hackspace",
"havePremises": "Yes",
"contactEmail": "[email protected]",
"addressFirstLine": "Rodhus Studios (back entrance), Freehold Terrace",
"postcode": "BN2 4AB",
"combinedAddress": "Rodhus Studios (back entrance), Freehold Terrace, Brighton, BN2 4AB, England",
"lat": 50.8384474,
"lng": -0.1269573,
"mapUrl": "http://maps.google.com/?q=50.8384474,-0.1269573",
"region": "South East England",
"townNotInName": false,
"longname": "Build Brigton Hackspace"
},
{
"name": "Cambridge Makespace",
"nestaRecord": "N",
"town": "Cambridge",
"country": "England",
"mainWebsiteUrl": "http://www.makespace.org/",
"logoImageUrl": "https://pbs.twimg.com/profile_images/1106792859/makespace_square_512.png",
"status": "Active",
"classification": "Hackspace",
"havePremises": "Yes",
"contactEmail": "[email protected]",
"addressFirstLine": "16 Mill Lane",
"postcode": "CB2 1RX",
"combinedAddress": "16 Mill Lane, Cambridge, CB2 1RX, England",
"lat": 52.2016408,
"lng": 0.1167952,
"mapUrl": "http://maps.google.com/?q=52.2016408,0.1167952",
"region": "East of England",
"townNotInName": false,
"longname": "Cambridge Makespace"
},
{
"name": "Canterbury Hackspace",
"nestaRecord": "N",
"town": "Canterbury",
"country": "England",
"mainWebsiteUrl": "https://groups.google.com/forum/#!forum/canterbury-hackspace",
"status": "Defunct",
"classification": "Dead",
"havePremises": "No",
"combinedAddress": "Canterbury, England",
"lat": 51.280233,
"lng": 1.0789089,
"mapUrl": "http://maps.google.com/?q=51.280233,1.0789089",
"region": "South East England",
"townNotInName": false,
"longname": "Canterbury Hackspace"
},
{
"name": "Cardiff Hackspace",
"nestaRecord": "N",
"town": "Cardiff",
"country": "Wales",
"mainWebsiteUrl": "http://www.cardiffhackspace.com/",
"logoImageUrl": "http://www.cardiffhackspace.org/assets/cardiff-hackspace-device-1b1a4fcd4391709bc49c85904ba2a03a.svg",
"status": "Active",
"classification": "Hackspace",
"havePremises": "Yes",
"contactEmail": "[email protected]",
"addressFirstLine": "Unit 6, Ely Brewery Workshops",
"postcode": "CF5 4AR",
"combinedAddress": "Unit 6, Ely Brewery Workshops, Cardiff, CF5 4AR, Wales",
"lat": 51.4851632,
"lng": -3.2320905,
"mapUrl": "http://maps.google.com/?q=51.4851632,-3.2320905",
"region": "South Wales",
"townNotInName": false,
"longname": "Cardiff Hackspace"
},
{
"name": "Chelmsford Makerspace",
"nestaRecord": "Y",
"town": "Chelmsford",
"country": "England",
"mainWebsiteUrl": "http://cmspace.org/",
"logoImageUrl": "https://pbs.twimg.com/profile_images/464628129794097152/ZEIbtcKt.jpeg",
"status": "Suspended",
"classification": "Hackspace",
"havePremises": "No",
"contactEmail": "[email protected]",
"combinedAddress": "Chelmsford, England",
"lat": 51.7355868,
"lng": 0.4685497,
"mapUrl": "http://maps.google.com/?q=51.7355868,0.4685497",
"region": "East of England",
"townNotInName": false,
"longname": "Chelmsford Makerspace"
},
{
"name": "Cheltenham Hackspace",
"nestaRecord": "Y",
"town": "Cheltenham",
"country": "England",
"mainWebsiteUrl": "http://cheltenhamhackspace.org/",
"logoImageUrl": "http://www.cheltenhamhackspace.org/mediawiki/skins/Chelt_Mk6.png",
"status": "Active",
"classification": "Hackspace",
"havePremises": "Yes",
"numMembers": 35,
"contactEmail": "[email protected]",
"addressFirstLine": "The Runnings",
"postcode": "GL51 9NW",
"combinedAddress": "The Runnings, Cheltenham, GL51 9NW, England",
"lat": 51.919531,
"lng": -2.0968871,
"mapUrl": "http://maps.google.com/?q=51.919531,-2.0968871",
"region": "South West England",
"townNotInName": false,
"longname": "Cheltenham Hackspace"
},
{
"name": "Chester Hackspace",
"nestaRecord": "N",
"town": "Chester",
"country": "England",
"mainWebsiteUrl": "https://groups.google.com/forum/?fromgroups=#!forum/chester-hackspace",
"status": "Defunct",
"classification": "Dead",
"havePremises": "No",
"combinedAddress": "Chester, England",
"lat": 53.193392,
"lng": -2.893075,
"mapUrl": "http://maps.google.com/?q=53.193392,-2.893075",
"region": "North West England",
"townNotInName": false,
"longname": "Chester Hackspace"
},
{
"name": "Chippenham Hackspace",
"nestaRecord": "N",
"town": "Chippenham",
"country": "England",
"mainWebsiteUrl": "http://chiphack.chipshed.org/",
"logoImageUrl": "http://chiphack.chipshed.org/i/hslogo.png",
"status": "Active",
"classification": "Hackspace",
"havePremises": "No",
"contactEmail": "[email protected]",
"combinedAddress": "Chippenham, England",
"lat": 51.461514,
"lng": -2.1195157,
"mapUrl": "http://maps.google.com/?q=51.461514,-2.1195157",
"region": "South West England",
"townNotInName": false,
"longname": "Chippenham Hackspace"
},
{
"name": "Coventry Makerspace",
"nestaRecord": "Y",
"town": "Coventry",
"country": "England",
"mainWebsiteUrl": "http://coventrymakerspace.com/",
"logoImageUrl": "https://pbs.twimg.com/profile_images/467033109796384768/TFKxcNDx.png",
"status": "Active",
"classification": "Hackspace",
"havePremises": "No",
"contactEmail": "[email protected]",
"combinedAddress": "Coventry, England",
"lat": 52.406822,
"lng": -1.519693,
"mapUrl": "http://maps.google.com/?q=52.406822,-1.519693",
"region": "West Midlands",
"townNotInName": false,
"longname": "Coventry Makerspace"
},
{
"name": "Create Space London",
"nestaRecord": "Y",
"town": "London",
"country": "England",
"mainWebsiteUrl": "http://www.createspacelondon.org/",
"logoImageUrl": "https://pbs.twimg.com/profile_images/378800000010271799/91eb626b33f9b3cf70140236024e9c94.jpeg",
"status": "Active",
"classification": "Hackspace",
"havePremises": "Yes",
"contactEmail": "[email protected]",
"addressFirstLine": "Wembley Point, 11th floor, 1 Harrow Rd, Wembley",
"postcode": "HA9 6DE",
"combinedAddress": "Wembley Point, 11th floor, 1 Harrow Rd, Wembley, London, HA9 6DE, England",
"lat": 51.5445968,
"lng": -0.2737978,
"mapUrl": "http://maps.google.com/?q=51.5445968,-0.2737978",
"region": "Greater London",
"townNotInName": false,
"longname": "Create Space London"
},
{
"name": "Derby Makers",
"nestaRecord": "Y",
"town": "Derby",
"country": "England",
"mainWebsiteUrl": "http://derbymakers.co.uk/",
"logoImageUrl": "https://pbs.twimg.com/profile_images/378800000762810341/72d93f8c63761ff06bcd5bf1506eba0d.jpeg",
"status": "Active",
"classification": "Hackspace",
"havePremises": "Yes",
"numMembers": 25,
"contactEmail": "[email protected]",
"addressFirstLine": "Derby Silk Mill, Silk Mill Lane",
"postcode": "DE1 3AF",
"combinedAddress": "Derby Silk Mill, Silk Mill Lane, Derby, DE1 3AF, England",
"lat": 52.9149204,
"lng": -1.4780506,
"mapUrl": "http://maps.google.com/?q=52.9149204,-1.4780506",
"region": "East Midlands",
"townNotInName": false,
"longname": "Derby Makers"
},
{
"name": "DoES Liverpool",
"nestaRecord": "Y",
"town": "Liverpool",
"country": "England",
"mainWebsiteUrl": "http://doesliverpool.com/",
"logoImageUrl": "https://pbs.twimg.com/profile_images/1346879183/DoESLiverpool.square.png",
"status": "Active",
"havePremises": "Yes",
"addressFirstLine": "Gostins Building, 32-36 Hanover Street",
"postcode": "L1 4LN",
"combinedAddress": "Gostins Building, 32-36 Hanover Street, Liverpool, L1 4LN, England",
"lat": 53.402826,
"lng": -2.9847103,
"mapUrl": "http://maps.google.com/?q=53.402826,-2.9847103",
"region": "North West England",
"townNotInName": false,
"longname": "DoES Liverpool"
},
{
"name": "Doncaster Hackspace",
"nestaRecord": "N",
"town": "Doncaster",
"country": "England",
"mainWebsiteUrl": "https://www.facebook.com/donnyhackspace/",
"status": "Defunct",
"classification": "Dead",
"havePremises": "No",
"combinedAddress": "Doncaster, England",
"lat": 53.52282,
"lng": -1.128462,
"mapUrl": "http://maps.google.com/?q=53.52282,-1.128462",
"region": "Yorkshire and the Humber",
"townNotInName": false,
"longname": "Doncaster Hackspace"
},
{
"name": "Dundee MakerSpace",
"nestaRecord": "Y",
"town": "Dundee",
"country": "Scotland",
"mainWebsiteUrl": "http://dundeemakerspace.co.uk/",
"logoImageUrl": "http://www.dundeemakerspace.co.uk/wp-content/uploads/2014/05/dundee-makerspace-condensed-full.png",
"status": "Active",
"classification": "Hackspace",
"havePremises": "Yes",
"numMembers": 10,
"contactEmail": "[email protected]",
"addressFirstLine": "The Vision Building, 20 Greenmarket",
"postcode": "DD1 4QB",
"combinedAddress": "The Vision Building, 20 Greenmarket, Dundee, DD1 4QB, Scotland",
"lat": 56.45612999999999,
"lng": -2.97883,
"mapUrl": "http://maps.google.com/?q=56.45613,-2.97883",
"region": "North East Scotland",
"townNotInName": false,
"longname": "Dundee MakerSpace"
},
{
"name": "E-Space",
"nestaRecord": "N",
"town": "Exeter",
"country": "England",
"mainWebsiteUrl": "https://groups.google.com/forum/#!forum/e-spaceproject",
"status": "Defunct",
"classification": "Dead",
"havePremises": "No",
"combinedAddress": "Exeter, England",
"lat": 50.718412,
"lng": -3.533899,
"mapUrl": "http://maps.google.com/?q=50.718412,-3.533899",
"region": "South West England",
"townNotInName": true,
"longname": "E-Space (Exeter)"
},
{
"name": "Edinburgh Hacklab",
"nestaRecord": "Y",
"town": "Edinburgh",
"country": "Scotland",
"mainWebsiteUrl": "http://www.edinburghhacklab.com/",
"logoImageUrl": "https://pbs.twimg.com/profile_images/2214862716/logo-final-110_400x400.png",
"status": "Active",
"classification": "Hackspace",
"havePremises": "Yes",
"contactEmail": "[email protected]",
"addressFirstLine": "1 Summerhall",
"postcode": "EH9 1PL",
"combinedAddress": "1 Summerhall, Edinburgh, EH9 1PL, Scotland",
"lat": 55.94011880000001,
"lng": -3.1819104,
"mapUrl": "http://maps.google.com/?q=55.9401188,-3.1819104",
"region": "Lothian",
"townNotInName": false,
"longname": "Edinburgh Hacklab"
},
{
"name": "Farset Labs",
"nestaRecord": "Y",
"town": "Belfast",
"country": "Ireland",
"mainWebsiteUrl": "http://farsetlabs.org.uk/",
"logoImageUrl": "https://pbs.twimg.com/profile_images/686954740635320322/RWdgxf8Q.png",
"status": "Active",
"classification": "Hackspace",
"havePremises": "Yes",
"contactEmail": "[email protected]",
"addressFirstLine": "Unit 1, Weavers Court Business Park,",
"postcode": "BT12 5GH",
"combinedAddress": "Unit 1, Weavers Court Business Park,, Belfast, BT12 5GH, Ireland",
"lat": 54.5952897,
"lng": -5.935927899999999,
"mapUrl": "http://maps.google.com/?q=54.5952897,-5.9359279",
"region": "Northern Ireland",
"townNotInName": true,
"longname": "Farset Labs (Belfast)"
},
{
"name": "Fife Hackspace",
"nestaRecord": "N",
"town": "Fife",
"country": "Scotland",
"mainWebsiteUrl": "https://sites.google.com/site/fifehackspace/",
"status": "Active",
"classification": "Hackspace",
"havePremises": "Yes",
"contactEmail": "[email protected]",
"addressFirstLine": "35 Main St, Thornton, Kirkcaldy",
"postcode": "KY1 4AG",
"combinedAddress": "35 Main St, Thornton, Kirkcaldy, Fife, KY1 4AG, Scotland",
"mapUrl": "http://maps.google.com/?q=,",
"region": "Mid Scotland and Fife",
"townNotInName": false,
"longname": "Fife Hackspace"
},
{
"name": "fizzPOP",
"nestaRecord": "Y",
"town": "Birmingham",
"country": "England",
"mainWebsiteUrl": "http://www.fizzpop.org.uk/",
"logoImageUrl": "http://www.fizzpop.org.uk/wp-content/uploads/2014/01/800px-Logo_improbable_machine.png",
"status": "Active",
"classification": "Hackspace",
"havePremises": "Yes",
"numMembers": 30,
"contactEmail": "fizzpop.makers@gmail .com",
"addressFirstLine": " Rea Studios 90, Floodgate Street ",
"postcode": "B5 5SR",
"combinedAddress": "Rea Studios 90, Floodgate Street , Birmingham, B5 5SR, England",
"lat": 52.4767898,
"lng": -1.8831907,
"mapUrl": "http://maps.google.com/?q=52.4767898,-1.8831907",
"region": "West Midlands",
"townNotInName": true,
"longname": "fizzPOP (Birmingham)"
},
{
"name": "Forma Labs",
"nestaRecord": "N",
"town": "Cork",
"country": "Ireland",
"mainWebsiteUrl": "https://twitter.com/formabiolabs",
"logoImageUrl": "https://pbs.twimg.com/profile_images/511195461957341184/lFUZ22jl.jpeg",
"status": "Active",
"classification": "Hackspace",
"havePremises": "Yes",
"addressFirstLine": "Forma Labs, Grattan House, Grattan Street",
"combinedAddress": "Forma Labs, Grattan House, Grattan Street, Cork, Ireland",
"lat": 51.8995514,
"lng": -8.4803128,
"mapUrl": "http://maps.google.com/?q=51.8995514,-8.4803128",
"region": "Republic of Ireland",
"townNotInName": true,
"longname": "Forma Labs (Cork)"
},
{
"name": "Grimsby Hackspace",
"nestaRecord": "N",
"town": "Grimsby",
"country": "England",
"mainWebsiteUrl": "https://www.facebook.com/Grimsby-HackSpace-489337044502596/",
"logoImageUrl": "https://scontent-lga3-1.xx.fbcdn.net/v/t1.0-9/10450610_490385224397778_6382489953472374820_n.jpg?oh=50eeabdb41f61f09c42cf0881e9eb5fa&oe=59571CB7",
"status": "Active",
"classification": "Hackspace",
"havePremises": "Yes",
"contactEmail": "[email protected]",
"addressFirstLine": "Unit 5, Would Industrial Estate, Granville Street,",
"postcode": "DN32 9PL",
"combinedAddress": "Unit 5, Would Industrial Estate, Granville Street,, Grimsby, DN32 9PL, England",
"lat": 53.5594361,
"lng": -0.0672107,
"mapUrl": "http://maps.google.com/?q=53.5594361,-0.0672107",
"region": "North East England",
"townNotInName": false,
"longname": "Grimsby Hackspace"
},
{
"name": "Hack Oldham",
"nestaRecord": "N",
"town": "Oldham",
"country": "England",
"mainWebsiteUrl": "http://www.hackoldham.com/",
"logoImageUrl": "https://pbs.twimg.com/profile_images/512286882890125312/72AqiDUo_400x400.png",
"status": "Active",
"classification": "Hackspace",
"havePremises": "Yes",
"addressFirstLine": "Hardcastle Street",
"postcode": "OL1 1SU",
"combinedAddress": "Hardcastle Street, Oldham, OL1 1SU, England",
"lat": 53.5418543,
"lng": -2.1068305,
"mapUrl": "http://maps.google.com/?q=53.5418543,-2.1068305",
"region": "North West England",
"townNotInName": false,
"longname": "Hack Oldham"
},
{
"name": "HACK/BURN",
"nestaRecord": "N",
"town": "Blackburn",
"country": "England",
"mainWebsiteUrl": "https://www.facebook.com/hackburn.hackspace/",
"logoImageUrl": "https://pbs.twimg.com/profile_images/643367696088854528/befRUP_2.png",
"status": "Active",
"classification": "Hackspace",
"havePremises": "No",
"contactEmail": "[email protected]",
"combinedAddress": "Blackburn, England",
"lat": 53.748575,
"lng": -2.487529,
"mapUrl": "http://maps.google.com/?q=53.748575,-2.487529",
"region": "North West England",
"townNotInName": true,
"longname": "HACK/BURN (Blackburn)"
},
{
"name": "Hackspace Manchester (Hacman)",
"nestaRecord": "N",
"town": "Manchester",
"country": "England",
"mainWebsiteUrl": "http://hacman.org.uk/",
"logoImageUrl": "https://hacman.org.uk/wp-content/uploads/2013/11/hackspace-black1.png",
"status": "Active",
"classification": "Hackspace",
"havePremises": "Yes",
"addressFirstLine": "Wellington House, Pollard Street",
"postcode": "M40 7FS",
"combinedAddress": "Wellington House, Pollard Street, Manchester, M40 7FS, England",
"lat": 53.4844169,
"lng": -2.2144604,
"mapUrl": "http://maps.google.com/?q=53.4844169,-2.2144604",
"region": "North West England",
"townNotInName": false,
"longname": "Hackspace Manchester (Hacman)"
},
{
"name": "Herts Hackspace",
"nestaRecord": "N",
"town": "South Mimms",
"country": "England",
"mainWebsiteUrl": "http://www.hertshackspace.co.uk/",
"logoImageUrl": "https://pbs.twimg.com/profile_images/378800000339304133/cc823cd6794e682048f15a7c08eb792f.jpeg",
"status": "Active",
"classification": "Hackspace",
"havePremises": "No",
"contactEmail": "[email protected]",
"combinedAddress": "South Mimms, England",
"lat": 52.3555177,
"lng": -1.1743197,
"mapUrl": "http://maps.google.com/?q=52.3555177,-1.1743197",
"region": "East of England",
"townNotInName": false,
"longname": "Herts Hackspace"
},
{
"name": "Hitchin Hackspace",
"nestaRecord": "Y",
"town": "Hitchin",
"country": "England",
"mainWebsiteUrl": "http://www.hackhitchin.org.uk/",
"logoImageUrl": "https://pbs.twimg.com/profile_images/1583650945/Hackspace_400x400.png",
"status": "Active",
"classification": "Hackspace",
"havePremises": "Yes",
"contactEmail": "[email protected]",
"addressFirstLine": "21 Alexandra Road",
"postcode": "SG5 1RB",
"combinedAddress": "21 Alexandra Road, Hitchin, SG5 1RB, England",
"lat": 51.9561816,
"lng": -0.2692774,
"mapUrl": "http://maps.google.com/?q=51.9561816,-0.2692774",
"region": "East of England",
"townNotInName": false,
"longname": "Hitchin Hackspace"
},
{
"name": "Hull Hackspace",
"nestaRecord": "N",
"town": "Hull",
"country": "England",
"mainWebsiteUrl": "https://twitter.com/hullhackspace",
"logoImageUrl": "https://pbs.twimg.com/profile_images/1098563670/hackspace_logo.png",
"status": "Defunct",
"classification": "Dead",
"havePremises": "No",
"numMembers": 16,
"contactEmail": "[email protected]",
"combinedAddress": "Hull, England",
"region": "Yorkshire and the Humber",
"townNotInName": false,
"longname": "Hull Hackspace"
},
{
"name": "Ipswich Makerspace",
"nestaRecord": "N",
"town": "Ipswich",
"country": "England",
"mainWebsiteUrl": "http://www.ipswichmakerspace.com/",
"logoImageUrl": "https://pbs.twimg.com/profile_images/481175531778756608/J87jE00o_400x400.jpeg",
"status": "Active",
"classification": "Hackspace",
"havePremises": "Yes",
"addressFirstLine": "11 Dove Street",
"postcode": "IP4 1NG",
"combinedAddress": "11 Dove Street, Ipswich, IP4 1NG, England",
"lat": 52.0562175,
"lng": 1.1646923,
"mapUrl": "http://maps.google.com/?q=52.0562175,1.1646923",
"region": "East of England",
"townNotInName": false,
"longname": "Ipswich Makerspace"
},
{
"name": "Lancaster And Morecambe Makers",
"nestaRecord": "N",
"town": "Lancaster",
"country": "England",
"mainWebsiteUrl": "https://lamm.space/",
"logoImageUrl": "https://pbs.twimg.com/profile_images/573455385715068928/5WnmT94F_400x400.png",
"status": "Active",
"classification": "Hackspace",
"havePremises": "Yes",
"contactEmail": "[email protected]",
"addressFirstLine": "Unit 5, Sharpes Mill, White Cross Industrial Estate,",
"postcode": "LA1 4XS",
"combinedAddress": "Unit 5, Sharpes Mill, White Cross Industrial Estate,, Lancaster, LA1 4XS, England",
"lat": 54.044788,
"lng": -2.7945221,
"mapUrl": "http://maps.google.com/?q=54.044788,-2.7945221",
"region": "North West England",
"townNotInName": false,
"longname": "Lancaster And Morecambe Makers"
},
{
"name": "Ledbury Hackspace",
"nestaRecord": "N",
"town": "Ledbury",
"country": "England",
"mainWebsiteUrl": "https://www.facebook.com/ledburyhackspace/",
"status": "Prospective",
"classification": "Dead",
"havePremises": "No",
"numMembers": 16,
"contactEmail": "[email protected]",
"combinedAddress": "Ledbury, England",
"lat": 52.033882,
"lng": -2.423574,
"mapUrl": "http://maps.google.com/?q=52.033882,-2.423574",
"region": "West Midlands",
"townNotInName": false,
"longname": "Ledbury Hackspace"
},
{
"name": "Leeds Hackspace",
"nestaRecord": "Y",
"town": "Leeds",
"country": "England",
"mainWebsiteUrl": "http://leeds.hackspace.org.uk/",
"logoImageUrl": "https://pbs.twimg.com/profile_images/692843980724109312/2VcBDFMH_400x400.jpg",
"status": "Active",
"classification": "Hackspace",
"havePremises": "Yes",
"numMembers": 60,
"addressFirstLine": "Unit 14, Sheepscar House, Sheepscar Street South",
"postcode": "LS7 1AD",
"combinedAddress": "Unit 14, Sheepscar House, Sheepscar Street South, Leeds, LS7 1AD, England",
"lat": 53.8063028,
"lng": -1.5338139,
"mapUrl": "http://maps.google.com/?q=53.8063028,-1.5338139",
"region": "Yorkshire and the Humber",
"townNotInName": false,
"longname": "Leeds Hackspace"
},
{
"name": "Leicester Hackspace",
"nestaRecord": "Y",
"town": "Leicester",
"country": "England",
"mainWebsiteUrl": "http://leicesterhackspace.org.uk/",
"logoImageUrl": "http://leicesterhackspace.org.uk/imgs/logo.png",
"status": "Active",
"classification": "Hackspace",
"havePremises": "Yes",
"numMembers": 42,
"contactEmail": "[email protected]",
"addressFirstLine": "Innovation Centre, De Montfort University, 49 Oxford Street",
"postcode": "LE1 5XY",
"combinedAddress": "Innovation Centre, De Montfort University, 49 Oxford Street, Leicester, LE1 5XY, England",
"lat": 52.62921590000001,
"lng": -1.1356026,
"mapUrl": "http://maps.google.com/?q=52.6292159,-1.1356026",
"region": "East Midlands",
"townNotInName": false,
"longname": "Leicester Hackspace"
},
{
"name": "Leigh Hackspace",
"nestaRecord": "Y",
"town": "Leigh",
"country": "England",
"mainWebsiteUrl": "http://www.leighhack.org/",
"logoImageUrl": "https://pbs.twimg.com/profile_images/563073865518034944/mbTv5gH__400x400.png",
"status": "Active",
"classification": "Hackspace",
"havePremises": "Yes",
"numMembers": 75,
"contactEmail": "[email protected]",
"addressFirstLine": "Mather House, Unit F1, The Cotton Mill, Mather Ln",
"postcode": "WN7 2PW",
"combinedAddress": "Mather House, Unit F1, The Cotton Mill, Mather Ln, Leigh, WN7 2PW, England",
"lat": 53.494058,
"lng": -2.5095499,
"mapUrl": "http://maps.google.com/?q=53.494058,-2.5095499",
"region": "North West England",
"townNotInName": false,
"longname": "Leigh Hackspace"
},
{
"name": "Lightbox Lab",
"nestaRecord": "N",
"town": "Drogheda",
"country": "Ireland",
"mainWebsiteUrl": "http://www.lightboxlab.ie/",
"logoImageUrl": "https://pbs.twimg.com/profile_images/501708656023306242/hjlOBjmc.png",
"status": "Active",
"classification": "Hackspace",
"havePremises": "No",
"numMembers": 35,
"contactEmail": "[email protected]",
"combinedAddress": "Drogheda, Ireland",
"lat": 53.717856,
"lng": -6.3560985,
"mapUrl": "http://maps.google.com/?q=53.717856,-6.3560985",
"region": "Republic of Ireland",
"townNotInName": true,
"longname": "Lightbox Lab (Drogheda)"
},
{
"name": "Lightbulb Nights / Makerspace Guernsey",
"nestaRecord": "N",
"town": "St Peter Port",
"country": "Guernsey",
"mainWebsiteUrl": "http://www.makerspace.gg/",
"logoImageUrl": "https://pbs.twimg.com/profile_images/632475639065370624/zk0SiTqx.png",
"status": "Active",
"classification": "Hackspace",
"havePremises": "No",
"contactEmail": "[email protected]",
"combinedAddress": "St Peter Port, Guernsey",
"lat": 49.460563,
"lng": -2.533856,
"mapUrl": "http://maps.google.com/?q=49.460563,-2.533856",
"region": "Baliwicks of Guernsey",
"townNotInName": true,
"longname": "Lightbulb Nights / Makerspace Guernsey (St Peter Port)"
},
{
"name": "Lincoln Hackspace",
"nestaRecord": "Y",
"town": "Lincoln",
"country": "England",
"mainWebsiteUrl": "http://www.lincoln-hackspace.org.uk/",
"logoImageUrl": "http://www.lincoln-hackspace.org.uk/sites/default/files/Lincolnhackspacelogo_5.png",
"status": "Active",
"classification": "Hackspace",
"havePremises": "Yes",
"addressFirstLine": "Unit 20, Lyndon Business Park, Farrier Rd,",
"postcode": "LN6 3RU",
"combinedAddress": "Unit 20, Lyndon Business Park, Farrier Rd,, Lincoln, LN6 3RU, England",
"lat": 53.2026547,
"lng": -0.6107342,
"mapUrl": "http://maps.google.com/?q=53.2026547,-0.6107342",
"region": "East Midlands",
"townNotInName": false,
"longname": "Lincoln Hackspace"
},
{
"name": "London Hackspace",
"nestaRecord": "Y",
"town": "London",
"country": "England",
"mainWebsiteUrl": "http://london.hackspace.org.uk/",
"logoImageUrl": "https://london.hackspace.org.uk/images/london.png",
"status": "Active",
"classification": "Hackspace",
"havePremises": "Yes",
"numMembers": 10,
"contactEmail": "[email protected]",
"addressFirstLine": "447 Hackney Road",
"postcode": "E2 9DY",
"combinedAddress": "447 Hackney Road, London, E2 9DY, England",
"lat": 51.5321729,
"lng": -0.060725,
"mapUrl": "http://maps.google.com/?q=51.5321729,-0.060725",
"region": "Greater London",
"townNotInName": false,
"longname": "London Hackspace"
},
{
"name": "Maidstone Hackspace",
"nestaRecord": "N",
"town": "Medway",
"country": "England",
"mainWebsiteUrl": "http://maidstone-hackspace.org.uk/",
"logoImageUrl": "https://pbs.twimg.com/profile_images/607649877791797251/Ak3Mce9a.jpg",
"status": "Active",
"classification": "Hackspace",
"havePremises": "No",
"numMembers": 1250,
"contactEmail": "[email protected]",
"combinedAddress": "Medway, England",
"lat": 51.4047432,
"lng": 0.5417860999999999,
"mapUrl": "http://maps.google.com/?q=51.4047432,0.5417861",
"region": "South East England",
"townNotInName": false,
"longname": "Maidstone Hackspace"
},
{
"name": "Make Bournemouth",
"nestaRecord": "Y",
"town": "Bournemouth",
"country": "England",
"mainWebsiteUrl": "https://www.makebournemouth.com/",
"logoImageUrl": "https://www.makebournemouth.com/wp-content/uploads/2014/09/makebmth_logo.png",
"status": "Active",
"classification": "Hackspace",
"havePremises": "No",
"combinedAddress": "Bournemouth, England",
"lat": 50.719164,
"lng": -1.880769,
"mapUrl": "http://maps.google.com/?q=50.719164,-1.880769",
"region": "South East England",
"townNotInName": false,
"longname": "Make Bournemouth"
},
{
"name": "Make:Bromyard",
"nestaRecord": "Y",
"town": "Bromyard",
"country": "England",
"mainWebsiteUrl": "http://makebromyard.org.uk/",
"logoImageUrl": "https://pbs.twimg.com/profile_images/552121862579187712/0UaQzTvy_400x400.png",
"status": "Active",
"classification": "Hackspace",
"havePremises": "Yes",
"addressFirstLine": "Porthouse Business Centre, Tenbury Rd",
"postcode": "HR7 4FL",
"combinedAddress": "Porthouse Business Centre, Tenbury Rd, Bromyard, HR7 4FL, England",
"lat": 52.193664,
"lng": -2.5099196,
"mapUrl": "http://maps.google.com/?q=52.193664,-2.5099196",
"region": "West Midlands",
"townNotInName": false,
"longname": "Make:Bromyard"
},
{
"name": "Maker Mondays - Kendal Cumbria",
"nestaRecord": "N",
"town": "Kendal",
"country": "England",
"status": "Starting",
"classification": "Hackspace",
"havePremises": "No",
"numMembers": 3,
"contactEmail": "[email protected]",
"combinedAddress": "Kendal, England",
"lat": 54.32800599999999,
"lng": -2.74629,
"mapUrl": "http://maps.google.com/?q=54.328006,-2.74629",
"region": "North West England",
"townNotInName": false,
"longname": "Maker Mondays - Kendal Cumbria"
},
{
"name": "MakerSpace",
"nestaRecord": "N",