-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcsvjson_map.json
More file actions
2297 lines (2297 loc) · 123 KB
/
csvjson_map.json
File metadata and controls
2297 lines (2297 loc) · 123 KB
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
[
{
"#": 1,
"Organization Name": "(How to) Build Up",
"Logo": "Y",
"URL": "https://howtobuildup.org/",
"Address": "554 Rhode Island Street, San Francisco, CA 94017",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[10-20]",
"Funding Structure Clean": "non-profit NGO",
"Categorization (Clean)": "Science / Technology / Digital Acceleration",
"Region": "",
"Active In": "GNB, LBN, MMR, NER, PHL, SYR, USA, YEM",
"Lat/Lon": "(37.7627678, -122.4026884)",
"Descriptions": "Our approach combines peacebuilding best practices, participatory methodologies and digital technologies to identify and address emergent challenges to peace.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614568752078-7XSZJ6P7B4X2UFQZR5U0"
},
{
"#": 2,
"Organization Name": "Amani Institute",
"Logo": "Y",
"URL": "https://amaniinstitute.org/",
"Address": "Rua dos Ingleses, 150, São Paulo, 01329-000",
"Country": "BRA",
"Global North / Global South": "Global South",
"# of Employees Cleaned": "[21-50]",
"Funding Structure Clean": "non-profit NGO",
"Categorization (Clean)": "Economic Development & Policy",
"Region": "",
"Active In": "BRA, IND, KEN",
"Lat/Lon": "(-23.5592758, -46.64731430000001)",
"Descriptions": "A world of peace, solidarity and development, Amani-Institute aspires to a world that allows everyone to live in dignity and develop their potential; a world of solidarity without violence or war, a world without poverty which promotes youth initiatives and this in a preserved environment.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1613697341193-L8VVW7LYE4WOPMED3G6I"
},
{
"#": 3,
"Organization Name": "Crisis Management Initiative",
"Logo": "Y",
"URL": "http://cmi.fi/",
"Address": "Eteläranta 12, 2nd floor 00130 Helsinki",
"Country": "FIN",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[51-99]",
"Funding Structure Clean": "non-profit NGO",
"Categorization (Clean)": "Mediation & Negotiation",
"Region": "The Middle East and North Africa, Eurasia, Sub-Saharan Africa, and Asia",
"Active In": "AZE, BDI, GEO, IRQ, LBY, MDA, MMR, PSE, UKR, YEM",
"Lat/Lon": "(60.1658672, 24.9522312)",
"Descriptions": "Finnish non-profit organisation that works to prevent and resolve violent conflicts by involving all relevant actors in the effort to create sustainable peace.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614353775808-B5BQ7Z6ENZ6SVSIB76Z6"
},
{
"#": 4,
"Organization Name": "Generations for Peace",
"Logo": "Y",
"URL": "https://www.generationsforpeace.org/en/",
"Address": "Haroun Ar-Rashid St. 53, Amman 1196",
"Country": "JOR",
"Global North / Global South": "Global South",
"# of Employees Cleaned": "[51-99]",
"Funding Structure Clean": "non-profit NGO",
"Categorization (Clean)": "Youth,Conflict Prevention / Management & Resolution",
"Region": "Africa, Asia, Europe, and the Middle East",
"Active In": "DZA, GEO, GHA, IRQ, JOR, KGZ, LBN, LBY, LKA, MKD, NGA, PAK, PSE, RWA, SLE, SSD, TUN, UGA, YEM, ZWE",
"Lat/Lon": "(31.9794041, 35.9086529)",
"Descriptions": "To empower youth to lead and cascade sustainable change in communities experiencing conflict, through world-class free education in conflict transformation and the use of sport, art, advocacy, dialogue, and empowerment for peacebuilding.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614368210078-QKMSXZUN8IOO0ZZFNIJP"
},
{
"#": 5,
"Organization Name": "George Washington University, Gender Equality Initiative in International Affairs (GEIA)",
"Logo": "Y",
"URL": "https://geia.elliott.gwu.edu/",
"Address": "1957 E Street NW, Suite 501 Washington, DC 20052",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[1-4]",
"Funding Structure Clean": "academic",
"Categorization (Clean)": "Education,Gender Equality / Women",
"Region": "North America",
"Active In": "USA",
"Lat/Lon": "(38.8962277, -77.0439573)",
"Descriptions": "",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614368124645-QV1E4BE469T3G6A1IHM8"
},
{
"#": 6,
"Organization Name": "InterAction",
"Logo": "Y",
"URL": "http://www.interaction.org/",
"Address": "1400 16th Street, NW, Suite 210 Washington, DC 20036",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[21-50]",
"Funding Structure Clean": "NGO network",
"Categorization (Clean)": "Humanitarian Aid,Development,Policy & Advocacy",
"Region": "",
"Active In": "",
"Lat/Lon": "(38.9090028, -77.03703740000002)",
"Descriptions": "InterAction is a convener, thought leader, and voice for NGOs working to eliminate extreme poverty, strengthen human rights and citizen participation, safeguard a sustainable planet, promote peace, and ensure dignity for all people.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614567372184-R24STWQM5EWNCCLFGEUX"
},
{
"#": 7,
"Organization Name": "Karuna Center For Peacebuilding",
"Logo": "Y",
"URL": "http://www.karunacenter.org/",
"Address": "447 West Street Amherst, MA 01002-2933",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[10-20]",
"Funding Structure Clean": "non-profit NGO",
"Categorization (Clean)": "Conflict Prevention / Management & Resolution,Peacebuilding,Reconciliation",
"Region": "",
"Active In": "BIH, ETH, LKA, NGA, RWA, USA",
"Lat/Lon": "(42.3412838, -72.5208987)",
"Descriptions": "To empower people divided by conflict to develop mutual understanding and to create sustainable peace.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614567721195-6RMLO6ADY2VXY45CBU99"
},
{
"#": 8,
"Organization Name": "Movilizatorio",
"Logo": "Y",
"URL": "https://www.movilizatorio.org/home",
"Address": "Carrera 23 #80-42 Bogota, 111-211",
"Country": "COL",
"Global North / Global South": "Global South",
"# of Employees Cleaned": "[21-50]",
"Funding Structure Clean": "non-profit NGO",
"Categorization (Clean)": "Research & Evaluation,Social Justice,Democracy & Governance",
"Region": "",
"Active In": "COL",
"Lat/Lon": "(4.6688683, -74.0622556)",
"Descriptions": "Movilizatorio is a citizen collective and social innovation lab that strengthens collective leadership as a tool for transformation.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614567802377-DSMW9LLRNTVRW9I63IR9"
},
{
"#": 9,
"Organization Name": "Open Art Space",
"Logo": "Y",
"URL": "https://www.openartspace.net/",
"Address": "Damascus",
"Country": "SYR",
"Global North / Global South": "Global South",
"# of Employees Cleaned": "",
"Funding Structure Clean": "non-profit NGO",
"Categorization (Clean)": "Arts",
"Region": "",
"Active In": "SYR",
"Lat/Lon": "(33.5138073, 36.2765279)",
"Descriptions": "",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614567979054-69BBU4VU62ZMK5EIIJAF"
},
{
"#": 10,
"Organization Name": "Quaker United Nations Office, New York (QUNO)",
"Logo": "Y",
"URL": "http://www.quno.org/",
"Address": "777 United Nations Plaza, New York, NY 10017",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[5-9]",
"Funding Structure Clean": "non-profit NGO",
"Categorization (Clean)": "Peacebuilding,Reconciliation,Policy & Advocacy",
"Region": "",
"Active In": "",
"Lat/Lon": "(40.7501214, -73.9692972)",
"Descriptions": "QUNO staff work with people in the UN, multilateral organisations, government delegations, and non-governmental organisations, to achieve changes in international standards and practice.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614568027909-MO3G0QI3MKMAL0B86FWJ"
},
{
"#": 11,
"Organization Name": "Alliance For Middle East Peace (ALLMEP)",
"Logo": "Y",
"URL": "https://www.allmep.org/",
"Address": "1725 I Street, N.W., Suite 300, Washigton, D.C. 20006",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[5-9]",
"Funding Structure Clean": "NGO network",
"Categorization (Clean)": "Peacebuilding,Capacity Building,Reconciliation,Other",
"Region": "The Middle East",
"Active In": "ISR, PSE",
"Lat/Lon": "(38.9017073, -77.0403457)",
"Descriptions": "ALLMEP is a consortium of organizations that conduct people-to-people coexistence, reconciliation, and cooperative activities on the ground in the Middle East among Israelis, Palestinians, Arabs and Jews.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614134182651-R602GKCDJO7PIPEYF7LH"
},
{
"#": 12,
"Organization Name": "American Friends Service Committee (AFSC)",
"Logo": "Y",
"URL": "https://www.afsc.org/",
"Address": "1501 Cherry Street, Philadelphia, PA 19102",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[10-20]",
"Funding Structure Clean": "non-profit NGO",
"Categorization (Clean)": "Faith-based / Interreligious Action,Social Justice,Peacebuilding,Economic Development & Policy,US Peacebuilding",
"Region": "",
"Active In": "BDI, CHN, GTM, IDN, ISR, KEN, KHM, MEX, MMR, PRK, PSE, SLV, SOM, SSD, USA, ZWE",
"Lat/Lon": "(39.9558853, -75.1652295)",
"Descriptions": "The American Friends Service Committee (AFSC) is a practical expression of the faith of the Religious Society of Friends (Quakers). Committed to the principles of nonviolence and justice, it seeks in its work and witness to draw on the transforming power of love, human and divine.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614568458695-F6UL32LLM899EE4UMNWH"
},
{
"#": 13,
"Organization Name": "American University, International Peace and Conflict Resolution Program (IPCR)",
"Logo": "Y",
"URL": "https://www.american.edu/sis/ipcr/",
"Address": "4400 Massachusetts Avenue, NW Washington, DC 20016",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[5-9]",
"Funding Structure Clean": "academic",
"Categorization (Clean)": "Education,Conflict Prevention / Management & Resolution,Peacebuilding",
"Region": "",
"Active In": "USA",
"Lat/Lon": "(38.9390397, -77.0876919)",
"Descriptions": "Housed in the School of International Service at American University, International Peace and Conflict Resolution (IPCR) is a program concerned with understanding the causes of war and organized violence, developing strategies for resolving conflict, and constructing conditions for peace.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614134266386-JYKGSH82CM8LVCWOTWQ9/AmericanUniversityIPCR_logo-15.png?format=750w&content-type=image%2Fpng"
},
{
"#": 14,
"Organization Name": "Arcadia University, International Peace and Conflict Resolution Program",
"Logo": "Y",
"URL": "https://www.arcadia.edu/college-arts-sciences/departments-faculty/historical-political-studies/ipcr-program",
"Address": "450 S. Easton Road Glenside, PA 19038",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "",
"Funding Structure Clean": "academic",
"Categorization (Clean)": "Education,Economic Development & Policy,Peacebuilding,Conflict Prevention / Management & Resolution",
"Region": "",
"Active In": "CYP, SLE, USA",
"Lat/Lon": "(40.0920362, -75.16594309999999)",
"Descriptions": "",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614134404915-FT4DI1C66FYIP1AFYTS4"
},
{
"#": 15,
"Organization Name": "Avila University The Buchanan Initiative for Peace and Nonviolence (BIPN)",
"Logo": "Y",
"URL": "https://www.avila.edu/academics/avila-centers-initiatives/buchanan-peace-nonviolence",
"Address": "11901 Wornall Road Kansas City, MO 64145",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[5-9]",
"Funding Structure Clean": "academic",
"Categorization (Clean)": "Education,Peacebuilding",
"Region": "",
"Active In": "USA",
"Lat/Lon": "(38.911948, -94.59210979999999)",
"Descriptions": "The Buchanan Initiative for Peace and Nonviolence (BIPN) believes that peace and nonviolence are the strongest elements of our civic life. In a time when bombs are louder than voices for peace, we must learn to question the obvious, support one another, and organize our communities to overcome oppression.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614134539213-46YR2KALPY0OKW6NC424"
},
{
"#": 16,
"Organization Name": "Aware Girls",
"Logo": "Y",
"URL": "https://www.awaregirls.org/",
"Address": "House No. 296, Street 18, Sector F-5, Phase 6, Hayatabad, Peshawar, 25000",
"Country": "PAK",
"Global North / Global South": "Global South",
"# of Employees Cleaned": "",
"Funding Structure Clean": "non-profit NGO",
"Categorization (Clean)": "Gender Equality / Women,Peacebuilding",
"Region": "",
"Active In": "PAK",
"Lat/Lon": "(33.9541567, 71.4382827)",
"Descriptions": "Aware Girls is young women led organisation working for women empowerment, gender equality, and peace in Pakistan.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614135296532-UB7SD4SY87SIJ1MB52RT"
},
{
"#": 17,
"Organization Name": "Beyond Conflict",
"Logo": "Y",
"URL": "https://beyondconflictint.org/",
"Address": "30 Winter Street, 7th Floor, Boston, MA 02108",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[21-50]",
"Funding Structure Clean": "non-profit NGO",
"Categorization (Clean)": "Science / Technology / Digital Acceleration,Peacebuilding,Democracy & Governance,Reconciliation",
"Region": "",
"Active In": "JOR, NGA, USA",
"Lat/Lon": "(42.3557081, -71.0614045)",
"Descriptions": "",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614352441465-FWA7FUBPDBZSWQ72Z8QU"
},
{
"#": 18,
"Organization Name": "Brandeis University, Graduate Programs in Coexistence and Conflict",
"Logo": "Y",
"URL": "https://heller.brandeis.edu/coexistence/about/index.html",
"Address": "415 South Street MS 035, Waltham, MA 02453",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[10-20]",
"Funding Structure Clean": "academic",
"Categorization (Clean)": "Education,Conflict Prevention / Management & Resolution",
"Region": "",
"Active In": "USA",
"Lat/Lon": "(42.3657375, -71.2585661)",
"Descriptions": "The Graduate Programs in Coexistence and Conflict at Brandeis University prepares experienced graduates to undertake peacebuilding in a focused and effective manner throughout the world.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614352474500-YY7FUGK3PVCZAJIUPSOP"
},
{
"#": 19,
"Organization Name": "Bridgeway Group, The",
"Logo": "Y",
"URL": "http://www.bridgewaygroup.org/",
"Address": "240 Elm Street, Second Floor, Somerville MA 02144",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[10-20]",
"Funding Structure Clean": "non-profit NGO",
"Categorization (Clean)": "Capacity Building,Conflict Prevention / Management & Resolution,Other",
"Region": "",
"Active In": "BDI, MAR, USA",
"Lat/Lon": "(42.3950946, -71.12192329999999)",
"Descriptions": "The Bridgeway Group works in partnership with parties in conflict to promote the effective and sustainable management of differences.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614352500573-F6EQ3AMZE77JD6QA0L7Q"
},
{
"#": 20,
"Organization Name": "Carter Center, The",
"Logo": "Y",
"URL": "https://www.cartercenter.org/",
"Address": "453 Freedom Parkway NE, Atlanta, GA 30307-1496",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[>1000]",
"Funding Structure Clean": "non-profit NGO",
"Categorization (Clean)": "Human Rights,Conflict Prevention / Management & Resolution,Democracy & Governance,Health",
"Region": "",
"Active In": "AGO, ALB, ARE, ARG, BDI, BEN, BFA, BGD, BIH, BLZ, BOL, BRA, CAF, CAN, CHL, CHN, CIV, CMR, COD, COL, CRI, CUB, DOM, DZA, ECU, EGY, ERI, EST, ETH, GHA, GIN, GTM, GUY, HND, HTI, IDN, IND, ISR, JAM, JOR, KEN, LBN, LBR, LBY, LKA, MDG, MEX, MLI, MMR, MOZ, MRT, MWI, NER, NGA, NIC, NPL, NZL, PAK, PAN, PER, PHL, PRK, PRY, PSE, QAT, ROU, RUS, RWA, SDN, SEN, SLE, SLV, SOM, SSD, SUR, SYR, TCD, TGO, TLS, TUN, TZA, UGA, USA, VEN, YEM, ZAF, ZWE",
"Lat/Lon": "(33.7675631, -84.35687329999999)",
"Descriptions": "The Carter Center, in partnership with Emory University, is guided by a fundamental commitment to human rights and the alleviation of human suffering. It seeks to prevent and resolve conflicts, enhance freedom and democracy, and improve health.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614352699222-4VIH2THKHR2GJO8KXL16"
},
{
"#": 21,
"Organization Name": "Catholic Relief Services (CRS)",
"Logo": "Y",
"URL": "https://www.crs.org/",
"Address": "228 W. Lexington St. Baltimore, Maryland 21201-3443",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[51-99]",
"Funding Structure Clean": "non-profit NGO",
"Categorization (Clean)": "Agriculture / Natural Resource Management / Food Security,Emergency / Disaster Response,Health,Education,Economic Development & Policy,Social Justice,Peacebuilding,Youth",
"Region": "",
"Active In": "AFG, AGO, ALB, ARM, BDI, BEN, BFA, BGD, BIH, BOL, BRA, BWA, CAF, CHL, CHN, CIV, CMR, COD, COG, COL, CUB, DOM, ECU, EGY, ETH, FSM, GHA, GIN, GNB, GNQ, GRC, GTM, GUY, HND, HTI, IDN, IND, IRQ, ISR, JAM, JOR, KEN, KHM, LAO, LBN, LBR, LKA, LSO, MDG, MEX, MLI, MMR, MRT, MWI, NAM, NER, NGA, NIC, NPL, PAK, PER, PHL, PSE, RUS, RWA, SDN, SEN, SLE, SLV, SOM, SRB, SSD, TCD, TGO, THA, TJK, TLS, TUN, TZA, UGA, UKR, USA, VNM, ZAF, ZMB, ZWE",
"Lat/Lon": "(39.29175439999999, -76.6193389)",
"Descriptions": "Catholic Relief Services carries out the commitment of the Bishops of the United States to assist the poor and vulnerable overseas.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614352811886-VGMQ9DLUTWZ5H26VYNPI"
},
{
"#": 22,
"Organization Name": "CDA Collaborative Learning Projects",
"Logo": "Y",
"URL": "https://www.cdacollaborative.org/",
"Address": "255 Main Street 8th Floor, Cambridge, MA 02142",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[10-20]",
"Funding Structure Clean": "non-profit NGO",
"Categorization (Clean)": "Peacebuilding,Development,Humanitarian Aid,Research & Evaluation",
"Region": "",
"Active In": "",
"Lat/Lon": "(42.3626831, -71.0853523)",
"Descriptions": "CDA’s mission is to support the application of lessons from collaborative learning processes to improve effective and accountable engagements that result in significant, positive, lasting change for people and societies.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614352837090-6DNP0IB1270OFQ71SSRH"
},
{
"#": 23,
"Organization Name": "Center for Conservation Peacebuilding (CPeace)",
"Logo": "Y",
"URL": "https://cpeace.ngo/",
"Address": "P.O. Box 73253, Washington, DC 20056-3253",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "",
"Funding Structure Clean": "non-profit NGO",
"Categorization (Clean)": "Conflict Prevention / Management & Resolution,Capacity Building,Environment / Climate Justice / Conservation / Wildlife",
"Region": "",
"Active In": "USA",
"Lat/Lon": "(38.9071923, -77.0368707)",
"Descriptions": "Cpeace's mission is to transform conflict to create sustainable solutions for people and wildlife.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614353679980-IRA8HVI6XXD9D850V0DE"
},
{
"#": 24,
"Organization Name": "Center for Policy Analysis (Horn of Africa)",
"Logo": "Y",
"URL": "https://cpahorn.net/",
"Address": "Badda Cas Area, Jigjigayar Hargeisa, Somaliland 25263",
"Country": "SOM",
"Global North / Global South": "Global South",
"# of Employees Cleaned": "",
"Funding Structure Clean": "non-profit NGO",
"Categorization (Clean)": "Democracy & Governance,Peacebuilding,Human Rights,Policy & Advocacy",
"Region": "Horn of Africa",
"Active In": "",
"Lat/Lon": "(9.567751699999999, 44.0356072)",
"Descriptions": "The Center for Policy Analysis (CPA) think tank, was established in December 2014 to help the countries of Horn of Africa region to build peace, democracy, human rights and effective governance systems where all citizens are equal.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614352860078-RH3N1WMFMRA7MUXG5Y9N"
},
{
"#": 25,
"Organization Name": "Charity & Security Network (C&SN)",
"Logo": "Y",
"URL": "https://charityandsecurity.org/",
"Address": "12th Street NW Suite 700, Washington, DC 20005",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[1-4]",
"Funding Structure Clean": "NGO network",
"Categorization (Clean)": "Peacebuilding,Networks,Democracy & Governance",
"Region": "",
"Active In": "AFG, CMR, COL, IRQ, LBY, MLI, NGA, PSE, SOM, SYR, TCD, YEM",
"Lat/Lon": "(38.89881930000001, -77.02869869999999)",
"Descriptions": "The Charity & Security Network is a resource center for nonprofit organizations to promote and protect their ability to carry out effective programs that promote peace and human rights, aid civilians in areas of disaster and armed conflict and build democratic governance.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614352526916-DJ6QXPHZIVGWBJ28HNSP"
},
{
"#": 26,
"Organization Name": "Chemonics International",
"Logo": "Y",
"URL": "https://chemonics.com/",
"Address": "1717 H St NW, Washington, DC 20006",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[>1000]",
"Funding Structure Clean": "for profit",
"Categorization (Clean)": "Development",
"Region": "Latin America and the Caribbean, Europe and Eurasia, Asia, Africa, Middle East and North Africa",
"Active In": "AFG, AGO, BDI, BEN, BFA, BWA, CIV, CMR, COD, DJI, ETH, GHA, GIN, GTM, GUY, HND, HTI, IDN, JOR, KEN, KHM, LBN, LBR, LBY, LSO, MDG, MLI, MMR, MOZ, MRT, MWI, NAM, NER, NGA, NIC, NPL, PAK, RWA, SDN, SEN, SLE, SLV, SSD, SYR, TCD, THA, TJK, TUN, TZA, UGA, VNM, YEM, ZMB, ZWE",
"Lat/Lon": "(38.9006044, -77.0405248)",
"Descriptions": "By promoting meaningful change around the world we help people live healthier, more productive, more independent lives.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614352903015-LUJF5588M8O4RX0D0XUN"
},
{
"#": 27,
"Organization Name": "Church of the Brethren Office of Peacebuilding and Policy",
"Logo": "Y",
"URL": "http://www.brethren.org/peacebuilding/",
"Address": "337 North Carolina Ave SE Washington, DC 20003",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[1-4]",
"Funding Structure Clean": "non-profit NGO",
"Categorization (Clean)": "Peacebuilding,Policy & Advocacy,Faith-based / Interreligious Action",
"Region": "Africa Great Lakes",
"Active In": "BRA, DOM, ESP, HTI, IND, NGA, RWA, SSD, VEN",
"Lat/Lon": "(38.8851033, -77.0008916)",
"Descriptions": "The Church of the Brethren Office of Peacebuilding and Policy works in Washington, DC to advocate for Brethren values like peace and simplicity in the context of U.S. policy.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614352928015-928WH6YHW1RQLYFD2VYJ"
},
{
"#": 28,
"Organization Name": "Civilian Peace Service Canada (CPSC)",
"Logo": "NO LOGO",
"URL": "https://civilianpeaceservice.ca/",
"Address": "2106-1025 Richmond Road Ottawa, ON K2B 8G8",
"Country": "CAN",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[5-9]",
"Funding Structure Clean": "non-profit NGO",
"Categorization (Clean)": "Peacebuilding,Other",
"Region": "",
"Active In": "CAN",
"Lat/Lon": "(45.3755447, -75.7778244)",
"Descriptions": "To assess and accredit individuals for peace professionalism, based upon a rigorous methodology and a set of Core Values and Key Competencies.",
"Image URL": ""
},
{
"#": 29,
"Organization Name": "Colors of Connection",
"Logo": "Y",
"URL": "https://colorsofconnection.org/",
"Address": "P.O. Box 55444 Shoreline, Washington 98155",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[1-4]",
"Funding Structure Clean": "non-profit NGO",
"Categorization (Clean)": "Conflict Prevention / Management & Resolution,Youth,Arts",
"Region": "Africa",
"Active In": "CAF, COG, NGA, USA",
"Lat/Lon": "(47.7620699, -122.3444451)",
"Descriptions": "To engage conflict-affected youth and communities worldwide in collaborative art-making to nurture hope, cultivate well-being, and promote self-determination.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614352946718-G6SBUHNKKMYX7JV3WZTV"
},
{
"#": 30,
"Organization Name": "Conciliation Resources",
"Logo": "Y",
"URL": "http://www.c-r.org/",
"Address": "Burghley Yard, 106 Burghley Road, London NW5 1AL",
"Country": "GBR",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[51-99]",
"Funding Structure Clean": "non-profit NGO",
"Categorization (Clean)": "Peacebuilding",
"Region": "Caucases, East and Central Africa, Horn of Africa, Latin America, Pacific, South Asia, Southeast Asia, West Asia",
"Active In": "ARM, AZE, CAF, COD, COL, ETH, FJI, IND, KEN, NGA, PAK, PHL, SSD",
"Lat/Lon": "(51.55679989999999, -0.1390624)",
"Descriptions": "Conciliation Resources aims to bring people together to find creative and sustainable paths to peace.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614353029973-J7NI79FCX2HOYUQ5BP0B"
},
{
"#": 31,
"Organization Name": "Conducive Space for Peace",
"Logo": "Y",
"URL": "https://www.conducivespace.org/",
"Address": "Denmark",
"Country": "DNK",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[5-9]",
"Funding Structure Clean": "non-profit NGO",
"Categorization (Clean)": "Peacebuilding,Development",
"Region": "",
"Active In": "CHE, COL, LBR, MLI, SLE",
"Lat/Lon": "(56.26392, 9.501785)",
"Descriptions": "Conducive Space for Peace (CSP) aims to transform the international system of support to peacebuilding in a manner that puts local leadership first and changes the structures, attitudes, practices, and processes of collaboration between international and local actors working to promote sustainable peace at country level.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614353106123-M6Y8FVAYJXAGSGCJ6DB"
},
{
"#": 32,
"Organization Name": "Conservation International (CI)",
"Logo": "Y",
"URL": "https://www.conservation.org/",
"Address": "2011 Crystal Drive Suite 500 Arlington, VA 22202-3787",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[21-50]",
"Funding Structure Clean": "non-profit NGO",
"Categorization (Clean)": "Environment / Climate Justice / Conservation / Wildlife,Science / Technology / Digital Acceleration,Development",
"Region": "Europe",
"Active In": "AUS, BOL, BRA, BWA, CHN, COL, CRI, ECU, FJI, GUY, HKG, IDN, JPN, KEN, KHM, LBR, MDG, MEX, NZL, PAN, PER, PHL, SGP, SUR, TLS, USA, WSM, ZAF",
"Lat/Lon": "(38.855625, -77.048981)",
"Descriptions": "Building upon a strong foundation of science, partnership and field demonstration, Conservation International empowers societies to responsibly and sustainably care for nature, our global biodiversity, for the well-being of humanity.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614353517304-B7Q48A7HK4YMOCGGIF66"
},
{
"#": 33,
"Organization Name": "Counterpart International",
"Logo": "Y",
"URL": "https://www.counterpart.org/",
"Address": "2345 Crystal Drive Suite 301 Arlington, VA 22202",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[21-50]",
"Funding Structure Clean": "non-profit NGO",
"Categorization (Clean)": "Diversity / Equity / Inclusion,Community Development and Engagement / Education,Agriculture / Natural Resource Management / Food Security,Conflict Prevention / Management & Resolution,Environment / Climate Justice / Conservation / Wildlife",
"Region": "",
"Active In": "AFG, AZE, BDI, BFA, BGD, CAN, CMR, COD, DOM, ECU, GTM, HND, HTI, LBN, LKA, MAR, MEX, MOZ, MRT, MWI, NER, SDN, SEN, TLS, USA, YEM, ZMB",
"Lat/Lon": "(38.8530718, -77.04879799999999)",
"Descriptions": "We partner with local organizations – formal and informal – to build inclusive, sustainable communities in which people thrive.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614353556064-3OQD084KQUM2BPU3G1BC"
},
{
"#": 34,
"Organization Name": "Creative Associates International",
"Logo": "Y",
"URL": "https://www.creativeassociatesinternational.com/",
"Address": "5301 Wisconsin Avenue - Suite 700 Washington, DC 20015",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[501-1000]",
"Funding Structure Clean": "for profit",
"Categorization (Clean)": "Development,Education",
"Region": "Eastern and Southern Caribbean, West Africa",
"Active In": "AFG, ETH, GTM, HND, LBY, MAR, MLI, MOZ, NGA, NIC, SOM, SYR, USA, YEM",
"Lat/Lon": "(38.9592321, -77.08437889999999)",
"Descriptions": "To support people around the world to realize the positive change they seek.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614353744167-WWQ8TDXMZBR4AN3D8QWM"
},
{
"#": 35,
"Organization Name": "Cure Violence",
"Logo": "Y",
"URL": "https://cvg.org/",
"Address": "227 West Monroe Street Suite 1025 Chicago, IL 60606",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[10-20]",
"Funding Structure Clean": "non-profit NGO",
"Categorization (Clean)": "Peacebuilding,Conflict Prevention / Management & Resolution,Education",
"Region": "",
"Active In": "BRA, GBR, HND, IRQ, JAM, KEN, MAR, MEX, NGA, SLV, SYR, TTO, USA, ZAF",
"Lat/Lon": "(41.8802596, -87.6346818)",
"Descriptions": "To reduce violence globally using disease control and behavior change methods.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614353842675-QMUGA8SOP3ZIQLEHNY1N"
},
{
"#": 36,
"Organization Name": "DAI",
"Logo": "Y",
"URL": "https://www.dai.com/",
"Address": "7600 Wisconsin Avenue, Suite 200 Bethesda, MD 20814",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[>1000]",
"Funding Structure Clean": "for profit",
"Categorization (Clean)": "Development",
"Region": "",
"Active In": "AFG, ALB, BDI, BIH, BTN, COD, DOM, EGY, ETH, GEO, GHA, GMB, GTM, GUY, HND, HTI, IDN, IRQ, JOR, KAZ, KEN, KGZ, LBN, LBR, LBY, LKA, MAR, MDV, MEX, MMR, MOZ, MUS, MWI, NGA, NPL, OMN, PAK, PER, PHL, POL, PSE, RWA, SEN, SLE, SLV, SOM, SRB, SUR, TJK, TKM, TUN, TUR, TZA, UGA, UKR, UZB, VNM, ZMB, ZWE",
"Lat/Lon": "(38.9862419, -77.0950246)",
"Descriptions": "DAI’s mission is to make a lasting difference in the world by helping people improve their lives.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614353869651-NWOY4OMQOVN9882DLVWZ"
},
{
"#": 37,
"Organization Name": "Dexis Consulting Group",
"Logo": "Y",
"URL": "https://www.dexisonline.com/",
"Address": "1412 Eye Street NW Washington, DC 20005",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[501-1000]",
"Funding Structure Clean": "for profit",
"Categorization (Clean)": "Community Development and Engagement / Education,Rule of Law,Economic Development & Policy,Other",
"Region": "",
"Active In": "AFG, BEN, BFA, BWA, CIV, CMR, COD, COL, CPV, CRI, DZA, ETH, GHA, GIN, GMB, GNB, GTM, GUY, HND, KEN, LBR, LBY, MAR, MDG, MEX, MLI, MOZ, MRT, MWI, NER, NIC, PAK, PER, SEN, SLE, SLV, SYR, TCD, TGO, TUN, TZA, UGA, USA, VNM, ZAF, ZMB",
"Lat/Lon": "(38.9008312, -77.0326017)",
"Descriptions": "Dexis is on a mission to help solve today’s most pressing global political, social, and economic challenges and create a world where all people are safe and prosperous.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614353905732-XPU0XOIN9XV0GH0EUWJC"
},
{
"#": 38,
"Organization Name": "Earlham College, Center for Social Justice",
"Logo": "Y",
"URL": "https://earlham.edu/academics/programs/the-center-for-social-justice/",
"Address": "801 National Road West Richmond, Indiana",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[1-4]",
"Funding Structure Clean": "academic",
"Categorization (Clean)": "Education,Social Justice",
"Region": "",
"Active In": "USA",
"Lat/Lon": "(39.8259618, -84.91333279999999)",
"Descriptions": "",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614353933283-RXM1UW2SVDO2YPT3A2R1"
},
{
"#": 39,
"Organization Name": "Eastern Mennonite University (EMU), Center for Justice & Peacebuilding",
"Logo": "Y",
"URL": "https://emu.edu/cjp/",
"Address": "1200 Park Road, Harrisonburg, Virginia 22802",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[21-50]",
"Funding Structure Clean": "academic",
"Categorization (Clean)": "Education,Mental Health & Trauma Informed Care,Peacebuilding,Conflict Prevention / Management & Resolution,Social Justice",
"Region": "",
"Active In": "USA",
"Lat/Lon": "(38.4700518, -78.8776293)",
"Descriptions": "Our community of learning integrates Christian faith, academic rigor, artistic creation and reflective practice informed by the liberal arts, interdisciplinary engagement, and cross-cultural encounter to prepare students to serve and lead in a global context.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614353966369-P46ZHFV29UV43AGKKTF5"
},
{
"#": 40,
"Organization Name": "Environmental Law Institute (ELI)",
"Logo": "Y",
"URL": "https://www.eli.org/",
"Address": "1730 M Street, NW Suite 700 Washington, DC 20036",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[51-99]",
"Funding Structure Clean": "non-profit NGO",
"Categorization (Clean)": "Rule of Law,Environment / Climate Justice / Conservation / Wildlife",
"Region": "",
"Active In": "AFG, AGO, ARE, ARG, ARM, ATG, BDI, BGD, BGR, BHS, BOL, BRA, BRB, BTN, BWA, CAF, CAN, CHL, CHN, CIV, CMR, COD, COL, CRI, CYP, CZE, DMA, DOM, ECU, EGY, ESP, ETH, FRA, GBR, GIN, GRD, GTM, GUY, HND, HTI, HUN, IDN, IND, ISR, JAM, JOR, JPN, KAZ, KEN, KWT, LAO, LBN, LBR, LCA, LSO, MAR, MDA, MDG, MEX, MKD, MMR, MNE, MWI, NAM, NER, NGA, NIC, PAN, PER, PHL, POL, PRT, PRY, PSE, ROU, RUS, RWA, SEN, SLE, SLV, SSD, SUR, SVK, TLS, TTO, TZA, UGA, UKR, URY, USA, VCT, VNM, YEM, ZAF",
"Lat/Lon": "(38.9053614, -77.0398252)",
"Descriptions": "ELI fosters innovative, just, and practical law and policy solutions to enable leaders across borders and sectors to make environmental, economic, and social progress.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614353993935-3R31BVZNTAS1SM4YHPN2"
},
{
"#": 41,
"Organization Name": "Environmental Peacebuilding Association (Enpax)",
"Logo": "Y",
"URL": "https://www.environmentalpeacebuilding.org/",
"Address": "1730 M Street NW, Suite 700, Washington, DC 20036",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[10-20]",
"Funding Structure Clean": "NGO network",
"Categorization (Clean)": "Environment / Climate Justice / Conservation / Wildlife,Peacebuilding,Rule of Law",
"Region": "",
"Active In": "",
"Lat/Lon": "(38.9053614, -77.0398252)",
"Descriptions": "Environmental peacebuilding integrates natural resource management in conflict prevention, mitigation, resolution, and recovery to build resilience in communities affected by conflict.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614366773316-736KYEAUU2QBUGW09UM5"
},
{
"#": 42,
"Organization Name": "Envision Zimbabwe Women's Trust",
"Logo": "Y",
"URL": "https://envisionzimbabwe.org/",
"Address": "15 Downie Ave, Belgravia, Harare",
"Country": "ZWE",
"Global North / Global South": "Global South",
"# of Employees Cleaned": "[1-4]",
"Funding Structure Clean": "non-profit NGO",
"Categorization (Clean)": "Conflict Prevention / Management & Resolution,Gender Equality / Women,Development",
"Region": "",
"Active In": "ZWE",
"Lat/Lon": "(-17.79812, 31.0431116)",
"Descriptions": "Build a National Consensus amongst Zimbabweans from all walks of life and political affiliations on practical policies, strategies and Actions through a women driven culture for the reconstruction of the country",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614366738296-5NHM4E5DSE6AMFBR9Q1Y"
},
{
"#": 43,
"Organization Name": "Equal Access International",
"Logo": "Y",
"URL": "https://www.equalaccess.org/",
"Address": "1001 Connecticut Avenue, NW Suite 909 Washington, D.C. 20036",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[10-20]",
"Funding Structure Clean": "non-profit NGO",
"Categorization (Clean)": "Peacebuilding,Community Development and Engagement / Education,Gender Equality / Women,Media & Journalism",
"Region": "",
"Active In": "AFG, BFA, CIV, CMR, DJI, GBR, KEN, MLI, NER, NGA, NPL, PAK, PHL, SOM, TCD",
"Lat/Lon": "(38.9028929, -77.0391673)",
"Descriptions": "EAI helps communities around the world drive sustainable and transformative change through our proven participatory media, technology, and outreach model.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614366830397-4YY2EISCPLI2M6ASKNC2"
},
{
"#": 44,
"Organization Name": "FHI 360",
"Logo": "Y",
"URL": "https://www.fhi360.org/",
"Address": "359 Blackwell Street, Suite 200 Durham, NC 27701",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[>1000]",
"Funding Structure Clean": "non-profit NGO",
"Categorization (Clean)": "Health,Education,Youth,Science / Technology / Digital Acceleration",
"Region": "",
"Active In": "AFG, AGO, ARG, BDI, BFA, BGD, BHS, BIH, BRA, BRB, BWA, CHE, CHN, CIV, CMR, COD, COG, COL, CRI, DJI, DOM, ECU, ETH, FRA, GAB, GBR, GHA, GMB, GNQ, GTM, HND, HTI, IDN, IND, IRL, JAM, JOR, KAZ, KEN, KGZ, KHM, LAO, LBN, LBR, LKA, LVA, MAR, MDG, MEX, MKD, MLI, MMR, MNE, MOZ, MWI, NAM, NER, NGA, NPL, PAK, PER, PHL, PNG, QAT, RWA, SEN, SGP, SLE, SLV, SRB, SSD, SUR, SWZ, TGO, THA, TJK, TTO, TUN, TZA, UGA, UKR, USA, VNM, YEM, ZAF, ZWE",
"Lat/Lon": "(35.9928014, -78.9040091)",
"Descriptions": "To improve lives in lasting ways by advancing integrated, locally driven solutions for human development.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614366898165-J07CGR761KSD4NQCL9BC"
},
{
"#": 45,
"Organization Name": "Friends Committee On National Legislation (FCNL)",
"Logo": "Y",
"URL": "https://www.fcnl.org/",
"Address": "245 Second St, NE, Washington, DC 20002",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[51-99]",
"Funding Structure Clean": "non-profit NGO",
"Categorization (Clean)": "Policy & Advocacy,US Peacebuilding,Agriculture / Natural Resource Management / Food Security,Peacebuilding,Environment / Climate Justice / Conservation / Wildlife",
"Region": "",
"Active In": "USA",
"Lat/Lon": "(38.8934219, -77.0032988)",
"Descriptions": "FCNL is a nonpartisan organization that seeks to live our values of integrity, simplicity, and peace as we build relationships across political divides to move policies forward.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614366859215-BIZDFJE4IHCL3VT30FQS"
},
{
"#": 46,
"Organization Name": "George Mason University, School of Conflict Analysis and Resolution (S-CAR)",
"Logo": "Y",
"URL": "https://carterschool.gmu.edu/",
"Address": "4400 University Drive, Fairfax, Virginia 22030",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[10-20]",
"Funding Structure Clean": "academic",
"Categorization (Clean)": "Education,Peacebuilding,Conflict Prevention / Management & Resolution",
"Region": "",
"Active In": "KOR, MLT, USA",
"Lat/Lon": "(38.8336468, -77.3146731)",
"Descriptions": "The faculty, students, staff, alumni and partners of the School for Conflict Analysis and Resolution are part of a community dedicated to interrupting cycles of violence.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614568616249-PJ0520VZN5D5RD53GZT2"
},
{
"#": 47,
"Organization Name": "GHR Foundation",
"Logo": "Y",
"URL": "http://www.ghrfoundation.org/",
"Address": "60 South Sixth Street Suite 2950 Minneapolis, MN 55402",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[21-50]",
"Funding Structure Clean": "foundation",
"Categorization (Clean)": "Philanthropy,Development,Education,Other",
"Region": "",
"Active In": "MMR, UGA, USA",
"Lat/Lon": "(44.9778175, -93.2708208)",
"Descriptions": "GHR Foundation exists to be of service to people and their limitless potential for good.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614368462993-EGRLF26WY6QP2IV5I9TV"
},
{
"#": 48,
"Organization Name": "Global Partnership for the Prevention of Armed Conflict (GPPAC)",
"Logo": "Y",
"URL": "",
"Address": "Laan van Meerdervoort, 70 2517 AN,The Hague",
"Country": "NLD",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[10-20]",
"Funding Structure Clean": "NGO network",
"Categorization (Clean)": "Peacebuilding,Education,Development,Mediation & Negotiation",
"Region": "",
"Active In": "ARM, CMR, KGZ, LBR, LKA, LSO, MMR, PHL, PSE, SLE, UGA, ZMB",
"Lat/Lon": "(52.0847454, 4.2949883)",
"Descriptions": "GPPAC is a global network that links civil society with relevant local, national, regional and international actors and institutions to collectively contribute to a fundamental change in dealing with violence and armed conflicts: a shift from reaction to prevention.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614368707652-UND86HJWTNGBXDLSDJ8E"
},
{
"#": 49,
"Organization Name": "Global Peace Building Foundation (GPBF)",
"Logo": "Y",
"URL": "http://www.globalpeacebuilding.org/",
"Address": "370 Castle Shannon Blvd., P.O. Box 14804, Pittsburgh, PA 15234",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[1-4]",
"Funding Structure Clean": "non-profit NGO",
"Categorization (Clean)": "Peacebuilding",
"Region": "",
"Active In": "GBR, SRB, USA",
"Lat/Lon": "(40.3746009, -80.0360761)",
"Descriptions": "GPBF’s mission is to contribute to the building of global peace by supporting organizations and projects that restore, rebuild, and transform relationships that have been broken due to prejudices, stereotyping, hatreds, and fears that may have accumulated over generations.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614368505340-BC02P0PTA46VDYJK0QP6"
},
{
"#": 50,
"Organization Name": "Global Peace Foundation",
"Logo": "Y",
"URL": "http://www.globalpeace.org/",
"Address": "9320 Annapolis Road, Suite 100, Lanham, MD 20706",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[10-20]",
"Funding Structure Clean": "non-profit NGO",
"Categorization (Clean)": "Peacebuilding,Education,Economic Development & Policy,Youth",
"Region": "",
"Active In": "BRA, GTM, IND, JPN, KEN, KHM, KOR, MNG, MYS, NGA, NPL, PHL, PRY, THA, TZA, UGA, URY, USA",
"Lat/Lon": "(38.9651815, -76.84872159999999)",
"Descriptions": "Founded in 2009, Global Peace Foundation (GPF) is an international non-sectarian, non-partisan, nonprofit organization, which promotes an innovative, values-based approach to peace building, guided by the vision of One Family under God.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614568317154-MRVZJAWHJKI5JB26YMXS"
},
{
"#": 51,
"Organization Name": "Hands Across the Hills",
"Logo": "Y",
"URL": "https://www.handsacrossthehills.org/",
"Address": "Leverett, MA",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "",
"Funding Structure Clean": "non-profit NGO",
"Categorization (Clean)": "Peacebuilding",
"Region": "",
"Active In": "USA",
"Lat/Lon": "(42.4519581, -72.5011335)",
"Descriptions": "Hands Across the Hills formed in response to the 2016 election with the goal of meeting face to face with others who voted differently than us, eliminating the voices of politicians and the media, who seek to divide us, to see us as enemies, red versus blue.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614368741290-70ZILXFC2UOKMY1UDD1W"
},
{
"#": 52,
"Organization Name": "Harvard Law School, Program on Negotiation (PON)",
"Logo": "Y",
"URL": "https://www.pon.harvard.edu/",
"Address": "Pound Hall 501, 1563 Massachusetts Avenue, Cambridge, Massachusetts 02138",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[10-20]",
"Funding Structure Clean": "academic",
"Categorization (Clean)": "Education,Conflict Prevention / Management & Resolution,Rule of Law",
"Region": "",
"Active In": "ARE, GBR, IND, IRL, ISR, MEX, SAU, USA",
"Lat/Lon": "(42.3787182, -71.1194486)",
"Descriptions": "The Program on Negotiation (PON) is a university consortium dedicated to developing the theory and practice of negotiation and dispute resolution.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614368779225-L44YZD5C5MCXW8STGUMH"
},
{
"#": 53,
"Organization Name": "Initiatives of Change USA",
"Logo": "Y",
"URL": "https://us.iofc.org/",
"Address": "2201 West Broad Street, Suite 200, Richmond, VA 23220",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[10-20]",
"Funding Structure Clean": "non-profit NGO",
"Categorization (Clean)": "Peacebuilding,Other,Development",
"Region": "",
"Active In": "CHE, IND, USA",
"Lat/Lon": "(37.55786980000001, -77.4631309)",
"Descriptions": "Initiatives of Change USA (IofC) is part of a global network comprising multi-sector leaders in more than 100 countries who are working in diverse community, state, regional and international contexts to transform inequality and conflict through systems of honesty, accountability, justice, equity and peace.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614567177129-Q78I6J6Q0UZ1RU1F4MKJ"
},
{
"#": 54,
"Organization Name": "Institute for Economics and Peace (IEP)",
"Logo": "Y",
"URL": "",
"Address": "205 Pacific Highway, St Leonards, 2065 NSW",
"Country": "AUS",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "",
"Funding Structure Clean": "non-profit NGO",
"Categorization (Clean)": "Other",
"Region": "",
"Active In": "",
"Lat/Lon": "(-33.8230654, 151.1944397)",
"Descriptions": "We aim to create a paradigm shift in the way the world thinks about peace. We use data-driven research to show that peace is a positive, tangible and achievable measure of human well-being and development.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614567223610-E5MKHQI5ARPL31BQ01N1"
},
{
"#": 55,
"Organization Name": "Institute For Integrated Transitions (IFIT)",
"Logo": "Y",
"URL": "https://www.ifit-transitions.org/intro",
"Address": "Sant Pau-Recinte Modernista (PavellÛ Central), C/Sant Antoni Maria Claret, num.167, 08025 - Barcelona",
"Country": "ESP",
"Global North / Global South": "Global South",
"# of Employees Cleaned": "[21-50]",
"Funding Structure Clean": "non-profit NGO",
"Categorization (Clean)": "Democracy & Governance,Development,Rule of Law,Conflict Prevention / Management & Resolution",
"Region": "",
"Active In": "COL, GMB, LBY, LKA, MEX, NGA, SLV, SYR, TUN, UKR, VEN, ZWE",
"Lat/Lon": "(41.411882, 2.174377)",
"Descriptions": "IFIT's aim is to help fragile and conflict-affected states achieve more inclusive negotiations and sustainable transitions out of war or authoritarianism.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614567261068-6T4VWLJG5O497K2LV5IB"
},
{
"#": 56,
"Organization Name": "Institute For Multi-Track Diplomacy (IMTD)",
"Logo": "Y",
"URL": "https://www.imtd.org/",
"Address": "1901 Fort Myer Dr #405, Arlington, VA 22209",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[10-20]",
"Funding Structure Clean": "non-profit NGO",
"Categorization (Clean)": "Peacebuilding,Mediation & Negotiation,Democracy & Governance,Conflict Prevention / Management & Resolution",
"Region": "",
"Active In": "GEO, IND, NPL, PAK, UKR, USA",
"Lat/Lon": "(38.89743290000001, -77.0719611)",
"Descriptions": "The mission of IMTD is to promote a systems-based approach to peacebuilding and to facilitate the transformation of deeply-rooted social conflict.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614567328448-DTI4QN8AJMJJBU6U219B"
},
{
"#": 57,
"Organization Name": "Institute For State Effectiveness (ISE)",
"Logo": "Y",
"URL": "https://effectivestates.org/",
"Address": "1050 30th St. NW, The Foundry Building, Washington, DC 20007",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[21-50]",
"Funding Structure Clean": "non-profit NGO",
"Categorization (Clean)": "Development,Democracy & Governance",
"Region": "",
"Active In": "AFG, CHL, COL, EGY, FIN, HTI, IND, IRQ, KOR, LBY, MOZ, NPL, PAK, PER, RWA, SGP, SLE, SOM, SRB, SSD, SYR, TJK, TLS, USA, YEM",
"Lat/Lon": "(38.9038945, -77.0593226)",
"Descriptions": "To address the challenge of accountability and governance through a system-building approach across governments, markets, and people.",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614567569923-7QGM5LJQOMGEK84HEFR8"
},
{
"#": 58,
"Organization Name": "Institute for the Study of Diplomacy (ISD), Georgetown University",
"Logo": "Y",
"URL": "https://isd.georgetown.edu/",
"Address": "1316 36th Street NW\n Washington, DC 20007",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[5-9]",
"Funding Structure Clean": "academic",
"Categorization (Clean)": "Education,Democracy & Governance,Conflict Prevention / Management & Resolution",
"Region": "",
"Active In": "USA",
"Lat/Lon": "(38.9072643, -77.0705126)",
"Descriptions": "",
"Image URL": "https://images.squarespace-cdn.com/content/5db70e83fc0a966cf4cc42ea/1614368303133-0F0F9149EQ4KDCTVBROX"
},
{
"#": 59,
"Organization Name": "Institute of World Affairs (IWA)",
"Logo": "Y",
"URL": "http://www.iwa.org/",
"Address": "1255 23rd St., NW Suite 275 Washington, DC 20037",
"Country": "USA",
"Global North / Global South": "Global North",
"# of Employees Cleaned": "[5-9]",
"Funding Structure Clean": "non-profit NGO",
"Categorization (Clean)": "Peacebuilding,Education,Policy & Advocacy",
"Region": "",
"Active In": "AUT, KEN, RUS, USA",