-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathwm_flat_metadata.yml
More file actions
2646 lines (2645 loc) · 165 KB
/
wm_flat_metadata.yml
File metadata and controls
2646 lines (2645 loc) · 165 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
# Attempt to unify the upper-level ontologies of UArizona Eidos and BBN Hume
# - focus on semantic distinctions other than the terminologies
# - we don't attempt to differentiate "event" and "entities" but rather trying to put all causal factors into "causal_factor"
# - use coarse-grained concepts "causal_factor", "entity" (where the causal factor is located, who and what artifacts are involved in a causal factor), "time", and "indicator_and_reported_property" as the top level concepts.
# - allow multiple inheritance ("economic_crisis" is a child to both "economic_and_commerce" and "crisis_and_disaster"). Concepts under "intervention" and "condition" will overlap with other categories
- node:
name: wm
children:
- node:
name: concept
children:
- node:
name: causal_factor
children:
- node:
name: interventions
children:
- node:
name: provide # (supply, distribute, deliver, vaccinate, give)
children:
- node:
name: agriculture_inputs # agricultural_productivity
children:
- node:
name: livestock_production_inputs
children:
- node:
name: livestock_feed
examples:
- livestock feed
- hay
- CSB
- silage
- corn meal
- soybean hulls
polarity: 1
- node:
name: veterinary_services
examples:
- veterinary services medicine
- animal birthing
- antibiotics
- livestock vaccination
polarity: 1
- node:
name: livestock_watering
examples:
- livestock watering
polarity: 1
- node:
name: crop_production_equipment
children:
- node:
name: farm_equipment
examples:
- farm equipment
- machinery
- tractor
- power tiller
- row planter
- plow
- winnower
polarity: 1
- node:
name: harvesting_equipment
examples:
- harvesting equipment
- baskets
- pickers
- ladders
- clippers
polarity: 1
- node:
name: seed
examples:
- seed
- planting
polarity: 1
- node:
name: irrigation_equipment
children:
- node:
name: water_source
examples:
- water source
- wells
- bore-holes
- irrigation ditch
- canal
polarity: 1
- node:
name: pumps
examples:
- water pumps
- treadle
- electric pump
- small scale irrigation pump
polarity: 1
- node:
name: field_irrigation
examples:
- field irrigation
- drip
- sprinklers
polarity: 1
- node:
name: soil_inputs
children:
- node:
name: fertilizer
examples:
- fertilizer
- DAP
- urea
- compost
- manure
- nitrogen
- potassium
- phosphorous
polarity: 1
- node:
name: fertilizer_subsidy
examples:
- fertilizer subsidy
- fertilizer voucher
- cash
- price control
- fertilizer coupon
polarity: 1
- node:
name: weed_pest_control
children:
- node:
name: biological
examples:
- biological pest weed control
- crop rotation
- cover crop
- integrated pest management
- IPM
- companion planting
polarity: 1
- node:
name: chemical
patterns:
- \b(DDT|dicamba|round-up)\b
examples:
- chemical pest weed control
- glysophate
- round-up
- dicamba
- DDT
polarity: 1
- node:
name: organic
examples:
- organic pest weed control
- vinegar
- pine oil
- neem oil
polarity: 1
- node:
name: post_harvest_inputs
children:
- node:
name: processing_equipment
examples:
- harvest processing equipment
- thresher
- sorter
- washer
- drier
- x-ray
- harvest laser sorter
- tarp
- harvest drier racks
polarity: 1
- node:
name: packaging
examples:
- harvest packaging
- packing lines
- branding
- packaging material
polarity: 1
- node:
name: warehousing
examples:
- warehousing
- warehouse receipt system
- WRS
- storage
polarity: 1
- node:
name: information_services
children:
- node:
name: surveillance_system
patterns:
- \b(IPC|FEWS|VAM)\b
- \bearly\s+warning\s+system\b
examples:
- surveillance system
- early warning systems
- earthquake monitoring
- food security monitoring
- early warning analysis
- famine early warning system
- integrated phase classification
- IPC
- FEWS NET
- vulnerability analysis mapping
- VAM
polarity: 1
- node:
name: weather_monitoring
examples:
- weather monitoring
polarity: 1
- node:
name: price_monitoring
examples:
- price monitoring
polarity: 1
- node:
name: human_rights_monitoring
children:
- node:
name: victims
examples:
- victims
- children victims
- women victims
- refugees
- IDP
- ethnic minorities
polarity: 1
- node:
name: perpetrators
examples:
- perpetrators
- militias
- gangs
- terrorist groups
- non state actors
polarity: 1
- node:
name: violations
examples:
- violations
- human rights violations crimes
- war crimes
- gender based violence
- GBV
polarity: 1
- node:
name: statistics
children:
- node:
name: national_survey
patterns:
- \b(census|AgSS|CFSVA)\b
examples:
- survey
- Census
- DHS
- demographic health surveys
- CFSVA
- comprehensive food security and vulnerability assessment
- AgSS
- agricultural sample survey
polarity: 1
- node:
name: livelihood_support
children:
- node:
name: food_aid
examples:
- food aid
- food for work
- food for assets
- food for training
- food vouchers
- free food distribution
- school feeding
polarity: 1
- node:
name: nutrition_support
examples:
- nutrition support
- food fortification
- infant nutrition supplements
- infant and young child feeding
- micro nutrient supplementation
- supplementary feeding
polarity: 1
- node:
name: water
examples:
- water
- water trucking
polarity: 1
- node:
name: financial_assistance
examples:
- financial assistance
- cash
- loans
- cash for assets
- cash for work
- cash transfer
- once off cash transfer to facilitate return
- grants
- remittances
polarity: 1
- node:
name: livelihood_assets
examples:
- livelihood assets
- fishing nets
- boats
- farming equipment
- bee keeping equipment
- improved chicken breed
- bicycle
- cart
polarity: 1
- node:
name: humanitarian_nonfood_items
children:
- node:
name: shelter
examples:
- shelter
- tents
- shelter kits
polarity: 1
- node:
name: medical_inputs
children:
- node:
name: vaccine
patterns:
- \b(immuniz(ations?|e))\b
examples:
- vaccine
- vaccination
- immunization
- communicable disease outbreak control
- mass vaccination campaign
- polio
- measles
- yellow fever
polarity: 1
- node:
name: medical_treatment
examples:
- medical treatment
- anti retroviral treatment
- ART
- first aid
- basic medical care
- childhood essential health services
- obstetric and newborn care
- operation of mobile clinics
- therapeutic feeding
- trauma and surgical care
- trauma and post operative rehabilitation
polarity: 1
- node:
name: prevention
examples:
- prevention
- insecticide treated bednets
- malnutrition screening
- preventative medicine
- well-child visit
- well-visit
polarity: 1
- node:
name: psychological
examples:
- psychological
- therapy
- clinical management of sexual violence
- psychological support
- therapist counselor
polarity: 1
- node:
name: sanitation_and_hygiene_inputs
examples:
- sanitation and hygiene input
- desludging
- toilet
- septic tank
- excreta container
- solid waste management
- point of use water treatment
- piped water supply treatment
polarity: 1
- node:
name: build # (construct/repair)
children:
- node:
name: agriculture_infrastructure
children:
- node:
name: livestock_production_infrastructure
children:
- node:
name: livestock_shelter # enclosure, barn, pasture, etc
examples:
- enclosure
- barn
- pasture
- livestock shelter
- paddock
- chicken coop
- coop
polarity: 1
- node:
name: crop_production_infrastructure
children:
- node:
name: irrigation_infrastructure # canal, reservoir, water_tower
examples:
- canal
- reservoir
- water tower
- standpipe
- irrigation infrastructure
polarity: 1
- node:
name: extension_offices # farmer_training_centers, demonstration plots, etc
patterns:
- \bextension\s+offices?
examples:
- farmer training center
- demonstration plot
- extension office
polarity: 1
- node:
name: greenhouse # nursery, high_tunnel, etc.
examples:
- nursery
- plant nursery
- greenhouse
- high tunnel
- glasshouse
- hothouse
polarity: 1
- node:
name: post_harvest_infrastructure # on-farm_processing_facility, silos, cooperative_processing, storage, etc.
patterns:
- \b(tower|bunker|stave|grain)\b\s(silo)
examples:
- on-farm processing facility
- silo
- tower silo
- bunker silo
- stave silo
- grain silo
- grain elevator
- cooperative processing
- post-harvest
polarity: 1
- node:
name: trade_infrastructure # factory, industrial_park, storage_facilities, warehouse, processing_facilities, etc.
examples:
- factory
- industrial park
- storage facility
- warehouse
- processing facility
- trade infrastructure
polarity: 1
- node:
name: educational_infrastructure # community_centers, child_friendly_learning_spaces, school_rehabilitation, gender_specific_bathrooms, etc.
examples:
- community center
- classroom
- child friendly learning space
- school rehabilitation
- gender-specific bathrooms
- educational infrastructure
- school infrastructure
polarity: 1
- node:
name: shelter_housing # permanent_house, temporary_housing, refugee_camp, housing_provision, leasing_or_rental_services, temporary_communal_settlement, etc.
examples:
- permanent house
- temporary housing
- refugee camp
- housing provision
- leasing or rental services
- temporary communal settlement
- temporary shelter
- portable shelter
- shelter
polarity: 1
- node:
name: WASH_infrastructure # sanitation facilities, latrines, washing_and_bathing_facilities, temporary_water_points, boreholes, permanent_water_points, borehole_repair, etc.
patterns:
- \b(WASH)\binfrastructure
examples:
- sanitation facility
- latrine
- washing and bathing facility
- temporary water points
- borehole
- permanent water point
- borehole repair
- WASH infrastructure
polarity: 1
- node:
name: medical_infrastructure # hospitals, mobile clinics, field_hospitals, emergency treatment centers, medical supply chain facilities, etc.
examples:
- hospital
- mobile clinic
- field hospital
- triage
- emergency treatment center
- emergency treatment centre
- medical supply chain facility
- medical infrastructure
polarity: 1
- node:
name: transportation_infrastructure # bridge, repair, all_weather_roads, railway_lines, temporary_roads, road_rehabilitation
patterns:
- \b(road|bridge|rail)\s(repair)
examples:
- bridge
- all weather roads
- railway lines
- temporary roads
- road rehabilitation
- road repair
- transportation infrastructure
polarity: 1
- node:
name: communication_infrastructure # cell-phone_towers, landlines, etc
examples:
- internet access service
- cell-phone tower
- cell tower
- landline
- phone line
- telephone pole
- telepole
- communication infrastructure
polarity: 1
- node:
name: energy_infrastructure # dams, electricity_grids, micro-grids, solar_panels, wind_turbines, wind_farms, solar_farms, etc.
examples:
- dam
- electricity grid
- electric grid
- power grid
- micro-grid
- solar panel
- wind turbine
- wind farm
- solar farm
- energy infrastructure
polarity: 1
- node:
name: train # teach, capacity_building, educate, etc
children:
- node:
name: agriculture_training # extension, capacity_building, training_of_trainers, development_agents (ET specific name for extension workers), extension_workers
children:
- node:
name: production_practices # Pasture_management, Herd_management, planting_practices, etc.
children:
- node:
name: planting_training # crop_spacing, planting_times, seed_depth, watering, crop_rotation, cover_cropping, composting, low_till, no_till, perennial_planting, Conservation_agriculture
examples:
- cover cropping
- composting
- planting practices
- training
polarity: 1
- node:
name: pest_weed_control # IPM_practices (integrated pest management), etc
patterns:
- (\bIPM\b)(\s(practices))?
examples:
- training IPM practices
- training integrated pest management
- training pest control
- weed control
polarity: 1
- node:
name: post_harvest_practices # storage, processing, packaging, safety_and_hygiene, certifications, ISO, FDA, work_place_safety, etc.
examples:
- training storage
- training processing
- training packaging
- training safety and hygiene
- certifications
- ISO
- FDA
- workplace safety
- post-harvest practices
polarity: 1
- node:
name: agriculture_information # digital_extension, famers_almanac, mobile_extension, SMS reminders, Weather_information, NMA_reports (national met agency), broadcast_weather_reports,
patterns:
- (\bNM[AS]\b)\s(reports?)
examples:
- farmer's almanac
- weather information
- national weather service meteorological met
- agriculture information
polarity: 1
- node:
name: medical_training # capacity_assessments, community_health_workers (CHWs),
children:
- node:
name: assessment_and_triage_of_health_facilities
examples:
- medical training
- assessment of health facilities
- triage of health facilities
- evaluation community health workers
- CHWs
- medical capacity assessment
polarity: 1
- node:
name: capacity_building_of_medical_staff
examples:
- capacity building of medical staff
- medical capacity building
polarity: 1
- node:
name: human_rights_training
examples:
- human rights training
polarity: 1
- node:
name: financial_management # provision_of_credit_and_training_for_income_generation
examples:
- provision of credit
- training for income generation
- training credit provision
- income generation training
- financial management
polarity: 1
- node:
name: education_systems # provision_of_non_formal_education, community_sourced_temporary_teachers
examples:
- provision of non-formal education
- training community sourced temporary teachers
- education systems
- capacity building of educational staff
- training education capacity building
polarity: 1
- node:
name: public_health_campaigns # behaviour change, campaigns, public information, hygiene_promotion, information_campaign, health_promoters,
examples:
- behavior change campaign
- behaviour change campaign
- public health information
- hygiene promotion
- health information campaign
- health promotors
- health promotion
- public health campaigns
polarity: 1
- node:
name: public_safety_campaigns # explosive_hazards
examples:
- explosive hazards campaign
- public safety campaigns
polarity: 1
- node:
name: emergency_preparedness_training # disaster risk management, resilience building, etc.
children:
- node:
name: surveillance_system_strengthening
examples:
- surveillance system strengthening
polarity: 1
- node:
name: humanitarian_certifications # SPHERE, core_standards, humanitarian_charter, etc.
examples:
- SPHERE
- core standards
- humanitarian charter
- humanitarian certifications
polarity: 1
- node:
name: secure # protect, stabilize, defend, conserve, neutralize, preserve
children:
- node:
name: livelihood_protections # agricultural assets, cattle_raids, supply chains,
examples:
- agricultural assets
- cattle raid
- supply chain
- livelihood protections
- defend livelihood
- protect livelihood
- stabilize livelihood
- conserve livelihood
- neutralize threat to livelihood
- preserve livelihood
- secure livelihood
polarity: 1
- node:
name: community_security # policing, governance
children:
- node:
name: mine_clearance
examples:
- mine clearance
- demining
- remove land mines
- clear land mines
- neutralize land mines
polarity: 1
- node:
name: temporary_policing_services
examples:
- temporary policing services
- temporary police
- temporary security services
- security escort
polarity: 1
- node:
name: conflict_resolution # conflict_mediation, political_dialogue, disarmament, demobilization, reintegration, family_reunification, rehabilitation_of_child_soldier
patterns:
- peace\s+(building|talks)
- conflict\s+resolution
examples:
- conflict mediation
- political dialogue
- disarmament
- demobilization
- reintegration
- family reunification
- rehabilitation of child soldiers
- conflict resolution
polarity: 1
- node:
name: secure_natural_resources # Water_rights, Land_rights, land_deeds, Biotechnology, etc.
examples:
- water rights
- land rights
- land deeds
- biotechnology
- defend natural resources
- protect natural resources
- stabilize natural resources
- conserve natural resources
- neutralize threat to natural resources
- preserve natural resources
- secure natural resources
polarity: 1
- node:
name: cultural_resources # landmark_designation, world_heritage_status, etc.
patterns:
- \bUNESCO\b\sworld\sheritage\ssite
examples:
- landmark designation conservation
- world heritage status site
- cultural resources protections
polarity: 1
- node:
name: legislate # regulate, control, tax, subsidize, penalize, certify, ban, etc.
children:
- node:
name: subsidize
examples:
- subsidize
- subsidies
- subsidy
polarity: 1
- node:
name: tax
examples:
- tax
- taxation
- taxes
- tax legislation
- duty
- tariff
polarity: 1
- node:
name: control_prices
examples:
- control prices
- price control
- regulate prices
- legislate prices
- price ceiling
- price floor
polarity: 1
- node:
name: environmental
children:
- node:
name: meteorologic
children:
- node:
name: weather
examples:
- weather
- weather systems
- rains
- rainfall
- extreme winds
- wet
- wetter
- climate variability
- snow
- humid
polarity: 1
- node:
name: climate
examples:
- climate
- tropical
- equatorial
polarity: 1
- node:
name: precipitation
children:
- node:
name: rainfall
examples:
- rainfall
- precipitation
- rains
- rain
polarity: 1
- node:
name: storm
examples:
- storm
- seasonal monsoon
- extreme weather
polarity: 1
- node:
name: temperature # temperature of ...
examples:
- temperature
- cooler
- cooling
- cold
- freezing
- heat
- heatwave
- record highs
- warmer
- warming
polarity: 1
- node:
name: environment
examples:
- environment
polarity: 1
- node:
name: climate_change_mitigation
examples:
- climate change mitigation
- climate change adaptation
polarity: 1
- node:
name: resource_management
examples:
- conservation
- sustainable use
- biodiversity conservation
- forest management
- water management
- management forest
- depleted resources
- overexploitation
polarity: 1
- node:
name: forestry
examples:
- afforestation
- agroforestry
- forest management
- reforestation
- forestry
- logging
polarity: 1
- node:
name: natural_resources
children:
- node:
name: water_bodies
examples:
- water
- sea
- river
- pond
- water resource
- lake
- freshwater
- surface water
- groundwater
- snow melt
- water body
- reservoir
polarity: 1
- node:
name: land_availability
examples:
- land availability
- availability of cropland
polarity: 1
- node:
name: fossil_fuels
examples:
- fossil fuels
- coal
- oil
- natural gas
polarity: 1
- node:
name: soil
examples:
- soil
- soil quality
- leaching into the soil
polarity: 1
- node:
name: pasture
examples:
- pastoral conditions
- pasture conditions
- rangeland conditions
- vegetation conditions
- grazing conditions
polarity: 1
- node:
name: pollution
children:
- node:
name: air_pollution
examples:
- pollution
- greenhouse gas emission
- ghg emission
polarity: -1
- node:
name: land_pollution
examples:
- contaminant
- contamination
- contaminated
- soil pollution
- soil erosion
- pollutants
- pollution
- leakage
- acidification
polarity: -1
- node:
name: climate_change
examples:
- deforestation
- desertification
- climate change
polarity: -1
- node:
name: crisis_and_disaster
children:
- node:
name: health
children:
- node:
name: pandemic
examples:
- disease outbreak
- global pandemic
- pandemic
- epidemic
polarity: -1
- node:
name: mitigation
children:
- node:
name: sanitation
examples:
- sanitation
- hygiene materials
- soap
- wash hands
polarity: 1
- node:
name: contact_tracing
patterns:
- (contact tracing)
examples:
- contact tracing