Cameroon Hunting Model
Do you have questions or comments about this model? Ask them here! (You'll first need to log in.)
WHAT IS IT?
The wild meat trade is a regular feature in many parts of Africa. People rely on it for livelihoods and, more importantly, for food. Trade in wild meat is particularly common in west and central Africa where people regularly eat small and large antelopes, wild pigs, large rodents, fruit bats and primates, including elephants.
Overhunting of tropical wildlife for food remains an intractable issue. Donors and governments remain committed to invest in efforts to both conserve and allow the sustainable use of wildlife. Four principal barriers need to be overcome: 1) communities are not motivated to conserve wildlife long-term because they have no formal rights to benefit from wildlife, or to exclude others from taking it on their land; 2) multi-species harvests, typical of wild meat hunting scenarios, place large-bodied species at risk of extinction; 3) wildlife production cannot expand, in the same way that livestock farming can, to meet the expected growth in consumer demand; and 4) wildlife habitat is lost through conversion to agriculture, housing, transportation networks, and extractive industries.
This model has been developed to assist in understanding how hunter numbers and no-take zones (reserve areas in the current context) can affect populations of three representative wild meat species (a large rodent, a medium-sized antelope and elephant, the largest animal found in African forests). The outcomes of this model can be used to visualise the effect of overhunting on food security and livelihoods of indigenous and rural peoples dependant on wild meat as a valuable protein resource.
HOW IT WORKS
The model is populated with three hunted animal species and hunters. The three animals are:
- Emin’s Rats (Cricetomys emini) - large rodents with high reproduction rates.
- Duikers - Small antelope (Philantomba spp. and Cephalophus spp.) native to Sub-Saharan Africa. They are found in forested landscapes.
- Elephants - long lived with slow reproduction rates
Each species has variables related to:
- Life span
- Reproductive Age
- Number of Offspring
- Area required (Carrying Capacity) for offspring to survive.
The number of hunters and reserve area can me modified.
HOW TO USE IT
- Adjust the slider parameters or use the default settings.
- Press the SETUP button.
- Press the GO button to begin the simulation.
- Change number of hunter and reserve variables. Both of these can be changed whilst the model is running.
- View the plots to watch the populations and hunter catch change over time.
- Adjust the reserve
THINGS TO NOTICE
Populations of different species are displayed in top-right. Fluctuations in populations will vary for different species and with the amount of reserve area.
The amount of species being caught originating from protected areas will increase as the number of hunters and amount of reserve area increases
Energy expended per total weight of bush meat caught is shown as the monitor "total catch/energy expended". This will reach a near equilibrium with different hunter and reserve settings.
THINGS TO TRY
Try running the model with no hunters, what is the equilibrium state. How does this change as you add hunters?
Does the number of starting animals influence if the population reaches equilibrium?
What number of hunters leads to extiction of different species?
How much reserve will lead to a stable elephant population?
Under what conditions does not hunting elephants lead to more or less overall species (weight) catch?
Changing the number of hunters and reserve area will impact the proportion of animals caught that originate from each zone. How does the reserve act as a source and of bush meat when hunter numbers are high?
EXTENDING THE MODEL
Add village origin and end points for hunter journeys.
Add Poaching hunters going into reserve areas.
RELATED MODELS
Look at the Wolf-Sheep model for a basic predator prey model example.
Look at Bug Hunt Consumers for a simpler version of this model that no predators or reserves.
CREDITS AND REFERENCES
Developed by Rohan Fisher Rohan.fisher@cdu.edu.au Charles Darwin University (2019)
References
Fa JE, Brown D. (2009). Impacts of hunting on mammals in African tropical moist forests: a review and synthesis. Mammal Review 39, https://doi.org/10.1111/j.1365-2907.2009.00149.x
Wilkie DS, Wieland M, Boulet H, Le Bel S, van Vliet N, Cornelis D, BriacWarnon V, Nasi R, Fa JE. (2016). Eating and conserving bushmeat in Africa. African Journal of Ecology. 54(4):402-14.
HOW TO CITE
Comments and Questions
globals [ ; rat-reproduce-age ;; min age of rats before they can reproduce ; duiker-reproduce-age ;; min age of elephants before they can reproduce elephant-reproduce-age ;; min age of duiker before they can reproduce ; ; rat-max-age ;; max age of rats before they automatically die ; duiker-max-age ;; max age of duiker before they automatically die elephant-max-age ;; max age of elephants before they automatically die max-rats-offspring ;; maximum number of offspring per reproductive event for a rat max-duikers-offspring ;; maximum number of offspring per reproductive event for a bird max-elephants-offspring ;; maximum number of offspring per reproductive event for an elephant rat-energy ;; maximum number of offspring per reproductive event for a rat duiker-energy ;; maximum number of offspring per reproductive event for a bird elephant-energy ;; maximum number of offspring per reproductive event for an elephant rat-reproduce-interval duiker-reproduce-interval elephant-reproduce-interval rat-range ;; max age of rats before they automatically die duiker-range ;; max age of duiker before they automatically die elephant-range ;; max age of elephants before they automatically die total-catch-rat total-catch-duiker total-catch-elephant ; rat-cc ; duiker-cc ; elephant-cc Origin-Reserve Origin_Hunting_Area border ] breed [ duikers duiker ] breed [ elephants elephant ] breed [ rats rat ] breed [ hunters hunter ] ;; turtles that mark the location of where a rat was removed from disease. turtles-own [ current-age max-age starting-patch distance-from-home time-since-birth place-of-birth] ;; these three variables are used for rats, elephants, and duiker patches-own [reserve] to setup clear-all ; set rat-reproduce-age 20 ; set rat-max-age 40 set max-rats-offspring 3 set rat-range 12 ; ; set duiker-reproduce-age 40 ; set duiker-max-age 60 set max-duikers-offspring 2 set duiker-range 15 set elephant-reproduce-age 200 set elephant-max-age 1000 set max-elephants-offspring 1 set elephant-range 60 set rat-reproduce-interval 7 set duiker-reproduce-interval 10 set elephant-reproduce-interval 50 set rat-energy 30 set duiker-energy 50 set elephant-energy 1000 set-default-shape rats "mouse" set-default-shape duikers "fox" set-default-shape elephants "mammoth" set-default-shape hunters "person" ask patches [set pcolor green] ask patches with [pxcor > (55 - reserve-size)] [set pcolor 53] ask n-of 500 patches [sprout 1 [set color 54 set size 2 set shape "grass"]] ask patches with [ count neighbors != 8 ] [set pcolor 54.5] add-rats add-duiker add-elephants add-hunters reset-ticks end to go if ticks >= 3000 and after-3000 [stop] ask rats [ rats-live reproduce-rats] ask duikers [ duiker-live reproduce-duikers] ask elephants [ elephants-live reproduce-elephants] ask hunters [hunters-live] if (count elephants + count rats + count duikers) = 0 and on-extiction [stop] tick end to add-rats ;; setup rats procedure to add rats based on initial settings create-rats initial-number-rats [ ;; create the rats, then initialize their variables set color white set current-age 0 + random rat-max-age ;;don't start out with everyone at the same age set max-age rat-max-age set time-since-birth 100 set size 2 setxy random-pxcor random-pycor set starting-patch patch-here ] end to add-duiker ;; setup duiker procedure create-duikers initial-number-duikers ;; create the duikers, then initialize their variables [ set color brown set current-age 0 + random duiker-max-age ;;don't start out with everyone at the same age set max-age duiker-max-age set time-since-birth 100 set size 3 setxy random-pxcor random-pycor set starting-patch patch-here ] end to add-elephants create-elephants number-of-elephants ;; elephants the rats, then initialize their variables [ set color grey set current-age 0 + random elephant-max-age ;;don't start out with everyone at the same age set max-age elephant-max-age set time-since-birth 100 set size 6 setxy random-pxcor random-pycor set starting-patch patch-here ] end to add-hunters ask n-of number-of-hunters patches with [pcolor = green] [sprout-hunters 1 [ set color black set size 3 ]] end to rats-live ;; rats procedure move-rats reproduce-rats set current-age (current-age + 1) set time-since-birth (time-since-birth + 1) death end to duiker-live ;; duiker procedure move-duiker reproduce-duikers set current-age (current-age + 1) set time-since-birth (time-since-birth + 1) death end to elephants-live ;; elephants procedure move-elephants reproduce-elephants set current-age (current-age + 1) set time-since-birth (time-since-birth + 1) death end to hunters-live ;; elephants procedure move-hunters hunter-catch-animal set current-age (current-age + 1) ;this is used as a proxy for hunting effort - the amount of time spent looking for animals end to move-rats ;; rats procedure ifelse [pcolor] of patch-here = 54.5 [ rt random 140 lt random 140 fd .5 ] [ifelse distance starting-patch > rat-range [face starting-patch] [ rt random 90 lt random 90 ] ] fd 1 end to move-duiker ;; duiker procedure ifelse [pcolor] of patch-here = 54.5 [ rt random 140 lt random 140 fd .5 ] [ ifelse distance starting-patch > duiker-range [face starting-patch] [ rt random 90 lt random 90 ] ] fd 1 end to move-elephants ;; elephants procedure ifelse [pcolor] of patch-here = 54.5 [ rt random 140 lt random 140 fd .5 ] [ifelse distance starting-patch > elephant-range [face starting-patch] [ rt random 90 lt random 90 ] ] fd 1 end to move-hunters ;; ifelse [pcolor] of patch-here = 54.5 or [pcolor] of patch-here = 53 [ rt 180 ] [ rt random 40 lt random 40 ] fd 1 end to hunter-catch-animal ;; duiker procedure if (any? rats in-radius 4 ) [ask one-of rats in-radius 4 [ set total-catch-rat (total-catch-rat + rat-energy) if place-of-birth = 2 [set Origin-Reserve Origin-Reserve + 1] if place-of-birth = 1 [set Origin_Hunting_Area Origin_Hunting_Area + 1] die]] if (any? duikers in-radius 4 ) [ask one-of duikers in-radius 4 [ set total-catch-duiker (total-catch-duiker + duiker-energy) if place-of-birth = 2 [set Origin-Reserve Origin-Reserve + 1] if place-of-birth = 1 [set Origin_Hunting_Area Origin_Hunting_Area + 1] die]] if hunt-elephants [ if (any? elephants in-radius 5 ) [ask one-of elephants in-radius 5 [die] set total-catch-elephant (total-catch-elephant + elephant-energy) ]] end to reproduce-rats ;; rats procedure let number-offspring (random (max-rats-offspring + 1)) ;; set number of potential offspring from 1 to (max-rats-offspring) if ( current-age > rat-reproduce-age and time-since-birth > rat-reproduce-interval and random 4 = 1 and ((count rats in-radius rat-cc) < 3)) [ set time-since-birth 0 hatch number-offspring [ set size 2 set color white set current-age 0 set time-since-birth 1000 set shape "mouse" rt random 360 fd 7 set starting-patch patch-here ifelse pxcor > (55 - reserve-size) [set place-of-birth 2 ] [set place-of-birth 1 ] ;; born in or outside a protected area ] ;; hatch an offspring set it heading off in a random direction and move it forward a step ] end to reproduce-duikers let number-offspring (random (max-rats-offspring + 1)) ;; set number of potential offspring from 1 to (max-rats-offspring) if ( current-age > duiker-reproduce-age and time-since-birth > duiker-reproduce-interval and random 4 = 1 and ((count duikers in-radius duiker-cc) < 3)) [ set time-since-birth 0 hatch number-offspring [ set size 3 set color brown set current-age 0 set time-since-birth 1000 set shape "fox" rt random 360 fd 7 set starting-patch patch-here ifelse pxcor > (55 - reserve-size) [set place-of-birth 2 ] [set place-of-birth 1 ] ;; born in or outside a protected area ] ;; hatch an offspring set it heading off in a random direction and move it forward a step ] end to reproduce-elephants ;; if ( current-age > elephant-reproduce-age and time-since-birth > elephant-reproduce-interval and random 3 = 1 and ((count elephants in-radius 70) < 3)) [ set time-since-birth 0 hatch 1 [ set size 6 set color grey set current-age 0 set time-since-birth 1000 set shape "mammoth" rt random 360 fd 7 set starting-patch patch-here ifelse pxcor > (55 - reserve-size) [set place-of-birth 2 ] [set place-of-birth 1 ] ;; born in or outside a protected area ] ;; hatch an offspring set it heading off in a random direction and move it forward a step ] end to death ;; common procedure for rats duiker & elephants to die if (current-age > max-age) [ die ] end ; Copyright 2011 Uri Wilensky. ; See Info tab for full copyright and license.
There are 2 versions of this model.
Attached files
File | Type | Description | Last updated | |
---|---|---|---|---|
Cameroon Hunting Model.png | preview | Preview for 'Cameroon Hunting Model' | over 6 years ago, by Rohan Fisher | Download |
This model does not have any ancestors.
This model does not have any descendants.