Food Insecurity and Food Deserts: Issues and Solutions function table_sort(table_name, column_number, data_type) { var table, rows, switching, i, x, y, shouldSwitch, dir, switchcount = 0; table = document.getElementById(table_name); switching = true; // Set the sorting direction to ascending: dir = "asc"; /* Make a loop that will continue until no switching has been done: */ while (switching) { /* Start by saying no switching is done */ switching = false; rows = table.getElementsByTagName("TR"); /* Loop through all table rows (except the first, which contains table headers) start the index at 2 to skip 2 header rows */ for (i = 2; i < (rows.length - 1); i++) { /* Start by saying there should be no switching */ shouldSwitch = false; /* Get the two elements you want to compare, one from current row and one from the next: */ x = rows[i].getElementsByTagName("TD")[column_number]; y = rows[i + 1].getElementsByTagName("TD")[column_number]; /* Check if the two rows should switch place, based on the direction, asc or desc: */ if (dir == "asc") { /* text data */ if (data_type == 0) { if (x.innerHTML.toLowerCase() > y.innerHTML.toLowerCase()) { /* If so, mark as a switch and break the loop */ shouldSwitch= true; break; } } /* numeric data */ if (data_type == 1) { /* remove commas and convert to numeric */ x_num = x.innerHTML; while (x_num.search(",") >= 0) { x_num = (x_num + "").replace(',', ''); } /* temp removed x_num = parseInt(x_num, 10); */ x_num = parseFloat(x_num); y_num = y.innerHTML; while (y_num.search(",") >= 0) { y_num = (y_num + "").replace(',', ''); } /* temp removed y_num = parseInt(y_num, 10); */ y_num = parseFloat(y_num); if (x_num > y_num) { /* If so, mark as a switch and break the loop */ shouldSwitch= true; break; } } } else if (dir == "desc") { /* text data */ if (data_type == 0) { if (x.innerHTML.toLowerCase() < y.innerHTML.toLowerCase()) { /* If so, mark as a switch and break the loop */ shouldSwitch= true; break; } } /* numeric data */ if (data_type == 1) { /* remove commas and convert to numeric */ x_num = x.innerHTML; while (x_num.search(",") >= 0) { x_num = (x_num + "").replace(',', ''); } /* temp removed x_num = parseInt(x_num, 10); */ x_num = parseFloat(x_num); y_num = y.innerHTML; while (y_num.search(",") >= 0) { y_num = (y_num + "").replace(',', ''); } /* temp removed y_num = parseInt(y_num, 10); */ y_num = parseFloat(y_num); if (x_num < y_num) { /* If so, mark as a switch and break the loop */ shouldSwitch= true; break; } } } } if (shouldSwitch) { /* If a switch has been marked, make the switch and mark that a switch has been done: */ rows[i].parentNode.insertBefore(rows[i + 1], rows[i]); switching = true; // Each time a switch is done, increase this count by 1: switchcount ++; } else { /* If no switching has been done AND the direction is "asc", set the direction to "desc" and run the while loop again. */ if (switchcount == 0 && dir == "asc") { dir = "desc"; switching = true; } } } } function food_ask(food_question, food_question_answer) { document.getElementById(food_question).innerHTML = food_question_answer; } function food_answer(food_question, food_question_answer) { document.getElementById(food_question).innerHTML = food_question_answer; } function food_identify(food_sound, food_answer) { document.getElementById(food_sound).innerHTML = food_answer; } function food_reset(food_sound, food_answer) { document.getElementById(food_sound).innerHTML = food_answer; } function imageswap(box, boximage, boxcaption, boxtext) { document.getElementById(box).src = boximage; document.getElementById(boxcaption).innerHTML = boxtext; } function pageswap(page, pagesource, pagecaption, pagetext) { document.getElementById(page).src = pagesource; document.getElementById(pagecaption).innerHTML = pagetext; } function disptext(textinfo) { document.getElementById(textinfo).style.display = 'block'; } function hidetext(textinfo) { document.getElementById(textinfo).style.display = 'none'; }
#pimafoodtable { border-collapse: collapse; margin-left: auto; margin-right: auto; } #pimafoodtable td, #pimafoodtable th { border: 2px solid black; padding: 2px; text-align: center; font-size: 11px; font-weight: 600; } #pimafoodtable th { vertical-align: bottom; color: #F6DDCC; background-color: black; } #pimafoodtable td { vertical-align: top; } #pimafoodtable tr:nth-child(even) { color: black; background-color: #EDBB99; } #pimafoodtable tr:hover { cursor: pointer; } #pimafoodtable a:link { cursor: pointer; } #ghgtable { border-collapse: collapse; margin-left: auto; margin-right: auto; } #ghgtable td, #ghgtable th { border: 2px solid black; padding: 2px; text-align: center; font-size: 11px; font-weight: 600; } #ghgtable th { vertical-align: bottom; color: #F6DDCC; background-color: black; } #ghgtable td { vertical-align: top; } #ghgtable tr:nth-child(even) { color: black; background-color: #EDBB99; } #ghgtable tr:hover { cursor: pointer; } #ghgtable a:link { cursor: pointer; } #deathtable { border-collapse: collapse; margin-left: auto; margin-right: auto; } #deathtable td, #deathtable th { border: 2px solid black; padding: 2px; text-align: center; font-size: 11px; font-weight: 600; } #deathtable th { vertical-align: bottom; color: #F6DDCC; background-color: black; } #deathtable td { vertical-align: top; } #deathtable tr:nth-child(even) { color: black; background-color: #EDBB99; } #deathtable tr:hover { cursor: pointer; } #deathtable a:link { cursor: pointer; } #natdistable { border-collapse: collapse; margin-left: auto; margin-right: auto; } #natdistable td, #natdistable th { border: 2px solid black; padding: 2px; text-align: center; font-size: 11px; font-weight: 600; } #natdistable th { vertical-align: bottom; color: #F6DDCC; background-color: black; } #natdistable td { vertical-align: top; } #natdistable tr:nth-child(even) { color: black; background-color: #EDBB99; } #natdistable tr:hover { cursor: pointer; } #natdistable a:link { cursor: pointer; } #pandemictable { border-collapse: collapse; margin-left: auto; margin-right: auto; } #pandemictable td, #pandemictable th { border: 2px solid black; padding: 2px; text-align: center; font-size: 11px; font-weight: 600; } #pandemictable th { vertical-align: bottom; color: #F6DDCC; background-color: black; } #pandemictable td { vertical-align: top; } #pandemictable tr:nth-child(even) { color: black; background-color: #EDBB99; } #pandemictable tr:hover { cursor: pointer; } #pandemictable a:link { cursor: pointer; } #actionstable { border-collapse: collapse; margin-left: auto; margin-right: auto; } #actionstable td, #actionstable th { border: 2px solid black; padding: 2px; text-align: center; font-size: 11px; font-weight: 600; } #actionstable th { vertical-align: bottom; color: #F6DDCC; background-color: black; } #actionstable td { vertical-align: top; } #actionstable tr:nth-child(even) { color: black; background-color: #EDBB99; } #actionstable tr:hover { cursor: pointer; } #actionstable a:link { cursor: pointer; } #lockdowntable { border-collapse: collapse; margin-left: auto; margin-right: auto; } #lockdowntable td, #lockdowntable th { border: 2px solid black; padding: 2px; text-align: center; font-size: 11px; font-weight: 600; } #lockdowntable th { vertical-align: bottom; color: #F6DDCC; background-color: black; } #lockdowntable td { vertical-align: top; } #lockdowntable tr:nth-child(even) { color: black; background-color: #EDBB99; } #lockdowntable tr:hover { cursor: pointer; } #lockdowntable a:link { cursor: pointer; } #nutrientstable { border-collapse: collapse; margin-left: auto; margin-right: auto; } #nutrientstable td, #nutrientstable th { border: 2px solid black; padding: 2px; text-align: center; font-size: 11px; font-weight: 600; } #nutrientstable th { vertical-align: bottom; color: #F6DDCC; background-color: black; } #nutrientstable td { vertical-align: top; } #nutrientstable tr:nth-child(even) { color: black; background-color: #EDBB99; } #nutrientstable tr:hover { cursor: pointer; } #nutrientstable a:link { cursor: pointer; } #committable { border-collapse: collapse; margin-left: auto; margin-right: auto; } #committable td, #committable th { border: 2px solid black; padding: 2px; text-align: center; font-size: 11px; font-weight: 600; } #committable th { vertical-align: bottom; color: #F6DDCC; background-color: black; } #committable td { vertical-align: top; } #committable tr:nth-child(even) { color: black; background-color: #EDBB99; } #committable tr:hover { cursor: pointer; } #committable a:link { cursor: pointer; } #fedprogstable { border-collapse: collapse; margin-left: auto; margin-right: auto; } #fedprogstable td, #fedprogstable th { border: 2px solid black; padding: 2px; text-align: center; font-size: 11px; font-weight: 600; } #fedprogstable th { vertical-align: bottom; color: #F6DDCC; background-color: black; } #fedprogstable td { vertical-align: top; } #fedprogstable tr:nth-child(even) { color: black; background-color: #EDBB99; } #fedprogstable tr:hover { cursor: pointer; } #fedprogstable a:link { cursor: pointer; } #data { border-collapse: collapse; } #data td, #data th { border: 2px solid darkblue; padding: 2px; text-align: center; } #data th { vertical-align: bottom; color: lightblue; background-color: darkblue; } #data tr:nth-child(even) { color: darkblue; background-color: lightskyblue; } #data tr:hover { color: lightblue; background-color: darkblue; cursor: pointer; } #data a:link { cursor: pointer; } #innertable td { border-style: none; border-collapse: collapse; border: hidden; }
Introduction
In addition to conflict, climate change and natural disasters, pandemics have a drastic effect on world food supplies. The COVID-19 pandemic affected everyone. Millions retreated to their homes, either voluntarily or under mandate of local, state or national governments, to stop the spread of the disease that killed millions before vaccinations drastically slowed it.
Disinformation ran through society faster than the disease, causing unnecessary suffering and death. Irresponsible politicians and their minions used social media to deliberately lie about how the disease spread and the efficacy of vaccinations while promoting dangerous and deadly remedies.
Medical science has made huge strides to combat diseases like it, but pandemics decimate workforces, permanently alter social structures, increase food insecurity and destroy food sources and distribution infrastructures. While economic, social and political institutions can alleviate some of the suffering, there are usually insufficient resources available to help all of those in need.
COVID-19 was the first pandemic in the last 100 years, but may not be the last. There have been many througout recorded history. Nearly all have had the most devasting effects on the poorest and most vulnerable populations, including sick, young, old, displaced and hungry.
History
Pandemics Since the Middle Ages[4]
start year↕
pandemic↕
location↕
est. morbidity↕
impact↕
1347
bubonic plague
Eurasia
30% to 50%
end of European feudal system
1500
smallpox
Americas
more than 50% in some communities
decimated Native populations
1881
5th cholera
global
more than 1.5 million deaths
instigated attacks on tsarist government and medical professionals in Russia
1918
global
20 million to 100 million deaths
several percent GDP losses in Australia, Canada, United Kingdom and U.S.
1957
Asian flu
global
0.7 million to 1.5 million deaths
3% GDP loss in Canada, Japan, the United Kingdom and the U.S.
1968
Hong Kong flu
global
1 million deaths
about $26 billion direct and indirect losses in the U.S.
1981
HIV/AIDS
global
more than 70 million infections, 36.7 million deaths
2% to 4% annual loss of GDP growth in Africa
2003
SARS
4 continents, 37 countries
8,098 possible cases, 744 deaths
GDP loss of billions of dollars in Hong Kong, China, Canada and Singapore
2009
Swine flu
global
151,700 to 575,500 deaths
GDP loss of $1 billion in the Republic of Korea
2012
MERS
22 countries
1,879 symptomatic cases, 659 deaths
GDP loss of $2 billion in the Republic of Korea
2013
West Africa ebola
10 countries
28,646 cases, 11,323 deaths
GDP loss of $2 billion in Guinea, Liberia and Sierra Leone
2015
Zika virus
76 countries
2,656 reported cases of microcephaly malformation
between $7 billion and $18 billion losses in Latin America and the Caribbean
Unlike epidemicsoccurrence in a community or region of cases of an illness in excess of normal expectancy and endemic diseasesthose that are constantly present in particular localities or regions pandemicslarge-scale outbreaks of infectious disease that can greatly increase morbidity and mortality over a wide geographic area and cause significant economic, social, and political disruption are global and have increased over time because of international travel, urbanization, changes in land use and natural resource exploitation.[1]
Pandemics, including influenza,a highly contagious viral infection of the respiratory passages causing fever and severe aching cholera,an infectious and often fatal bacterial disease of the small intestine, typically contracted from infected water supplies and causing severe vomiting and diarrhea bubonic plaguethe most common form of plague in humans, characterized by fever, delirium and the formation of inflamed lymph nodes smallpoxan acute contagious viral disease, with fever and pustules that leave permanent scars, was nearly eradicated by 1979 due to a vaccine and measles,an infectious viral disease causing fever and a red rash on the skin, usually contracted during childhood[5] have a long history and many were recorded long before humans traveled easily around the planet. They devastated populations and altered social, political and economic structures.
Researchers use 4 methods to determine pandemic deaths:
Excess deaths. Researchers estimate the additional number of deaths that occurred compared to the expected number of deaths in a typical year.
Net population reduction. Deaths are estimated from change in population before and after the pandemic.
Epidemiological modeling. Fatality rates are based on disease transmission over particular geographical areas.
Recorded deaths. The number of officially reported deaths caused by the pandemic is used.[6]
One of the first ever recorded, by the Greek physician Galen, began in 165 CE, at the height of Roman power and lasted 15 years. The outbreak spread through the Mediterranean world during the reign of Marcus Aurelius Antoninus, returing again between 251-266 CE. Some historians site it as the beginning of the decline of the Roman Empire.[2]
It may have been spread by Roman soldiers returning from the siege of Seleucia, a city on the Tigris River. This disease from the East moved northward along the Rhine River.[2]
The symptoms described by Galen included fever, diarrhea, vomiting, thirstiness, swollen throat and coughing, leading researchers to believe that this disease may have been smallpox. It is estimated to have killed 60 to 70 million people, reducing the number of taxpayers, army recruits, politicians, artisans and farmers that the republic depended on for its survival. Fields remained uncultivated, crops became more expensive, food production decreased.[2]
In Europe, the 13th and 14th centuries were marked by dramatic climatic cooling and inconsistent weather. During the Great Famine of 1315 to 1317, up to 15% of the population of England and Wales died. Wages fell, grain prices rose, driven people into poverty and starvation, but the wealthiest 3% of households received 15% of the national income.[3]
Pandemic timeline
S. Dattani
Our World in Data
https://ourworldindata.org/historical-pandemics
Licensed under CC-BY by auther S. Dattani
In January 1349 the Black Death reached London. It had already brutally passed through Florence, where 60% of the population had died in 1348, and between 1347 and 1351 it killed between 30% and 60% of all Europeans.[3]
The plague induced vomiting, coughing up blood, black pustules on the skin and swollen lymph nodes, followed by death within days. Those most affected were members of marginalized populations, primarily the poor and minorities with limited access to medical care.[3]
In 1918 the Spanish flu spread across the globe in only 4 months, killing more than 21 million people. In the U.S. it claimed 675,000 lives, more than the number of casualties in World War I, World War II, the Korean War and the Vietnam War combined.[6]
Researchers now believe the Spanish flu began in the U.S., with the first recorded fatality on March 11, 1918 at Fort Riley in Kansas. Within a week, overcrowding and lack of sanitation caused 522 men to be admitted to camp hospital with flu symptoms. Outbreaks spread to Virginia, South Carolina, Georgia, Florida, Alabama and California and to Navy ships docked at East Coast ports. American soldiers spread the flu to European battlefields, then to Norway, China, India, New Zealand, Puerto Rico, the Caribbean, the Philippines and Hawaii.[6]
The flu seemed to target military personnel and not civilians, until the second wave appeared in December 1918 when Boston schools, saloons and soda shops closed. Chicago police officers were ordered to arrest anyone sneezing or coughing in public. In Nashville public gatherings in movie houses, dance halls and pool parlors were prohibited.
In 1918 the flu virus mutated. The immunity built up by those who survived previous infections was useless against new strains, leaving them defenseless. Despite the best efforts of pharmaceutical companies, they could not isolate the virus and develop a vaccine.[6]
Sources:
[1] Madhav, N., Oppenheim, B., Gallivan, M., Mulembakani, P., Rubin, E., & Wolfe, N. Chapter 17 Pandemics: Risks, impacts, and mitigation. In Disease Control Priorities: Improving Health and Reducing Poverty, 3rd ed, D.T. Jamison, H. Gelband, S. Horton, Eds. https://www.ncbi.nlm.nih.gov/books/NBK525302/
[2] Horgan, J. (May 2, 2019). Antonine plague. World History Encyclopedia. https://www.worldhistory.org/Antonine_Plague/
[3] Wade, L. (May 14, 2020). From Black Death to fatal flu, past pandemics show why people on the margins suffer most. https://www.science.org/content/article/black-death-fatal-flu-past-pandemics-show-why-people-margins-suffer-most
[4] Patel, V., D. Chisholm., T. Dua, R. Laxminarayan, & M. E. Medina-Mora, eds. 2015. Notable pandemics since the Middle Ages. Mental, Neurological, and Substance Use Disorders. Disease Control Priorities, 3rd ed., vol. 4. World Bank. Creative Commons Attribution CC BY 3.0 IGO https://www.ncbi.nlm.nih.gov/books/NBK525302/table/pt5.ch17.sec3.table1/?report=objectonly
[5] Dattani, S. (Dec. 7, 2023). What were the death tolls from pandemics in history? Our World in Data. https://ourworldindata.org/historical-pandemics
What ancient Greek physician recorded the symptoms of an endemic?
[6] Fujimura, S. F. (2003). U.S. at war. Mystery virus leaps around the globe killing scores in its path. Scientists race to find a cure. Perspectives in Health, 8(3). https://www.paho.org/en/who-we-are/history-paho/purple-death-great-flu-1918
Food Insecurity
COVID-19 2020 Lockdowns[2],[4]
country↕
date↕
restriction
China
01/23
quarantine began in Wuhan
extended to at least 20 provinces
India
03/24
3-week lockdown
Singapore
04/07
closed schools and all non-essential businesses until June 1
Thailand
04/03
curfew between 10:00 p.m. and 04:00 a.m.
Italy
03/10
all stores except for grocery stores and pharmacies closed
travel required police permission
Spain
03/14
nationwide quarantine, only essential work allowed
United Kingdom
03/23
only essential work allowed
ban on gatherings of more than 2 people
France
03/16
banned public gatherings and walks outside
Germany
03/16
shut down shops, churches, sports facilities, bars and clubs in 16 states
Russia
03/30
Moscow lockdown later extended to 27 other regions
United Arab
Emirates (UAE)
03/26
overnight curfews
police permit required to go outside
Saudi Arabia
03/25
lockdowns began in the capital and other cities followed
Jordan
03/21
lockdown
Israel
03/19
partial lockdown extending to full national lockdown
Argentina
03/21
lockdown extended to April 13
Colombia
03/24
nationwide quarantine
additional restrictions on those 70 years and older to remain indoors
Peru
03/24
men can leave their houses on Mondays, Wednesdays and Fridays
Panama
03/24
women can leave their houses on Mondays, Wednesdays and Fridays
no one is allowed outdoors on Sundays
Morocco
03/15
suspended international flights
closed mosques, schools and restaurants
Kenya
03/15
closed schools, pubs and restaurants
blocked non-residents from entering the country
South Africa
03/26
only essential businesses remained open
soldiers and police monitored streets
Australia
03/23
closed non-essential businesses
New Zealand
03/25
partial lockdown
USA
04/15
federal government and CDC not allowed to issue lockdowns
several states ordered closure of non-essential businesses
by mid-April about 24 states told residents to stay at home
7 states announced school closures
On March 11, 2020, the World Health Organization (WHO) declared COVID-19 a global pandemic. A month later nearly a third of the world's population was restricted from moving around the planet.[2],[4] The world shut down.
The pandemic caused the first major economic recession since 2007. In the U.S., by April 2020 tens of millions lost jobs or declining work hours, the number of new unemployment insurance claims reached a record high of about 7 million and unemployment rose to 14.7%. This was the largest monthly increase and highest rate since 1948 when unemployment data was first recorded.[2]
Worldwide, food insecurity is experienced in greater proportion by marginalized groups, including individual of color, ethnic groups, women and children, those with low income jobs or no health insurance, the poor and those with psychological issues. Discrimination, inequitable distribution of federal funding, poor infrastructure and inadequate access to nutritious food were made worse by COVID-19.[2]
Before the pandemic began, the U.S. food insecurity rate reached its lowest point since it began to be measured in the 1990s. In 2019, the U.S. food insecurity rate was its lowest in 20 years, with:
1 in 4 Native Americans, 23.5%
1 in 6 Latinos, 15.8%
1 in 5 Black, non-Hispanics, 19.3%
1 in 7 children, 14.6%
1 in 9 individuals, 10.9%
1 in 12 white, non-Hispanics, 8.1%.[2]
Those improvements ended with the sudden arrival of the pandemic.[2] During the pandemic the rate of food insecurity among Black Americans rose to 21.7%, more than 3 times higher than for white households. The rate of food insecurity for Hispanic households rose to 17.2%, more than twice than that of white households.[7]
The Navajo Nation reported more per capita cases of COVID-19 than any state except New York and New Jersey. Diabetes is a major risk factor on reservations, where many people live in poverty without running water[1] and basic sanitation required to maintain cleanliness and grow healthy food.
In 2020, 45% of COVID-19 cases but 79% of deaths in Washington, D.C. were of black Americans, who constituted more than 80% of hospitalized COVID-19 patients in Georgia and almost all COVID-19 deaths in St. Louis. In Iowa, Latinos were more than 20% of patients but only 6% of the population.[1]
In Arizona, the National Food Access and COVID Research Team found that:
about 32% Arizona households experienced food insecurity since COVID-19, a 28% percent change(32% - 25%)/25% x 100% = 28%
Hispanic households, households with children and households that experienced job disruption were more likely to be both persistently and newly food insecure
In what year did the Black Death reach London?
the majority of Arizona households were concerned about food becoming too expensive and unavailable
they were also concerned about food safety and accessibility to food assistance programs
most households repotrted changing some food-related habits, including spending more time cooking at home, throwing away less food, and keeping more groceries in their residences
about 14% bought food on credit, 12% borrowed money from friends and family for food and 13% received food from food pantries.[10]
Women, girls, native populations, individuals of color, the poor and others already suffering from food insecurity are most likely to feel the effects of pandemics. Even prior to the COVID-19 pandemic, women and girls represented 60% of the 811 million of the world's undernourished population. During the pandemic another 47 million women and girls were forced into poverty and in 2021, 150 million more women than men reported suffering from hunger.[1] Between March 2020 and June 2021, 113,873 additional maternal and child deaths in 18 countries were due to COVID-19.[9]
Food insecurity
ArcMachaon
Jul. 13, 2020
Wikipedia food security during the COVID-19 pandemic
https://en.wikipedia.org/wiki/
Food_security_during_the_COVID-19
_pandemic#/media/File:Acute_food_insecurity
_forecast_for_2020_including_coronavirus_famines.svg
CC BY-SA 4.0
The pandemic also had a significant psychological impact. Many breadwinners lost their jobs during pandemics or worked at essential, but low-paying, jobs that put them in danger of contracting the disease. Parents' fear, anxiety and depression was passed on to their young children, who were more likely to experience physical, emotional, and sexual abuse than those living in food secure households.[8]
Millions of farmers already dealing with food insecurity watched as local, national and global supply chain restrictions and resources and services needed to keep their farms producing disappeared. The populations of many of these poor countries are already suffering from malnutrition and starvation because of lockdowns, weak governance, unequal access to services, mistrust in state officials, sick labor forces, lack of fertilizers and seeds.[3]
Flower-growing activities in Kenya collapsed after lockdowns, along with exports of vegetables, nuts, coffee and cocoa.
In India and Kenya where agricultural workers were considered essential, there was a lack of social distancing and personal protective equipment, leaving workers vulnerable to COVID-19.
Transportation system breakdowns in Bangladesh led to food dumping and decreased prices for crops that could not be distributed to market.
In Somalia there was a substantial decline in livestock exports and a large increase in imported food costs.
Curfews in Yemen reduced work hours for agriculture-related businesses and markets as fruits and vegetables, needed to maintain minimal levels of nutrition, became scarce.
Rohingya refugees, in Bangladesh's Cox's Bazara city, fishing port, tourism center and district headquarters in Southeastern Bangladesh settlement, lost already low-income jobs.[3]
Before the pandemic there were about 47 million younger than 5 affected by wasting. Estimates during the first 12 months of the pandemic indicated that this number increased by 6.7 million, 80% of those in sub-Saharan Africa and South Asia. This increased the number of child deaths per month by more than 10,000.[5]
The effects of the pandemic on these groups did not end after the virus subsided and infection rates decreased. In 2022 the U.N. declared that without immediate humanitarian assistance, over 43 million people in 38 countries were at risk of famine, with those in Ethiopia, Somalia, South Sudan, Afghanistan and Yemen at the highest.[6]
Millions on the brink of starvation as
the pandemic exacerbates world hunger
PBS News Hour
Jan. 12, 2021
YouTube
https://www.youtube.com/watch?v=5xE8DTjZMxs
Embedded video, no copy made
The percentage of the global population not getting sufficient nourishment increased from 8.4% to 9.9% during the first year after the start of the pandemic. If this trend continues, 660 million people will be hungry by 2030.
In 2022, models predicted that COVID-19 disruptions in food supply chains would increase the number of starving children to between 9.3 and 13.6 million.
Supply chain disruptions during COVID-19 increased food costs and food insecurity for 811 million people who go to bed hungry every day.
Between 2019 and 2022 the number of hungry people in West Africa quadrupled, reaching its highest levels in decades.
In March 2022, world food prices increased by 13%, their fastest rate ever recorded, placing impossible financial burdens on low-income countries that rely on wheat, vegetable oils, and other food staples.
The cost of minimum monthly food needs increased by 351% in Lebanon, 97% in Syria and 81% in Yemen.
The price of wheat and oil increased by 300% in Somalia during the Ukraine crisis, forcing famiilies to turn to less nutritious options that cause malnutrition and obesity
More than 6 million Somalis are moving toward starvation.
In Kenya the cost of fertilizer was expected to increase by 70%, decreasing crop production by the same percent, forcing 3.1 million people to severe hunger levels.
5.5 million children in East Africa are facing high levels of malnutrition, due to the combined effects of COVID-19, intense drought, and the Ukraine crisis.
Less than 40% of children in the Middle East and Northern Africa have access to diets needed for proper growth.
COVID-19 economic impacts are expected to cause $29.7 billion in losses due to wasting and child mortality.[6]
Sources:
Where were more per capita cases of COVID-19 reported than any state except New York and New Jersey?
[1] Fabrizio, C. , & Kalbarczyk, A. (Dec. 14, 2022). Global food crisis increases urgency to address the inequitable impact of malnutrition, health and poverty for women and girls. Standing Together for Nutrition. https://www.standingtogetherfornutrition.org/news/global-food-crisis-inequitable-impact-on-women-and-girls
[2] Feeding America. (Mar. 2021). The impact of the coronavirus on food insecurity in 2020 and 2021. https://www.feedingamerica.org/sites/default/files/2021-03/National%20Projections%20Brief_3.9.2021_0.pdf
[3] Food and Agriculture Organization of the United Nations. (2021). The impact of disasters and crises on agriculture and food security. https://www.fao.org/3/cb3673en/cb3673en.pdf
[4] Koh, D. (May 2, 2020). COVID-19 lockdowns throughout the world. Occupational Medicine. https://www.ncbi.nlm.nih.gov/pmc/articles/PMC7197518/
[5] Aborode, A. T., & Ogunsola, S. O. (Nov. 6, 2020). A Crisis within a crisis: COVID-19 and hunger in African children. The American Journal of Tropical Medicine and Hygiene, 104(1), 30-31. https://www.ajtmh.org/view/journals/tpmd/104/1/article-p30.xml
Where is Cox`s Bazar?
[6] U.S. Global Leadership Coalition. (Apr. 2022). COVID-19 brief: Impact on food security. https://www.usglc.org/coronavirus/global-hunger/
[7] Lacko, K. (Sep. 14, 2022). The pandemic disrupted a decade-long decline in food insecurity in 2020, but government policy has been a critical support. Food Research & Action Center. https://frac.org/blog/food-insecurity-and-2022-poverty-reports
[8] Ling, J., Duren, P., & Robbins, L.B. (Sep. 2022). Food insecurity and mental well-being among low-income families during COVID-19 pandemic. American Journal of Health Promotion, 36(7), 1123-1132. https://www.ncbi.nlm.nih.gov/pmc/articles/PMC9014344/pdf/10.1177_08901171221089627.pdf
[9] Ahmed, T., & Roberton, T. (Sep. 9, 2021). Indirect effects on maternal and child mortality from the COVID-19 pandemic: Evidence from disruptions in healthcare utilization in 18 low- and middle-income countries. The Lancet. https://papers.ssrn.com/sol3/papers.cfm?abstract_id=3916767
[10] Accia, F., Yellow Horse, A. J., Martinelli, S., Josephson, A., Evans, T., & Ohri-Vachaspati, P. (n. d.). Impacts on COVID-19 on food security in Arizona. National Food Access and COVID Research Team, Arizona State University and the University of Arizona. https://keep.lib.asu.edu/items/242/view
COVID-19
COVID-19 transmission
C. D. Funk, C. Laferrière, A. Ardakani, & I. Dennis
Jun. 19, 2020
Wikipedia COVID-19
https://en.wikipedia.org/wiki/COVID-19#/
media/File:Fphar-11-00937-g001.jpg
CC BY 4.0
The COVID-19 pandemic was caused by the novel coronavirus SARS-CoV-2, which appeared during the last months of 2019.
It quickly became a global health emergency because it is extremely infectious, spreading easily among populations.
Our reactions to COVID-19 varied by age, occupation, political ideology and life style. The retired and haves with non-essential jobs stayed home, while the have-nots and those in essential jobs went to work, risking their lives to keep others safe. Nurses, doctors, fire fighters, police officers, grocery clerks, truckers and others required to protect the society and maintain its food distribution infrastructure continued working.
Schools and colleges closed as classwork at all educational levels moved online. Zooming no longer meant to go fast, but to take classes online or engage with family and friends at a socially-acceptable distance.
Because the president at the time labeled the pandemic a hoax, supported by other members of his party, the federal government response was slow and inadequate. Leaders of conservative states blamed the virus on other sources, including homosexuality and China, while spewing disinformation, bigotry and hate on social media, claiming that prayer would eliminate the virus. It didn't.
Acts of violence against those who were perceived to be Chinese skyrocketed. Essential workers survived without adequate personal protective equipment as the virus ravaged both the U.S. and world populations. Political denial met Mother Nature. She won.
By the end of 2021, WHO, the Institute of Health Metrics and Evaluation (IMHE) and the Economist estimated 14.8 million deaths, 18.2 million deaths and 17.8 million deaths respectively. Researchers estimated that there were about 27 million excess deathsthe additional number of deaths that occurred compared to the expected number of deaths in a typical year between January 2020 and November 2023, making it one of the deadliest pandemics of the century.[2]
COVID-19 impact
Cronkite News
Mar. 4, 2022
YouTube
https://www.youtube.com/watch?v=wSjlbbVjR5s
Embedded video, no copy made
In the U.S. in 2020, only heart disease, with 690,882 mortalities and cancer, with 598,932, killed more people than COVID-19, with 345,323 attributed deaths.[1]
The number of confirmed deaths is undoubtedly far lower than the actual number. Many countries had, and still have, no COVID-19 tests and cause-of-death registration still does not exist in many nations.[2]
Researchers quickly discovered COVID-19 risk factors:
most deaths were among those 65 years of age or older
having a naturally weak immune system or taking medications that leave an individual vulnerable to infection
being obese, suffering from a heart or lung condition.[3]
Some individuals are left with long COVID, an outcome of the disease characterized by a list of symptoms including chronic fatigue and breathing difficulties. Current medical data indicates that those with autoimmune diseases, underlying medical conditions, multiple COVID illnesses and the unvaccinated are more likely to experience this condition. Many may have the symptoms for months, years or for life.[4]
Sources:
[1] Ahmad, F. B., & Anderson, R. N. (Mar. 31, 2021). The leading causes of death in the US for 2020. Journal of the American Medical Association. 325(18), 1829-1830. https://jamanetwork.com/journals/jama/fullarticle/2778234
[2] Dattani, S. (Dec. 7, 2023). What were the death tolls from pandemics in history? Our World in Data. https://ourworldindata.org/historical-pandemics
[3] National Center for Immunization and Respiratory Diseases. (May 11, 2023). Factors that affect your risk of getting very sick from COVID-19. Division of Viral Diseases. https://www.cdc.gov/coronavirus/2019-ncov/your-health/risks-getting-very-sick.html
[4] Centers for Disease Control and Prevention. (Jul. 20, 2023). Long COVID or post-COVID conditions. https://www.cdc.gov/coronavirus/2019-ncov/long-term-effects/index.html
Actions
Federal and State Interventions and Events[2],[3][4],[6],[7],[8],[9],[10],[11],[12]
date↕
regulation↕
level↕
action↕
impact↕
2019
the National School Lunch Program, the School Breakfast Program, and Summer Food Service Program received $23.1 billion in federal funding
federal
programs supported more than 94,000 schools
more than 30 million students received nutritional assistance
2020/03
state closures of non-essential services
state
federal school meal programs stop
children receiving free meals are cut off from essential nutrition
2020/03
Higher Education Emergency Relief Fund (HEERF)
federal
$14 billion to be administered by the Department of Education
colleges and universities distributed about 85% of the funds to students
2020/04
Coronavirus Aid, Relief and Economic Securities (CARES) Act
federal
healthcare, nutrition assistance, housing, stimulus checks, education benefits
provides $1.32 billion in new funding nationwide to address COVID-19
2020/04
Pandemic Electronics Benefits Transfer (EBT)
federal
first federal stimulus checks issued
eligible school children receive temporary emergency nutrition benefits loaded on EBT cards that are used to purchase food
2020/04
unemployment highest since the Great Depression
federal
unemployment reached 14.7%
1.7 million hospitality and construction jobs returned when states reopened
2020/05
USDA began distributing food through its Farmers to Families Food Box Program
federal
ran through May 2021
provided more than 176 million food boxes to needy families, supported food distribution companies and domestic food producers affected by pandemic interruption
2020/12
CARES Act provided a temporary eviction moratorium
federal
fast and direct economic assistance for American workers, families, small businesses and industries
reduced poverty compared to pre-pandemic levels
increased access to health coverage
helped unemployed workers, improved the child care system
2020/12
FDA issued emergency use authorization for Pfizer-BioNTech COVID-19 vaccine
federal
COVID-19 vaccines have undergone, and continue to undergo, the most intense vaccine safety monitoring in U.S. history
in the first ten months that COVID-19 vaccines were available, they saved over 200,000 lives and prevented over 1.5 million hospitalizations in the United States
2021/03
GAO report
federal
school meal programs served nearly 1.7 billion fewer meals March to September 2020
30% decline compared with 2019
2021/06
Child Tax Credit
federal
$550 a month to help pay for food, rent, and other basic needs
kept 3.7 million children out of poverty
reduced monthly child poverty by close to 30%
reduced food insufficiency by 26% in CTC eligible homes
expired in December 2021
A 2021 study food insecure households found that:
66% experienced a change of income after April 2020
46% relied on school meal programs to feed their children
58% used food pantries and food banks
45% used other food sources
59% depended on the Supplemental Nutrition Assistance Program (SNAP)
40% used the Special Supplemental Nutrition Program for Women, Infants, and Children (WIC).[1]
In 2021 the U.S. Agency for International Development (USAID) announced a $5 billion investment to address international food insecurity via the Feed the Future program for the next 5 years. The agreement includes a partnership with U.S. International Development Finance Corporation (DFC) and the Eleanor Crook Foundation to use $100 million to address COVID-induced effects of malnutrition and food insecurity in developing countries:[5]
Nepal. Feed the Future connecting Nepali farmers and business owners with online delivery companies, enabling farmers to maintain produce sales and providing local families with nutritious food.
East Africa. USAID provided almost $114 million in food assistance, medical supplies, and clean water. More than 20 million people in the area required emergency food assistance, an increase of 70% compared with 2017.
Bangladesh. Feed the Future connected seed suppliers in the southern part of the country with farmers to provide resources to grow nutritious crops.
Guatemala. Feed the Future partnered with the Inter-American Foundation to provide Guatemalan women access to low-interest rate loans to expand their businesses and land purchases to increase livestock production and access to nutritious food.[5]
The World Bank created new financing projects:
Sierra Leone. Emergency financing under the Smallholder Commercialization and Agribusiness Development Project supported the government COVID-19 response with services to support rice farmers.
Guatemala. The Modern and Resilient Agri-food Value Chains project provided emergency response to COVID-19 and increased agricultural efficiency through investment in modern technologies and practices.
Chad. $30 million in emergency financing was invested in food kits to 437,000 vulnerable people in urban and rural areas experiencing severe food and nutritional insecurity. Seeds and agricultural equipment were given to 25,000 poor and vulnerable farmers.[5]
Sources:
[1] Edmondson, H., Gill, M., Jablonski, B.B.R., Ladd, J., Rossi, J., Schaffstall, S., Thilmany, D., Woods, T. (2021). The effect of the COVID-19 pandemic on food insecurity. Choices: The Magazine of Food, Farm, and Resources Issues. https://ideas.repec.org/a/ags/aaeach/316325.html
[2] Kim-Mozeleski, J.E., Pike Moore, S.N., Trapl, E.S., Perzynski, A.T., Tsoh, J.Y., Gunzler D.D. (Jan. 19, 2023). Food insecurity trajectories in the U.S. during the first year of the COVID-19 pandemic. Preventing Chronic Diseases, vol. 20. https://www.cdc.gov/pcd/issues/2023/22_0212.htm
[3] United States Government Accountability Office. (Oct. 12, 2021). Addressing food insecurity in America, before and during the pandemic. https://www.gao.gov/blog/addressing-food-insecurity-america%2C-and-during-pandemic
[4] United States Government Accountability Office. (Aug. 26, 2021). Higher education COVID-19 relief funding--Who got what and what went wrong? https://www.gao.gov/blog/higher-education-covid-19-relief-funding-who-got-what-and-what-went-wrong
Global distribution of epidemic preparedness
V. Patel, D. Chisholm., T. Dua, R. Laxminarayan, &
M. E. Medina-Mora, eds.
2015
Mental, Neurological, and Substance Use Disorders
Disease Control Priorities, 3rd ed., vol. 4. World Bank
https://www.ncbi.nlm.nih.gov/books/
NBK525302/figure/pt5.ch17.sec3.map1/?
report=objectonly
CC BY 3.0 IGO
[5] U.S. Global Leadership Coalition. (Apr. 2022). COVID-19 brief: Impact on food security. https://www.usglc.org/coronavirus/global-hunger/
[6] Ashbrook, A. (Feb. 18, 2022). The child tax credit: An opportunity for anti-hunger stakeholders to address root causes of hunger. https://frac.org/blog/the-child-tax-credit-address-root-causes-of-hunger
[7] U.S. Department of the Treasury. (n. d.). About the CARES Act and the Consolidated Appropriations Act. https://home.treasury.gov/policy-issues/coronavirus/about-the-cares-act
[8] Parrot, S. (Jun. 14, 2022). Robust COVID relief achieved historic gains against poverty and hardship, bolstered economy. https://www.cbpp.org/research/poverty-and-inequality/robust-covid-relief-achieved-historic-gains-against-poverty-and-0
[9] Hayes, J. (n. d.). CARES Act FAQs. https://hayes.house.gov/cares-act-faqs#:~:text=The%20CARES%20Act%20allows%20more,to%20utilize%20telehealth%20and%20remote
[10] USDA Food and Nutrition Service. (n. d.). State guidance on pandemic EBT. https://www.fns.usda.gov/snap/state-guidance-coronavirus-pandemic-ebt-pebt
[11] Centers for Disease Control and Prevention. (Oct. 13, 2023). 5 things you should know about COVID-19 vaccines. https://www.cdc.gov/respiratory-viruses/whats-new/5-things-you-should-know.html
[12] USA Facts. (n. d.). May unemployment stabilized or improved in all but three states. https://usafacts.org/articles/unemployment-rate-states-may-2020
Observations and Conclusions
As the world's population increased and international travel became common, pandemics became more prevalent.
Pandemics increase existing food insecurity, hunger and malnutrition in marginalized groups, including individuals of color, ethnic groups, women and children, those with low income jobs or no health insurance, the poor and those with psychological issues.
The agricultural effects of pandemics, including COVID-19, are long-term and require international economic, political and social intervention, investment and cooperation in agricultural technology, food distribution and clean water systems.
Contemporary data collection and analysis methods enable researchers to determine where the most vulnerable populations are located and if and when interventions are working to reduce hunger.
Resources
Ailport, M. (Mar. 23, 2022). After nearly 2 million COVID-19 cases in Arizona, officials are 'cautiously optimistic.' Cronkite News. https://cronkitenews.azpbs.org/2022/03/23/covid-cases-arizona-near-2-million-omicron-ba2/
Concern Worldwide and Welthungerhilfe. (2023). Global hunger index scores. https://www.globalhungerindex.org/ranking.html
In what year did the Spanish flu circle the Earth?
Congress.gov. (n. d.). Americans react to the Great Depression. https://www.loc.gov/classroom-materials/united-states-history-primary-source-timeline/great-depression-and-world-war-ii-1929-1945/americans-react-to-great-depression/
Drake, A.J., Phillips, L.A., Karna, B., Murugesan, S.B., Villa, L.K., & Smith, N.A. (Dec. 24, 2023). Food insecurity and disasters: Predicting disparities in total and first-time food pantry visits during the COVID-19 pandemic. Food Security, 15(2), 493-504. https://www.ncbi.nlm.nih.gov/pmc/articles/PMC9789372/
IFRC. (2023). COVID-19. https://www.ifrc.org/our-work/health-and-care/community-health/communicable-diseases/covid-19
Kakaei, H., Nourmoradi, H., Bakhtiyari S., Jalilian, M, & Mirzaei, A. (Jul. 29, 2022). Effect of COVID-19 on food security, hunger, and food crisis. COVID-19 and the Sustainable Development Goals. https://www.sciencedirect.com/science/article/pii/B9780323913072000055
New York University. (Sep. 22, 2021). COVID-19 pandemic exacerbated food insecurity, especially in families with children. https://www.nyu.edu/about/news-publications/news/2021/september/pandemic-food-insecurity.html
When did the FDA issue emergency use authorization for the COVID-19 vaccine?
Population Education. (n. d.). World population. https://worldpopulationhistory.org/map/1/mercator/1/0/25/#
Standing Together for Nutrition. (n. d.) COVID-19 and malnutrition: A toxic combination for women. https://static1.squarespace.com/static/5fc228ec616251320838493c/t/62ff74de1e08ca1dddcd7375/1660908771420/ST4N-Policy-Brief-10th-09May21.pdf
United Nations. (Jun. 2020). The impact of COVID-19 on food security and nutrition. https://unsdg.un.org/sites/default/files/2020-06/SG-Policy-Brief-on-COVID-Impact-on-Food-Security.pdf
World Health Organization. (2023). WHO COVID-19 dashboard. https://data.who.int/dashboards/covid19/cases?n=c
Translate this page:
Denise Meeks, dmeeks@arizona.edu / tucsonkosmicgirl@gmail.com