File size: 123,366 Bytes
f025b80 |
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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 |
<!DOCTYPE html><html>
<head>
<meta charset="utf-8">
</head>
<body>
<h2><a id="Burkina_Faso_0"></a>Burkina Faso</h2>
<h1><a id="INTENDED_NATIONALLY_DETERMINED_CONTRIBUTION_INDC_IN_BURKINA_FASO_2"></a>INTENDED NATIONALLY DETERMINED CONTRIBUTION (INDC) IN BURKINA FASO</h1>
<p>September 2015</p>
<h3><a id="Section_1_Introduction_7"></a>Section 1. Introduction</h3>
<p>France will host the 21st Conference of Parties of the United Nations Framework Convention on Climate Change (COP21/CMP21), which will take place in Paris in December 2015 and should result in a new international agreement on the climate that is applicable to all countries. The entire international community expects this agreement to be universal and lasting. It should give the economic and political signals for our planet’s economic development model to set out on a new path leading to carbon neutrality before the end of the century and to observance of the 2°C objective (i.e. keeping global warming at temperatures below +2°C).</p>
<p>The principal goal of COP21, from November 30 to December 11, 2015, is to conclude an agreement that will commit 195 countries to reduce their greenhouse gas (GHG) emissions. The end objective is for the contributions by these countries (which vary from country to country) to make it possible to stabilise climate warming due to human activities below 2°C between now and 2100 (in comparison to the pre-industrial era). Each country will renew its commitments to the Climate Change Convention (UNFCCC) in a document called <strong>Intended Nationally Determined Contributions</strong> or <strong>INDC</strong> (CPDN in French) between now and the end of October 2015.</p>
<h3><a id="Section_2_Context_and_institutional_framework_13"></a>Section 2. Context and institutional framework</h3>
<p><h4><a id="21_Institutional_context_15"></a>2.1. Institutional context</h4></p>
<p>The national objectives encompass two types of objectives:</p>
<ul>
<li>
<p>The <strong>mitigation objectives</strong>, the aim of which is to reduce greenhouse gas emissions, for example by modifying the production techniques that are used. The Burkina Faso INDC gives quantifiable factors and notes the reference year, the period of commitment and the implementation schedule and specifies the methodologies used to estimate GHG emissions.</p>
</li>
<li>
<p>The <strong>adaptation objectives</strong>, the aim of which is to reduce the vulnerability of natural and human systems to the effect of current or expected climate changes.</p>
</li>
</ul>
<p>The contribution to this second part of the objectives is voluntary, but important to Burkina Faso, and thus is to be presented in a separate scenario: <strong>Integrated Adaptation</strong>.</p>
<blockquote>
<p><strong>Insert #1</strong><br>
According to the ministry in charge of sustainable development, the principles on which the national contributions are based are:<br>
<strong>Ambition</strong>: The contributions will have to go beyond the countries’ current national commitments. The current commitments are part of the second commitment period of the Kyoto Protocol - notably the case of the European Union – or correspond to voluntary national actions under the Copenhagen agreement and the Cancun accords.<br>
<strong>Fairness and differentiation</strong>: The contributions are examined in light of the national circumstances of each country. The least developed countries (LDCs) and the small island developing states (SIDS) benefit especially from a certain degree of flexibility in preparing their INDC in view of their limited capabilities.<br>
<strong>Transparency</strong>: The contributions reported by the countries are published as they are readily available on the UNFCCC site. A synthesis report of all the parties’ contributions will be presented by the UNFCCC secretariat on November 1, 2015, on the basis of the INDC’s received as of October 1st.</p>
</blockquote>
<p><h4><a id="22__National_strategies_and_policies_a_sustainable_development_framework_32"></a>2.2. National strategies and policies, a sustainable development framework</h4></p>
<p>Burkina Faso’s National Assembly on the Environment and Sustainable Development, held in November 2011, strongly recommended the development of a National Sustainable Development Policy (NSDP) accompanied by a law. Prepared in 2013, the NSDP was an effective framework for the Strategy for Accelerated Growth and Sustainable Development (SAGSD). This economic framework document, together with “Outlook Burkina 2025” and policy framework instruments, contribute to place the concept of sustainability at the heart of public action and the activities of other non-state actors (technological and financial partners, civil society organisations, non-governmental organisations and the private sector) in a socioeconomic development drive that generates growth and fairly distributes revenues in the medium and long term in climatically high-vulnerability sectors such as those identified in National Communication 2.</p>
<p><h4><a id="23__Organisations_and_programs_put_in_place_for_adaptation_and_mitigation_36"></a>2.3. Organisations and programs put in place for adaptation and mitigation</h4></p>
<p>Burkina Faso ratified the UNFCCC in 1993 and the Kyoto Protocol in 2005. Up to now, in response to the provisions of these protocols, it has developed and adopted a number of policy and strategy documents relating to climate change. These include:</p>
<ul>
<li>The National Strategy for implementing the Climate Change Convention adopted in 2001.</li>
<li>The National Action Program for Adaptation to Climate Change (NAPA) in 2007.</li>
<li>The development of a framework NAMA (2008).</li>
<li>The National Adaptation Plan (NAP, 2014).</li>
</ul>
<p>To address and follow up climate change issues, a Permanent Secretariat of the National Council for Management of the Environment (SP/CONAGECE) was created within the ministry responsible for the environment and which will subsequently be transformed into the National Council for the Environment and Sustainable Development (SP/CONEDD) with expanded responsibilities.</p>
<p>In 1995, Burkina Faso established the Inter-Ministerial Committee to Implement the Actions of the United Nations Framework Convention on Climate Change (IMCIAC). This committee has been fully involved in the preparation of the first National Communication on climate change.</p>
<p><h5><a id="231__From_NAPA_to_NAP_49"></a>2.3.1 From NAPA to NAP</h5></p>
<p>Faced with the degradation of the ecosystems, the recurrence of food crises and the adverse impacts of climate change on the environment, populations and livestock, the Government of Burkina Faso, with the support of the UNDP as the executive agency for the World Environmental Fund (WEF), initiated in 2005 the formulation of its National Action Program for Adaptation to climate change and variability. The NAPA was adopted at the national level in 2007. In this context and under the leadership of SP/CONEDD, three adaptation projects were developed and carried out between 2008 and 2013 with the support of Denmark and Japan and the World Environmental Fund (WEF). Thus, NAPA responded to an urgent situation in which adaptation was principally directed to those who are most vulnerable, particularly rural populations.</p>
<p>Building on the achievements of the NAPA, on the one hand, and, on the other, to initiate a comprehensive medium- and long-term approach to adaptation to climate change and expand the national process to all of the stakeholders in development, Burkina embarked on the process to develope a National Adaptation Plan (NAP) structured around the results of analysing the vulnerability to climate change of the sectors identified as priority (agriculture, livestock breeding, water, forests and natural ecosystems, energy, infrastructure and housing, health etc.) and climate change scenarios in the 2025-2050 time period.</p>
<p><h5><a id="232__The_need_for_a_NAMA_framework_57"></a>2.3.2 The need for a NAMA framework</h5></p>
<p>The need for quantitative evaluation of the mitigation potential led Burkina Faso to develop a NAMA framework in 2008, in this case the National Rural Sector Program (NRSP). The NRSP is part of the drive for short, medium and long-term development programming carried out through the Outlook Burkina 2025 study, the development of the National Land-Use Planning Scheme (NLUPS) and, more recently (2010), the adoption of the Strategy for Accelerated Growth and Sustainable Development (SAGSD), which replaced the Anti-Poverty Strategic Framework (APSF).</p>
<p>The NRSP, which targeted the year 2015, is a federation of sectoral programs of the departments of agriculture, livestock raising, water, the environment and quality of life. Within this framework, the mitigation potential for the period 2008-2015 was estimated at 9,174,816 eq.t.CO<sub>2</sub> of GHG, or 1,200,000 eq.t.CO<sub>2</sub> per year.</p>
<p>The proposed mitigation measures contribute to the achievement of the Government’s objective, i.e. the restoration of degraded land at the rate of 30,000 ha/yr, the increase of natural forests from 170,00 to 500,000 ha, the reduction of forest areas burned by wildfires from 30% of the national territory to 20%, the development of village hunting areas through the awareness and training of the population, and the spread of knowledge regarding techniques for sustainable management of natural resources.</p>
<p><h5><a id="233__The_Second_National_Communication_65"></a>2.3.3 The Second National Communication</h5></p>
<p>Pursuant to article 4 and 12 of the United Nations Framework Convention on Climate Change (UNFCCC), Burkina Faso developed a National Communication containing the measures aimed at mitigation or appropriate adaptation to climate change. In this context, a Second National Communication was developed in 2014 in accordance with the directives of decision 17/CP 8 adopted by the eighth session of the Conference of Parties to the UNFCCC. Since the process of its development began after 2006, the inventory data was based on the data for 2007 as the reference year. Pointing out the changes in climate, the Second National Communication completes and updates certain data already brought to the attention of the international community in the initial Communication of 2001, which the UNFCCC web site refers to May 2002.</p>
<p><h4><a id="24__The_peculiarities_of_Burkina_Fasos_INDC_69"></a>2.4. The peculiarities of Burkina Faso’s INDC</h4></p>
<p>The INDC of Burkina Faso, a weak emitter country, is one of the few that have both characteristics of the INDCs, namely an outcomes approach and an actions/projects/activities approach.</p>
<p>This results in a <strong><em>Mitigation</em></strong> component that has taken into consideration only the activities that lead to credited emission results, the objectives of which have been oriented from the start toward the reduction of greenhouse gas emissions and in particular the carbon equivalent. One example of these initiatives is represented by the REDD + / FIP, the NAMA initiative and the potential CDM projects in the growth sectors such as mining. These initiatives, dedicated principally to the reduction of greenhouse gas, make up the Conditional Hybrid Mitigation / (Adaptation) scenario.</p>
<p>Furthermore, Burkina’s INDC contains an Adaptation component that makes this INDC somewhat unique and ambitious since the analysis of the adaptation options with their special investments and “vulnerable” sectors to the search for resilience has led to an Integrated Adaptation Scenario. It is from this component that the projects/activities/actions approach emerges. It is strongly justified by the fact that the “rural sector”, consisting of the water-agriculture-forest-land use subsectors, is at the same time the principal engine of the Burkina economy (it provides the livelihood of more than 80% of the population) and the sector most vulnerable to the effects of climate change.</p>
<p>Thus, this component consists of projects whose objective is not PRINCIPALLY the reduction of GHG (mainly through carbon sequestration), but the enhancement of environmental services such as food security, water and soil conservation, sustainable agriculture, the development of non-ligneous forest products, including medicinal plants, the promotion of wood and metal free architecture (“Nubian vaults”), etc. As a bonus to the mitigation component, these projects result in the medium and long term in considerable reductions of GHG, which even exceed the results of mitigation efforts.</p>
<h3><a id="Section_3_Mitigation_projections_and_options_79"></a>Section 3. Mitigation projections and options</h3>
<p><h4><a id="31__Methodology_81"></a>3.1. Methodology</h4></p>
<p>The “Mitigation” team carried out its work on the basis of the following methodology:</p>
<ul>
<li>Use of the 2007 GHG inventory by sector (i.e. agriculture; energy, including the transportation sector; waste; industrial processes; land use; land use changes and forestry (LULUCF).</li>
<li>Determination of the socioeconomic indicators for the “Business as Usual (BaU)” scenario for the GHG emissions projection at the 2030 horizon.</li>
<li>Construction of GHG emissions projection scenarios by sector.</li>
<li>Identification of mitigation actions that is underway or scheduled, by sector.</li>
<li>Analysis of the impacts of adaptation actions (if any) in order to integrate their indirect emission reductions in the mitigation outcome.</li>
<li>Evaluation of the Burkina Faso contribution in terms of mitigation.</li>
<li>Recommendations for mitigation actions by sector.</li>
<li>Coverage level of the contribution: the scenarios are based on data covering the entire national territory.</li>
</ul>
<p>This methodology is reflected in the report as follows:</p>
<ul>
<li>A <em>GHG outcome</em> approach offering the greatest flexibility in the way of reaching the GHG reductions, without necessarily specifying all of the actions the emissions reduction will entail. This approach permits transparency in the calculations and projections and assures that the progress achieved with regard to the actions will be better monitored since the GHG targets generally take into consideration the baseline (2014) national GHG inventory and more specifically the most detailed possible sector data.</li>
<li>As a result of point 1, the Government could commit itself to quantified results capable of providing better understanding of the future emissions reductions and the emissions levels associated with the contributions, which, when combined, facilitates an evaluation of future emissions (conditional mitigation and adaptation scenario). These global results also permit progress in carrying out INDC follow-through and offer greater credibility for the purpose of receiving financing and accessing markets, as well as improving comparison between the INDC’s. It is also simpler to estimate the effects and co-benefits under the GHG outcome approach and/or the GHG actions approach.</li>
<li>In the Burkina Faso INDC, both approaches have been used: outcomes in most cases for mitigation and outcomes and projects (actions) for adaptation.</li>
<li>Thus, this results in three scenarios: one BaU scenario, one unconditional scenario and one conditional scenario that includes the adaptation project whose main objective is the reduction of “credited” GHGs.</li>
<li>The Mitigation section presents these three scenarios and their descriptions by key sectors with respect to GHG contributions, while at the same time attempting to keep the same key sectors throughout the analysis of the three scenarios and also in the Adaptation section and the socioeconomic section. The rest of the sectors are used only to provide an investment cost if the secondary projects/actions are asked to contribute to an even greater GHG reduction at different horizons up to 2030 (compared to 2015).</li>
<li>The sectors identified are: agriculture, waste and energy, including electricity production, transportation, residential and tertiary, as well as manufacturing industries, housing etc. In terms of representation in the report, each of these sectors will show:
<ul>
<li>Its projections as to emissions amounts in the BaU, unconditional and conditional scenarios.</li>
<li>Graphs of the three scenarios.</li>
<li>A summary table/matrix collecting all of the data + investment cost (cost of reducing one ton of CO<sub>2</sub>).</li>
</ul>
</li>
</ul>
<p>The following table summarises the mitigation scenarios.</p>
<p>Table 1. Reduction of emissions and associated investment costs under the mitigation scenarios</p>
<table class="table table-striped table-bordered">
<thead>
<tr>
<th rowspan="2">Scenarios / sectors</th>
<th colspan="2">Reduction of emissions at the 2030 horizon</th>
<th rowspan="3">Investment cost (in US$)</th>
</tr>
<tr>
<td>In numbers (GgCO<sub>2</sub> eq.)</td>
<td>In % of reduction</td>
</tr>
</thead>
<tbody>
<tr>
<td><strong><em>BaU (subtotal)</em></strong>:</td>
<td>118,323</td>
<td></td>
</tr>
<tr>
<td colspan="4"><strong><em>Unconditional</em></strong></td>
</tr>
<tr>
<td>Agriculture</td>
<td>7,236.3</td>
<td>6.1%</td>
<td>21,646,581</td>
</tr>
<tr>
<td>Waste</td>
<td>-</td>
<td></td>
<td></td>
</tr>
<tr>
<td>Energy</td>
<td>572.0</td>
<td>0.5%</td>
<td>1,063,272,580</td>
</tr>
<tr>
<td><strong><em>Subtotal Unconditional</em></strong></td>
<td>7,808.3</td>
<td>6.6%</td>
<td>1,084,919,161</td>
</tr>
<tr>
<td colspan="4"><strong><em>Conditional</em></strong></td>
</tr>
<tr>
<td>Agriculture</td>
<td>10,560</td>
<td>8.9%</td>
<td>64,939,743</td>
</tr>
<tr>
<td>Waste</td>
<td>76.30</td>
<td>0.1%</td>
<td>81,228,000</td>
</tr>
<tr>
<td>Energy</td>
<td>3,130.00</td>
<td>2.6%</td>
<td>609,866,667</td>
</tr>
<tr>
<td><strong>Subtotal Conditional Hybrid</strong></td>
<td>13,766.30</td>
<td>11.6%</td>
<td>756,034,410</td>
</tr>
<tr>
<td><strong>Subtotal Mitigation</strong></td>
<td>21,574.63</td>
<td>18.2%</td>
<td>1,840,953,571</td>
</tr>
</tbody>
</table>
<p>Source, Authors’ compilation, July 2015.</p>
<p><h4><a id="32__Objective_Burkina_Faso_contribution_level_127"></a>3.2. Objective: Burkina Faso contribution level</h4></p>
<p>Three Mitigation scenarios have been considered in order to evaluate the emissions trends and the possible reductions on the basis of a reference situation and the potential for financing:</p>
<ul>
<li>A “trend” scenario (Business as Usual - BAU), which corresponds to continuation of the past under the assumption that economic development continues without interruption.</li>
<li>An “unconditional” scenario taking into account all the public policies adopted after 2007, technological developments and recent studies, with financing that has been acquired or is being acquired.</li>
<li>A “conditional” scenario that takes into account all the mitigation projects that have been developed and/or are being developed, but without any acquired financing.</li>
</ul>
<p><h5><a id="321__Analysis__of__the__reference__situation__for__GHG__and__identification__of__the__reference_year_135"></a>3.2.1 Analysis of the reference situation for GHG and identification of the reference year</h5></p>
<p>The chosen reference year is 2007, the date when the second report on greenhouse gas inventories in Burkina Faso was completed. The future projections under the various scenarios are made on the basis of this reference year and the appropriate parameters resulting from the previous development of the socioeconomic situation (trend-based) or the forecast-based assumptions (unconditional and conditional scenarios).</p>
<p><h5><a id="322__Determination_and_justification_of_the_target_year_139"></a>3.2.2 Determination and justification of the target year</h5></p>
<p>Burkina has chosen 2030 as the target year, given that this date coincides with the second Millennium Development Goals meeting. In addition, the government of Burkina Faso has adhered to the “Sustainable Energy for All (SE4ALL)” initiative of the United Nations Secretary General, which aims to achieve three major objectives between now and 2030:</p>
<ul>
<li>Assure universal access to modern energy services.</li>
<li>Double the rate of improvement of energy efficiency.</li>
<li>Double the share of renewable energy in the world energy mix.</li>
</ul>
<p><h5><a id="323__Choice_of_the_projection_parameters_147"></a>3.2.3 Choice of the projection parameters</h5></p>
<p>The parameters that can influence the trends have been reviewed. In cooperation with the agency responsible for statistics, the National Institute of Statistics and Demography (INSD), the following parameters have been selected as relevant.</p>
<p>Table 2. Types of GHG emissions by sectoral trends</p>
<table class="table table-striped table-bordered">
<thead>
<tr>
<th>Sectors</th>
<th>GHG</th>
<th>Projection parameters used</th>
</tr>
</thead>
<tbody>
<tr>
<td>Agricultural soils trend</td>
<td>NO<sub>2</sub></td>
<td>Development of importation of products for soils and crops</td>
</tr>
<tr>
<td>Agricultural waste burned in the field + controlled burning of savannah trend</td>
<td>NOx CO CO<sub>2</sub></td>
<td>Historical INSD trend</td>
</tr>
<tr>
<td>Enteric fermentation trend</td>
<td>CH<sub>4</sub></td>
<td>Rate of increase of cattle</td>
</tr>
<tr>
<td>Manure use trend</td>
<td>CH<sub>4</sub></td>
<td>Rate of increase of cattle</td>
</tr>
<tr>
<td>Land use change and forestry trend</td>
<td>CO<sub>2</sub> CH<sub>4</sub> N<sub>2</sub>O NOx CO</td>
<td>Historical INSD trend</td>
</tr>
<tr>
<td>Liquid waste management trend</td>
<td>CH<sub>4</sub></td>
<td>Rate of population growth</td>
</tr>
<tr>
<td>Solid waste management trend</td>
<td>CH<sub>4</sub></td>
<td>Rate of population growth</td>
</tr>
<tr>
<td>Transportation trend</td>
<td>CO<sub>2</sub></td>
<td>Development of fuel imports</td>
</tr>
<tr>
<td>Electricity production trend</td>
<td>CO<sub>2</sub></td>
<td>Development trend</td>
</tr>
<tr>
<td>Manufacturing industries trend</td>
<td>CO<sub>2</sub></td>
<td>Rate of growth of industrial GDP</td>
</tr>
<tr>
<td>Residential trend</td>
<td>CO<sub>2</sub></td>
<td>Rate of growth of butane gas and kerosene</td>
</tr>
<tr>
<td>Industrial processes trend</td>
<td>CO<sub>2</sub></td>
<td>Historical INSD trend</td>
</tr>
</tbody>
</table>
<p>Source: Authors, July 2015.</p>
<p><h5><a id="324__Reference_situation_for_emissions_170"></a>3.2.4 Reference situation for emissions</h5></p>
<p>The reference situation is that of the second Burkina Faso National Commission of 2014 (in which the GHG inventories refer to the data for 2007) within the framework of the UNFCCC. Table 3 below provides an indicative summary of the reference situation (total and relative emissions by emissions source).</p>
<p>Table 3. Reference situation for GHG emissions</p>
<table class="table table-striped table-bordered">
<thead>
<tr>
<th>Category</th>
<th>Principal gases emitted</th>
<th>GHG emissions (GgCO<sub>2</sub> eq.) 2007</th>
<th>As a percentage of total emissions</th>
</tr>
</thead>
<tbody>
<tr>
<td>Agricultural soils</td>
<td>N<sub>2</sub>O</td>
<td>8,239</td>
<td>37.6%</td>
</tr>
<tr>
<td>Enteric fermentation</td>
<td>CH<sub>4</sub></td>
<td>9,517</td>
<td>43.4%</td>
</tr>
<tr>
<td>Agricultural waste burned in the field + controlled burning of savannah</td>
<td>CO<sub>2</sub>, NOx, CO</td>
<td>189</td>
<td>0.9%</td>
</tr>
<tr>
<td>Manure use</td>
<td>CH<sub>4</sub></td>
<td>1,196</td>
<td>5.5%</td>
</tr>
<tr>
<td>Land use change and forestry</td>
<td>CO<sub>2</sub>, CH<sub>4</sub>, N<sub>2</sub>O, NOx, CO</td>
<td>250</td>
<td>1.1%</td>
</tr>
<tr>
<td>Solid waste management</td>
<td>CH<sub>4</sub></td>
<td>667</td>
<td>3.0%</td>
</tr>
<tr>
<td>Liquid waste management</td>
<td>CH<sub>4</sub></td>
<td>245</td>
<td>1.1%</td>
</tr>
<tr>
<td>Transportation</td>
<td>CO<sub>2</sub></td>
<td>782</td>
<td>3.6%</td>
</tr>
<tr>
<td>Electricity production</td>
<td>CO<sub>2</sub></td>
<td>350</td>
<td>1.6%</td>
</tr>
<tr>
<td>Residential</td>
<td>CO<sub>2</sub></td>
<td>60</td>
<td>0.3%</td>
</tr>
<tr>
<td>Manufacturing industries trend</td>
<td>CO<sub>2</sub></td>
<td>118</td>
<td>0.5%</td>
</tr>
<tr>
<td>Industrial processes</td>
<td>CO<sub>2</sub></td>
<td>303</td>
<td>1.4%</td>
</tr>
<tr>
<td><strong>GHG total for country</strong></td>
<td></td>
<td>21,916</td>
<td>100%</td>
</tr>
</tbody>
</table>
<p>Source: Burkina Faso National Communication, 2014.</p>
<p>Analysis of the current trend scenario shows that Burkina’s GHG emissions are going to continue to grow significantly. At the 2030 horizon, the emissions level will increase by a factor of five compared to 2007 and by a factor of almost 1.6 compared to 2015 (table 4 below).</p>
<p>Table 4. Overall trend evaluation of GHG status from 2007 to 2030</p>
<table class="table table-striped table-bordered">
<thead>
<tr>
<th>GHG emissions by category (Gg of CO<sub>2</sub> eq)</th>
<th>2007</th>
<th>2015</th>
<th>2020</th>
<th>2025</th>
<th>2030</th>
</tr>
</thead>
<tbody>
<tr>
<td>Agriculture sector, forestry and land use trend</td>
<td>19,391</td>
<td>71,436</td>
<td>85,545</td>
<td>95,561</td>
<td>103,424</td>
</tr>
<tr>
<td>Solid waste management</td>
<td>667</td>
<td>852</td>
<td>993</td>
<td>1,156</td>
<td>1,347</td>
</tr>
<tr>
<td>Liquid waste management</td>
<td>245</td>
<td>313</td>
<td>364</td>
<td>424</td>
<td>494</td>
</tr>
<tr>
<td>Transportation trend</td>
<td>782</td>
<td>1,447</td>
<td>2,439</td>
<td>4,110</td>
<td>6,925</td>
</tr>
<tr>
<td>Electricity production trend</td>
<td>350</td>
<td>648</td>
<td>1,476</td>
<td>2,487</td>
<td>4,191</td>
</tr>
<tr>
<td>Residential trend</td>
<td>60</td>
<td>96</td>
<td>128</td>
<td>172</td>
<td>230</td>
</tr>
<tr>
<td>Manufacturing industries trend</td>
<td>118</td>
<td>175</td>
<td>223</td>
<td>285</td>
<td>363</td>
</tr>
<tr>
<td>Industrial processes trend</td>
<td>303</td>
<td>667</td>
<td>894</td>
<td>1,121</td>
<td>1,348</td>
</tr>
<tr>
<td><strong>Total</strong></td>
<td>21,916</td>
<td>75,633</td>
<td>92,062</td>
<td>105,316</td>
<td>118,323</td>
</tr>
</tbody>
</table>
<p>Source: Authors, July 2015.</p>
<p><h5><a id="325__Results_of_scenarios_and_analyses_212"></a>3.2.5 Results of scenarios and analyses</h5></p>
<p>With regard to the projects and programs selected in the unconditional and conditional scenarios, the results of the projections shown below give the portion of reductions that occur in comparison to the current trend scenario, which is also called “Business as Usual” (BAU). It should be recalled that, like several developing countries, the low level of ownership and mastery of technologies goes hand in hand with the very low level of development of countries such as Burkina Faso and the low level of their GHG emissions. Despite all efforts, the urgency of dealing with recurrent crisis situations in several sectors requires the use of low-cost technologies available in the market, which are quite often less appropriate for local or global environmental protection (emergency thermal power plants very frequently financed at the time of large-scale load shedding and social movements, dependence on obsolete means of transportation, agricultural techniques with little technological input that consume space and manpower, poor waste management etc.). Hence there is a preference to think of GHG reductions in comparison to a possible trend rather than in comparison to a reference year that we see as unrealistic.</p>
<p>Table 5. Change in emissions (BaU) and percentage of reduction by scenario</p>
<p>Source: Authors, July 2015.</p>
<table class="table table-striped table-bordered">
<thead>
<tr>
<th></th>
<th>2007</th>
<th>2015</th>
<th>2020</th>
<th>2025</th>
<th>2030</th>
</tr>
</thead>
<tbody>
<tr>
<td>BaU (in Gg)</td>
<td>21,916</td>
<td>75,633</td>
<td>92,062</td>
<td>105,316</td>
<td>118,323</td>
</tr>
<tr>
<td>Unconditional scenario (reduction in Gg)</td>
<td></td>
<td>-</td>
<td>5,133</td>
<td>6,608</td>
<td>7,808</td>
</tr>
<tr>
<td>Unconditional scenario (reduction in %)</td>
<td></td>
<td>0%</td>
<td>5.58%</td>
<td>6.27%</td>
<td>6.60%</td>
</tr>
<tr>
<td>Conditional scenario (reduction in Gg)</td>
<td></td>
<td></td>
<td>10,953</td>
<td>11,829</td>
<td>13,766</td>
</tr>
<tr>
<td>Conditional scenario (reduction in %)</td>
<td></td>
<td>0%</td>
<td>11.90%</td>
<td>11.20%</td>
<td>11.60%</td>
</tr>
</tbody>
</table>
<p>The curve below better illustrates these scenarios.</p>
<p>Figure 1. Illustration of GHG emissions trends in different scenarios</p>
<p><img src="img/BFA-1.png" alt=""></p>
<p>Key: Blue line: Burkina GHG emission trend; orange line: Unconditional scenario; grey line: Conditional scenario</p>
<p>Table 6 below gives a breakdown of the reductions in the unconditional scenario. It may be seen that the sectoral mitigation is principally due to projects and programmes in agriculture, forestry and changes in land use (between 6 and 7% from 2020 to 2030), technology choices in the electrical industry (between 20 and 12% from 2020 to 2030) and energy efficiency in the manufacturing industries (3% in both 2020 and 2030). These reductions are relative to the BAU trend in the sector.</p>
<p>Table 6. Breakdown of GHG reductions (GgCO<sub>2</sub> eq. and %) in the unconditional scenario compared to the current trend scenario</p>
<table class="table table-striped table-bordered">
<thead>
<tr>
<th>Years</th>
<th colspan="2">2015</th>
<th colspan="2">2020</th>
<th colspan="2">2025</th>
<th colspan="2">2030</th>
</tr>
</thead>
<tbody>
<tr>
<td>Sector</td>
<td>Gg</td>
<td>%</td>
<td>Gg</td>
<td>%</td>
<td>Gg</td>
<td>%</td>
<td>Gg</td>
<td>%</td>
</tr>
<tr>
<td>Agriculture, forestry and land use</td>
<td>-</td>
<td>0%</td>
<td>-4,809</td>
<td>-6%</td>
<td>-6,209</td>
<td>-6%</td>
<td>-7,236</td>
<td>-7%</td>
</tr>
<tr>
<td>Solid wastes</td>
<td>-</td>
<td></td>
<td>-</td>
<td></td>
<td>-</td>
<td></td>
<td>–</td>
<td></td>
</tr>
<tr>
<td>Transportation</td>
<td>-5.86</td>
<td>-0.40%</td>
<td>29.3</td>
<td>-1.20%</td>
<td>29.3</td>
<td>-0.71%</td>
<td>29.3</td>
<td>-0.42%</td>
</tr>
<tr>
<td>Electricity production</td>
<td>22.18</td>
<td></td>
<td>284.3</td>
<td>-19.26%</td>
<td>344.4</td>
<td>-13.85%</td>
<td>493.04</td>
<td>-11.76%</td>
</tr>
<tr>
<td>Residential</td>
<td>0.36</td>
<td>-0.37%</td>
<td>10.38</td>
<td>-8.10%</td>
<td>25.62</td>
<td>-14.93%</td>
<td>49.71</td>
<td>-21.65%</td>
</tr>
<tr>
<td>Energy in the manufacturing industries</td>
<td>5.24</td>
<td>-3.00%</td>
<td>6.69</td>
<td>-3.00%</td>
<td>8.54</td>
<td>-3.00%</td>
<td>10.9</td>
<td>-3.00%</td>
</tr>
</tbody>
</table>
<p>Source: Authors, July 2015</p>
<p>Similarly, table 7 below gives a breakdown of the reductions under the conditional scenario. It may be seen that in 2030, again in comparison to the BaU scenario, the sectoral mitigation would come principally from projects and programmes in agriculture, forestry and changes in land use (10% reduction in comparison to the sectoral trend), reduced consumption of hydrocarbons in transportation (42%), technology choices in the electrical industry (4%) and efficiency in residential and tertiary (21%) due to mass replacement of traditional lighting with low-consumption light bulbs. The reductions mentioned here are in relation to the BAU trend of the sector.</p>
<p>Table 7. Breakdown of GHG reductions (GgCO<sub>2</sub> eq. and %)in the conditional scenario compared to the current trend scenario</p>
<table class="table table-striped table-bordered">
<thead>
<tr>
<th>Years</th>
<th colspan="2">2015</th>
<th colspan="2">2020</th>
<th colspan="2">2025</th>
<th colspan="2">2030</th>
</tr>
</thead>
<tbody>
<tr>
<td>Sector</td>
<td>Gg</td>
<td>%</td>
<td>Gg</td>
<td>%</td>
<td>Gg</td>
<td>%</td>
<td>Gg</td>
<td>%</td>
</tr>
<tr>
<td>Agriculture, forestry and land use</td>
<td>-</td>
<td>0%</td>
<td>-10,560</td>
<td>12%</td>
<td>-10,560</td>
<td>11%</td>
<td>-10,560</td>
<td>10%</td>
</tr>
<tr>
<td>Solid wastes</td>
<td>-</td>
<td></td>
<td>-60</td>
<td>-4%</td>
<td>-75</td>
<td>-5%</td>
<td>-76.3</td>
<td>-4%</td>
</tr>
<tr>
<td>Transportation</td>
<td></td>
<td></td>
<td>244</td>
<td>-10%</td>
<td>1069</td>
<td>-26%</td>
<td>2911</td>
<td>-42%</td>
</tr>
<tr>
<td>Electricity production</td>
<td>22.18</td>
<td>-3%</td>
<td>73.87</td>
<td>-5%</td>
<td>94.1</td>
<td>-4%</td>
<td>162.8</td>
<td>-4%</td>
</tr>
<tr>
<td>Residential</td>
<td></td>
<td></td>
<td>10.02</td>
<td>-8%</td>
<td>25.26</td>
<td>-15%</td>
<td>49.35</td>
<td>-21%</td>
</tr>
<tr>
<td>Energy in the manufacturing industries</td>
<td>3.53</td>
<td>-2%</td>
<td>4.49</td>
<td>-2%</td>
<td>5.72</td>
<td>-2%</td>
<td>7.3</td>
<td>-2%</td>
</tr>
</tbody>
</table>
<p>Source: Authors, July 2015</p>
<p>Over the last 15 years, Burkina has been at the head of the countries of the West African Economic and Monetary Union (WAEMU) with an average annual growth of 5.5%, despite a number of exogenous shocks. The Burkina economy is heavily dominated by agriculture, which employs close to 80% of the active population. Cotton is the country’s most important cash crop. The bulk of the greenhouse gas emissions in the agricultural sector come from the categories of enteric fermentation and agricultural land.</p>
<p>In 2007, the agricultural sector contributed 88% of the national GHG emissions. Animal husbandry, in the form of enteric fermentation activity, is the category that contributes the most the GHG emission (almost half annually). Agricultural land occupies second place in terms of contributions to these emissions.</p>
<h3><a id="Section_4_Adaptation_projections_and_options_279"></a>Section 4. Adaptation projections and options</h3>
<p><h4><a id="41__Burkinas_longterm_adaptation_strategy_281"></a>4.1. Burkina’s long-term adaptation strategy</h4></p>
<p>Globally, development planning is based on the Strategy for Accelerated Growth and Sustainable Development (SAGSD). From the beginning, Burkina Faso’s economy has been based on the primary sector, the sector most exposed over the past 40 years to the effects of climate variability and the sector that is now considered the one to be most vulnerable to climate change. This is why the government of Burkina Faso has become engaged specifically with issues of climate change since the great droughts of the 1970’s, through a sustained action against the desertification that severely impacts the rural world.</p>
<p>In 2014, within the National Partnership Program for Sustainable Land Management, Burkina Faso has developed and validated a <strong>Strategic Framework for Investment in Sustainable Land Management (SFI-SLM)</strong>. The vision in regard to Sustainable Land Management (SLM), which takes the year 2025 as its projection horizon, is as follows: "<em>Sustainable rural production systems which, by taking into consideration local knowledge and know-how, (i) preserve the fertility of the soil, (ii) increase plant and animal productivity per unit of area in use and/or by volume of water consumed, (iii) improve the well-being of the people living on the land and (iv) restore preserve the integrity and functioning of ecosystems".</em></p>
<p>Considered as an action plan of the NRSP in the area of Sustainable Management of Natural Resources (SMNR), the SFI-SLM is supported by all of the programmes and actions within the NRSP that are financed or are seeking financing.</p>
<p>The objectives, results and outputs expected from the SFI-SLM broadly coincide with the themes classified as priority within the National Adaptation Plan (NAP). Because it has defined quantitative goals for the country at the 2025 horizon in the sectors of the GDRN, as well as their costs, the SFI- SLM may be considered as an operational action plan for adaptation in the sectors of agriculture, animal husbandry, forests and land use, water management and biomass energy.</p>
<p><h4><a id="42__Strategic_adaptation_objectives_291"></a>4.2. Strategic adaptation objectives</h4></p>
<p>The greatest concern for Burkina Faso, as for any other country, is that the climate changes foreseen for the next 50 years are now inevitable. Hence, the primary interest of Burkina Faso, which is not a large GHG emitter, must necessarily be improvement of the people’s capability to adapt to the conditions that will exist from now to 2025, 2030 or 2050: a significant rise in the average temperature, more severe dry seasons, strongly and less predictable rainy seasons, a growing problem of drought, lowering of the groundwater table and an increase in the frequency of certain diseases. The only scenario to be prepared for is the trend situation, “business as usual”, because the climate effects which Burkina must confront have already begun and the positive effects of the possible mitigation actions to be envisaged from this point forward, either at the local or global level, will not be felt until after the period of applicability of the INDC (2030).</p>
<p>The objectives of the adaptation measures foreseen in the country’s NAP (National Adaptation Plan) are to (i) reduce the vulnerability to the impacts of climate change on the development of adaptation and resilience capabilities, (ii) facilitate the coherent integration of adaptations to climate change in policies, programmes or activities, new or already existing, in the specific processes of development planning and in the strategies of the relevant sectors at different levels.</p>
<p><h4><a id="43__Sectors_involved_in_adaptation_projects_297"></a>4.3. Sectors involved in adaptation projects</h4></p>
<p>On the basis of the adaptation actions identified in the National Adaptation Plan for the principal sectors vulnerable to climate change, national experts (from the public sector, the civil society and the private sector) participating in a kick-off and consultation workshop for the present study were asked to classify those actions that they consider of high priority in view of their knowledge of the country’s environmental and socioeconomic context. Since the classification exercise is at the same time individual and collective, it is assumed that an action receiving the support of more than 50% of the participants could be considered to be of significant importance. The results of this exercise are presented in the following table.</p>
<p>Table 8. Priority actions within the framework of adaptation projects.</p>
<table class="table table-striped table-bordered">
<thead>
<tr>
<th>Sector</th>
<th>Suggested adaptation measures</th>
<th colspan="3">Applicability over the short, medium or long term</th>
<th>% of participants giving priority to this action</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="6">1. SLM - Sustainable Land Management</td>
</tr>
<tr>
<td>A3</td>
<td>Promotion of sustainable land management (SLM) - Improving access to climate information</td>
<td></td>
<td>M</td>
<td></td>
<td>88%</td>
</tr>
<tr>
<td></td>
<td>Includes:</td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>A1</td>
<td>Cultivation of early or drought-resistant varieties</td>
<td>S</td>
<td></td>
<td></td>
<td>50%</td>
</tr>
<tr>
<td>A2</td>
<td>Implementation of water and soil conservation techniques (stone barriers, levees, filtering levees, terraces, half-moons, agroforestry, dune stabilisation, etc.)</td>
<td>S</td>
<td></td>
<td></td>
<td>50%</td>
</tr>
<tr>
<td>A4</td>
<td>Practice of integrated soil fertility management</td>
<td></td>
<td>M</td>
<td></td>
<td>50%</td>
</tr>
<tr>
<td></td>
<td>All of this through:</td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>EA7</td>
<td>Development of master plans for water development and management</td>
<td>S</td>
<td></td>
<td></td>
<td>50%</td>
</tr>
<tr>
<td>EA2</td>
<td>Development of water reservoirs: construction of modern wells, high-flow boreholes, dams; development of ponds; stream diversion</td>
<td></td>
<td></td>
<td>L</td>
<td>75%</td>
</tr>
<tr>
<td>E3</td>
<td>Development of grazing water sources and points</td>
<td></td>
<td></td>
<td>L</td>
<td>69%</td>
</tr>
<tr>
<td>E2</td>
<td>Delimitation and development of grazing zones</td>
<td></td>
<td>M</td>
<td></td>
<td>50%</td>
</tr>
<tr>
<td>EA3</td>
<td>Combating the silting of water sources</td>
<td></td>
<td></td>
<td>L</td>
<td>63%</td>
</tr>
<tr>
<td>A6</td>
<td>Implementation of water-efficient irrigation techniques</td>
<td>S</td>
<td></td>
<td></td>
<td>56%</td>
</tr>
<tr>
<td>ECO8</td>
<td>Development of research programmes on the resilience of forest, wildlife and fish species</td>
<td></td>
<td></td>
<td>L</td>
<td>56%</td>
</tr>
<tr>
<td>ECO7</td>
<td>Rehabilitation and preservation of wet areas</td>
<td></td>
<td></td>
<td>L</td>
<td>44%</td>
</tr>
<tr>
<td colspan="6">2. Forestry</td>
</tr>
<tr>
<td>F1</td>
<td>Implementation of good forestry and agroforestry practices (selective cutting of firewood, assisted natural regeneration, controlled land clearing, etc.)</td>
<td>S</td>
<td></td>
<td></td>
<td>88%</td>
</tr>
<tr>
<td>F6</td>
<td>Protection of water courses and water sources</td>
<td></td>
<td>M</td>
<td></td>
<td>69%</td>
</tr>
<tr>
<td>F4</td>
<td>Practice of agroforestry for sustained management of natural resources</td>
<td></td>
<td>M</td>
<td></td>
<td>56%</td>
</tr>
<tr>
<td></td>
<td>Through:</td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>F2</td>
<td>Community and participative management of forest, wildlife and fish resources</td>
<td></td>
<td></td>
<td>L</td>
<td>56%</td>
</tr>
<tr>
<td colspan="6">3. Energy</td>
</tr>
<tr>
<td>N3</td>
<td>Diversification of energy sources (solar, wind, biogas)</td>
<td></td>
<td>M</td>
<td></td>
<td>88%</td>
</tr>
<tr>
<td>N6</td>
<td>Promotion of energy-saving technologies in industry and construction</td>
<td></td>
<td></td>
<td>L</td>
<td>63%</td>
</tr>
<tr>
<td colspan="6">4. Environmental education</td>
</tr>
<tr>
<td>Eco1</td>
<td>Development of environmental education in both formal and informal teaching systems</td>
<td></td>
<td>M</td>
<td></td>
<td>63%</td>
</tr>
<tr>
<td colspan="6">5. Food</td>
</tr>
<tr>
<td>SA10</td>
<td>Improvement of food processing and preservation methods</td>
<td></td>
<td>M</td>
<td></td>
<td>56%</td>
</tr>
</tbody>
</table>
<p>Source: Authors, July 2015.</p>
<p><h4><a id="44__Selected_adaptation_actions_by_concerned_sector_337"></a>4.4. Selected adaptation actions by concerned sector</h4></p>
<p>It is useful to note that the themes given a priority classification by the experts participating in the consultation workshop almost completely match the objectives and actions developed and proposed in the Strategic Investment Framework for Sustainable Land Management (SIF-SFM) (see 4.1).</p>
<p>Table 9 below, based on the scaling model of Sustainable Land Management technologies (CILSS, 2015), summarises the adaptation actions proposed in the INDC for the sectors of agriculture, water management, animal husbandry, biomass energy, forests and land use changes in general (AFOLU).</p>
<p>They incorporate the transversal actions associated in particular with adaptive research within these sectors.</p>
<p>As to table 10, it shows adaptation actions in sectors or areas such as:</p>
<ul>
<li>Housing and urban development.</li>
<li>Health.</li>
<li>Management of extreme climatic events.</li>
</ul>
<p>The basic data serving as the input for the model come from the reviewed relevant documentation that is available or has been provided by the national experts of the competent ministries.</p>
<p>Annex 2 provides details on the adaptation projects proposed for the INDC.</p>
<p>Table 9. Adaptation actions in the AFOLU sectors</p>
<table class="table table-striped table-bordered">
<thead>
<tr>
<th rowspan="2">Adaptation actions/projects</th>
<th rowspan="2">Corresponding technologies</th>
<th colspan="4">INDC targets</th>
<th rowspan="2">Potential target regions</th>
<th rowspan="2">Total populati on involved (2015)</th>
<th rowspan="2">Tons of CO<sub>2</sub> sequester- ed/saved per year, 2030 horizon</th>
<th colspan="3">Investment cost in US$, taking into consideration an additional 40% for implementation costs (IEC, administration, capacity enhancement, follow-through and evaluation.) (Constant 2015 cost)</th>
<th rowspan="2">ROI for national economy (%)</th>
</tr>
<tr>
<th>Unit</th>
<th>2020</th>
<th>2025</th>
<th>2030</th>
<th>2020</th>
<th>2025</th>
<th>2030</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="9">Agriculture and water management sector</td>
<td>385,350,000</td>
<td>770,700,000</td>
<td>1,156,050,000</td>
<td></td>
</tr>
<tr>
<td rowspan="4">105,000 ha of CES development each year for the restoration or maintenance of crop land fertility</td>
<td>Only zai</td>
<td>Ha cumul</td>
<td>75 000</td>
<td>150,000</td>
<td>225,000</td>
<td>Nord; Centre- Nord; Sahel; north of Boucle du Mouhoun; north of Est</td>
<td>2,250,000</td>
<td>666,000</td>
<td>31,500,000</td>
<td>63,000,000</td>
<td>94,500,000</td>
<td>67</td>
</tr>
<tr>
<td>Zai + stone barriers</td>
<td>Ha cumul</td>
<td>175,000</td>
<td>350,000</td>
<td>525,000</td>
<td>Nord; Centre- Nord; Sahel; north of Boucle du Mouhoun; north of Est</td>
<td>5,250,000</td>
<td>1,554,000</td>
<td>122,500,000</td>
<td>245,000,000</td>
<td>367,500,000</td>
<td>45</td>
</tr>
<tr>
<td>Plant covered stone barriers</td>
<td>Ha cumul</td>
<td>225,000</td>
<td>450,000</td>
<td>675,000</td>
<td>All regions except Cascades</td>
<td>6,750,000</td>
<td>1,998,000</td>
<td>81,900,000</td>
<td>163,800,000</td>
<td>245,700,000</td>
<td>31</td>
</tr>
<tr>
<td>Stone barriers + zai + assisted natural regeneration</td>
<td>Ha cumul</td>
<td>50,000</td>
<td>100,000</td>
<td>150,000</td>
<td>Nord; Centre- Nord; Sahel; north of Boucle du Mouhoun; north of Est</td>
<td>1,500,000</td>
<td>444,000</td>
<td>40,250,000</td>
<td>80,500,000</td>
<td>120,750,000</td>
<td>39</td>
</tr>
<tr>
<td>10,000 ha of micro watersheds (half moons) each year for the restoration of crop land fertility</td>
<td>Agricultural half moons (with addition of manure)</td>
<td>Ha cumul</td>
<td>50,000</td>
<td>100,000</td>
<td>150,000</td>
<td>All regions with rainfall less than or equal to 600 mm/year</td>
<td>1,500,000</td>
<td>444,000</td>
<td>21,000,000</td>
<td>42,000,000</td>
<td>63,000,000</td>
<td>100</td>
</tr>
<tr>
<td>1,000 ha per year of bottom lands are developed and enhanced, associated with the system of rice intensification (SRI)</td>
<td>SRI</td>
<td>Ha cumul</td>
<td>5,000</td>
<td>10,000</td>
<td>15,000</td>
<td>Grand-Ouest + all other regions with irrigated rice cultivation</td>
<td>500,000</td>
<td>44,400</td>
<td>2,800,000</td>
<td>5,600,000</td>
<td>8,400,000</td>
<td>188</td>
</tr>
<tr>
<td>1,000 drip irrigation kits are distributed each year to irrigate 250 ha of high-value crops (in this case onions)</td>
<td>Drop irrigation</td>
<td>Ha cumul</td>
<td>1,250</td>
<td>2,500</td>
<td>3,750</td>
<td>All regions</td>
<td>20,000</td>
<td>0</td>
<td>35,000,000</td>
<td>70,000,000</td>
<td>105,000,000</td>
<td>25</td>
</tr>
<tr>
<td>10 agricultural production intensification units based on high-flow boreholes and using innovative irrigation techniques are created each year for young agricultural entrepreneur groups (based on potatoes or melons)</td>
<td>Drop irrigation</td>
<td>Ha cumul</td>
<td>1,000</td>
<td>2,000</td>
<td>3,000</td>
<td>Regions with large underground aquifers</td>
<td>12,000</td>
<td>0</td>
<td>50,400,000</td>
<td>100,800,000</td>
<td>151,200,000</td>
<td>42</td>
</tr>
<tr>
<td colspan="9">Animal husbandry sector</td>
<td>171,493,396</td>
<td>342,986,792</td>
<td>490,680,189</td>
<td></td>
</tr>
<tr>
<td>75,000 ha of degraded land are rehabilitated each year for forestry and pastoral uses</td>
<td>Micro watersheds (half moons) Delfino ploughed + herbaceous and ligneous seedlings</td>
<td>Ha cumul</td>
<td>375,000</td>
<td>750,000</td>
<td>1,125,000</td>
<td>Nord; Centre- Nord; Sahel; north of Boucle du Mouhoun; north of Est</td>
<td>5,922,637</td>
<td>3,330,000</td>
<td>78,750,000</td>
<td>157,500,000</td>
<td>236,250,000</td>
<td>147</td>
</tr>
<tr>
<td>10,000 tons of gross fodder (hay and crop residues) are collected and stored each year</td>
<td>Mowing and storage of hay</td>
<td>Cumul tons MS</td>
<td>50,000</td>
<td>100,000</td>
<td>150,000</td>
<td>Nord; Centre- Nord; Sahel; north of Boucle du Mouhoun; north of Est</td>
<td>1,500,000</td>
<td>NA</td>
<td>5,943,396</td>
<td>11,886,792</td>
<td>17,830,189</td>
<td>45</td>
</tr>
<tr>
<td>5 livestock breeding intensification zones are established within the country</td>
<td>Establishment and equipment of strategic areas to respond to needs during critical periods</td>
<td>Each</td>
<td>1</td>
<td>2</td>
<td>2</td>
<td>Est, Sud-Ouest; Hauts-Bassins, Cascades; Centre-Ouest, Boucle du Mouhoun</td>
<td>3 586 000</td>
<td>300 000</td>
<td>23 800 000</td>
<td>47 600 000</td>
<td>47 600 000</td>
<td>67</td>
</tr>
<tr>
<td>25,000 households in 2020 are equipped with operating biodigesters in at least 10 regions of Burkina Faso</td>
<td>Biodigesters</td>
<td>Each</td>
<td>25,000</td>
<td>50,000</td>
<td>75,000</td>
<td>All regions</td>
<td>1,500,000</td>
<td>300,000</td>
<td>45,500,000</td>
<td>91,000,000</td>
<td>136,500,000</td>
<td>104</td>
</tr>
<tr>
<td>Compost from the biodigesters is used to fertilise 750,000 ha of cultivable land (one biodigester makes it possible to fertilise 10 to 12 ha)</td>
<td>Organic fertilisation of crop land</td>
<td>Ha</td>
<td>250,000</td>
<td>500,000</td>
<td>750,000</td>
<td>All regions</td>
<td>3,750,000</td>
<td>1,500,000</td>
<td>17,500,000</td>
<td>35,000,000</td>
<td>52,500,000</td>
<td>450</td>
</tr>
<tr>
<td colspan="9">Biomass energy sector</td>
<td>29,232,000</td>
<td>41,440,000</td>
<td>87,696,000</td>
<td></td>
</tr>
<tr>
<td>540,000 improved cook stoves are produced and distributed, at least 50% in urban and semi-urban areas</td>
<td>Improved household cook stoves</td>
<td>Each</td>
<td>180,000</td>
<td>350,000</td>
<td>540,000</td>
<td>All regions</td>
<td>2,700,000</td>
<td>610,200</td>
<td>4,032,000</td>
<td>7,840,000</td>
<td>12,096,000</td>
<td>166</td>
</tr>
<tr>
<td>80% of dolo beer brewers use an improved cook stove, 95% of which are in rural areas and 100% in urban and semi-urban areas. This contributes to a reduction of YY% in the demand for firewood</td>
<td>Improved dolo cook stoves</td>
<td>Each</td>
<td>60,000</td>
<td>80,000</td>
<td>180,000</td>
<td>All regions except Sahel</td>
<td>1,000,000</td>
<td>610,200</td>
<td>25,200,000</td>
<td>33,600,000</td>
<td>75,600,000</td>
<td>92</td>
</tr>
<tr>
<td colspan="9">Forests/change in land use sector</td>
<td>345,800,000</td>
<td>588,000,000</td>
<td>903,000,000</td>
<td></td>
</tr>
<tr>
<td>2000 ha (200 km) of stream banks are rehabilitated and access-protected each year</td>
<td>Hedge-rows; access protection; assisted natural regeneration; Delfino trenches</td>
<td>Ha</td>
<td>10,000</td>
<td>20,000</td>
<td>30,000</td>
<td>All regions</td>
<td>1,200,000</td>
<td>60,000</td>
<td>4,200,000</td>
<td>8,400,000</td>
<td>12,600,000</td>
<td></td>
</tr>
<tr>
<td>12 regions (CT) or 180 communes, in cooperation with grassroots communities, create and organise one biodiversity conservation area each with a commune or regional focus, at least 5,000 ha in area.</td>
<td>Reforestation / Conservation</td>
<td>ha</td>
<td>150,000</td>
<td>450,000</td>
<td>900,000</td>
<td>Est; Boucle du Mouhoun, Sud- Ouest, Cascades, Centre-Ouest; Hauts-Bassins</td>
<td>8,441,000</td>
<td>9,360,000</td>
<td>84,000,000</td>
<td>252,000,000</td>
<td>504,000,000</td>
<td></td>
</tr>
<tr>
<td>The development plans of X classified forests are audited and updated for the purpose of diversifying the development objectives and making the local river communities more responsible (ecobased approach)</td>
<td>Development / management of local forests</td>
<td>Ha</td>
<td>400,000</td>
<td>450,000</td>
<td>450,000</td>
<td>Est; Boucle du Mouhoun, Sud- Ouest, Cascades, Centre-Ouest; Hauts-Bassins; Centre-Nord</td>
<td>1,200,000</td>
<td>4,680,000</td>
<td>224,000,000</td>
<td>252,000,000</td>
<td>252,000,000</td>
<td>109</td>
</tr>
<tr>
<td>200 rural communes develop and implement, with the support of the government or NGO’s, assisted natural regeneration projects with the participation of at least 5 village communities each</td>
<td>Assisted natural regeneration</td>
<td>Ha</td>
<td>200,000</td>
<td>450,000</td>
<td>800,000</td>
<td>All regions</td>
<td>2,000,000</td>
<td>1,600,000</td>
<td>33,600,000</td>
<td>75,600,000</td>
<td>134,400,000</td>
<td>83</td>
</tr>
<tr>
<td colspan="9">Adaptive research in the sectors of water, agriculture, animal husbandry and forests</td>
<td>22,680,000</td>
<td>45,500,000</td>
<td>63,840,000</td>
<td></td>
</tr>
<tr>
<td>R&D in the area of water, water use and impacts of climate change</td>
<td></td>
<td>mill CFA francs</td>
<td>1,000</td>
<td>2,000</td>
<td>3,100</td>
<td>All regions</td>
<td></td>
<td>NA</td>
<td>2,800,000</td>
<td>5,600,000</td>
<td>8,680,000</td>
<td></td>
</tr>
<tr>
<td>Improvement in the protection of water resources against filling and invasive aquatic plants</td>
<td></td>
<td>mill CFA francs</td>
<td>3,850</td>
<td>7,750</td>
<td>9,950</td>
<td></td>
<td></td>
<td>NA</td>
<td>10,780,000</td>
<td>21,700,000</td>
<td>27,860,000</td>
<td></td>
</tr>
<tr>
<td>Participative development of sustainable land management technologies / R&D on adaptive climate change</td>
<td></td>
<td>mill CFA francs</td>
<td>3 250</td>
<td>6,500</td>
<td>9,750</td>
<td>All regions</td>
<td></td>
<td>NA</td>
<td>9,100,000</td>
<td>18,200,000</td>
<td>27,300,000</td>
<td></td>
</tr>
<tr>
<td colspan="3">SUBTOTAL AFOLU SECTORS</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>27,500,800</td>
<td>954,555,396</td>
<td>1,788,626,792</td>
<td>2,701,266,189</td>
<td></td>
</tr>
</tbody>
</table>
<p>Source: Authors’ estimates based on CILSS model, July 2015</p>
<p>Table 10. Adaptation actions in other vulnerable sectors</p>
<table class="table table-striped table-bordered">
<thead>
<tr>
<th rowspan="2">Adaptation action/project</th>
<th colspan="4">INDC targets</th>
<th rowspan="2">Unit cost (in US$)</th>
<th rowspan="2">Potential target regions, provinces, cities</th>
<th rowspan="2">Total populatio n involved in the project or action (2015)</th>
<th rowspan="2">Tons of CO<sub>2</sub> sequest- ered/ saved per years, 2030 horizon</th>
<th colspan="3">Investment cost in US$, taking into consideration an additional 40% for implementation costs (IEC, administration, capacity enhancement, follow-through and evaluation.) (Constant 2015 cost)</th>
<th rowspan="2">ROI for national economy (%)</th>
</tr>
<tr>
<th>Unit</th>
<th>2020</th>
<th>2025</th>
<th>2030</th>
<th>2020</th>
<th>2025</th>
<th>2030</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="9">Housing and urban development</td>
<td>757,709,778</td>
<td>1,019,351,592</td>
<td>1,178,447,326</td>
<td></td>
</tr>
<tr>
<td>Mapping and marking of flood risk areas in population centres with more than 5000 inhabitants as an adaptation to climate change</td>
<td>Population centre</td>
<td>149</td>
<td>250</td>
<td></td>
<td>300,000</td>
<td>All population centres of urban and rural communes of Burkina Faso</td>
<td>14,016,646</td>
<td>0</td>
<td>62,580,000</td>
<td>105,000,000</td>
<td></td>
<td></td>
</tr>
<tr>
<td rowspan="2">Emphasis on local materials and promotion of wood and metal-free housing as an adaptation to climate change in rural and semi- urban areas of Burkina Faso</td>
<td>Cumulative housing units (90%) Average: 27m² / housing unit</td>
<td>1432</td>
<td>5,806</td>
<td>19,152</td>
<td>100 us$ /m2</td>
<td>Outreach to 5 rural communities per province (225 sites. 1 outreach in 30% of the villages, 80% of the communes</td>
<td>16,676</td>
<td>906,178</td>
<td>7,393,778</td>
<td>29,960,392</td>
<td>98,828,926</td>
<td>233</td>
</tr>
<tr>
<td>Cumulative community buildings (10%): 64 m² / building</td>
<td>172</td>
<td>697</td>
<td>2,298</td>
<td>130 us$/m2</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>Management of flood waters and flood prevention in Burkina Faso’s 13 regional capitals</td>
<td>Km of channels and culverts</td>
<td>700</td>
<td>900</td>
<td>1100</td>
<td>700,000</td>
<td>13 regional capitals</td>
<td>2,466,608</td>
<td>0</td>
<td>686,000,000</td>
<td>882,000,000</td>
<td>1,078,000,000</td>
<td></td>
</tr>
<tr>
<td>Energy efficiency in urban and rural housing</td>
<td>KWh/m²</td>
<td>200</td>
<td>180</td>
<td>160</td>
<td>1,600</td>
<td>Administrative buildings of the 13 regional capitals</td>
<td>2,466,608</td>
<td>0</td>
<td>448,000</td>
<td>403,200</td>
<td>358,400</td>
<td></td>
</tr>
<tr>
<td>R&D for climate change adaptation in architecture and construction technologies</td>
<td>Unit of research</td>
<td>2</td>
<td>3</td>
<td>3</td>
<td>300,000</td>
<td>49 urban communities</td>
<td>3,181,351</td>
<td></td>
<td>840,000</td>
<td>1,260,000</td>
<td>1,260,000</td>
<td></td>
</tr>
<tr>
<td>Restoration and development of the Ouagadougou green belt</td>
<td>ha</td>
<td>800</td>
<td>1300</td>
<td></td>
<td>400</td>
<td>City of Ouagadougou</td>
<td>2,000,000</td>
<td>6,500</td>
<td>448,000</td>
<td>728,000</td>
<td>0</td>
<td></td>
</tr>
<tr>
<td colspan="9">Health sector</td>
<td>1,327,200</td>
<td>18,536,000</td>
<td>18,466,000</td>
<td></td>
</tr>
<tr>
<td>Strengthening of capabilities to forecast and respond to phenomena associated with climate change: total of 9 activities</td>
<td>mill CFA Francs</td>
<td>360</td>
<td>540</td>
<td>810</td>
<td>2000</td>
<td>Entire country</td>
<td></td>
<td>1,008,000</td>
<td>1,512,000</td>
<td>2,268,000</td>
<td>248</td>
<td></td>
</tr>
<tr>
<td>Development of research on health and climate change: total of 3 activities</td>
<td>mill CFA francs</td>
<td>114</td>
<td>180</td>
<td>260</td>
<td>2000</td>
<td>Entire country</td>
<td></td>
<td></td>
<td>319,200</td>
<td>504,000</td>
<td>728,000</td>
<td></td>
</tr>
<tr>
<td>Strengthening of personnel capabilities relating to diseases sensitive to climate change: training of 100 specialists</td>
<td>mill CFA francs</td>
<td></td>
<td>3400</td>
<td>5100</td>
<td>2000</td>
<td>Entire country</td>
<td></td>
<td></td>
<td>0</td>
<td>9,520,000</td>
<td>14,280,000</td>
<td>75,703</td>
</tr>
<tr>
<td>Strengthening of capabilities to forecast and respond to phenomena associated with climate change: creation of a health monitoring centre</td>
<td>mill CFA francs</td>
<td></td>
<td>2500</td>
<td>5000</td>
<td>2000</td>
<td>Entire country</td>
<td></td>
<td></td>
<td>0</td>
<td>7,000,000</td>
<td>1,190,000</td>
<td></td>
</tr>
<tr>
<td colspan="9">Strengthening of the early warning system for management of extreme climate events</td>
<td>2,286,000</td>
<td>2,667,000</td>
<td>2,667,000</td>
<td></td>
</tr>
<tr>
<td>Transfer of technologies for climatic, meteorological and environmental monitoring</td>
<td>Training (equipment, rehabilitation of radar, training etc.)</td>
<td>1</td>
<td>1</td>
<td>1</td>
<td></td>
<td>Entire national territory</td>
<td>18,450,494</td>
<td>NA</td>
<td>1,568,820</td>
<td>1,830,290</td>
<td>1,830,290</td>
<td></td>
</tr>
<tr>
<td>Hydrometeorological, meteorological and climatic data included in development plans and early warning systems</td>
<td>Project (strengthening of capabilities, communication, publication etc.)</td>
<td>1</td>
<td>1</td>
<td>1</td>
<td></td>
<td>Entire national territory</td>
<td></td>
<td>717,180</td>
<td>836,710</td>
<td>836,710</td>
<td></td>
<td></td>
</tr>
<tr>
<td colspan="3">TOTAL OF OTHER NAP SECTORS</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>912,678</td>
<td>761,322,978</td>
<td>1,040,554,592</td>
<td>1,199,580,326</td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<p>Source: Author’s estimates, July 2015</p>
<h3><a id="Section_5_Socioeconomic_analysis_of_INDC_projects_421"></a>Section 5. Socioeconomic analysis of INDC projects</h3>
<p><h4><a id="51__Economic_and_financial_options_for_mitigation_and_adaptation_projects_423"></a>5.1. Economic and financial options for mitigation and adaptation projects</h4></p>
<p>The adaptation and mitigation options in the case of a developing country such as Burkina Faso are a complex function of multiple factors, the most important of which are: (i) the cost of technology, (ii) the ease of applying or adopting the technology, (iii) the social benefit and (iv) the abundance of the consumption factor (or raw materials that can be used by technology).</p>
<p>Since the financial factor is the constraining determinant, in particular for investment projects of a nature that is more social than economic, the analysis of the implementation of mitigation and adaptation projects places greater emphasis on cost factors (implementation of the technology) than on other factors.</p>
<p>Thus, a country such as Burkina Faso, so long as the mitigation constraints are not too high (as is the case for developed countries with high-intensity emissions), must gauge its projects by the order of increasing project implementation costs.</p>
<p>Hence, three options are possible:</p>
<ul>
<li>Option 1: Mitigation and adaptation projects that can be carried out at negative cost.</li>
<li>Option 2: Policies/measures/projects that can be carried out at net negative or zero cost, taking into consideration the associated social, economic and environmental benefits.</li>
<li>Option 3: Mitigation projects with a positive cost that are feasible on condition of receiving international assistance.</li>
</ul>
<p><h5><a id="511__Mitigation__and__adaptation__projects__that__can__be__carried__out__at__a__negative__cost_BaU_scenario_438"></a>5.1.1 Mitigation and adaptation projects that can be carried out at a negative cost (BaU scenario)</h5></p>
<p>Negative-cost projects are defined as investments that produce economies of scale sufficient to cover invested capital, maintenance, operating costs and interest charges throughout the life cycle of the project. <strong><em>This option is desirable in all the mitigation and adaptation scenarios, but especially in the BaU (Business as Usual) or unconditional scenarios, because of the certainty that each project that is invested in will give its investors a return, particularly where there is no outside support or where the investment is made through domestic borrowing.</em></strong></p>
<p>In the mitigation area, reforestation and stove improvement projects can generate negative costs. Indeed, association with the Carbon Fund can provide financial benefits that may compensate for or counterbalance the amounts invested to implement the projects, in such a way as to make the project costs negative.</p>
<p><h5><a id="512__Policiesmeasuresprojects_that_can_be_carried_out_at_net_negative_or_zero_cost_taking__into__consideration__the__associated__social__economic__and__environmental_benefits_equivalent_to_the_Unconditional_Scenario_444"></a>5.1.2 Policies/measures/projects that can be carried out at net negative or zero cost, taking into consideration the associated social, economic and environmental benefits (equivalent to the Unconditional Scenario)</h5></p>
<p>It is sometimes difficult to determine the quantitative and monetary benefits of a social policy. The difficulty of extrapolating social or environmental gains as financial gains explains the difficulty in understanding negative or zero costs. <strong><em>The projects within this option have an absolute financial value that is negative, but an overall absolute value that is zero or positive when one takes into account the economic and productive, public health and environmental effects that they produce. Their implementation is optional in the context of the unconditional and current trend (BaU) scenarios.</em></strong></p>
<p>The examples of obvious interest concern the “improved cook stove” and "advanced cook stove projects.</p>
<p><h5><a id="513__Mitigation_projects_with_a_positive_cost_that_are_feasible_on_condition_of_international_assistance_equivalent_to_the_Hybrid_Conditional_receiving_Scenario_451"></a>5.1.3 Mitigation projects with a positive cost that are feasible on condition of international assistance (equivalent to the Hybrid Conditional receiving Scenario)</h5></p>
<p>These projects, the principal objective of which is generally the mitigation and reduction of GHG (MPD, REDD+ NAMA projects), are of two types and relate to investments that are feasible in the context of the conditional (external financing) scenario:</p>
<ul>
<li>
<p>The project is very costly and profitable at a certain scale because of the economies of scale it will generate, but external support would be needed because of its high investment cost.</p>
</li>
<li>
<p>The project is not financially profitable, but its economic, public health and environmental benefits are significant and its implementation would almost necessarily require external financial assistance because of its high cost.</p>
</li>
</ul>
<p><h5><a id="514__Relationships__between__economic__options__and__mitigation__and__adaptation_options_459"></a>5.1.4 Relationships between economic options and mitigation and adaptation options</h5></p>
<p>When investments in mitigation and adaptation projects are financially profitable, the country does not need an external contribution because the invested capital is going to be recovered and the investors will get back their investment. This type of project is to be financed and carried out in a BaU or unconditional scenario through financing provided by the central government along with its local partners (including the private sector in the context of domestic borrowing).</p>
<p>However, if a project is not financially profitable (but nevertheless has enormous socioeconomic impacts or co-benefits), or even profitable with enormous socioeconomic impacts or co-benefits, the investments will be made within the framework of a hybrid conditional scenario, i.e. the requirement for external or international support to finance the project.</p>
<p>An example of the type of project within the framework of a conditional scenario, where the financing requires external financial support, is the “improved cook stoves” project.</p>
<p>Improved cook stoves for which the performance varies as a function of technological innovations (improved cook stove or advanced cook stove), will yield more or less positive financial profitability as a function of their use (households or producers). In the case of household use for domestic needs, the profitability is less, while in the case of use to produce dolo (sorghum beer), the profitability is much greater.</p>
<p>Nevertheless, in both modes of use, the impacts and co-benefits of using the improved cook stove are enormous:</p>
<ul>
<li>
<p>Use of the improved cook stove makes it possible to save 15% to 45% of the energy used in cooking, depending on the level of technology. This means that in the above cases, the destruction of biomass is 15% to 45% less, which is of broad large-scale significance.</p>
</li>
<li>
<p>The cooking speed resulting from the use of an improved cook stove allows the user of the stove to save 50% to 75% of the original time devoted to cooking or producing dolo (depending on how much the improved cook stove is used). This means that the user of the cook stove can devote more than half of the original time to other profitable activities and thus increase his or her income.</p>
</li>
<li>
<p>The use of improved cook stoves permits households and other users to reduce their exposure to respiratory diseases caused by smoke or the inhalation of carbon dioxide or carbon monoxide, as the case may be. Persons previously exposed increase their health “capital” and the income previously devoted to health care is saved.</p>
</li>
</ul>
<p>Thus, because of the enormous associated benefits cited above, such projects are financed within the framework of a conditional scenario, with the need for external financial help.</p>
<p><h4><a id="52__Operational_methodology_of_the_analysis_480"></a>5.2. Operational methodology of the analysis</h4></p>
<p><h5><a id="521__Objectives_482"></a>5.2.1 Objectives</h5></p>
<p>The aims of the socioeconomic analysis of the options and project within the INDC are to:</p>
<ul>
<li>Determine the feasibility of the projects.</li>
<li>Perform an analysis of the total impact of the “green development” options on the overall economic growth of the country.</li>
<li>Make it possible to prioritise projects that are already identified and are going to be implemented.</li>
<li>Define the indicators of project relevance.</li>
<li>Determine the socioeconomic benefits and costs inherent in their implementation.</li>
<li>Evaluate the effects and impacts of the potential projects that have been identified.</li>
<li>Validate the relevance of the identified projects for purposes of planning, financing and implementation.</li>
<li>Prepare a relative analysis of the net cost-benefit ratios associated with optional project technologies.</li>
</ul>
<p>The analysis is carried out in two phases and is based on all the projects identified in the mitigation and adaptation components:</p>
<ul>
<li>Definition of a general framework for assessing the projects, based on previously defined criteria and indicators.</li>
<li>Analysis of the financial cost-benefit ratios and/or the socioeconomic and environmental co-benefits of the projects.</li>
</ul>
<p>In the case at hand, the analysis of the projects will be based in the OECD-DAC principles: relevance, effectiveness, efficiency, sustainability and impacts. A cross analysis of INDC project sectors/OECD- DAC criteria will make it possible to identify a certain number of expected indicators for which the various viable and profitable projects should be significant.</p>
<p><h5><a id="522__General_framework_of_socioeconomic_analysis_of_the_projects_501"></a>5.2.2 General framework of socioeconomic analysis of the projects</h5></p>
<p>The general framework for analysis of the projects emphasises their contributions to the country’s overall development:</p>
<ul>
<li>In terms of the project’s contribution to green growth and the maintenance and revitalisation of the stock of natural resources capital by facilitating the processes of mitigation of GHG emissions and the adaptation of the population to climate change.</li>
<li>In terms of the contribution of the projects to the creation of wealth (growth), the multiplication of national income and the reduction of poverty.</li>
<li>And in terms of the ease of acquisition and ease of adoption of the technology and other inputs of the projects.</li>
</ul>
<p>For this purpose, the criteria identified in table 11 below will serve as analytical indicators of the overall contribution to development, evaluated on the basis of a weighted score of 0 to 100.</p>
<p>For each of the three contributions mentioned above, a project will be graded from 1 to 10 on the basis of its strength with respect to that contribution and will be given a weighted grade between 100 and 1000 on the basis of its relevance and effectiveness in terms of its overall contribution to development.</p>
<p>Table 11. Analytical criteria and prioritisation of INDC projects</p>
<table class="table table-striped table-bordered">
<thead>
<tr>
<th>Analytical criteria</th>
<th>Relevant associated indicators</th>
<th>Score/ 100 = overall contribution to development</th>
</tr>
</thead>
<tbody>
<tr>
<td>The project’s contribution to the creation of wealth (growth) and the multiplication of national income and the reduction of poverty</td>
<td><ul><li>Amount of additional production</li>
<li>Agricultural output</li>
<li>Internal rate of return</li>
<li>Number of additional persons benefited</li>
</ul></td>
<td>35</td>
</tr>
<td>The project’s contribution to green growth and maintenance and revitalisation of the stock of natural resources capital</td>
<td><ul><li>Number of tons of CO<sub>2</sub> sequestered or saved per year</li>
<li>Degree of conservation of natural capital</li>
</ul></td>
<td>45</td>
</tr>
<tr>
<td>Ease of acquisition and ease of adoption of the technology and inputs of the projects</td>
<td><ul><li>Financial cost of the technology</li>
<li>Availability of the raw material (input of the technology)</li>
</ul></td>
<td>20</td>
</tr>
</tbody>
</table>
<p>Source: Author, August 2015</p>
<p>Figure 2. Analytical criteria for INDC projects</p>
<p><img src="img/BFA-2.png" alt=""></p>
<p>Key: Blue - Contribution to growth and income and reduction of poverty; Red - Contribution to green growth and revitalisation of the stock of natural resources; Green - Ease of acquisition and adoption of the technology and inputs of the project</p>
<p>Operationally, the socioeconomic analysis of the projects will focus on linked evaluations:</p>
<ul>
<li>Of the rate of return on the financial investment in the projects.</li>
<li>Of the projected social and economic benefits of the projects.</li>
<li>Of the positive or negative environmental externalities associated with implementation of the projects.</li>
</ul>
<p><h4><a id="53__Results__of__socioeconomic__analyses__and__implementation__of__conditional_projects_within_the_INDC_548"></a>5.3. Results of socioeconomic analyses and implementation of conditional projects within the INDC</h4></p>
<p><h5><a id="531__Implementation_costs_and_net_cobenefits_generated_550"></a>5.3.1 Implementation costs and net co-benefits generated</h5></p>
<p>In distinction to investment costs, which represent the costs of acquiring all of the productive capital (production factors, including raw materials) of the production units, the implementation costs of the projects represent expenses for the operation and follow-up of the production units.</p>
<p>The implementation costs of the project consist of:</p>
<ul>
<li>The costs of designing the projects (feasibility and design studies).</li>
<li>The costs of operating the projects (administrative costs of operating the management unit of the various projects), including the costs of capacity building.</li>
<li>The costs of supporting the implementation, including any costs for information, education and communication (IEC).</li>
<li>The costs of project follow-up and evaluation.</li>
</ul>
<p>Here we consider that the implementation costs represent around 40% of the costs of a project. Table 12 below provides an estimate of the implementation costs of the various projects by INDC sector.</p>
<p>Table 12. Investment and implementation costs of conditional projects within the INDC (in US$)</p>
<table class="table table-striped table-bordered">
<thead>
<tr>
<th>Sectors</th>
<th>Implementation costs</th>
<th>Investment costs of the sectoral projects</th>
<th>Co-benefits associated with implementation of the sectoral projects</th>
</tr>
</thead>
<tbody>
<tr>
<td>Agriculture & water</td>
<td>1,233,470,000</td>
<td>493,388,000</td>
<td><ul><li>Annual growth in agricultural production, more specifically the amounts of cereals produced, leading in turn to an improvement in the levels of food security and the levels of farmer income, which reduces the incidence of poverty.</li>
<li>The proposed actions make it possible to sequester carbon in the soil (more than 5,150 Gg eq CO<sub>2</sub> sequestered at the 2030 horizon), contributing to the restoration of degraded land and mitigation of the effects of climate warming, with the end result of preserving ecosystems and water resources.
</li></ul></td>
</tr>
<tr>
<td>Animal husbandry</td>
<td>562,080,189</td>
<td>224,832,076</td>
<td><ul><li>
The use of biodigesters makes it possible to produce compost for the fertilisation of agricultural land (things which increase agropastoral production and the income of the producers). This provides energy to rural households, contributing to an increase in their standard of living.</li>
<li>The use of biodigesters contributes to saving biomass energy because the stocks of wood used for the energy needed for cooking and lighting are saved.</li>
<li>Development of grazing areas will preserve biodiversity and the mobilisation of surface water, which up to now has been better developed in intensive animal production zones (IAPZ’s).
</li></ul></td>
</tr>
<tr>
<td>Biomass energy and energy from recycling of wastes</td>
<td>168,924,000</td>
<td>67,569,600</td>
<td><ul><li>The use of improved cook stoves will make it possible to save the wood energy that is consumed (in comparison to traditional cook stoves), and the associated speedier cooking will permit the household or preparer of the meals to save time and use it for other income producing work, so much so that it could be double counted as a financial benefit.</li>
<li>The use of improved cook stoves permits local and rural populations to improve their health (because of the respiratory diseases caused by the inhalation of carbon monoxide that they avoid). The households, and principally the women, can then save the costs incurred for health care.</li>
<li>Transformation of methane waste is an additional source of energy (as well as a new source of regular jobs) and the cities will be able to get rid of their wastes for the good of the population.</li></ul></td>
</tr>
<tr>
<td>Forests / change in land use</td>
<td>979,246,000</td>
<td>391,698,400</td>
<td><ul><li>Forest investment are an invaluable contribution to agroforestry and the preservation of biodiversity and a suitable response to environmental degradation and climate warming.</li>
<li>Forest projects, even in disadvantaged communities, make it possible to harmoniously combine preservation of the forests and agricultural development by emphasising agricultural crops in a dynamic of local income growth.</li>
<li>Projects to create forests and develop natural forests make it possible to conserve soil and water, reduce erosion and air pollution and conserve biological diversity, to say nothing of providing ligneous and non-ligneous forest products, including those used for foods and medicines.</li></ul></td>
</tr>
<tr>
<td>Strengthening of the early warning system for dealing with the management of extreme climate events</td>
<td>7,620,000</td>
<td>3,048,000</td>
<td><ul><li>Meteorological data enables producers to increase their opportunities for investment by providing them with important social and economic information that makes it possible to adapt their systems of production and protect their persons, their means of subsistence and their products.</li>
<li>Actions to transfer climatic, meteorological and environmental monitoring technologies make it possible to readjust production and consumption factors as a function of climate change and improve the producers cost-benefit ratio by preserving environmental benefits (saving of water resources).</li></ul></td>
</tr>
<tr>
<td>Housing and urban development</td>
<td>2,918,154,526</td>
<td>1,167,261,810</td>
<td><ul><li>Investments in better understanding and definition of flood-risk zones make it possible to better develop living space and effectively prevent the effects of floods, thus contributing to safer and better living conditions.</li>
<li>They also make it possible to promote architecture that is adapted to climate change conditions, emphasis on local materials and savings of wood resources, which in turn strengthens conservation of forests and biodiversity.</li>
<li>Finally, investments in energy efficiency permit significant savings in the energy budgets of public entities and homes while improving overall comfort.</li></ul></td>
</tr>
<tr>
<td>Health</td>
<td>38,329,200</td>
<td>15,331,680</td>
<td><ul><li>Investment in national capabilities to prevent, monitor and manage climate-related diseases undoubtedly improves the overall productivity of the economy and increases national production.</li>
<li>Healthy workers consume fewer resources for their care and produce better.</li>
<li>The government of Burkina Faso better controls the social costs of climate change.</li></ul></td>
</tr>
<tr>
<td>Renewable energy</td>
<td>PM unconditional scenario</td>
<td>PM</td>
<td><ul><li>The use of alternative energy sources (solar, biofuels etc.) makes it possible to reduce energy costs for homes and business, which increases their productivity.</li>
<li>It makes it possible to mitigate the pollution generated by the use of fossil fuels in transportation and electricity production.</li>
</ul></td>
</tr>
<tr>
<td>Transportation</td>
<td>PM unconditional scenario</td>
<td>PM</td>
<td><ul><li>Investments in biofuels make it possible to have alternative sources of energy available and to diversify renewable energy sources.</li>
<li>The modal transportation project makes it possible to diversify transportation methods and infrastructures.</li>
</ul></td>
</tr>
<td>Total cost</td>
<td>5,907,823,915</td>
<td>2,363,129,566</td>
<td></td>
</tr>
</tbody>
</table>
<p>Source: Author, August 2015, estimates from the table of adaptation and mitigation actions.</p>
<p>Figure 3. Graphic representation of the proportions of Adaptation Scenario projects by sector in investment and implementation costs</p>
<p><img src="img/BFA-3.png" alt=""></p>
<p>Key: Upper light blue - Health 1%; Dark blue - Agriculture and water 21%; Red - Animal husbandry 9%; Green - Biomass energy and energy from waste recycling 3%; Purple - Forests/changes in land use 17%; Orange - Housing and urban development 49%; Lower light blue - Strenthening of early warning systems for the management of extreme climate events 0%.</p>
<p><h5><a id="532___Classification_of_projects_by_order_of_priority_for_implementation_605"></a>5.3.2 Classification of projects by order of priority for implementation</h5></p>
<p>On the basis of the weighting based approach used earlier for the various conditional projects (consisting of attributing to them grades from 1 to 10 on the basis of their respective contributions to wealth creation (35%), green growth and maintenance of natural resources (45%) and ease of access/adoption of the technology (20%), the various conditional projects can be classified by order of priority using their weighted grades.</p>
<p>Table 13 below gives a classification of all the conditional projects by order of priority of financing and/or implementation.</p>
<p>Table 13. Classification of all projects of the Adaptation Scenario by order of priority for implementation</p>
<table class="table table-striped table-bordered">
<thead>
<tr>
<th>Priority No.</th>
<th>Adaptation actions provided for in the INDC</th>
<th>Sectors</th>
<th>Weighted prioritisation score</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Promotion of dolo cook stoves with the aim of affecting 97% of dolo brewers at the 2030 horizon</td>
<td>Biomass energy/ waste recovery energy</td>
<td>935</td>
</tr>
<tr>
<td>2</td>
<td>Distribution of 15,000 drip irrigation kits in order to irrigate 3,750 ha with surface water for the production of high- value crops (such as tomatoes and potatoes).</td>
<td>Agriculture, water</td>
<td>915</td>
</tr>
<tr>
<td>3</td>
<td>Restoration and maintenance of the fertility of 1,575 million ha of crop lands through various water and soil conservation techniques (CES).</td>
<td>Agriculture, water</td>
<td>890</td>
</tr>
<tr>
<td>4</td>
<td>Equipping of 75,000 households in 2030 with functional biodigesters in at least 10 regions of Burkina Faso</td>
<td>Animal husbandry</td>
<td>875</td>
</tr>
<tr>
<td>5</td>
<td>Restoration and development of the Ouagadougou green belt</td>
<td>Housing and urban development</td>
<td>875</td>
</tr>
<tr>
<td>6</td>
<td>Forestation/reforestation project equivalent to one forest investment program</td>
<td>Forests-land use</td>
<td>870</td>
</tr>
<tr>
<td>7</td>
<td>Production and distribution of improved cook stoves in urban and semi-urban areas</td>
<td>Biomass energy/ waste recovery energy</td>
<td>865</td>
</tr>
<tr>
<td>8</td>
<td>Flood water management and flood prevention in the 13 regional capitals of Burkina Faso</td>
<td>Housing and urban development</td>
<td>865</td>
</tr>
<tr>
<td>9</td>
<td>Emphasis on local materials and promotion of wood and metal-free housing as an adaptation to climate change in the rural and semi-urban areas of Burkina Faso.</td>
<td>Housing and urban development</td>
<td>860</td>
</tr>
<tr>
<td>10</td>
<td>Creation of 150 agricultural production intensification units through high-flow boreholes, using innovative irrigation techniques (pressurised drip irrigation)</td>
<td>Agriculture, water</td>
<td>825</td>
</tr>
<tr>
<td>11</td>
<td>Inclusion of efficient and effective hydrometeorological and environmental information in long-term development plans to generate early and seasonal warnings</td>
<td>Early warning system</td>
<td>825</td>
</tr>
<tr>
<td>12</td>
<td>Rehabilitation of 1,125,000 ha of degraded land for forest and grazing purposes, i.e. an investment of 75,000 ha each year</td>
<td>Animal husbandry</td>
<td>805</td>
</tr>
<tr>
<td>13</td>
<td>Strengthening of capabilities to forecast and respond to the phenomena associated with climate change: total of nine activities</td>
<td>Health</td>
<td>800</td>
</tr>
<tr>
<td>14</td>
<td>Energy efficiency in urban and rural housing</td>
<td>Housing and urban development</td>
<td>795</td>
</tr>
<tr>
<td>15</td>
<td>Mowing and storage of 10,000 tons of coarse fodder each year (hays and crop residues)</td>
<td>Animal husbandry</td>
<td>790</td>
</tr>
<tr>
<td>16</td>
<td>Establishment and classification of 900,000 ha of regionally focussed biodiversity conservation areas in 12 regions or 180 communes</td>
<td>Forests-land use</td>
<td>785</td>
</tr>
<tr>
<td>17</td>
<td>Completion of 800,000 ha of assisted natural regeneration in 200 rural communes</td>
<td>Forests-land use</td>
<td>785</td>
</tr>
<tr>
<td>18</td>
<td>Restoration of 150,000 ha of degraded land for agricultural production through the completion of 10,000 ha of micro watersheds (or half moons) each year</td>
<td>Agriculture, water</td>
<td>770</td>
</tr>
<tr>
<td>19</td>
<td>Recovery of methane from used water from the Ouagadougou municipal purification station</td>
<td>Biomass energy/ waste recovery energy</td>
<td>770</td>
</tr>
<tr>
<td>20</td>
<td>Transfer of technologies for climatic, meteorological and environmental monitoring</td>
<td>Early warning system</td>
<td>770</td>
</tr>
<tr>
<td>21</td>
<td>Improved protection of water resources against filling and invasive aquatic plants</td>
<td>Agriculture, water</td>
<td>765</td>
</tr>
<tr>
<td>22</td>
<td>Creation and sustainable management of five animal production intensification zones in five regions of the country</td>
<td>Animal husbandry</td>
<td>760</td>
</tr>
<tr>
<td>23</td>
<td>Research and development on architectural and construction technologies adapted to climate change</td>
<td>Housing and urban development</td>
<td>745</td>
</tr>
<tr>
<td>24</td>
<td>Recovery of methane from the solid wastes of the city of Ouagadougou landfill</td>
<td>Biomass energy/ waste recovery energy</td>
<td>725</td>
</tr>
<tr>
<td>25</td>
<td>Pursuit of R&D actions in the areas of water, water use and the impacts of climate change</td>
<td>Agriculture, water</td>
<td>720</td>
</tr>
<tr>
<td>26</td>
<td>Mapping and marking of flood risk zones in settlements of more than 5,000 inhabitants as an adaptation to climate change</td>
<td>Housing and urban development</td>
<td>720</td>
</tr>
<tr>
<td>27</td>
<td>Development of 15,000 ha of shallows and irrigated areas and their exploitation for the intensive rice cultivation system</td>
<td>Agriculture, water</td>
<td>705</td>
</tr>
<tr>
<td>28</td>
<td>Development of research on health and climate change: total of three activities</td>
<td>Health</td>
<td>690</td>
</tr>
<tr>
<td>29</td>
<td>Audit of plans to develop all classified or protected forests for updating purposes</td>
<td>Forests-land use</td>
<td>685</td>
</tr>
<tr>
<td>30</td>
<td>Strengthening of capabilities to forecast and respond to phenomena associated with climate change: creation of an MT health care monitoring centre</td>
<td>Health</td>
<td>680</td>
</tr>
<tr>
<td>31</td>
<td>Participative development of sustainable land</p>
<p>management technologies / Adaptive climate change R&D</td>
<td>Forests-land use</td>
<td>675</td>
</tr>
<tr>
<td>32</td>
<td>Strengthening of personnel capabilities with regard to diseases sensitive to climate change: training of 100 specialists</td>
<td>Health</td>
<td>670</td>
</tr>
<tr>
<td>33</td>
<td>Rehabilitation and protection of 30,000 ha of stream banks</td>
<td>Forests-land use</td>
<td>640</td>
</tr>
</tbody>
</table>
<p>Source: Author, August 2015, estimates from the table of adaptation and mitigation actions</p>
<p><h4><a id="54__Sources_and_conditions_of_financing_642"></a>5.4. Sources and conditions of financing</h4></p>
<p>There are multiple sources for financing projects within the INDC.</p>
<p>The availability of financing sources will depend on the ability of Burkina Faso to develop active cooperation with financing partners and institutions. To finance adaptation and mitigation projects, Burkina Faso could rely on access to the <strong>Green Climate Fund (GCF)</strong> and on the availability of the Environmental Action Fund created by the government, provided that this fund conforms to the rules of transparency, neutrality and good governance that permit a GCF window to be created within them.</p>
<p>The strengthening of bilateral relations with friendly countries and multilateral relations with institutions such as the World Bank, the European Union, the GEF, the UNDP, the UNEP, the ADB, the IDB, the BOAD, the ECOWAS or WAEMU, all potential financial partners for the various projects through funds already in place, may permit Burkina Faso to finance these projects within the framework of climate change and international agreements and conventions.</p>
<p>The Burkina Faso private sector will contribute a large part (almost 50% of the financing) on condition that the commercial banks are made aware of these types of financing.</p>
<p>Burkina Faso supports the use of market mechanisms such as the Clean Development Mechanism (CDM) as an effective monitoring, reporting and verification tool for mitigation activities and an instrument for results-oriented financing. Thus, Burkina Faso supports the use of certified emission reduction units (CER’s) delivered by CDM project, programmes and activities to reach the pre-2020 mitigation goals. Hence, payments for carbon such as to make this economically viable in the specific context of the less advanced countries, the developing countries and the small developing island states is a priority. To do this, the establishment of new accounting rules within the framework of the UNFCCC is necessary to guarantee the environmental integrity of market mechanisms and avoid double counting. These accounting rules will also be introduced for the EIF in order to achieve the required financial transparency.</p>
<h3><a id="Section_6__Implementation_and_monitoring_and_evaluation_of_projects_listed_within_the_INDC_656"></a>Section 6. Implementation and monitoring and evaluation of projects listed within the INDC</h3>
<p><h4><a id="61_Implementation_system_and_actors_658"></a>6.1. Implementation system and actors</h4></p>
<p>The implementation of the projects listed within the INDC will require the establishment of an INDC Coordination Unit to report to the SP-CONEDD.<sup class="footnote-ref"><a href="#fn1" id="fnref1">[1]</a></sup> The Coordination Unit will be responsible for coordinating and supervising (monitoring) the implementation of the various actions identified in the INDC and will consist of three technical entities:</p>
<ul>
<li>A coordination entity responsible for scheduling the implementation activities of the various projects.</li>
<li>A Technical <strong>Adaptation</strong> Cell that will be concerned with coordinating the implementation and follow-up of the adaptation projects and which could become a Designated National Authority for Adaptation (DNA-AD).</li>
<li>A Technical <strong>Mitigation</strong> Cell that will be concerned with coordinating the implementation and follow-up of the mitigation projects in coordination with or on behalf of the Burkina Faso DNA (Designated National Authority).</li>
</ul>
<p>The staff and experts within these units will cooperate closely with the staffs of the various ministries in charge of the projects, which are:</p>
<ul>
<li>The Ministry of Agriculture</li>
<li>The Ministry of Water Resources</li>
<li>The Ministry of Animal Resources</li>
<li>The Ministry of Environment and Forests</li>
<li>The ministry and public institutions responsible for scientific research and technological innovation</li>
<li>The Ministry of Housing and Urban Development</li>
<li>The Ministry of Health</li>
<li>The Ministry of Energy</li>
<li>The Ministry of Transportation</li>
</ul>
<p>The Coordination Unit will work with the above departments and other cross-cutting ministries, such as the Ministry of Economy and Finance, the Ministry of the Promotion of Women and Gender and the Ministry of International Cooperation, within the framework of the financing agreements. Finally, it will coordinate with the civil society structures and the institutions representing the private sector.</p>
<p><h4><a id="62__Followup_and_evaluation_system_and_actors_680"></a>6.2. Follow-up and evaluation system and actors</h4></p>
<p>The Coordination Unit will be responsible for overall follow-up of the implementation activities of the INDC<sup class="footnote-ref"><a href="#fn2" id="fnref2">[2]</a></sup>. For this purpose, it will have to have a manual of administrative procedures and a harmonised system of follow-up and evaluation of the projects, detailing the principal responsibilities and the objectives that have been assigned.</p>
<p>The project evaluation actors are external and will come from the technical and financial partners of the projects to be implemented. These evaluations will take place annually or at given intervals and, at certain stages in the implementation of the projects, will consider the work of the independent evaluators.</p>
<h3><a id="Section_7_Conclusion_693"></a>Section 7. Conclusion</h3>
<p>In Burkina Faso’s INDC, the mitigation and adaptation themes have been integrated, the two of them being closely linked: to “mitigate” it is necessary in principle to “adapt” since the agriculture-forestry- land use (AFOLU) sector is an emission sector but also a major sequestration sector. Consequently, adaptation contributes to a great extent to mitigation revenues (CO<sub>2</sub> sequestration and emissions avoided x the price per ton of carbon on the exchanges).</p>
<p>However, adaptation necessitates substantial funding. Although the price per ton of CO<sub>2</sub> has collapsed on the global markets, the reduction of CO<sub>2</sub> emissions remains an excellent indicator of the performance and impact of the mitigation programmes and projects in Burkina Faso. But CO<sub>2</sub> is not the only source of life in Burkina Faso (food security, atmospheric pollution, air and water quality). One molecule of water (H2O) is just as vital to the soil as CO<sub>2</sub> for food security and the life cycle chain. For adaptation, the conservation of water (H2O) (runoff water, groundwater etc.) is an adaptation indicator just as CO<sub>2</sub> is in the case of mitigation. Therefore, CO<sub>2</sub> and H2O can both be counted, CO<sub>2</sub> for its market value and H2O for its economic value.</p>
<p>In the case of <strong>mitigation</strong> (approach and results), and for the purpose of reducing carbon emissions and increasing sequestration, the three scenarios are clear and obvious. The issue is to prioritise these scenarios by linking them to investments in adaptation, clean technology and projects whose end objective is a society with low carbon emissions and a greener rural world.</p>
<p>In the case of <strong>adaptation</strong>, the options are above all varied and it is also necessary to prioritise them in a summary table based on mitigation projections, adaptation options and the investments required. For example, adaptation in the area of water resource management is multi-sectoral, with initiatives to conserve this resource with regard to both quality and quantity. In addition, collection, recycling, reuse, water treatment technologies and innovative schemes for water efficiency and good water management would aid to the “clarity” of this water. Other ideas would form part of the Strategic Framework for Investment in Sustainable Land Management (SFI-SLM), with a budget of 869 billion CFA francs for five years that is both ambitious and conservative. With one-third of the land degraded and thus 9,316,000 ha in distress, the application of good land use practices and the sustainable management of land are also required, given that these funds affect directly the people who are the most vulnerable (the users of these lands) and the fact that this activity directly attacks the problem of management of natural resources at all levels. Thus, developing an Integrated Adaptation Scenario for this INDC is ambitious.</p>
<p>In terms of co-benefits, and in order to maximise them, the regions of the north and the animal husbandry sector will need more attention and greater investments. Here also, as in the forests sector, the mitigation and adaptation actions operate both symbiotically and in parallel.</p>
<p>Climate change will amplify their impacts where there is already population pressure, that is in the heavily populated urban areas.</p>
<p>The G7 countries have committed to contribute 100 billion dollars per year from now to 2020 to the fight against climate change, part of which is to pass through the Green Climate Fund (GCF).</p>
<p>This sum promised by the international community is to support the developing countries in the limitation of their greenhouse gas emissions and their adaptation to the effects of climate change. However, this commitment does not cover all that is needed to finance worldwide reduction of greenhouse gases, an amount estimated at between 650 billion and 1,950 billion US dollars per year. Burkina Faso through its INDC should position itself among the community of nations to have access to these funds.</p>
<p>In terms of financing, the Environmental Intervention Fund (EIF) established by Burkina Faso appears to be an excellent tool provided that the operating rules of this fund are flexible and transparent in a way to make it a tool of good governance. The income from emissions reductions could be paid into this fund. And since adaptation is at the heart of mitigation and gives rise to it, one could logically imagine that a percentage of the mitigation revenues would be mobilised to finance the adaptation options (up to 75%, for example), depending on the innovative mechanisms. One could also imagine more broadly that a percentage of the EIF (40%) would go to implement adaptation and mitigation measures (15%), cutting-edge follow-up and evaluation/certification technologies (15%) and applied research (10%, for example).</p>
<p>From the beginning, Burkina Faso’s INDC was intended to be <strong>participative</strong>, particularly workshops 1 to 3 and the ad hoc working group, <strong>robust</strong>, <strong>fair</strong>, <strong>ambitious</strong> and <strong>transparent</strong>, not to mention other qualifiers.</p>
<p>The INDC is <strong>robust</strong> because of its range of data, multiple analyses, summary tables and in-depth thinking on the environment, climate change, mitigation and adaptation, and social and socioeconomic areas and in the scenarios that give meaning to such thinking.</p>
<p>To be fair and engender fairness, the INDC was intended to demonstrate to the community of nations that, despite this country’s low emissions of carbon and GHG in comparison to worldwide emissions, Burkina Faso assumes responsibility for the emissions it emits, particularly in the AFOLU sector. To do this, despite the fact the cost of reducing emissions and the ratio of investment cost to benefit (health, social benefits, food security) are high in Burkina, the government fully intends to undertake major mitigation actions in the energy sector and adaptation actions in the rural sector and the sectors of health and housing in order to help reduce its emissions, while significantly reducing the vulnerability of the strategic sectors of its economy.</p>
<p>The INDC is <strong>ambitious</strong> because it goes beyond the BaU scenario and moves toward two other scenarios, Unconditional and Hybrid Conditional that integrate mitigation with adaptation. In the Unconditional Scenario, Burkina explores new targets and presses hard for the mitigation opportunities that the country would be expected to have if it took the technical and economic measures necessary to achieve ambitious economic growth to follow an upward curve that has still not been achieved in all sectors of development. In this Hybrid Conditional Scenario, Burkina Faso moves toward sustainable development. And the Integrated Adaptation Scenario lends itself well to transforming the resource consumption economy of Burkina Faso into a gradually green (or almost green) economy and into a society with low carbon emissions. In this scenario, it is estimated that the total value of the environmental services provided by the actions that are proposed in the AFOLU sectors over the 15 years up to 2030 would be at least US $11,500,000,000, which would give a return on investment of more than 400% (which, when compared with the solely financial return of primary production of 64%, is six times greater). These environmental services, although invisible in a consumption economy measured in GDP, are real in a circular or natural capital economy and contribute greatly to the national economy.</p>
<p>While being fair and ambitious, the INDC aims to be <strong>transparent</strong> and aspires to reach the objectives of the Climate Convention by aligning itself with the 2°C objective and taking into consideration the need to limit cumulative emissions over this period to almost zero. Once again, this objective is ambitious and requires total transparency. Technically and economically, this means for Burkina Faso an economy with low carbon output (a low carbon emission society) and a country covered with green and with a green economy. With its semi-arid nature and climate conditions that are still more uncertain in the years to come, this transformation will demand considerable efforts and huge investments in adaptation, particularly in the agriculture-forests-land use (AFOLU) sectors. The adaptation solutions exist to help the population foresee and prepare to face the effects of climate change that will inevitably arise because of the GHG emissions that have already taken place since 1900.</p>
<p>As it turns out, many adaptation actions rely on clean technologies that in turn contribute to the lowering of GHG emissions. The most important are connected with land management and the conservation of water, soil and forests in order to increase the resilience of the population. It is thus important that the government, its partners and international donors support these initiatives and make possible, through reasonable and proper investments, their greatest possible spread throughout the country.</p>
<h3><a id="Section_8_Commitments__recommendations_730"></a>Section 8. Commitments / recommendations</h3>
<p>Burkina Faso’s commitment comes about through three scenarios.</p>
<p>A first scenario, <strong><em>Unconditional (annex 1)</em></strong>, the objective of which is to reduce GHG emissions by 7,808 Gg per year in 2030, <strong>i.e. 6%</strong> when compared to BaU, for ongoing investments of US $1.25 billion.</p>
<p>A <strong>Hybrid Conditional</strong> scenario <strong><em>(annex 1)</em></strong>, which aims to reduce GHG emissions by <strong>11.6%</strong>, which corresponds to 13,766 Gg per year in 2030, for investments of US $<strong>756,032,667</strong>.</p>
<p>A third scenario, <strong><em>Adaptation (annexe 2)</em></strong>, which aims, among other things, to restore and develop 5,055 million ha of degraded lands at the 2030 horizon, corresponding to 55% of the total current area of degraded lands in the country and making it possible to feed more than 6 million additional persons at the 2030 horizon. Moreover, these adaptation projects will contribute to a reduction in GHG emissions of 43,707 Gg of CO<sub>2</sub>, <strong>i.e. 36.95% when compared to BaU</strong>, for an overall investment of US $5,804,949,915.</p>
<p>The recommendations may be summarised as:</p>
<ul>
<li>Guarantee the use of the Environmental Intervention Fund, the financial transparency of which will be beyond question, to receive and distribute the receipts from the sale of carbon resulting from mitigation.</li>
<li>Clearly promote renewable energy, at least by eliminating fossil fuel subsidies and, at best, by subsidising investments in renewable energy.</li>
<li>Promote architectural structures that use materials that are local, renewable and insulating and have a low energy cost for all public construction and, through subsidies and tax breaks, for private residences.</li>
<li>In the agricultural sector at large, move resolutely toward sustainable and adapted agricultural practices, particularly for family operations and small producers.</li>
<li>For the large private and public farms, review the value chain in terms of climate change and, in particular, evaluate in the most rigorous and complete way the new biotechnology programmes, especially GMO’s.</li>
</ul>
<h3><a id="Section_9_ANNEXES_751"></a>Section 9. ANNEXES</h3>
<p><h4><a id="91__Annex_1_List_of_projects_with_a_mitigation_component_753"></a>9.1. Annex 1: List of projects with a mitigation component</h4></p>
<table class="table table-striped table-bordered">
<thead>
<tr>
<th></th>
<th>Cost (in US$)</th>
</tr>
</thead>
<tbody>
<tr>
<td><b>UNCONDITIONAL SUBTOTAL</b></td>
<td><b>1,124,779,259</b></td>
</tr>
<tr>
<td>Forest Investment Programme</td>
<td>21,645,878</td>
</tr>
<tr>
<td>NAMA’s SNV</td>
<td>17,710,839</td>
</tr>
<tr>
<td>Improved cook stoves SNV</td>
<td>196,787</td>
</tr>
<tr>
<td>Improved cook stoves Tipaalga</td>
<td>2,230,254</td>
</tr>
<tr>
<td>National Biodigester Project</td>
<td>19,722,922</td>
</tr>
<tr>
<td colspan="2">Electricity production</td>
</tr>
<tr>
<td>Samendeni Dam</td>
<td>69,710,913</td>
</tr>
<tr>
<td>Ouessa Aval Dam</td>
<td>350,000,000</td>
</tr>
<tr>
<td>Bagré Aval Dam</td>
<td>128,741,379</td>
</tr>
<tr>
<td>Zagtoulli solar power plant (SONABEL)</td>
<td>67,758,621</td>
</tr>
<tr>
<td>Kaya PV solar power plant (SONABEL)</td>
<td>21,666,667</td>
</tr>
<tr>
<td>Ouaga 2000 solar power plant (SONABEL)</td>
<td></td>
</tr>
<tr>
<td>Dédougou PV solar power plant (SONABEL)</td>
<td></td>
</tr>
<tr>
<td>Gaoua PV solar power plant (SONABEL)</td>
<td></td>
</tr>
<tr>
<td>Zina PV solar power plant</td>
<td></td>
</tr>
<tr>
<td>Diapaga PV solar power plant (SONABEL)</td>
<td></td>
</tr>
<tr>
<td>Zagtoulli II solar power plant (Scatec solar)</td>
<td></td>
</tr>
<tr>
<td>Kodeni solar power plant (Canopy) at Pâ</td>
<td></td>
</tr>
<tr>
<td>Patte d’oie solar power plant (Naange)</td>
<td></td>
</tr>
<tr>
<td>Zano solar power plant (Soltech)</td>
<td></td>
</tr>
<tr>
<td>Pâ solar power plant (Canopy)</td>
<td></td>
</tr>
<tr>
<td>Small hydroelectric plants (Bontioli, 5.1 MW; Gongouro, 5 MW; and Folonzo, 10,8 MW) in public-private partnership</td>
<td>109,166,667</td>
</tr>
<tr>
<td>Installation of 20 MW of PV solar connected to the network every 10 years (beginning in 2015)</td>
<td>99,341,667</td>
</tr>
<tr>
<td>Gasifiers (cotton stalks) for electricity production (20 X 250 KW)</td>
<td></td>
</tr>
<tr>
<td>Photovoltaic solar (EDF)</td>
<td>72,000,000</td>
</tr>
<tr>
<td>Renewable and hybrid energy based mini- networks</td>
<td></td>
</tr>
<tr>
<td>PV, pico-hydro and small wind systems</td>
<td></td>
</tr>
<tr>
<td>Reduction of losses from the electric network</td>
<td>34,686,667</td>
</tr>
<tr>
<td colspan="2">Transportation</td>
</tr>
<tr>
<td>Modal transfer</td>
<td>1,108,333</td>
</tr>
<tr>
<td>Enhancement of the modal transfer project in the city of Ouagadougou (for 20 km)</td>
<td>2,216,667</td>
</tr>
<tr>
<td colspan="2">B. Residential and tertiary</td>
</tr>
<tr>
<td>Energy efficiency/introduction of low- consumption bulbs</td>
<td>6,875,000</td>
</tr>
<tr>
<td>Energy efficiency in electric lighting (residential, EP and tertiary)</td>
<td>100,000,000</td>
</tr>
</tbody>
</table>
<p></p>
<table class="table table-striped table-bordered">
<thead>
<tr>
<th></th>
<th>Cost (US$)</th>
</tr>
</thead>
<tbody>
<tr>
<td><b>CONDITIONAL SUBTOTAL</b></td>
<td><b>756,032,667</b></td>
</tr>
<tr>
<td>Forestation/reforestation project equivalent to three Forest Investment Programmes (FIP)</td>
<td>64,938,000</td>
</tr>
<tr>
<td>Recovery of methane from used water from the Ouagadougou municipal purification station</td>
<td>72,784,000</td>
</tr>
<tr>
<td>Recovery of methane from the solid wastes of the Ouagadougou municipal industrial landfill</td>
<td>8,444,000</td>
</tr>
<tr>
<td colspan="2">A. Electrical energy production</td>
</tr>
<tr>
<td>Small hydroelectric plants (Bontioli, 5.1 MW; Gongouro, 5 MW; and Folonzo, 10,8 MW) in public-private partnership</td>
<td>109,166,667</td>
</tr>
<tr>
<td>Solar</td>
<td>163,666,667</td>
</tr>
<tr>
<td>Renewable and hybrid energy based mini-networks</td>
<td></td>
</tr>
<tr>
<td>PV, pico-hydro and small wind systems</td>
<td></td>
</tr>
<tr>
<td>Bioenergy</td>
<td>12,500,000</td>
</tr>
<tr>
<td colspan="2">B. Transportation</td>
</tr>
<tr>
<td>More rapid improvement in the stock of vehicles (30% reduction in fuel consumption in 2025 instead of 20% for 2030)</td>
<td>3,325,000</td>
</tr>
<tr>
<td>Substitution of biofuels for hydrocarbons: bioethanol production units (replace 10% of super grade petrol consumption in 2030)</td>
<td>94,708,333</td>
</tr>
<tr>
<td>Substitution of biofuels for hydrocarbons: biodiesel production units (replace 5% of diesel consumption in 2030)</td>
<td></td>
</tr>
<tr>
<td colspan="2">Residential and tertiary</td>
</tr>
<tr>
<td>Energy efficiency in electric lighting (residential, EP and tertiary)</td>
<td>168 750 000</td>
</tr>
<tr>
<td colspan="2">Industries</td>
</tr>
<tr>
<td>Lighting efficiency (project to distribute 2 million low-consumption bulbs in the industrial and tertiary sectors) reduction of 2% per year</td>
<td>52,500,000</td>
</tr>
<tr>
<td>Energy-efficient technologies (-3% per year)</td>
<td>5,250,000</td>
</tr>
<tr>
<td>Energy</td>
<td>609,866,667</td>
</tr>
<tr>
<td>Agriculture</td>
<td>64,938,000</td>
</tr>
<tr>
<td>Waste</td>
<td>81,228,000</td>
</tr>
</tbody>
</table>
<p><h4><a id="92__Annex_2_List_of_projects_in_the_INDC_adaptation_component_820"></a>9.2. Annex 2: List of projects in the INDC adaptation component</h4></p>
<p>ADAPTATION PROJECTS (INTEGRATED ADAPTATION SCENARIO)</p>
<table class="table table-striped table-bordered">
<thead>
<tr>
<th>Projects | Scenarios</th>
<th>Net emissions (Gg CO<sub>2</sub>)</th>
<th>Cost/ Investment (US$)</th>
<th>Targets</th>
<th>Number of beneficiaries</th>
<th>Project cost/ beneficiary (US$)</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>ADAPTATION SUBTOTAL</strong></td>
<td>43,707</td>
<td>5,804,949,915</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>AFOLU SECTORS</td>
<td>43,701</td>
<td>2,840,846,189</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td><strong>Agriculture-water sector</strong></td>
<td>5,150</td>
<td>1,233,470,000</td>
<td></td>
<td>17,858,000</td>
<td>69</td>
</tr>
<tr>
<td>Restore and maintain the fertility of 1,575 million ha of cropland through various water and soil conservation techniques.</td>
<td>4,662</td>
<td>828,450,000</td>
<td>1,575,000 ha</td>
<td>15,750,000</td>
<td>52;6</td>
</tr>
<tr>
<td>Restoration of 150,000 ha of degraded land for agricultural production through the construction of 10,000 ha of micro watersheds (or half moons) each year</td>
<td>444</td>
<td>63,000,000</td>
<td>150,000 ha</td>
<td>1,500,000</td>
<td>42</td>
</tr>
<tr>
<td>Development of 15,000 ha of low lands and irrigated areas and their exploitation for the intensive rice cultivation system</td>
<td>44,4</td>
<td>8,400,000</td>
<td>15,000 ha</td>
<td>500,000</td>
<td>16.8</td>
</tr>
<tr>
<td>Distribution of 15,000 drip irrigation kits for the irrigation of 3,750 ha with surface water for the production of high-value crops (tomatoes and potatoes, for example)</td>
<td>0</td>
<td>105,000,000</td>
<td>3,750 ha</td>
<td>60,000</td>
<td>1,750</td>
</tr>
<tr>
<td>Creation of 150 agricultural production intensification units from high- flow boreholes using innovative irrigation techniques (pressurised drip irrigation)</td>
<td>0</td>
<td>151,200,000</td>
<td>4,000 ha</td>
<td>48,000</td>
<td>3,150</td>
</tr>
<tr>
<td>Improvement in the protection of water resources against filling and invasive aquatic plants</td>
<td>0</td>
<td>60,340,000</td>
<td>Non-quantified targets</td>
<td>Indefinite</td>
<td></td>
</tr>
<tr>
<td>Pursuit of R&D actions in the areas of water, water use and impacts of climate change</td>
<td>0</td>
<td>17,080,000</td>
<td>Non-quantified targets</td>
<td>Indefinite</td>
<td></td>
</tr>
<tr>
<td><strong>Animal husbandry sector</strong></td>
<td>21,630</td>
<td>562,080,189</td>
<td></td>
<td>701,000</td>
<td>801.8</td>
</tr>
<tr>
<td>Rehabilitation of 1,125,000 ha degraded land for forest and pastoral purposes, i.e. an investment of 75,000 ha each year</td>
<td>3,330</td>
<td>236,250,000</td>
<td>1,125,000 ha</td>
<td>460,000</td>
<td>514</td>
</tr>
<tr>
<td>Mowing and the conservation of 10,000 tons of coarse fodder each year (hay and crop residues)</td>
<td>0</td>
<td>17,830,189</td>
<td>150,000 tonnes</td>
<td>24,000</td>
<td>743</td>
</tr>
<tr>
<td>The equipment of 75,000 households in 2030 with functional biodigesters in at least ten regions of Burkina Faso</td>
<td>18,000</td>
<td>189,000,000</td>
<td>75,000 households</td>
<td>75,000</td>
<td>2520</td>
</tr>
<tr>
<td>Creation and sustained management of 5 animal production intensification zones (APIZ) in five regions of the country</td>
<td>300</td>
<td>119,000,000</td>
<td>5 APIZ’s</td>
<td>142,000</td>
<td>838</td>
</tr>
<tr>
<td><strong>Biomass energy sector</strong></td>
<td>1,220</td>
<td>87,696,000</td>
<td></td>
<td>3,600,000</td>
<td>24.4</td>
</tr>
<tr>
<td>Production and distribution of improved cook stoves in urban and semi-urban areas</td>
<td>610</td>
<td>12,096,000</td>
<td>540,000 household cook stoves over 15 years</td>
<td>2,700,000</td>
<td>4.5</td>
</tr>
<tr>
<td>Promotion of dolo cook stoves with the aim of reaching 97% of dolo brewers at the 2030 horizon</td>
<td>610</td>
<td>75,600,000</td>
<td>180,000 dolo cook stoves over 15 years</td>
<td>900,000</td>
<td>84</td>
</tr>
<tr>
<td><strong>Forests and changes in land use sector</strong></td>
<td>15,700</td>
<td>957,600,000</td>
<td></td>
<td>13,800,000</td>
<td>69,4</td>
</tr>
<tr>
<td>Rehabilitation and protection of 30,000 ha of stream banks</td>
<td>60</td>
<td>12,600,000</td>
<td>30,000 ha</td>
<td>1,200,000</td>
<td>10.5</td>
</tr>
<tr>
<td>Creation and classification of 900,000 ha of biological diversity conservation spaces with a regional focus in 12 regions or 180 communes</td>
<td>9,360</td>
<td>504,000,000</td>
<td>900,000 ha</td>
<td>8,400,000</td>
<td>60</td>
</tr>
<tr>
<td>Audit of the development plans of all classified or protected forests for the purpose of updating them</td>
<td>4,680</td>
<td>252,000,000</td>
<td>450,000 ha</td>
<td>1,200,000</td>
<td>210</td>
</tr>
<tr>
<td>Completion of 800,000 ha of assisted natural regeneration (ANR) in 200 rural communes</td>
<td>1,600</td>
<td>134,400,000</td>
<td>800,000 ha</td>
<td>3,000,000</td>
<td>44.8</td>
</tr>
<tr>
<td>Participative development of sustainable land management technologies / R&D on climate change adaptation</td>
<td>0</td>
<td>54,600,000</td>
<td>Non-quantified targets</td>
<td>Indefinite</td>
<td></td>
</tr>
<tr>
<td><strong>OTHER VULNERABLE SECTORS (NAP)</strong></td>
<td>7</td>
<td>2,964,103,726</td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td><strong>Housing and urban development sector</strong></td>
<td>6.5</td>
<td>2,918,154,526</td>
<td></td>
<td>16,017,000</td>
<td>182.2</td>
</tr>
<tr>
<td>Mapping and marking of flood-risk zones in settlements of more than 5,000 inhabitants for climate change adaptation</td>
<td>0</td>
<td>167,580,000</td>
<td>399 settlements</td>
<td>11,500,000</td>
<td>14.6</td>
</tr>
<tr>
<td>Flood water management and flood prevention in the 13 regional capitals of Burkina Faso</td>
<td>0</td>
<td>2,646,000,000</td>
<td>2,700 km channels / culverts</td>
<td>2,500,000</td>
<td>1,058</td>
</tr>
<tr>
<td>Restoration and development of the Ouagadougou green belt</td>
<td>6.5</td>
<td>1,176,000</td>
<td>2,100 ha</td>
<td>2,000,000</td>
<td>0.59</td>
</tr>
<tr>
<td>Emphasis on local materials and promotion of wood and metal-free housing as a climate change adaptation in rural and semi-rural areas of Burkina Faso</td>
<td>0</td>
<td>98,828,926</td>
<td>19,152 private dwellings 2,298 community buildings</td>
<td>17,000</td>
<td>5,813</td>
</tr>
<tr>
<td>Energy efficiency in urban and rural housing</td>
<td>0</td>
<td>1,209,600</td>
<td>Gain of 50 Kwh/m2</td>
<td>Indefinite</td>
<td></td>
</tr>
<tr>
<td>R&D on architectural and construction technologies adapted to climate change</td>
<td>0</td>
<td>3,360,000</td>
<td>Non-quantified targets</td>
<td>Indefinite</td>
<td></td>
</tr>
<tr>
<td><strong>Health sector</strong></td>
<td>0</td>
<td>38,329,200</td>
<td></td>
<td>74,000,000</td>
<td>0.52</td>
</tr>
<tr>
<td>Strengthening of capabilities to forecast and respond to phenomena associated with climate change: total of 9 activities</td>
<td>0</td>
<td>4,788,000</td>
<td>Non-quantified targets</td>
<td>18,500,000</td>
<td>0,26</td>
</tr>
<tr>
<td>Development of research on health and climate change</td>
<td>0</td>
<td>1,551,200</td>
<td>Non-quantified targets</td>
<td>18,500,000</td>
<td>0.08</td>
</tr>
<tr>
<td>Strengthening of personnel competencies with respect to diseases sensitive to climate change: training of 1000 specialists</td>
<td>0</td>
<td>23,800,000</td>
<td>1000 trained specialists</td>
<td>18,500,000</td>
<td>1.29</td>
</tr>
<tr>
<td>Strengthening of capabilities to forecast and respond to phenomena associated with climate change: creation of an MT health monitoring centre</td>
<td>0</td>
<td>8,190,000</td>
<td>1 health monitoring centre</td>
<td>18,500,000</td>
<td>0.44</td>
</tr>
<tr>
<td>Early warning for the management of external climate events</td>
<td>0</td>
<td>7,620,000</td>
<td></td>
<td>37,000,000</td>
<td>0.21</td>
</tr>
<tr>
<td>Transfer of technologies for climatic, meteorological and environmental monitoring</td>
<td>0</td>
<td>5,229,400</td>
<td>11 hydro equipped stations; 50 automatic stations; 1 rehabilitated radar; 1 radiosonde instrument’; 1 satellite imagery instrument; 11 trained teams</td>
<td>18,500,000</td>
<td>0.28</td>
</tr>
<tr>
<td>Inclusion of efficient and effective use of hydrometeorological and environmental information in long-term development plansto generate early and seasonal alerts</td>
<td>0</td>
<td>2 390 600</td>
<td>Multiple targets</td>
<td>18 500 000</td>
<td>0.13</td>
</tr>
</tbody>
</table>
<p><strong>List of tables</strong></p>
<ul>
<li>Table 1. Reduction of emissions and associated investment costs under the mitigation scenarios</li>
<li>Table 2. Types of GHG emissions by sectoral trends</li>
<li>Table 3. Reference situation for GHG emissions</li>
<li>Table 4. Overall trend evaluation of GHG status from 2007 to 2030</li>
<li>Table 5. Change in emissions (BaU) and percentage of reduction by scenario</li>
<li>Table 6. Breakdown of GHG reductions (GgCO<sub>2</sub> eq. and %) in the unconditional scenario compared to the current trend scenario</li>
<li>Table 7. Breakdown of GHG reductions (GgCO<sub>2</sub> eq. and %)in the conditional scenario compared to the current trend scenario</li>
<li>Table 8. Priority actions within the framework of adaptation projects.</li>
<li>Table 9. Adaptation actions in the AFOLU sectors</li>
<li>Table 10. Adaptation actions in other vulnerable sectors</li>
<li>Table 11. Analytical criteria and prioritisation of INDC projects</li>
<li>Table 12. Investment and implementation costs of conditional projects within the INDC (in US$)</li>
<li>Table 13. Classification of all projects of the Adaptation Scenario by order of priority for implementation</li>
</ul>
<p><strong>List of figures</strong></p>
<ul>
<li>Figure 1. Illustration of GHG emissions trends in different scenarios</li>
<li>Figure 2. Analytical criteria for INDC projects</li>
<li>Figure 3. Graphic representation of the proportions of Adaptation Scenario projects by sector in investment and implementation costs</li>
</ul>
<p><strong>List of acronyms</strong></p>
<table class="table table-striped table-bordered">
<tbody>
<tr>
<td>COP</td>
<td>Conference of Parties</td>
</tr>
<tr>
<td>INDC</td>
<td>Intended Nationally Determined Contribution</td>
</tr>
<tr>
<td>UNFCCC</td>
<td>United Nations Framework Convention on Climate Change</td>
</tr>
<tr>
<td>APSF</td>
<td>Anti-Poverty Strategic Framework</td>
</tr>
<tr>
<td>GGE</td>
<td>Greenhouse Gas Effect</td>
</tr>
<tr>
<td>HDI</td>
<td>Human Development Index</td>
</tr>
<tr>
<td>INDC</td>
<td>Intended Nationally Determined Contributions</td>
</tr>
<tr>
<td>LAME</td>
<td>Laboratoire d’Analyse Mathématique des Equations</td>
</tr>
<tr>
<td>UNO</td>
<td>United Nations Organisation</td>
</tr>
<tr>
<td>NAPA</td>
<td>National Adaptation Program of Action</td>
</tr>
<tr>
<td>GDP</td>
<td>Gross Domestic Product</td>
</tr>
<tr>
<td>NAP</td>
<td>National Adaptation Plan</td>
</tr>
<tr>
<td>NRSP</td>
<td>National Rural Sector Program</td>
</tr>
<tr>
<td>SAGSD</td>
<td>Strategy for Accelerated Growth and Sustainable Development</td>
</tr>
<tr>
<td>SP/CONEDD</td>
<td>Permanent Secretariat of the National Environment and Sustainable Development Council</td>
</tr>
<tr>
<td>TOR</td>
<td>Terms of Reference</td>
</tr>
</tbody>
</table>
<hr class="footnotes-sep">
<section class="footnotes">
<ol class="footnotes-list">
<li id="fn1" class="footnote-item"><p>According to the options for a national sustainable development policy, the CONEDD will evolve into a National Council for Sustainable Development (NCSD). <a href="#fnref1" class="footnote-backref">↩</a></p>
</li>
<li id="fn2" class="footnote-item"><p>Each project will have within it a follow-up and evaluation mechanism using tools that are harmonised (and if necessary standardised) with the other INDC projects. <a href="#fnref2" class="footnote-backref">↩</a></p>
</li>
</ol>
</section>
</body></html>
|