-
Notifications
You must be signed in to change notification settings - Fork 6
/
BLZ-revised_first_ndc-EN.html
3670 lines (3670 loc) · 183 KB
/
BLZ-revised_first_ndc-EN.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<h1>Belize's NDC</h1>
<p>BELIZE</p>
<p>Updated Nationally Determined Contribution</p>
<p>August 2021</p>
<p>Acknowledgements</p>
<p>The updated NDC was supported by the NDC Partnership with IRENA, FAO and UNFCCC RCCMRVH. Drafting was led by a team from Vivid Economics, with support from Lucid Solutions. Additional analysis and drafting for the Forest and Other Land Use sector was carried out by the FOLU Roundtable under the Ministry of Sustainable Development, Climate Change and Disaster Risk management, with support from the Coalition for Rainforest Nations. Additional inputs provided by WWF, the Pew Charitable Trusts, the Initiative for Climate Action Transparency, the Commonwealth Secretariat, Rocky Mountain Institute, the Climate Technology Collaboration Network (through Fundacion Bariloche) and the UNDP Country Office in Belize.</p>
<p>Cover photo by Kevin Quischan.</p>
<h2>1. Executive Summary</h2>
<p>This document contains Belize’s updated national contributions under the Paris Climate Change Agreement. Belize submitted its first Nationally Determined Contribution in 2016 and is now submitting this updated version ahead of the 26th Conference of Parties to the United Nations Framework Convention on Climate Change which is to be held November 2021. This updated version benefits from the availability of more robust data on land use trends and emission factors over the previous version of the NDC submitted in 2016, including the availability of Belize's first Forestry and Other Land Use (FOLU) sector Greenhouse Gas Inventory showing long-term trends in emissions and removals since 2001. It also carefully considers national capacity and circumstances as well as the availability of technological advancements. It therefore represents an ambitious improvement in the planning and projections of national commitments over the previous NDC, which was largely underpinned by generalized assumptions and deficiencies in data needed for accurate projections in the FOLU sector. As a result, a direct comparison between the first NDC and this updated NDC, in terms of the magnitude of CO2e commitments pertaining to the FOLU sector, cannot be made without considering the increase in accuracy of projections. Belize considers the improvements made in the process to develop more realistic, transparent and achievable NDCs in all sectors as a demonstration of its high ambition goals.</p>
<p>Climate change is already affecting the livelihoods of Belizeans. Belize, as a small country with relatively minor contributions to global greenhouse gas emissions, has limited capacity to contribute to mitigation of global climate change. However, the country is committed to achieving the ultimate objective of the Convention and supports the even more ambitious target to limit the increase in global average temperature to 1.5°C, compared to pre-industrial levels.</p>
<p>As a member of the High Ambition Coalition, Belize has committed to increasing emissions reduction ambition in this updated NDC, including through the use of nature-based solutions in the FOLU sector intended to increase removals, whilst underpinning the NDC development process with more robust and realistic data and projections in all sectors. Belize is committed to developing a long-term strategy aligned with achieving net zero global emissions by 2050.</p>
<p>The NDC for Belize is consistent with the overall goal of the Growth and Sustainable Development Strategy (GSDS) which encompasses medium-term economic development, poverty reduction, and longer-term sustainable development. The GSDS is the nation’s primary planning document and outlines four critical success factors for the development of our country and to ensure a better quality of life for all Belizeans, living now and in the future.</p>
<p>The development of the updated NDC has included broad stakeholder engagement including participation of vulnerable populations in an inception workshop for the NDC update process. Throughout the development of the updated NDC, progress has been validated through engagement with a technical committee of sector leads, including representation of indigenous peoples. Broader engagement of civil society and project owners was facilitated during an engagement phase. The actions and targets included in this updated NDC have undergone a gender and vulnerable group scoring analysis, which produced recommendations for increasing the gender sensitivity of both the medium-term implementation of the NDC and the long-term low emissions development strategy under development.</p>
<p>The primary GHG emitters are the energy, agriculture, waste, and industrial processes and product use (IPPU) sector. The FOLU sector is a net sink of GHG emissions due to GHG removals from forest growth that occurred in the country, which are the main driver of the historical GHG emission profile of Belize.</p>
<p>As a Small Island Developing State, Belize recognizes that the health and integrity of coastal ecosystems are vital for the health of people and the planet. “Blue carbon”, e.g. basin, fringe and island mangrove and seagrass ecosystems, play many important roles as a nature-based solution to climate change with mitigation, adaptation, and resilience co-benefits. These ecosystems sequester and store significant amounts of carbon, help to ameliorate flooding of low-lying areas on the mainland, safeguard frontline communities and infrastructure from climate impacts and build greater resilience, making their healthy function a triple-win for Belize by contributing to the national carbon sink, offsetting sea level rise and coastal erosion while expanding habitat for biodiverse resources, and supporting a more resilient tourism and aquaculture industry.</p>
<p>Climate change is already having significant impacts on Belize’s territory, population and key economic sectors. Impacts experienced in the country to date include sustained droughts, floods, increased coastal erosion and changing precipitation patterns. In the future, these effects are expected to increase, thereby threatening the physical and social infrastructure in Belize. Agricultural yields are sensitive to changes in precipitation, temperature and extreme weather. Tourism, which accounts for the most income of any sector is impacted by seal level rise, coral bleaching and impacts on biodiversity. Critical support systems including water resources, health and energy are likewise impacted by the increasingly variable climate in the region. Belize also hosts globally significant ecological resources including rainforest, mangrove forests, wetlands and coral reefs which are under threat from a warming world. Belize considers adaptation as a high priority given its vulnerability to natural hazards and climate-related shocks.</p>
<p>Targets included in this updated NDC are estimated to avoid a cumulative emissions total across all sectors of 5,647 KtCO2e between 2021 and 2030<a href="#fn1" class="footnoteRef" id="fnref1"><sup>1</sup></a> (peaking at1,080 KtCO2e in avoided emissions in the year 2030<a href="#fn2" class="footnoteRef" id="fnref2"><sup>2</sup></a>). As mentioned previously, this revised commitment is not necessarily comparable to the commitment in the first NDC due to improvements in data underlying the projections. Never-the-less, there is a 5% increase in overall commitments in this updated NDC. Key sector targets include: a 63% increase in GHG removals related to the Agriculture, Forestry and Other Land Use (AFOLU) sector and an increase of renewable energy projects for grid connected electricity generation. Targets also include a number of sectoral actions to build resilience and develop capacity to adapt to the impacts of climate change in key economic sectors and supporting systems. As part of the High Ambition Coalition, Belize announced its intention to develop a long-term low emissions development strategy, which will include targets for mitigation in key sectors to 2050.</p>
<p>This updated NDC reflects Belize’s commitment to enhancing its climate ambition. Notably, ambition has been integrated into the updated NDC through the following enhancements:</p>
<ul>
<li>
<p>Improvements in the data availability and analysis of projections underpinning commitments, especially in the FOLU sector</p>
</li>
<li>
<p>Realistic and achievable commitments</p>
</li>
<li>
<p>Increased ambition through expanded sectoral targets</p>
</li>
<li>
<p>Expanded coverage of gases covered in targets to include N2O and Methane in AFOLU interventions</p>
</li>
<li>
<p>Further specification of targets including addition of time frames, quantified emissions reductions and other outcomes</p>
</li>
<li>
<p>Increased transparency in the development of targets</p>
</li>
<li>
<p>Detail on the financing, monitoring and implementation of actions included in the NDC.</p>
</li>
</ul>
<p>The targets and actions set out in this document demonstrate Belize’s commitment to supporting the implementation of the Paris Agreement including:</p>
<ul>
<li>
<p>A set of mitigation targets in line with a global goal to keep global warming to below 2 degrees Celsius by 2100</p>
</li>
<li>
<p>A set of adaptation actions designed to develop resilience of critical systems and populations in Belize</p>
</li>
<li>
<p>Consideration of the costs of delivering actions identified and level of climate finance resources to support delivery of these actions.</p>
</li>
</ul>
<p>Government of Belize has also taken a number of steps towards mobilizing finance for climate change activities from domestic and international sources. Recognizing the importance of climate finance aspects, the Climate Finance Working Group has been established under the Belize National Climate Change Committee (BNCCC) to provide guidance to the national efforts to access, manage and effectively use climate finance. The Government of Belize has increased public capital investment in climate change, especially on resilience building aspects.</p>
<p>The mitigation targets and actions included above are estimated to cost close to USD$ 1.39 billion between 2021 and 2030. Recognizing funding that is already committed, the funding gap to deliver these actions is estimated at USD$ 1.24 billion. Considering recoverable costs in the energy and waste sector, this gap could fall to USD$ 607 million.</p>
<p>The targets and actions included in the NDC related to adapting to the impacts of climate change are estimated to cost a total of USD$ 318 million between 2021 and 2030. Recognizing funding that is already committed, the funding gap to deliver these actions is estimated at USD$ 146 million.</p>
<p>The implementation of the targets and actions covered by this NDC will be coordinated by the Belize National Climate Change Office (NCCO), through advice and guidance provided by the Belize National Climate Change Committee (BNCCC). Relevant ministries and stakeholders are represented on the BNCCC. An NDC Implementation Plan will be developed to set out annual targets, funding conditionalities and requirements and responsible parties for activities required to deliver the actions and targets included in the NDC. The NDC Implementation Plan will include specific consideration of how to incorporate stakeholder engagement and delivery of actions to promote a just transition in Belize.</p>
<p>In coordination with the NDC implementation plan, a series of evaluation systems will be put in place to monitor annual progress against targets and actions for both mitigation and adaptation.</p>
<h2>2. Introduction</h2>
<p>This document contains Belize’s updated national contributions under the Paris Climate Change Agreement. Belize submitted its Nationally Determined Contribution in 2016 and is submitting an updated version of these commitments ahead of the 26th Conference of Parties to the United Nations Framework Convention on Climate Change which is to be held November 2021.</p>
<p>The targets and actions included below reflect relevant policies, strategies and plans in sectors relevant to climate change mitigation and adaptation. They are an extension and application of the focus on climate change in Belize’s key development plans, including the Growth and Sustainable Development Strategy. Links to the Sustainable Development Goals are highlighted for each target and action presented.</p>
<p>The NDC also summarizes the plans for implementing the actions set out, including activities to finance and monitor progress.</p>
<h2>3. National context</a></h2>
<p>3.1 Background</p>
<p>Climate change is already affecting the livelihoods of Belizeans. Belize, as a small country with relatively minor contributions to global greenhouse gas emissions, has limited capacity to contribute to mitigation of global climate change. However, the country is committed to achieving the ultimate objective of the Convention and supports the even more ambitious target to limit the increase in global average temperature to 1.5°C, compared to pre-industrial levels. In light of these realities, Belize’s Nationally Determined Contribution (NDC) is guided by its commitment to strategically transition to low carbon development while strengthening its resilience to the effects of climate change.</p>
<p>Belize is an upper middle-income country with a population of 400,000 (2018), 42% (or about 170,000) of whom live in poverty (2009). Belize was ranked 110/189 (2019) on the comprehensive Human Development Index.<a href="#fn3" class="footnoteRef" id="fnref3"><sup>3</sup></a></p>
<p>The national territory covers a land area of approximately 22,967 km2, including 280 km of coastland. The mainland makes up 95% of the territory, and 5% is represented by more than 1,060 small islands or Cayes.</p>
<p>In 2019, GDP amounted to USD$ 2 billion and has experienced between 2-3% annual growth over recent years. The economy is dominated by the service sector (70% of output), including a significant tourism sector. Agriculture and industry are also significant. Reflecting the importance of tourism to the country’s economy, Covid-19 has had a major impact on growth, with an expected 15% contraction estimated in 2020.<a href="#fn4" class="footnoteRef" id="fnref4"><sup>4</sup></a></p>
<p>Belize has a relatively high debt to GDP ratio of 90%. The unemployment rate is 9.4% (2018). Gender inequality is in line with global averages, and Belize is ranked 89 of 189 countries.</p>
<p>3.2 Climate change in Belize</p>
<p>3.2.1 Impacts of climate change</p>
<p>Global climate change is one of the most serious threats to sustainable development in Belize. Impacts experienced in the country to date include sustained droughts, floods, increased coastal erosion and changing precipitation patterns. Combined, these climate changes and related phenomena are having significant impacts on many environmental, physical, social and economic systems within the country. In the future, these effects are expected to increase, thereby threatening the physical and social infrastructure in Belize.</p>
<p>According to the recent systematic country diagnostic by the World Bank Group, Belize is one of the most affected countries in the world by weather related events and other natural hazards. As such, Belize incurs annual losses of close to 4% of GDP due to natural disasters (Carneiro, 2016).</p>
<p>Key vulnerabilities identified include:</p>
<ul>
<li>
<p>Hurricanes and tropical storms causing severe losses from wind damage and flooding due to storm surges and heavy rainfall</p>
</li>
<li>
<p>Belize City is especially vulnerable to flood damage due to its low-lying land and exposed positions on the coast; low lying topography makes the country’s coastal areas especially vulnerable to sea level rise</p>
</li>
<li>
<p>Extreme temperatures affecting crops and livestock</p>
</li>
<li>
<p>Home to the second largest barrier reef; its species are especially vulnerable to global warming</p>
</li>
<li>
<p>Among small states, Belize ranks 3rd for susceptibility to natural disasters and 5th at risk for climate change<a href="#fn5" class="footnoteRef" id="fnref5"><sup>5</sup></a></p>
</li>
<li>
<p>Ranked 120 (59th most vulnerable) out of 181 countries on vulnerability score<a href="#fn6" class="footnoteRef" id="fnref6"><sup>6</sup></a></p>
</li>
</ul>
<p>Projected climate change impacts for Belize include a rise in temperature of between 2°C and 4°C by 2100, a 7-8% decrease in the length of the rainy season, a 6-8% increase in the length of the dry season and a 20% increase in the intensity of rainfall in very short periods. Other expected impacts include increased erosion and contamination of coastal areas, sea level rise, flooding and an increase in the intensity and occurrence of natural hazards such as hurricanes. Many of the effects of climate change are already being felt on the low lying coastal zone and are expected to have significant impacts on many environmental, physical, social and economic systems in Belize.</p>
<p>In the agriculture sector, Belize expects a projected loss of production within the range of 10% to 20% which could lead to million dollars in lost revenue by the year 2100. The fisheries sector is also under threat from warmer sea surface temperatures, ocean acidification, sea-level rise, and extreme weather events. A decline in this industry can significantly affect Belize’s food security as well as GDP. It would also affect over 3,500 licensed fishers, which could lead to an annual loss of approximately USD$ 12.5 million per year.</p>
<p>The tourism industry in Belize, which is largely nature based and dependent on natural resources, will primarily be affected by extreme weather events, flooding, inundation, saltwater intrusion and erosion which will occur as a result of rising sea levels. Climate change will threaten the health of Belize’s coral reefs and will affect water supplies and physical property, all of which are critical for the sustainability of the sector. The combined effects of reduced tourism demand, loss of infrastructure, loss of beaches and the loss of the barrier reef can result in the reduced income of approximately USD$ 24 million per year. In 2015, Belize, like much of the Caribbean Basin, saw the introduction of a new economic and ecological challenge with the high rate of influx of sargassum to the region. While studies are still being carried out to understand much more effectively the origins of this influx, climate change is considered an important contributing factor. Similarly, the increase in vector-borne diseases in the region, such as the rise of Chikungunya and Zika virus, creates a significant negative image and impact on the Caribbean and Latin America travel and trade dynamics.</p>
<p>The country is also affected by tropical storms, tropical waves and hurricanes that move westward through the Caribbean from the months of June to November. Belize considers adaptation as a high priority given its vulnerability to natural hazards and climate-related shocks.</p>
<p>The impacts of climate change will increase over time and Belizean children of today will face the greatest risks, but have the least influence to affect change.</p>
<p>3.2.2 Greenhouse gas emissions</p>
<p>The following table shows the historical GHG emissions used for the updated NDC, which has been estimated based on the national GHG emissions inventory reported in Belize’s 2020 Biennial Update Report.</p>
<p>Table 1. GHG emissions in the historical period (Gg CO2-eq)</p>
<table>
<tr>
<td>
<p>Inventory sector</p>
</td>
<td>
<p>2012</p>
</td>
<td>
<p>2015</p>
</td>
<td>
<p>2017</p>
</td>
</tr>
<tr>
<td>
<p>Energy</p>
</td>
<td>
<p>538.07</p>
</td>
<td>
<p>781.81</p>
</td>
<td>
<p>786.36</p>
</td>
</tr>
<tr>
<td>
<p>Industrial Processes and Product Use (IPPU)</p>
</td>
<td>
<p>31.43</p>
</td>
<td>
<p>42.50</p>
</td>
<td>
<p>43.69</p>
</td>
</tr>
<tr>
<td>
<p>Agriculture, Forestry and Other Land Use (AFOLU)</p>
</td>
<td>
<p>-7,771.37</p>
</td>
<td>
<p>-6,104.27</p>
</td>
<td>
<p>-6,683.66</p>
</td>
</tr>
<tr>
<td>
<p>Waste</p>
</td>
<td>
<p>22.73</p>
</td>
<td>
<p>19.89</p>
</td>
<td>
<p>26.81</p>
</td>
</tr>
<tr>
<td>
<p>International bunkers</p>
</td>
<td>
<p>40.37</p>
</td>
<td>
<p>40.23</p>
</td>
<td>
<p>71.89</p>
</td>
</tr>
<tr>
<td>
<p>Total without FOLU</p>
</td>
<td>
<p>832.19</p>
</td>
<td>
<p>1,107.46</p>
</td>
<td>
<p>1,194.71</p>
</td>
</tr>
<tr>
<td>
<p>Total With FOLU</p>
</td>
<td>
<p>-7,179.14</p>
</td>
<td>
<p>-5,260.07</p>
</td>
<td>
<p>-5,286.79</p>
</td>
</tr>
</table>
<p>Source: National Climate Change Office (2020) Belize’s First Biennial Update Report</p>
<p>Due to significant carbon storage in the Forestry and Other Land Use (FOLU) sector, the entire country of Belize is a sink of GHG emissions. The main driver of emissions in the FOLU sector is the conversion of forest land to grasslands and croplands, though carbon dioxide removals from forest growth are substantially higher than emissions from land-use change. Reduced emissions from stemming deforestation and forest degradation have been preliminarily identified as significant mitigation opportunities in the sector.</p>
<p>The primary GHG emitters are the energy, agriculture, waste, and industrial processes and product use (IPPU) sector.</p>
<p>Energy production in Belize comes from sources such as wood (11.7%), petroleum gas (0.7%), hydro (11.4%), biomass (50.1%) and crude oil (26.1%).<a href="#fn7" class="footnoteRef" id="fnref7"><sup>7</sup></a> In the electricity sector, 37% of electricity is imported from Mexico’s Comisión Federal de Energía. The very significant electricity imports limit the GHG emissions of the sector. Nevertheless, if these imports are replaced by fossil fuel generation, GHG emissions assigned to Belize would increase significantly. An important feedback loop is expected as a result of climate impacts – increased temperatures are expected to increase demand for cooling systems in both commercial and residential settings.</p>
<p>The transport sub-sector is the largest GHG emitter in the energy sector, representing a significant opportunity to reduce emissions through interventions targeting this sector.</p>
<p>In the agriculture sector, the primary GHG emissions sources are livestock and forest fires. The mitigation opportunities for livestock are limited, but the control of forest fires was identified as a key opportunity to reduce national GHG emissions.</p>
<p>In the waste sector, emissions are generated from both the solid waste and wastewater management sector. The improvement of this area will bring significant co-benefits for national health, tourism, and standards of living.</p>
<p>In the IPPU sector, the size of the industry of the country is limited, and a significant change is not expected in this regard. Nevertheless, consumption emissions such as the emissions coming from the refrigerant and air conditioning will be rising, as Belize expects tourism to increase in the short and medium term.</p>
<p>National activity on climate change</p>
<p>The NDC for Belize is consistent with the overall goal of the Growth and Sustainable Development Strategy (GSDS) which encompasses medium-term economic development, poverty reduction, and longer-term sustainable development. The GSDS is the nation’s primary planning document and outlines four critical success factors for the development of our country and to ensure a better quality of life for all Belizeans, living now and in the future.</p>
<p>In April 2016, Belize ratified the Paris Agreement and submitted its first Nationally Determined Contributions (NDCs) to implement the Paris Agreement. Belize’s mitigation potential proposed under its NDC covered multiple sectors such as forestry, electricity, waste and transport conditional on the availability of cost- effective technology, capacity building and adequate financial support. The initial NDC outlined actions to mitigate greenhouse gas emissions from land use and forestry, fuel wood consumption, electricity, transportation and solid waste. Encapsulated in Belize’s original NDC are conditional commitments to reduce greenhouse gas emissions and unconditional commitments to facilitate adaptation nationally.</p>
<p>As a member of the High Ambition Coalition, Belize has committed to increasing emissions reduction ambition in an updated NDC and developing a long-term strategy aligned with achieving net zero global emissions by 2050.<a href="#fn8" class="footnoteRef" id="fnref8"><sup>8</sup></a></p>
<p>3.3.1 Policy landscape for climate change in Belize</p>
<p>The Government of Belize is committed to strategically transition to low carbon development while strengthening its resilience to the effects of climate change. Belize has mainstreamed climate change into its national development planning framework, including the long-term development plan (Horizon 2030) and medium-term development plan (Growth and Sustainable Development Strategy). In addition to the existing NDC, the government has developed a National Climate Change Policy, Strategy and Action Plan as well as a climate-resilient investment plan. Many sector-level plans include climate targets.</p>
<p>The 2016 NDC builds on these plans and focuses on reducing emissions from the forestry, transport, energy, and waste sectors and strengthening the resilience of coastal and marine resources, agriculture, water resources, tourism, fisheries and aquaculture, human health, infrastructure, and forestry.</p>
<p>The National Climate Change Policy, Strategy and Action Plan sets out the policy direction to strategically transition Belize’s economy to one that is characteristic of low-carbon development while strengthening resilience to the effects of climate change.</p>
<p>More specifically, relevant policies include:</p>
<ul>
<li>
<p>HORIZON 2030 - the national development framework which was developed after extensive stakeholder consultation inclusive of all political parties. One of its four main pillars is responsible environmental stewardship. The strategies to achieve this pillar, namely integrating environmental sustainability into development planning and promoting sustainable energy for all, address the areas of concern relating to Belize’s emission profile.</p>
</li>
<li>
<p>THE NATIONAL ENERGY POLICY FRAMEWORK - aims to provide options that Belize can pursue for energy efficiency, sustainability and resilience over the next 30 years. Additionally, the Sustainable Energy Action Plan is a tool to achieve Belize’s renewable energy and energy efficiency potential while meeting the Government’s economic, social and environmental goals. It provides a framework of actions and tasks to overcome barriers to sustainable energy for the period 2014-2030.</p>
</li>
<li>
<p>THE NATIONAL CLIMATE RESILIENCE INVESTMENT PLAN 2013 - provides the framework for an efficient, productive and strategic approach to building economic and social resilience and development. Special importance is given to building climate resilience and reducing disaster risk</p>
</li>
<li>
<p>THE GROWTH AND SUSTAINABLE DEVELOPMENT STRATEGY - the guiding development plan for the period 2016–2019. It adopts an integrated, systemic approach and encompasses medium-term economic development, poverty reduction and longer-term sustainable development issues. This planning document also provides detailed guidance on priorities and on specific actions to be taken during the planning period, including actions that contribute to longer term development objectives beyond 2019.</p>
</li>
<li>
<p>THE NATIONAL CLIMATE CHANGE POLICY, STRATEGY AND ACTION PLAN (NCCPSAP), 2015-2020 - provides policy guidance for the development of an appropriate administrative and legislative framework, in harmony with other sectoral policies, for the pursuance of a low-carbon development path for Belize. In addition, the NCCPSAP also seeks to encourage the development of the country’s Nationally Determined Contribution and to communicate it to the UNFCCC.</p>
</li>
<li>
<p>ROADMAP FOR THE DEVELOPMENT OF A LOW CARBON DEVELOPMENT STRATEGY - creates a platform for low carbon growth in new areas while still attaining the national development targets. The roadmap compliments the NCCPSAP and GSDS by focusing on building technical capacity, strengthening institutions and policies, facilitating public-private partnerships and engaging stakeholders to adopt sustainable practices which should lead to national resilience to the impacts of climate change.</p>
</li>
<li>
<p>THE NATIONAL SOLID WASTE MANAGEMENT POLICY (NSWMP) - the main public policy instrument regarding the management of solid waste (e.g., municipal, industrial and hazardous types of waste, among others) for Belize. Its overall goal is to ensure that “The system for managing solid wastes in Belize is financially and environmentally sustainable, and contributes to improved quality of life," while also contributing to the promotion of sustainable development by preventing, re-using, recycling or recovering waste wherever feasible and beneficial. The measures outlined in the NSWMP will be implemented in accordance with the National Solid Waste Management Strategy and Implementation Plan which have also been prepared.</p>
</li>
<li>
<p>In addition to these policies and strategy documents, national climate adaptation plans have been developed for the agriculture and water sectors.</p>
</li>
</ul>
<p>3.3.2 Activities related to climate change since the 2016 NDC submission</p>
<p>Blue carbon</p>
<p>As a Small Island Developing State, Belize recognizes that the health and integrity of coastal ecosystems are vital for the health of people and the planet. “Blue carbon”, e.g. mangrove and seagrass ecosystems, play many important roles as a nature-based solution to climate change with mitigation, adaptation, and resilience co- benefits. These ecosystems sequester and store significant amounts of carbon, safeguard frontline communities and infrastructure from climate impacts and build greater resilience, making their healthy function a triple-win for Belize by providing a carbon sink, offsetting sea level rise and coastal erosion while expanding habitat for biodiverse resources, and supporting a more resilient tourism and aquaculture industry. They are also among the most biodiverse environments on the planet and provide essential habitats for fisheries, in addition to other ecosystem services such as wave attenuation, sediment stabilization, and water filtration. Together with coral reefs, they sustain the foundation of the marine tourism economy in Belize. Protection of these vital ecosystems protects the climate, people and nature.</p>
<p>Since the 2016 NDC, Belize has established stronger frameworks to conserve these valuable coastal habitats. The Government of Belize endorsed the first Integrated Coastal Zone Management (ICZM) Plan in 2016, which incorporates ecosystem services and integrated risk analysis into decision-making. Further, <i>The Forests (Protection of Mangroves) Regulations of 2018</i> established a permitting system that aims to safeguard mangroves and their many ecosystem services from deforestation and degradation. Other instruments such as the draft National Land Use policy (2019) speak to the need for securing the protection, rehabilitation and restoration of critical water catchment areas and forests as part of national efforts to reverse and minimize the impact of land degradation. The National Biodiversity Strategy and Action Plan (2016) aims to ensure that Belize's natural environment is valued, enhanced in resilience and contributes to an improved quality of life through securing protection and restoration of natural ecosystems, including within the coastal zone.</p>
<p>In 2020, the NCCO, in collaboration with the World Wildlife Fund and partners, convened the first Blue Carbon Working Group for Belize. The Working Group includes representatives from across government agencies, academia, civil society, communities, and other key stakeholders, and was formed to value the blue carbon potential and adaptation co-benefits of Belize’s coastal ecosystems, in order to inform targets and recommendations to strengthen their protection and effective management over the long-term. Targets and recommendations derived from the Working Group will be integrated within the policies and plans referenced above, including planned updates to the ICZM Plan, the NBSAP, the National Climate Change Policy Strategy and Action Plan, and the Forests (Protection of Mangroves) Regulations.</p>
<p>Mobilizing climate finance</p>
<p>Government of Belize has also taken a number of steps towards mobilizing finance for climate change activities from domestic and international sources. Recognizing the importance of climate finance aspects, the Climate Finance Working Group has been established under the National Committee on Climate Change (NCCC) to provide guidance to the national efforts to access, manage and effectively use climate finance. The Government of Belize has increased public capital investment in climate change, especially on resilience building aspects. In 2018-19 the government invested USD $8.9 million in domestic public finance for resilience building projects.</p>
<p>Belize has accessed climate finance from all climate funds under the UNFCCC finance mechanism including the Global Environment Facility (GEF), the Adaptation Fund (AF), the Special Climate Change Fund (SCCF) and the Green Climate Fund (GCF). Belize Protected Areas Conservation Trust (PACT) is the National Implementing Entity (NIE) for the Adaptation Fund and the first national accredited entity for GCF which has increased the national capacity to access climate finance.</p>
<p>Apart from the UNFCCC, climate finance sources have been accessed by Belize from other bilateral and multilateral agencies. Since 2010 about 30 climate change projects have been implemented in Belize with value of over USD$ 135 million (both grants and loans), in addition to another 10 regional climate change projects of over USD$ 100 million (grants and loans). The Economic Development Council (EDC) of Belize has been established to promote Public-Private-Partnerships (PPPs) which has mobilized over USD$ 200 million investments for energy sector.</p>
<p>Reducing Emissions from Deforestation and Forest Degradation (+)</p>
<p>The Government of Belize has pursued the development of its REDD+ strategy, National Forest Monitoring System, Forest Reference Level (2015-2020), and Safeguards Information System in order to pursue results- based payments under the UN REDD+ platform. The current situation is that the REDD+ Strategy is being finalized in 2021, the National Forest Monitoring System is constantly being improved, the Forest Reference Level (2015-2020) has already been technically assessed in 2020 by UNFCCC and the Safeguards Information System is currently being finalized in 2021. Beyond, and in addition to, the FOLU targets listed in this NDC, Belize intends to pursue results-based payments for the present FRL, as well as for a new FRL to be developed for 2021 to 2025.</p>
</li>
</ol>
<h2>4. NDC development process</h2>
<p>The updated NDC has been developed through a process coordinated by the National Climate Change Office and with support from a broad group of partners including sector leads from across Belize’s government and civil society and range of international organisations.</p>
<p>4.1 Climate Action Enhancement Package</p>
<p>In December 2018, the Belize National Climate Change Office formally requested support from the NDC Partnership to provide technical assistance for the updating of the country’s NDC, including the development of an NDC implementation plan, a financial strategy and a Measuring, Reporting and Verification tool for actions set out in the NDC.</p>
<p>The NDC Partnership accepted this request and in 2020 initiated a Climate Action Enhancement Package (CAEP). The international partners providing technical assistance under the Belize CAEP include:</p>
<ul>
<li>
<p>Commonwealth Secretariat</p>
</li>
<li>
<p>International Renewable Energy Agency</p>
</li>
<li>
<p>NDC Partnership Support Unit</p>
</li>
<li>
<p>Rocky Mountain Institute</p>
</li>
<li>
<p>Climate Technology Collaboration Network (CTCN) and Fundación Bariloche</p>
</li>
<li>
<p>UNFCCC Regional Collaboration Center in Grenada (with the Caribbean Climate Change MRV Hub)</p>
</li>
</ul>
<p>In addition to these partners, organisations involved in the development and implementation of the NDC working alongside the CAEP activities include:</p>
<ul>
<li>
<p>UN Development Programme</p>
</li>
<li>
<p>World Wildlife Fund (WWF)</p>
</li>
<li>
<p>The Pew Charitable Trusts</p>
</li>
<li>
<p>Initiative for Climate Action Transparency</p>
</li>
<li>
<p>Coalition for Rainforest Nations in conjunction with the Belize FOLU roundtable</p>
</li>
</ul>
<p>Technical assistance under the CAEP has included an assessment of policy targets, mapping of activities related to climate change, stakeholder engagement, modelling of GHG impacts in different sectors, an analysis of technology options to achieve NDC targets and the development of financing and implementation strategies.</p>
<p>Technical assistance provided by CfRN to the FOLU roundtable included the projections of without and with project emission scenarios for the committed activities in the land-use, land-use change and forestry sub- sector using data and emission factors from the country's GHG inventory database for the FOLU sector. CfRN also assisted by providing expert advice on ensuring harmonization among the NDC, GHG Inventory, and REDD+ Strategy.</p>
<p>4.2 Inclusive development of updated NDC</p>
<p>The development of the updated NDC has included broad stakeholder engagement including participation of vulnerable populations in an inception workshop for the NDC update process.</p>
<p>Throughout the development of the updated NDC, progress has been validated through engagement with a technical committee of sector leads, including representation of indigenous peoples. Broader engagement of civil society and project owners was facilitated during an engagement phase. The actions and targets included in this updated NDC have undergone a gender and vulnerable group scoring analysis, which produced recommendations for increasing the gender sensitivity of both the medium-term implementation of the NDC and the long term low emissions development strategy under development.</p>
<h2>5. Summary of Belize’s updated Nationally Determined Contribution</h2>
<p>Belize is pleased to submit this updated Nationally Determined Contribution which includes both a mitigation and an adaptation component.</p>
<p>Targets included in this updated NDC are estimated to avoid a cumulative emissions total of 5,647 KtCO2e between 2021 and 2030<a href="#fn9" class="footnoteRef" id="fnref9"><sup>9</sup></a> (peaking at 1,080 KtCO2e in avoided emissions in 2030).<a href="#fn10" class="footnoteRef" id="fnref10"><sup>10</sup></a> Key sector targets include: a 63% increase in GHG removals related to the AFOLU sector and an increase of renewable energy projects in the grid connected. Targets also include a number of sectoral actions to build resilience and develop capacity to adapt to the impacts of climate change in key economic sectors and supporting systems.</p>
<p>This updated NDC reflects Belize’s commitment to enhancing its climate ambition. Notably, ambition has been</p>
<p>integrated into the updated NDC through the following enhancements:</p>
<ul>
<li>
<p>Improvements in the data availability and analysis of projections underpinning commitments, especially in the FOLU sector</p>
</li>
<li>
<p>Realistic and achievable commitments</p>
</li>
<li>
<p>Increased ambition through expanded sectoral targets.</p>
</li>
<li>
<p>Expanded coverage of gases covered in targets to include N2O and Methane in AFOLU interventions.</p>
</li>
<li>
<p>Further specification of targets including addition of time frames, quantified emissions reductions and other outcomes.</p>
</li>
<li>
<p>Increased transparency in the development of targets.</p>
</li>
<li>
<p>Detail on the financing, monitoring and implementation of actions included in the NDC.</p>
</li>
</ul>
<p>As part of the High Ambition Coalition, Belize announced its intention to develop a long-term low emissions development strategy, which will include targets for mitigation in key sectors to 2050.</p>
<p>The targets and actions set out in this document demonstrate Belize’s commitment to supporting the implementation of the Paris Agreement including:</p>
<ul>
<li>
<p>A set of mitigation targets in line with a global goal to keep global warming to below 2 degrees Celsius by 2100.</p>
</li>
<li>
<p>A set of adaptation actions designed to develop resilience of critical systems and populations in Belize.</p>
</li>
<li>
<p>Consideration of the costs of delivering actions identified and level of climate finance resources to support delivery of these actions.</p>
</li>
</ul>
<h2>6. Mitigation targets and actions</h2>
<p>6.1 Context</p>
<p>Belize is committed towards achieving the central aim of the Paris Agreement by pursuing efforts to limit the global temperature increase even to 1.5 degrees Celsius above pre-industrial levels. This commitment led to the development and submission of Belize’s first NDC on April 20th, 2016 and the updated NDC set out below.</p>
<p>In parallel to the NDC update, which updates previous medium-term mitigation and adaptation targets to 2030, Belize is developing a Low Emission Development Strategy (LEDS) to set out the country’s long term mitigation ambitions to 2050. This process, supported by the UNDP, will aim to define a long-term target for low carbon and carbon neutral development.</p>
<p>6.2 ectoral targets and actions</p>
<p>The NDC includes specific targets set out at the sector level. Where targets relate to mitigation of greenhouse gases, the target sets out a quantified emissions reduction and a series of actions are provided for delivery of the target.</p>
<p>6.2.1 Land use change and forestry</p>
<table>
<tr>
<td>
<p>Type</p>
</td>
<td></td>
<td>
<p>SDG linkages</p>
</td>
</tr>
<tr>
<td>
<p>Target</p>
</td>
<td>
<p>Reduce GHG emissions and increase GHG removals related to land use change totalling 2,053 KtCO2e<a href="#fn11" class="footnoteRef" id="fnref11"><sup>11</sup></a> cumulative over the period from 2021 to 2030</p>
</td>
<td>
<p><img src="img/BLZ-NDC1-1.png" width="117" height="58" alt="image"/></p>
</td>
</tr>
<tr>
<td>
<p>Action</p>
</td>
<td>
<p>Complete the REDD-plus Strategy, including options, implementation framework and assessment of social and environmental impacts, publish and maintain a National Forest Reference Level covering 2006-2020, and design systems for monitoring, information and safeguards; including stock taking for tropical forest and mangrove cover and promotion of community land stewardship practices. Participate in REDD+ for performance- based payments for emissions reductions and removals increase achieved above and beyond the commitment in this NDC.</p>
</td>
<td>
<p><img src="img/BLZ-NDC1-2.png" width="117" height="58" alt="image"/></p>
</td>
</tr>
<tr>
<td>
<p>Action</p>
</td>
<td>
<p>Implement reforestation practices for 1,400 hectares in forest areas inside protected areas, as well as the restoration of 6,000 hectares of degraded and deforested riparian forests<a href="#fn12" class="footnoteRef" id="fnref12"><sup>12</sup></a> by 2030, with 750 hectares of this being restored in key watersheds by 2025</p>
</td>
<td>
<p><img src="img/BLZ-NDC1-3.png" width="117" height="117" alt="image"/></p>
</td>
</tr>
<tr>
<td>
<p>Action</p>
</td>
<td>
<p>Reduce degradation in 42,600 hectares of forest within protected areas by reducing fire incidence, improving logging practices, and controlling other human disturbance by 2030.</p>
</td>
<td>
<p><img src="img/BLZ-NDC1-4.png" width="117" height="117" alt="image"></p>
</td>
</tr>
<tr>
<td>
<p>Action</p>
</td>
<td>
<p>Assess potential to reduce emissions related to fuelwood collection and use including an assessment of social and cultural impacts and collection of data on current fuelwood use in local communities throughout Belize and incorporate findings into forestry sector strategies.</p>
</td>
<td>
<p><img src="img/BLZ-NDC1-5.png" width="117" height="117" alt="image"></p>
</td>
</tr>
<tr>
<td>
<p>Action</p>
</td>
<td>
<p>Incorporate and monitor agroforestry practices into at least 8,000 hectares of agricultural landscapes by 2030 by planting shade trees,<a href="#fn13" class="footnoteRef" id="fnref13"><sup>13</sup></a> in line with the draft National Agroforestry Policy, with 4,500 hectares of this being implemented by 2025 conditional on adoption, implementation and financing of the agroforestry policy</p>
</td>
<td>
<p><img src="img/BLZ-NDC1-6.png" width="117" height="117" alt="image"></p>
</td>
</tr>
<tr>
<td>
<p>Action</p>
</td>
<td>
<p>Promote and monitor the stewardship of 10,000 hectares of local community and indigenous people’s lands as sustainably managed landscape to serve as net carbon sinks</p>
</td>
<td>
<p><img src="img/BLZ-NDC1-7.png" width="117" height="58" alt="image"></p>
</td>
</tr>
<tr>
<td>
<p>Action</p>
</td>
<td>
<p>Explore alongside Article 6 of the Paris Agreement, new financing options to support forest protection and restoration, including REDD+ performance-based payments, multilateral and bilateral funds, insurance products, debt-for-nature swaps, private investment, carbon credits and bonds, and other innovative conservation financing mechanisms</p>
</td>
<td>
<p><img src="img/BLZ-NDC1-8.png" width="117" height="58" alt="image"></p>
</td>
</tr>
</table>
<p>The actions identified above are considered conditional on financial support and technical assistance.</p>
<p>Belize is considering management of its near-shore coastal ecosystems (fringe and island mangroves and seagrass) in an integrated and holistic way. Fringe and island mangroves account for around 30% of total mangrove cover, while the other 70% of mangroves are located on the mainland in basin and littoral formations. All mangrove formations are integrated into the Forest Reference Level within the national definition of forests. The understanding of the climate influence of Belize’s mangrove ecosystems, including both above- and below-ground carbon, is more advanced; they are estimated to currently hold total ecosystem carbon stocks of approximately 92,962,893 (92,963 Kt) tCO2e, and annually sequester around 431,644 (432 Kt) tCO2e/year.<a href="#fn14" class="footnoteRef" id="fnref14"><sup>14</sup></a> These figures will be further validated based on field research to be completed in 2021.</p>
<p>Belize intends to maintain and enhance these carbon storage functions of these natural carbon sinks, as well as the adaptation and resilience values they provide, by protecting and restoring mangrove and seagrass habitats through the target and actions outlined below.</p>
<table>
<tr>
<td>
<p>Type</p>
</td>
<td></td>
<td>
<p>SDG linkages</p>
</td>
</tr>
<tr>
<td>
<p>Target</p>
</td>
<td>
<p>Enhance the capacity of the country’s mangrove and seagrass ecosystems to act as a carbon sink by 2030, through increased protection of mangroves and by removing a cumulative total of</p>
<p>381 KtCO2e between 2021 and 2030 through mangrove restoration.</p>
</td>
<td>
<p><img src="img/BLZ-NDC1-9.png" width="117" height="117" alt="image"></p>
</td>
</tr>
<tr>
<td>
<p>Action</p>
</td>
<td>
<p>Building on the 12,827 hectares of mangroves currently under protection, protect at least a further 6,000 hectares of mangroves by 2025, with an additional 6,000 hectares by 2030. This includes the establishment of new and/or improvement of existing public conservation measures to cover 100% of publicly owned areas identified in the Government’s mangrove priority areas from the Forests (Protection of Mangroves) Regulations 2018; partnerships with landlords of privately owned mangroves, local communities, bilateral and multilateral agencies and the continued enforcement of the 2018 mangrove regulations. This is a non-CO2e commitment, since baseline mangrove loss has been negligible over the 20-year period from 2001 to 2020.</p>
</td>
<td>
<p><img src="img/BLZ-NDC1-10.png" width="117" height="117" alt="image"></p>
</td>
</tr>
<tr>
<td>
<p>Action</p>
</td>
<td>
<p>Restore at least 2,000 hectares of mangroves, including within local communities, by 2025, with an additional 2,000 hectares by 2030</p>
</td>
<td>
<p><img src="img/BLZ-NDC1-11.png" width="117" height="117" alt="image"></p>
</td>
</tr>
<tr>
<td>
<p>Action</p>
</td>
<td>
<p>Halt and reverse net mangrove loss by 2025 through public measures and partnerships with private landowners local communities, and other relevant stakeholders</p>
</td>
<td>
<p><img src="img/BLZ-NDC1-12.png" width="117" height="58" alt="image"></p>
</td>
</tr>
<tr>
<td>
<p>Action</p>
</td>
<td>
<p>Assess the value of seagrass habitat contributions to climate regulation to inform development and implementation of a national seagrass management policy, updated national seagrass mapping as part of an updated marine habitat map,<a href="#fn15" class="footnoteRef" id="fnref15"><sup>15</sup></a> and identification of a portfolio of priority seagrass areas for protection to enhance conservation</p>
</td>
<td>
<p><img src="img/BLZ-NDC1-13.png" width="117" height="117" alt="image"></p>
</td>
</tr>
<tr>
<td>
<p>Action</p>
</td>
<td>
<p>Complete an in-situ assessment of the below ground carbon stock of mangroves by 2022, leading to the application of relevant IPCC methodologies to assess the feasibility of including seagrass in a wetlands component, alongside a comprehensive assessment of mangrove-based carbon stock, in the National Greenhouse Gas Inventory, and other relevant reports by 2025</p>
</td>
<td>
<p><img src="img/BLZ-NDC1-14.png" width="117" height="58" alt="image"></p>
</td>
</tr>
<tr>
<td>
<p>Action</p>
</td>
<td>
<p>Explore alongside Article 6 of the Paris Agreement, new financing options to support mangrove protection and restoration, including multilateral and bilateral funds, insurance products, debt-for-nature swaps, private investment, blue carbon credits and bonds, and other innovative conservation financing mechanisms</p>
</td>
<td>
<p><img src="img/BLZ-NDC1-15.png" width="117" height="58" alt="image"></p>
</td>
</tr>
<tr>
<td>
<p>Action</p>
</td>
<td>
<p>Throughout delivery of land use interventions related to this target, promote the stewardship of local community and indigenous people’s coastal lands as sustainably managed landscapes to serve as net carbon sinks</p>
</td>
<td>
<p><img src="img/BLZ-NDC1-16.png" width="117" height="58" alt="image"></p>
</td>
</tr>
</table>
<p>The actions identified here are considered conditional on 1) provision of technical expertise and development of capacity for the emissions accounting and carbon market design and 2) financial support for purchase, protection and restoration of mangroves and wetlands.</p>
<p>6.2.2 Agriculture</p>
<table>
<tr>
<td>
<p>Type</p>
</td>
<td></td>
<td>
<p>SDG linkages</p>
</td>
</tr>
<tr>
<td>
<p>Target</p>
</td>
<td>
<p>Reduce methane emissions from livestock by 10% by 2030 and avoid emissions of at least 4.5 KtCO2e<a href="#fn16" class="footnoteRef" id="fnref16"><sup>16</sup></a> related to agriculturally driven land use change by 2025</p>
</td>
<td>
<p><img src="img/BLZ-NDC1-17.png" width="117" height="117" alt="image"></p>
</td>
</tr>
<tr>
<td>
<p>Action</p>
</td>
<td>
<p>Improve the management of 80,000 hectares of the agro-landscape through good agricultural and silvopastoral practices, including by bringing 30,500 hectares under sustainable agriculture systems with biodiversity benefits and 15,000 hectares in production systems under sustainable land management<a href="#fn17" class="footnoteRef" id="fnref17"><sup>17</sup></a></p>
</td>
<td>
<p><img src="img/BLZ-NDC1-18.png" width="117" height="117" alt="image"></p>
</td>
</tr>
<tr>
<td>
<p>Action</p>
</td>
<td>
<p>Restore 200 hectares of arable sugar land in Northern Belize that has been denuded over time by use</p>
</td>
<td>
<p><img src="img/BLZ-NDC1-19.png" width="117" height="117" alt="image"></p>
</td>
</tr>
<tr>
<td>
<p>Action</p>
</td>
<td>
<p>Promote the reduction of agricultural GHG emissions through altering crop cultivation methods, including green mechanical harvesting in sugar cane production systems, through a public awareness campaign targeting women, youth and local communities</p>
</td>
<td>
<p><img src="img/BLZ-NDC1-20.png" width="117" height="117" alt="image"></p>
</td>
</tr>
<tr>
<td>
<p>Action</p>
</td>
<td>
<p>Promote the reduction of agricultural GHG emissions through implementing effective livestock management that involves changing the feeding practices of livestock to include more optimal nutrient levels</p>
</td>
<td>
<p><img src="img/BLZ-NDC1-21.png" width="117" height="58" alt="image"></p>
</td>
</tr>
</table>
<p>The actions identified above are presented as conditional to receiving financial support to implement large scale land use interventions and technical support to improve agricultural processes.</p>
<p>6.2.3 Energy</p>
<p>The energy sector, among other sectors, presents numerous opportunities to reduce GHG emissions on the global scale and here in Belize. The Belize INDC presented in 2015 established very ambitious goals for the electricity generation subsector with a target of reducing GHG emissions by 2.4 million metric tons of CO2e during the 2014-2033 period via renewable energy and energy efficiency measures (potential established by the Belize Sustainable Energy Strategy and Action Plan).</p>
<p>The analysis of Belize’s Sustainable Energy Strategy and Action Plan was conducted on the basis of unrealized sustainable energy potential (proposed national sustainable energy strategy scenario) rather than projecting the introduction of renewable energy generation within the interconnected energy matrix, taking into consideration contributions from the Mexican generation network and private sector investment in renewable energy source projects.</p>
<p>In this updated NDC, Belize maintains its strong ambition to increase the implementation of renewable energy projects within the interconnected energy matrix and to gradually reduce the amount of electricity generation being imported from Mexico. Similarly, the national utility, Belize Electricity Limited (BEL), is developing an electricity expansion plan (up to 2030) with the intention to project a pathway of how Belize wants to develop this sector within the next 10 years. Notably, the electricity expansion plan will assist decision-makers with information and allow for greater precision in the analysis of renewable energy generation being added to Belize’s interconnected energy matrix. The analytical exercise should be done from the perspective of carbon intensity of electricity generation which takes into account the operating margin emission factor for Belize’s national electricity grid. This approach will allow for a better estimate of CO2e emissions and will, therefore, assist in establishing with greater precision the impact of renewable energy projects towards the displacement of fossil fuel-based generating sources and/or at the same time the displacement of electricity imports from Mexico.</p>
<p>Subsequent to the implementation of climatic actions in the energy sector, Belize estimates realization of avoided emissions from the power sector equivalent to 19 KtCO2e per year through system and consumption efficiency measures amounting to at least 100 GWh/year by 2030. In addition, projection is made to avoid 44 KtCO2e in the national electricity supply by 2030 through the introduction of expanded capacity from renewable energy sources.</p>
<p>The potential for estimate refinements will depend on carbon intensity analysis of the grid connected generation to determine its Operating Margin Emission Factor. Applying this analytical tool will enable a more accurate estimation of the GHG emissions generated by the energy sub-sector against an established baseline year. Notably, Belize's contribution is conditionally supported by sources of investment and the country reserves the right to make changes to the projections and estimates based on the availability and integration of new information.</p>
<p>Belize is committed to contributing to global climate action and low-carbon development. Thus, Belize presents its energy sector climatic targets and actions below.</p>
<table>
<tr>
<td>
<p>Type</p>
</td>
<td></td>
<td>
<p>SDG linkages</p>
</td>
</tr>
<tr>
<td>
<p>Target</p>
</td>
<td>
<p>Avoid emissions from the power sector equivalent to 19 KtCO2e per year through system and consumption efficiency measures amounting to at least 100 GWh/year by 2030<a href="#fn18" class="footnoteRef" id="fnref18"><sup>18</sup></a></p>
</td>
<td>
<p><img src="img/BLZ-NDC1-22.png" width="117" height="58" alt="image"></p>
</td>
</tr>
<tr>
<td>
<p>Action</p>
</td>
<td>
<p>Reduction in transmission and distribution losses from 12% to 10% by 2030 resulting in reduced electricity demand and better quality of supply</p>
</td>
<td>
<p><img src="img/BLZ-NDC1-23.png" width="117" height="58" alt="image"></p>
</td>
</tr>
<tr>
<td>
<p>Action</p>
</td>
<td>
<p>Improve energy efficiency and conservation by at least 10% by 2030 compared to a BAU baseline projection,<a href="#fn19" class="footnoteRef" id="fnref19"><sup>19</sup></a> including through an increase of appliance efficiency in buildings and implementation of building codes, appliance standards and labels and promotion of energy efficient technology in the tourism sector</p>
</td>
<td>
<p><img src="img/BLZ-NDC1-24.png" width="117" height="58" alt="image"></p>
</td>
</tr>
</table>
<p>The targets above are presented with partial conditionality considerations, including technical support to develop a transmission and development improvement programme and financing to pilot and scale up solar water heating technology in residential and tourism sectors.</p>
<table>
<tr>
<td>
<p>Type</p>
</td>
<td></td>
<td>
<p>SDG linkages</p>
</td>
</tr>
<tr>
<td>
<p>Target</p>
</td>
<td>
<p>Avoid 44 KtCO2e in the national electricity supply by 2030 through the introduction of expanded capacity from renewable energy sources</p>
</td>
<td>
<p><img src="img/BLZ-NDC1-25.png" width="117" height="58" alt="image"></p>
</td>
</tr>
<tr>
<td>
<p>Action</p>
</td>
<td>
<p>Achieve 75% gross generation of electricity from renewable energy sources by 2030 through the implementation of hydropower, solar, wind and biomass, including in the tourism sector</p>
</td>
<td>
<p><img src="img/BLZ-NDC1-26.png" width="117" height="58" alt="image"></p>
</td>
</tr>
<tr>
<td>
<p>Action</p>
</td>
<td>
<p>Reduce emissions from high carbon electricity sources including through taking 2MW diesel generation offline by 2022 and converting new LPG generation to CNG by 2026</p>
</td>
<td>
<p><img src="img/BLZ-NDC1-27.png" width="117" height="58" alt="image"></p>
</td>
</tr>
<tr>
<td>
<p>Action</p>
</td>
<td>
<p>Install 40 MW utility-scale solar power by 2025</p>
</td>
<td>
<p><img src="img/BLZ-NDC1-28.png" width="117" height="58" alt="image"></p>
</td>
</tr>
<tr>
<td>
<p>Action</p>
</td>
<td>
<p>Implement an interconnection policy and regulatory framework to facilitate distributed renewable power generation by 2022</p>
</td>
<td>
<p><img src="img/BLZ-NDC1-29.png" width="58" height="58" alt="image"></p>
</td>
</tr>
<tr>
<td>
<p>Action</p>
</td>
<td>
<p>Expand the use of biomass, including bagasse, for electricity generation</p>
</td>
<td>
<p><img src="img/BLZ-NDC1-30.png" width="117" height="117" alt="image"></p>
</td>
</tr>
<tr>
<td>
<p>Action</p>
</td>
<td>
<p>Explore the feasibility of onshore wind power generation and flexible storage technologies to complement high levels of variable renewable power sources</p>
</td>
<td>
<p><img src="img/BLZ-NDC1-31.png" width="117" height="58" alt="image"></p>
</td>
</tr>
</table>
<p>The targets above are presented with partial conditionality considerations. BEL plans to invest BZD$ 250 million (USD$ 125M) in the energy sector, to support the renewable energy share target of 75% by 2030. Technical assistance and financing will be required to 1) scale up and replicate existing bagasse-based biomass power projects, 2) explore feasibility of onshore wind and storage technologies<a href="#fn20" class="footnoteRef" id="fnref20"><sup>20</sup></a> and 3) increased renewable energy generation capacity beyond projects currently planned.</p>
<table>
<tr>
<td>
<p>Type</p>
</td>
<td></td>
<td>
<p>SDG linkages</p>
</td>
</tr>
<tr>
<td>
<p>Target</p>
</td>
<td>
<p>Avoid 117 KtCO2e/year<a href="#fn21" class="footnoteRef" id="fnref21"><sup>21</sup></a> from the transport sector by 2030 through a 15% reduction in conventional transportation fuel use by 2030 and achieve 15% efficiency per passenger- and tonne-kilometre through appropriate policies and investments</p>
</td>
<td>
<p><img src="img/BLZ-NDC1-32.png" width="117" height="58" alt="image"></p>
</td>
</tr>
<tr>
<td>
<p>Action</p>
</td>
<td>
<p>Improve efficiency in the public transit system through the deployment of 77 hybrid and electric buses by 2030 (17 by 2025)</p>
</td>
<td>
<p><img src="img/BLZ-NDC1-33.png" width="117" height="117" alt="image"></p>
</td>
</tr>
<tr>
<td>
<p>Action</p>
</td>
<td>
<p>Implement a policy framework to promote more efficient vehicles and alternative fuels/blends through incorporation of fuel economy labels; emissions testing; fuel economy standards, limitations and emissions- based taxes/feebates for imported vehicles by 2025</p>
</td>
<td>
<p><img src="img/BLZ-NDC1-34.png" width="117" height="117" alt="image"></p>
</td>
</tr>
<tr>
<td>
<p>Action</p>
</td>
<td>
<p>Facilitate adoption of electric vehicles in the passenger fleet by conducting a feasibility study for EV penetration, including assessment of potential incentives, and investing in EV charging infrastructure</p>
</td>
<td>
<p><img src="img/BLZ-NDC1-35.png" width="117" height="117" alt="image"></p>
</td>
</tr>
</table>
<p>These targets above are presented with partial conditionality considerations including: 1) financing through the NAMA facility for the purchase and deployment of efficient buses and 2) provision of technical assistance to develop an efficient light duty vehicle policy regime.</p>
<p>6.2.4 Waste management</p>
<table>
<tr>
<td>
<p>Type</p>
</td>
<td></td>
<td>
<p>SDG linkages</p>
</td>
</tr>
<tr>
<td>
<p>Target</p>
</td>
<td>
<p>Improve waste management processes to avoid emissions of up to 18 KtCO2e per year by 2030, in line with the national waste management strategy</p>
</td>
<td>
<p><img src="img/BLZ-NDC1-36.png" width="117" height="58" alt="image"></p>
</td>
</tr>
<tr>
<td>
<p>Action</p>
</td>
<td>
<p>Close all municipal dumps by 2025 and implement rural waste management system including rural collection and drop off services by 2030</p>
</td>
<td>
<p><img src="img/BLZ-NDC1-37.png" width="117" height="58" alt="image"></p>
</td>
</tr>
<tr>
<td>
<p>Action</p>
</td>
<td>
<p>End the open burning of waste by 2025 by extending regular municipal services to all households and commercial premises</p>
</td>
<td>
<p><img src="img/BLZ-NDC1-38.png" width="117" height="58" alt="image"></p>
</td>
</tr>
<tr>
<td>
<p>Action</p>
</td>
<td>
<p>Develop a legal and policy framework for the sustainable management of solid waste in Belize</p>
</td>
<td>
<p><img src="img/BLZ-NDC1-39.png" width="58" height="58" alt="image"></p>
</td>
</tr>
</table>
<p>These actions are presented as unconditional, as they are aligned with the activities in the ongoing and funded Solid Waste Management Project II.</p>
<p>6.2.5 Costs of mitigation actions</p>
<p>Table 2 Mitigation: Estimated costs for actions and associated targets across all sectors</p>
<table>
<tr>
<td>
<p>Sector</p>
</td>
<td>
<p>Action</p>
</td>
<td>
<p>Estimated total cost to meet target</p>
</td>
<td>
<p>Identified activities: Amount already funded</p>
</td>
<td>
<p>Identified activities: Unfunded amounts</p>
</td>
<td>
<p>Estimated gap (incl. unfunded activities)</p>
</td>
</tr>
<tr>
<td rowspan="4">
<p>LUCF</p>
</td>
<td>
<p>Reforestation, forest protection and sustainable forest management</p>
</td>
<td>
<p>$67,749,000</p>
</td>
<td>
<p>$30,865,128</p>
</td>
<td>
<p>$7,000,000</p>
</td>
<td>
<p>$29,883,872</p>
</td>
</tr>
<tr>
<td>
<p>Fuel wood consumption</p>
</td>
<td>
<p>$250,000</p>
</td>
<td>
<p>$ 0</p>
</td>
<td>
<p>$ 0</p>
</td>
<td>
<p>$250,000</p>
</td>
</tr>
<tr>
<td>
<p>Mangrove protection and reforestation</p>
</td>
<td>
<p>$330,798,801</p>
</td>
<td>
<p>$10,000,000</p>
</td>
<td>
<p>$5,000,000</p>
</td>
<td>
<p>$315,798,801</p>
</td>
</tr>
<tr>
<td>
<p>Blue carbon market</p>
</td>
<td>
<p>$2,614,510</p>
</td>
<td>
<p>$ 0</p>
</td>
<td>
<p>$ 0</p>
</td>
<td>
<p>$2,614,510</p>
</td>
</tr>
<tr>
<td rowspan="3">
<p>Energy</p>
</td>
<td>
<p>Renewable energy</p>
</td>