-
Notifications
You must be signed in to change notification settings - Fork 0
/
FractrackerCSV.json
9704 lines (9704 loc) · 373 KB
/
FractrackerCSV.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
[
{
"FIELD1": "Timestamp",
"FIELD2": "Name",
"FIELD3": "Summary",
"FIELD4": "Website",
"FIELD5": "Contact",
"FIELD6": "Email",
"FIELD7": "Phone",
"FIELD8": "Street Address",
"FIELD9": "City",
"FIELD10": "State",
"FIELD11": "Zip code",
"FIELD12": "Latitude",
"FIELD13": "Longitude",
"FIELD14": "Category",
"FIELD15": "Accuracy",
"FIELD16": "Use for Map"
},
{
"FIELD1": "8/14/2015 18:27:56",
"FIELD2": "350 Massachusetts for a Better Future",
"FIELD3": "Building the grassroots climate movement in MA",
"FIELD4": "www.350ma.org",
"FIELD5": "Emily Kirkland",
"FIELD6": "[email protected]",
"FIELD7": "646-623-5271",
"FIELD8": "30 Bow St",
"FIELD9": "Cambridge",
"FIELD10": "MA",
"FIELD11": "2138",
"FIELD12": "42.371203",
"FIELD13": "-71.116118",
"FIELD14": "Advocacy",
"FIELD15": "Address",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "350.org",
"FIELD3": "350.org is building a global grassroots movement to solve the climate crisis.",
"FIELD4": "http://350.org/",
"FIELD5": "",
"FIELD6": "",
"FIELD7": "518-635-0350",
"FIELD8": "20 Jay St",
"FIELD9": "Brooklyn",
"FIELD10": "NY",
"FIELD11": "11201",
"FIELD12": "40.704015",
"FIELD13": "-73.986764",
"FIELD14": "Advocacy",
"FIELD15": "Address",
"FIELD16": "Use"
},
{
"FIELD1": "2/29/2016 8:58:38",
"FIELD2": "350NJ",
"FIELD3": "To help break our dependence on the fossil fuels coal, oil and gas, and bring about a swift, just transition to renewable energy. ",
"FIELD4": "www.facebook.com/350NJ",
"FIELD5": "Rosemary Carey",
"FIELD6": "[email protected]",
"FIELD7": "201-841-5171",
"FIELD8": "698 Alexander Ct.",
"FIELD9": "River Vale",
"FIELD10": "New Jersey",
"FIELD11": "7675",
"FIELD12": "41.034561",
"FIELD13": "-74.001776",
"FIELD14": "Advocacy",
"FIELD15": "Address",
"FIELD16": "Use"
},
{
"FIELD1": "11/25/2014 10:48:00",
"FIELD2": "Advocates for Morris",
"FIELD3": "To advocate for protections against hydrofracking in the Town of Morris",
"FIELD4": "advocates.for.morris.blogspot",
"FIELD5": "Maureen Dill",
"FIELD6": "[email protected]",
"FIELD7": "718-440-4717",
"FIELD8": "PO Box 177",
"FIELD9": "Morris",
"FIELD10": "NY",
"FIELD11": "13808",
"FIELD12": "42.548",
"FIELD13": "-75.2454",
"FIELD14": "Advocacy",
"FIELD15": "Municipality",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "Air Alliance Houston",
"FIELD3": "Research. Advocacy. Education",
"FIELD4": "http://airalliancehouston.org/",
"FIELD5": "Adrian Shelly, Exectuvie Director",
"FIELD6": "[email protected]",
"FIELD7": "713-528-3779",
"FIELD8": "3914 Leeland Street",
"FIELD9": "Houston",
"FIELD10": "TX",
"FIELD11": "77003",
"FIELD12": "29.749278",
"FIELD13": "-95.34741",
"FIELD14": "Advocacy",
"FIELD15": "Zip code",
"FIELD16": "Use"
},
{
"FIELD1": "Added by HHN",
"FIELD2": "Air Coalition of Tunkhannock",
"FIELD3": "Because We Care (BWC) is a nonpartisan grassroots group of Tunkhannock, PA area residents whose mission is to raise awareness, find solutions and take action on public health and safety, environmental, social and other issues that would have a negative impact on our children and our community. ",
"FIELD4": "http://bwctunkhannock.weebly.com/",
"FIELD5": "Audrey Gozdiskowski",
"FIELD6": "[email protected]",
"FIELD7": "",
"FIELD8": "621 Sr 29 N",
"FIELD9": "Tunkhannock",
"FIELD10": "PA",
"FIELD11": "18657",
"FIELD12": "41.566217",
"FIELD13": "-75.938246",
"FIELD14": "Advocacy",
"FIELD15": "Address",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "AirWaterGas",
"FIELD3": "AirWaterGas is a team of scientists, engineers, public health experts, educators, policy analysts, economists, and lawyers working together to address a single driving question:",
"FIELD4": "https://www.airwatergas.org/",
"FIELD5": "",
"FIELD6": "[email protected]",
"FIELD7": "303-492-9113",
"FIELD8": "Environmental Engineering 607 UCB 4001 Discovery Drive",
"FIELD9": "Boulder",
"FIELD10": "CO",
"FIELD11": "80309",
"FIELD12": "40.010561",
"FIELD13": "-105.289013",
"FIELD14": "Scientific",
"FIELD15": "Zip code",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "Akron Beacon Journal",
"FIELD3": "Ohio Utica Shale Blog",
"FIELD4": "http://www.ohio.com/blogs/drilling/ohio-utica-shale-1.291290",
"FIELD5": "Bob Downing",
"FIELD6": "[email protected]",
"FIELD7": "330-996-3745",
"FIELD8": "44 E. Exchange Street",
"FIELD9": "Akron",
"FIELD10": "OH",
"FIELD11": "44308",
"FIELD12": "41.0751",
"FIELD13": "-81.5214",
"FIELD14": "Press",
"FIELD15": "Municipality",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "All Sides with Ann Fisher",
"FIELD3": "Ohio State Public Radio",
"FIELD4": "http://www.wosu.org/2012/allsides",
"FIELD5": "Ann Fisher",
"FIELD6": "",
"FIELD7": "614-292-9678",
"FIELD8": "2400 Olentangy River Road",
"FIELD9": "Columbus",
"FIELD10": "OH",
"FIELD11": "43210",
"FIELD12": "40.0102005",
"FIELD13": "-83.0213614",
"FIELD14": "Press",
"FIELD15": "Municipality",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "Allegheny Defense Project",
"FIELD3": "The Allegheny Defense Project (ADP) is a 501 (c) (3) non-profit organization dedicated to protecting and restoring the wild forests and rivers of the Allegheny Plateau and the Allegheny National Forest (ANF), PennsylvaniaÂÂs only national forest.",
"FIELD4": "http://www.alleghenydefense.org/",
"FIELD5": "Ryan Talbott, Executive Director",
"FIELD6": "[email protected]",
"FIELD7": "503-887-7845",
"FIELD8": "117 West Wood Lane",
"FIELD9": "Kane",
"FIELD10": "PA",
"FIELD11": "16735",
"FIELD12": "41.628726",
"FIELD13": "-78.80734",
"FIELD14": "Advocacy",
"FIELD15": "Zip code",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "Alliance for Aquatic Resource Monitoring (ALLARM)",
"FIELD3": "ALLARM is an environmental organization based out of Dickinson College that empowers local communities with scientific tools to assess, protect, and restore waterways. Since 1986, ALLARM has provided technical assistance to volunteer stream monitors in the state of Pennsylvania",
"FIELD4": "http://www.dickinson.edu/about/sustainability/allarm/",
"FIELD5": "Julie Vastine, Director",
"FIELD6": "",
"FIELD7": "717-245-1565",
"FIELD8": "Kaufman 124\n5 N College St",
"FIELD9": "Carlisle",
"FIELD10": "PA",
"FIELD11": "17013",
"FIELD12": "40.203458",
"FIELD13": "-77.19987",
"FIELD14": "Scientific",
"FIELD15": "Zip code",
"FIELD16": "Use"
},
{
"FIELD1": "3/18/2015 11:58:16",
"FIELD2": "Alliance of Nurses for Healthy Environments",
"FIELD3": "Promoting healthy people and healthy environments by educating and leading the nursing profession, advancing research, incorporating evidence-based practice, and influencing policy",
"FIELD4": "www.enviRN.org",
"FIELD5": "Katie Huffling",
"FIELD6": "[email protected]",
"FIELD7": "240-753-3729",
"FIELD8": "2901 Shepherd St.",
"FIELD9": "Mount Rainier",
"FIELD10": "MD",
"FIELD11": "20712",
"FIELD12": "38.939221",
"FIELD13": "-76.96647",
"FIELD14": "Advocacy",
"FIELD15": "Address",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "American Academy of Pediatrics (NYS AAP)",
"FIELD3": "District II of the American Academy of Pediatrics is composed of the three New York Chapters, and thus is one of only two Districts consisting of only one state. We endeavor here to distribute activities regarding the welfare of children in New York State and the pediatricians who care for them. The official publication of the District is the New York Pediatrician, published bi-annually online. You may contact our officers by e-mail.",
"FIELD4": "http://nysaap.org/update-on-hydrofracking/",
"FIELD5": "",
"FIELD6": "",
"FIELD7": "516-326-0310",
"FIELD8": "PO Box 1411",
"FIELD9": "Smithtown",
"FIELD10": "NY",
"FIELD11": "11787",
"FIELD12": "40.858952",
"FIELD13": "-73.205786",
"FIELD14": "Legal ",
"FIELD15": "Zip code",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "American Lung Association",
"FIELD3": "",
"FIELD4": "http://www.stateoftheair.org/2014/assets/ALA-SOTA-2014-Full.pdf",
"FIELD5": "",
"FIELD6": "",
"FIELD7": "(800) 586-4872",
"FIELD8": "55 W. Wacker Drive, Suite 1150",
"FIELD9": "Chicago",
"FIELD10": "IL",
"FIELD11": "60601",
"FIELD12": "41.886489",
"FIELD13": "-87.629879",
"FIELD14": "Unknown",
"FIELD15": "Address",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "American Public Health Association",
"FIELD3": "Improve the health of the public and achieve equity in health status",
"FIELD4": "https://www.apha.org/policies-and-advocacy/public-health-policy-statements/policy-database/2014/10/02/15/37/hydraulic-fracturing",
"FIELD5": "",
"FIELD6": "",
"FIELD7": "202-777-2742",
"FIELD8": "800 I Street, NW",
"FIELD9": "Washington",
"FIELD10": "DC",
"FIELD11": "20001",
"FIELD12": "38.900659",
"FIELD13": "-77.02328",
"FIELD14": "Scientific",
"FIELD15": "Address",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "American Rivers",
"FIELD3": "American Rivers is the leading organization working to protect and restore the nationÂs rivers and streams.",
"FIELD4": "http://www.americanrivers.org/",
"FIELD5": "William Irvin",
"FIELD6": "[email protected]",
"FIELD7": "202-347-7550",
"FIELD8": "1101 14th Street NW, Suite 1400",
"FIELD9": "Washington D.C.",
"FIELD10": "",
"FIELD11": "20005",
"FIELD12": "38.904461",
"FIELD13": "-77.03088",
"FIELD14": "Advocacy",
"FIELD15": "Zip code",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "Arkansas Citizens First Congress",
"FIELD3": "The Arkansas Citizens First Congress is a multi-issue and non-partisan coalition of 49 organizations who work together for progressive changes in state policy.",
"FIELD4": "http://www.citizensfirst.org/",
"FIELD5": "Kate Althoff, Co-Chair",
"FIELD6": "[email protected]",
"FIELD7": "501-376-7913",
"FIELD8": "1308 West Second St.",
"FIELD9": "Little Rock",
"FIELD10": "AR",
"FIELD11": "72201",
"FIELD12": "34.745692",
"FIELD13": "-92.27987",
"FIELD14": "Advocacy",
"FIELD15": "Zip code",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "Arkansas for Gas Drilling Accountability",
"FIELD3": "Committed to drilling reform to protect their precious health, and resources of water, soil and air.",
"FIELD4": "",
"FIELD5": "",
"FIELD6": "[email protected]",
"FIELD7": "877-919-4372",
"FIELD8": "",
"FIELD9": "",
"FIELD10": "AR",
"FIELD11": "",
"FIELD12": "34.8667",
"FIELD13": "-92.366023",
"FIELD14": "Advocacy",
"FIELD15": "State",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "Arkansas Public Policy Panel",
"FIELD3": "The Arkansas Public Policy Panel is a statewide organization dedicated to achieving social and economic justice by organizing citizen groups around the state, educating and supporting them to be more effective and powerful, and linking them with one another in coalitions and networks. The Panel seeks to bring balance to the public policy process in Arkansas.",
"FIELD4": "http://www.arpanel.org/",
"FIELD5": "Curtis Mangrum, Co-Chair",
"FIELD6": "[email protected]",
"FIELD7": "501-376-7913",
"FIELD8": "1308 W. 2nd Street",
"FIELD9": "Little Rock",
"FIELD10": "AR",
"FIELD11": "72201",
"FIELD12": "34.745692",
"FIELD13": "-92.27987",
"FIELD14": "Advocacy",
"FIELD15": "Zip code",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "ArkansasFracking",
"FIELD3": "Our mission is to educate the public on the dangers of hydraulic fracturing, commonly known as \"fracking.\" There are also dangers with other phases of oil and gas production like drilling and waste disposal. There is no doubt that some residents of this great state have benefited from employment in this industry and/or from royalties from the leasing of their minerals. Yet, while some benefit, others suffer. ",
"FIELD4": "http://www.arkansasfracking.org/",
"FIELD5": "",
"FIELD6": "[email protected] ",
"FIELD7": "",
"FIELD8": "",
"FIELD9": "Little Rock",
"FIELD10": "AK",
"FIELD11": "",
"FIELD12": "34.726746",
"FIELD13": "-92.344118",
"FIELD14": "Advocacy",
"FIELD15": "Municipality",
"FIELD16": "Use"
},
{
"FIELD1": "3/4/2016 14:41:42",
"FIELD2": "As You Sow ",
"FIELD3": "To promote environmental and social corporate responsibility through shareholder advocacy, coalition building, and innovative legal strategies.",
"FIELD4": "http://www.asyousow.org/",
"FIELD5": "Amelia Timbers ",
"FIELD6": "[email protected] ",
"FIELD7": "510735-8153 ",
"FIELD8": "1611 Telegraph Ave., Ste. 1450 ",
"FIELD9": "Oakland",
"FIELD10": "CA",
"FIELD11": "94612",
"FIELD12": "37.806364",
"FIELD13": "-122.270677",
"FIELD14": "Unknown/Other",
"FIELD15": "Address",
"FIELD16": "Use"
},
{
"FIELD1": "8/7/2014",
"FIELD2": "Assistant Professor, Social Science Department ",
"FIELD3": "University of Wisconsin-Stout ",
"FIELD4": "http://www.uwstout.edu/faculty/pearsont/",
"FIELD5": "Thomas Pearson",
"FIELD6": "[email protected]",
"FIELD7": "Home: 715-235-0532; Cell: 715-497-2577",
"FIELD8": "712 South Broadway St",
"FIELD9": "Menomonie",
"FIELD10": " WI",
"FIELD11": "54751",
"FIELD12": "44.870721",
"FIELD13": "-91.928728",
"FIELD14": "Education",
"FIELD15": "Address",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "Athens County Fracking Action Network",
"FIELD3": "We’re a group of citizens and landowners who have come together over our concern with the potential impacts associated with horizontal hydraulic fracturing. We’re known as Athens County Fracking Action Network. Our mission is to work for the safety, economic interest, and quality of life for Athens County.",
"FIELD4": "http://www.acfan.org/",
"FIELD5": "",
"FIELD6": "[email protected]",
"FIELD7": "",
"FIELD8": "",
"FIELD9": "Athens",
"FIELD10": "OH",
"FIELD11": "",
"FIELD12": "39.327874",
"FIELD13": "-82.065113",
"FIELD14": "Advocacy",
"FIELD15": "Municipality",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "Atlantic Chapter of the Sierra Club",
"FIELD3": "The Atlantic Chapter, headquartered in Albany since 1978, has devoted much of its energy to opposing what it regards as environmentally unsound development projects, and to cleaning up or eliminating pollution",
"FIELD4": "http://newyork2.sierraclub.org/",
"FIELD5": "",
"FIELD6": "[email protected]",
"FIELD7": "518-426-9144",
"FIELD8": "353 Hamilton Street ",
"FIELD9": "Albany",
"FIELD10": "NY",
"FIELD11": "12210",
"FIELD12": "42.652231",
"FIELD13": "-73.764845",
"FIELD14": "Advocacy",
"FIELD15": "Address",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "Audobon Society of Ohio",
"FIELD3": "Important Birding Areas",
"FIELD4": "http://oh.audubon.org/",
"FIELD5": "Doreen Whitley",
"FIELD6": "[email protected]",
"FIELD7": "",
"FIELD8": "505 West Whittier Street",
"FIELD9": "Columbus",
"FIELD10": "OH",
"FIELD11": "43215",
"FIELD12": "39.9480323",
"FIELD13": "-83.0118018",
"FIELD14": "Advocacy",
"FIELD15": "Municipality",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "Audobon Society of Ohio",
"FIELD3": "Important Birding Areas",
"FIELD4": "http://oh.audubon.org/",
"FIELD5": "John P. Cecil",
"FIELD6": "[email protected]",
"FIELD7": "215-355-9588, ext. 15",
"FIELD8": "Audubon Science Office, 545 Almshouse Road",
"FIELD9": "Ivyland",
"FIELD10": "PA",
"FIELD11": "18974",
"FIELD12": "40.2385892",
"FIELD13": "-75.0595445",
"FIELD14": "Advocacy",
"FIELD15": "Municipality",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "Baldwin Hills Oil Watch",
"FIELD3": "Baldwin Hills Oil Watch serves as an information portal connecting residents effected by and living in the vicinity of the Inglewood Oil Field operations to other organizations and resources actively engaged in Oil, Gas and fracking issues in Baldwin Hills, Culver City, Los Angeles and throughout California.",
"FIELD4": "http://baldwinhillsoilwatch.org/",
"FIELD5": "",
"FIELD6": "",
"FIELD7": "",
"FIELD8": "",
"FIELD9": "Baldwin Hills",
"FIELD10": "CA",
"FIELD11": "90008",
"FIELD12": "34.009754",
"FIELD13": "-118.33705",
"FIELD14": "Advocacy",
"FIELD15": "Zip code",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "Ban Fracking Fermanagh (Ireland) ",
"FIELD3": "Our Campaign is commited to uniting concerned citizens in opposition to ANY potential hydraulic fracturing, fracking, of our deposits of oil and gas.",
"FIELD4": "https://www.facebook.com/BanFrackingFermanaghCampaign",
"FIELD5": "",
"FIELD6": "",
"FIELD7": "",
"FIELD8": "",
"FIELD9": "Fermanagh",
"FIELD10": "Ireland",
"FIELD11": "",
"FIELD12": "54.337388",
"FIELD13": "-7.574795",
"FIELD14": "Advocacy",
"FIELD15": "N/A",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "Ban Michigan Fracking",
"FIELD3": "Ban Michigan Fracking formed in November 2011 to educate, advocate and organize to ban fracking and raise awareness of the dangers of gas drilling to the state’s economy, to the environment and to the health and safety of its people. We are a grassroots group dedicated to taking direct action. We formed Ban Michigan Fracking in response to the recent co-opting of the ban movement in Michigan: the emergence of a coalition by so-called environmental groups working with legislators to impose a sham fracking advisory panel and study on fracking carried out by state agencies, with similar mandates to the fatally-biased panel and study in New York state.",
"FIELD4": "http://banmichiganfracking.org/",
"FIELD5": "",
"FIELD6": "[email protected]",
"FIELD7": "",
"FIELD8": "",
"FIELD9": "",
"FIELD10": "MI",
"FIELD11": "",
"FIELD12": "43.424126",
"FIELD13": "-84.972639",
"FIELD14": "Advocacy",
"FIELD15": "County",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "Be The Change USA",
"FIELD3": "",
"FIELD4": "http://btc-usa.net/",
"FIELD5": "",
"FIELD6": "",
"FIELD7": "",
"FIELD8": "",
"FIELD9": "",
"FIELD10": "CO",
"FIELD11": "",
"FIELD12": "38.907986",
"FIELD13": "-105.432132",
"FIELD14": "Advocacy",
"FIELD15": "County",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "Beaver County Marcellus Awareness Committee",
"FIELD3": "BC-MAC (Beaver County Marcellus Awareness Committee) is a local, grassroots group that was formed in early 2010. Our mission from the beginning was to uncover factual information regarding gas drilling in Western Pennsylvania-specifically in Beaver Coun",
"FIELD4": "https://sites.google.com/site/beavercountymac/home?mobile=true",
"FIELD5": "Steve White",
"FIELD6": "[email protected]",
"FIELD7": "412-897-7996",
"FIELD8": "",
"FIELD9": "Beaver",
"FIELD10": "PA",
"FIELD11": "",
"FIELD12": "40.696211",
"FIELD13": "-80.30243",
"FIELD14": "Advocacy",
"FIELD15": "Municipality",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "Benedictine Sisters Erie PA",
"FIELD3": "",
"FIELD4": "http://www.eriebenedictines.org/",
"FIELD5": "",
"FIELD6": "",
"FIELD7": "",
"FIELD8": "6101 East Lake Road",
"FIELD9": "Erie",
"FIELD10": "PA",
"FIELD11": "16511",
"FIELD12": "42.179238",
"FIELD13": "-79.974943",
"FIELD14": "Unknown",
"FIELD15": "Address",
"FIELD16": "Use"
},
{
"FIELD1": "2/24/2016 20:37:03",
"FIELD2": "Benicians for a Safe and Healthy Community",
"FIELD3": "Stop Valero benicia's crude by rail project",
"FIELD4": "http://safebenicia.org",
"FIELD5": "Andres Soto",
"FIELD6": "[email protected]",
"FIELD7": "510-237-6866",
"FIELD8": "300 East H St. #99",
"FIELD9": "Benicia",
"FIELD10": "CA",
"FIELD11": "94510",
"FIELD12": "38.047164",
"FIELD13": "-122.153841",
"FIELD14": "Advocacy",
"FIELD15": "Address",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "Berks Gas Truth",
"FIELD3": "Berks Gas Truth is a grassroots citizens group fighting to bring an end to unconventional natural gas drilling in Pennsylvania.",
"FIELD4": "http://www.gastruth.org/",
"FIELD5": "",
"FIELD6": "[email protected]",
"FIELD7": "",
"FIELD8": "",
"FIELD9": "",
"FIELD10": "PA",
"FIELD11": "",
"FIELD12": "40.8967018",
"FIELD13": "-77.8388977",
"FIELD14": "Advocacy",
"FIELD15": "State",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "Berkshire Environmental Action Team (BEAT)",
"FIELD3": "To work with you to protect the environment for wildlife in support of the natural world that sustains us all.",
"FIELD4": "www.thebeatnews.org",
"FIELD5": "Jane Winn",
"FIELD6": "[email protected]",
"FIELD7": "413-230-7321",
"FIELD8": "29 Highland Ave",
"FIELD9": "Pittsfield",
"FIELD10": "MA",
"FIELD11": "1201",
"FIELD12": "42.47679",
"FIELD13": "-73.264023",
"FIELD14": "Advocacy",
"FIELD15": "Address",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "Binghamton Regional Sustainability Coalition",
"FIELD3": "The BRSC is a grassroots, democratically-run organization, dedicated to increasing civic participation through education and collaboration to achieve enduring social, environmental and economic well-being.",
"FIELD4": "http://binghamtonsustainability.org/",
"FIELD5": "",
"FIELD6": "",
"FIELD7": "",
"FIELD8": "Binghamton Regional Sustainability Coalition P.O. Box 907",
"FIELD9": "Binghamton",
"FIELD10": "NY",
"FIELD11": "13902",
"FIELD12": "42.105375",
"FIELD13": "-75.8876",
"FIELD14": "Advocacy",
"FIELD15": "Zip code",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "Bloombsburg University",
"FIELD3": "",
"FIELD4": "",
"FIELD5": "Brock Minnich",
"FIELD6": "[email protected]",
"FIELD7": "",
"FIELD8": "400 East Second Street",
"FIELD9": "Bloomsburg",
"FIELD10": "PA",
"FIELD11": "17815",
"FIELD12": "41.0077751",
"FIELD13": "-76.4478707",
"FIELD14": "Education",
"FIELD15": "Municipality",
"FIELD16": "Use"
},
{
"FIELD1": "7/3/2014 0:15:28",
"FIELD2": "Blue Ridge Environmental Defense League",
"FIELD3": "The Blue Ridge Environmental Defense League is a regional, community-based, non-profit environmental organization. Our founding principles are earth stewardship, environmental democracy, social justice, and community empowerment.",
"FIELD4": "www.bredl.org",
"FIELD5": "Louis Zeller, Executive Director",
"FIELD6": "[email protected]",
"FIELD7": "(336) 982-2691 ",
"FIELD8": "PO Box 88",
"FIELD9": "Glendale Springs",
"FIELD10": "NC",
"FIELD11": "28629",
"FIELD12": "36.346",
"FIELD13": "-81.3653",
"FIELD14": "Advocacy",
"FIELD15": "Zip code",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "Bluedaze: Drilling Reform for Texas",
"FIELD3": "In January 2010, I started working for Earthworks’ Oil and Gas Accountability Project on a very part-time basis. At that time I was likely the only person in Texas to get paid for helping Texans who are negatively effected by oil and gas development. We hope to make my position full-time soon. Update: In May 2011, I went to work full-time for Earthworks as their Texas and Gulf Region Organizer. June 2014, I completed the 20 hour course given by Infrared Training Center to receive my certification as an optical gas imaging thermographer.",
"FIELD4": "http://www.texassharon.com/",
"FIELD5": "Sharon Wilson",
"FIELD6": "[email protected]",
"FIELD7": "",
"FIELD8": "",
"FIELD9": "",
"FIELD10": "TX",
"FIELD11": "",
"FIELD12": "31.372715",
"FIELD13": "-98.221081",
"FIELD14": "Advocacy ",
"FIELD15": "County",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "Brandywine Peace Community",
"FIELD3": "",
"FIELD4": "http://www.brandywinepeace.com",
"FIELD5": "",
"FIELD6": "",
"FIELD7": "",
"FIELD8": "P.O. Box 81",
"FIELD9": "Swarthmore",
"FIELD10": "PA",
"FIELD11": "19081",
"FIELD12": "39.881895",
"FIELD13": "-75.349496",
"FIELD14": "Unknown",
"FIELD15": "Zip Code",
"FIELD16": "Use"
},
{
"FIELD1": "3/14/2016 17:03:14",
"FIELD2": "Brandywine/TB Southern Region Coalition",
"FIELD3": "Pollutants Free Alliance",
"FIELD4": "btbcoalition.org",
"FIELD5": "Kamita Gray",
"FIELD6": "[email protected]",
"FIELD7": "2406819281",
"FIELD8": "",
"FIELD9": "Brandywine",
"FIELD10": "Maryland",
"FIELD11": "20613",
"FIELD12": "38.699416",
"FIELD13": "-76.852129",
"FIELD14": "Advocacy",
"FIELD15": "Zip Code ",
"FIELD16": "Use"
},
{
"FIELD1": "7/9/2015",
"FIELD2": "Breast Cancer Action",
"FIELD3": "Breast Cancer Action’s mission is to achieve health justice for all women at risk of and living with breast cancer. - See more at: http://www.bcaction.org/about/mission-vision-values/#sthash.qychpUZB.dpuf",
"FIELD4": "http://www.bcaction.org/",
"FIELD5": "Sahru Keiser",
"FIELD6": "[email protected]",
"FIELD7": "1.877.2.STOPBC",
"FIELD8": "657 Mission Street, Suite 302",
"FIELD9": "San Francisco",
"FIELD10": "CA",
"FIELD11": "94105",
"FIELD12": "37.786775",
"FIELD13": "-122.40086",
"FIELD14": "Scientific",
"FIELD15": "Address",
"FIELD16": "Use"
},
{
"FIELD1": "Added by HHN",
"FIELD2": "Breathe Easy Susquehanna County",
"FIELD3": "Mission: To protect regional air quality and health of communities in Susquehanna County, Pa from potentially harmful air emissions released through the processes of shale gas extraction ,production and transport. Strategy: We will promote respectful dialogue between the natural gas industry and our Susquehanna County community. Although our members are bipartisan, we are non-partisan. We will publicly advocate industry to keep their promise to act as good neighbors and partners through voluntary use of best technologies and processes for lowest possible air emissions at every stage of shale gas extraction beyond regulations. Achieving the lowest air emissions possible will help to keep our air healthy to breathe, which will help protect the health of everyone living and working in our community.",
"FIELD4": "https://www.facebook.com/BreatheEasySusq",
"FIELD5": "Rebecca Roter",
"FIELD6": "[email protected]",
"FIELD7": "",
"FIELD8": "1258 Old Kings Bridge Rd",
"FIELD9": "nicholson",
"FIELD10": "GA",
"FIELD11": "30565",
"FIELD12": "34.086314",
"FIELD13": "-83.443025",
"FIELD14": "Advocacy",
"FIELD15": "Address",
"FIELD16": "Use"
},
{
"FIELD1": "5/3/2016 17:29:27",
"FIELD2": "Breathe Easy Susquehanna County",
"FIELD3": "Mission/Goal: \"To protect air quality and health of communities across Pennsylvania's Marcellus Shale region from potentially harmful air emissions released through the processes of shale gas extraction, production and transport.\" STRATEGY: \"We will promote respectful dialogue between the natural gas industry and our Susquehanna County community. We will facilitate scientific documentation of possible air impacts without bias. Although our members are bipartisan, we are non-partisan. We will advocate that industry act as good neighbors and partners through voluntary use of best technologies and processes for lowest possible air emissions at every stage of shale gas extraction, production and transport. Achieving the lowest air emissions possible beyond required regulations will help to keep our air healthy to breathe, and will help protect the health of everyone living and working in our community. \" ",
"FIELD4": "https://www.facebook.com/BreatheEasySusq/",
"FIELD5": "Rebecca Roter, Chairperson",
"FIELD6": "[email protected]",
"FIELD7": "267-733-5211",
"FIELD8": "PO Box 98",
"FIELD9": "Montrose ",
"FIELD10": "PA",
"FIELD11": "18801",
"FIELD12": "41.833583",
"FIELD13": "-75.875526",
"FIELD14": "Advocacy",
"FIELD15": "Zip Code",
"FIELD16": "Use"
},
{
"FIELD1": "3/30/2015 19:09:15",
"FIELD2": "Bronx Climate Justice North",
"FIELD3": "BCJN is a grassroots climate justice organization and alliance based in the North Bronx. We work in solidarity with partners in Bronx Climate Justice, a coalition of environmental justice organizations in the South Bronx. We are an advocacy and an educational group, organizing for a transition to 100% renewable energy by 2030 and other climate justice initiatives in the Bronx and beyond. Please explore our Working Groups: Energy Solutions, Food Justice, and Green Vision. We're a local affiliate of 350.org. BCJN stands for One Bronx, United for Climate Justice. Please join us -- we're working for a greener, more democratic and just world. (Header painting by permission of the artist, Thor Wickstrom)",
"FIELD4": "https://bronxclimatejusticenorth.wordpress.com/",
"FIELD5": "Jennifer Scarlott",
"FIELD6": "[email protected]",
"FIELD7": "718-432-9060",
"FIELD8": "2501 Palisade Avenue, #D2",
"FIELD9": "Bronx",
"FIELD10": "NY",
"FIELD11": "10463",
"FIELD12": "40.881109",
"FIELD13": "-73.92245",
"FIELD14": "Advocacy",
"FIELD15": "Address",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "Buckeye Forest Council",
"FIELD3": "Fracking",
"FIELD4": "http://www.buckeyeforestcouncil.org/index.php?option=com_content&task=blogsection&id=21&Itemid=54",
"FIELD5": "Nathan Johsnon",
"FIELD6": "[email protected]",
"FIELD7": "614-487-9290",
"FIELD8": "PO Box 824",
"FIELD9": "Athens",
"FIELD10": "OH",
"FIELD11": "45701",
"FIELD12": "39.9885994",
"FIELD13": "-83.0383971",
"FIELD14": "Advocacy",
"FIELD15": "Municipality",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "Buckeye Hills-Hocking Valley Regional Development District",
"FIELD3": "Area Agency on Aging 8",
"FIELD4": "http://www.buckeyehills.org",
"FIELD5": "Frederick D. Hindman, Jr.",
"FIELD6": "[email protected]",
"FIELD7": "1-800-331-2644",
"FIELD8": "1400 Pike Street",
"FIELD9": "Marietta",
"FIELD10": "OH",
"FIELD11": "45750",
"FIELD12": "39.393125",
"FIELD13": "-81.405111",
"FIELD14": "Advocacy",
"FIELD15": "Address",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "Buckeye Hills-Hocking Valley Regional Development District",
"FIELD3": "Area Agency on Aging",
"FIELD4": "http://www.buckeyehills.org",
"FIELD5": "Bret Allphin",
"FIELD6": "[email protected]",
"FIELD7": "740-376-1028",
"FIELD8": "1400 Pike Street",
"FIELD9": "Marietta",
"FIELD10": "OH",
"FIELD11": "45750",
"FIELD12": "39.393125",
"FIELD13": "-81.405111",
"FIELD14": "Advocacy",
"FIELD15": "Address",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "Buckeye Trail Association",
"FIELD3": "The Buckeye Trail Association is the leader in building, maintaining, protecting and promoting use of Ohio's longest scenic hiking trail for our citizens, communities and partners. We provide outdoor recreation, opportunities to volunteer, education, access to the varied resources of Ohio and local economic benefits.",
"FIELD4": "http://www.buckeyetrail.org",
"FIELD5": "Andrew Bashaw",
"FIELD6": "[email protected]",
"FIELD7": "740-832-1282",
"FIELD8": "PO Box 254",
"FIELD9": "Worthington",
"FIELD10": "OH",
"FIELD11": "43085",
"FIELD12": "40.0931191",
"FIELD13": "-83.017962",
"FIELD14": "Education",
"FIELD15": "Municipality",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "Bucks Transitions Group",
"FIELD3": "Our mission is to is to raise awareness of sustainable living and build local ecological resilience in the near future. Communities are encouraged to seek out methods for reducing energy usage as well as reducing their reliance on long supply chains that are totally dependent on fossil fuels for essential items. ",
"FIELD4": "https://www.facebook.com/pages/Bucks-Transition-Group/187803201252106",
"FIELD5": "Henry D'Silva",
"FIELD6": "[email protected]",
"FIELD7": "267-679-0617",
"FIELD8": "",
"FIELD9": "",
"FIELD10": "PA",
"FIELD11": "",
"FIELD12": "40.3359985",
"FIELD13": "-75.110199",
"FIELD14": "Advocacy",
"FIELD15": "County",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "Bureau of Land Management (BLM) ",
"FIELD3": "BLM is responsible for managing a large spectrum of natural resource values.",
"FIELD4": "http://www.blm.gov/wo/st/en/prog/energy/oil_and_gas.html",
"FIELD5": "",
"FIELD6": "[email protected]",
"FIELD7": "",
"FIELD8": "1849 C Street NW, Rm. 5665",
"FIELD9": "Washington",
"FIELD10": "DC",
"FIELD11": "20240",
"FIELD12": "38.894444",
"FIELD13": "-77.042594",
"FIELD14": "Government ",
"FIELD15": "Address",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "Butler Marcellus Outreach Group",
"FIELD3": "Marcellus Outreach Butler is a group of Butler County, Pennsylvania individuals and coalitions concerned about the health and safety of our communities due to horizontal, slickwater, hydrofracture drilling in Marcellus Shale for the extraction of natural",
"FIELD4": "http://www.marcellusoutreachbutler.org/",
"FIELD5": "",
"FIELD6": "[email protected]",
"FIELD7": "",
"FIELD8": "",
"FIELD9": "Butler",
"FIELD10": "PA",
"FIELD11": "",
"FIELD12": "40.860153",
"FIELD13": "-79.895271",
"FIELD14": "Advocacy",
"FIELD15": "Municipality",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "California Department of Conservation",
"FIELD3": "The Division oversees the drilling, operation, maintenance, and plugging and abandonment of oil, natural gas, and geothermal wells. The regulatory program emphasizes the wise development of oil, natural gas, and geothermal resources in the state through sound engineering practices that protect the environment, prevent pollution, and ensure public safety.",
"FIELD4": "http://www.conservation.ca.gov/dog",
"FIELD5": "",
"FIELD6": "[email protected]",
"FIELD7": "(916) 322-1080",
"FIELD8": "801 K Street, MS 24-01",
"FIELD9": "Sacramento",
"FIELD10": "CA",
"FIELD11": "95814",
"FIELD12": "38.580004",
"FIELD13": "-121.496119",
"FIELD14": "Government ",
"FIELD15": "Address",
"FIELD16": "Use"
},
{
"FIELD1": "Added by HHN",
"FIELD2": "Calvert Citizens for a Healthy Community",
"FIELD3": "CCHC is dedicated to protecting the health, safety and quality of life of Calvert County residents from the negative impacts caused by the construction and operations of the Dominion Cove Point LNG facility.",
"FIELD4": "http://www.calvertcitizens.org/",
"FIELD5": "Nancy Ball",
"FIELD6": "[email protected]",
"FIELD7": "",
"FIELD8": "P.O. Box 903",
"FIELD9": "Lusby",
"FIELD10": "MD",
"FIELD11": "20657",
"FIELD12": "38.35866",
"FIELD13": "-76.43927",
"FIELD14": "Advocacy",
"FIELD15": "Zip code",
"FIELD16": "Use"
},
{
"FIELD1": "",
"FIELD2": "Carnegie Mellon University CREATE Laboratory",
"FIELD3": "The CREATE Lab is both a technology breeding ground and a community partner. It is this unique combination that enables a new form of local change: one that empowers the citizens to chart their technology future and, most important of all, their community's prospects for quality of life.",
"FIELD4": "http://www.cmucreatelab.org/projects/OilTrain_Project",
"FIELD5": "Illah R. Nourbakhsh",
"FIELD6": "[email protected], [email protected]",
"FIELD7": "415-359-3084, 412-268-6723",
"FIELD8": "5000 Forbes Avenue Robotics Institute, NSH 3115",