Lecture 01 : intro, inputs, numpy, pandas

1. Inputs: CSV / Text

We will start by ingesting plain text.


In [1]:
from __future__ import print_function
import csv

In [2]:
my_reader = csv.DictReader(open('data/eu_revolving_loans.csv', 'r'))

Let's just print out line by line to see what we are reading in:


In [3]:
for line in my_reader:
    print(line)


{None: ['MIR.M.AT.B.A2Z.A.R.A.2250.EUR.N', 'MIR.M.BE.B.A2Z.A.R.A.2250.EUR.N', 'MIR.M.CY.B.A2Z.A.R.A.2250.EUR.N', 'MIR.M.DE.B.A2Z.A.R.A.2250.EUR.N', 'MIR.M.EE.B.A2Z.A.R.A.2250.EUR.N', 'MIR.M.ES.B.A2Z.A.R.A.2250.EUR.N', 'MIR.M.FI.B.A2Z.A.R.A.2250.EUR.N', 'MIR.M.FR.B.A2Z.A.R.A.2250.EUR.N', 'MIR.M.GR.B.A2Z.A.R.A.2250.EUR.N', 'MIR.M.IE.B.A2Z.A.R.A.2250.EUR.N', 'MIR.M.IT.B.A2Z.A.R.A.2250.EUR.N', 'MIR.M.LT.B.A2Z.A.R.A.2250.EUR.N', 'MIR.M.LU.B.A2Z.A.R.A.2250.EUR.N', 'MIR.M.LV.B.A2Z.A.R.A.2250.EUR.N', 'MIR.M.MT.B.A2Z.A.R.A.2250.EUR.N', 'MIR.M.NL.B.A2Z.A.R.A.2250.EUR.N', 'MIR.M.PT.B.A2Z.A.R.A.2250.EUR.N', 'MIR.M.SI.B.A2Z.A.R.A.2250.EUR.N', 'MIR.M.SK.B.A2Z.A.R.A.2250.EUR.N', 'MIR.M.U2.B.A2Z.A.R.A.2250.EUR.N'], 'Data Source in SDW: null': ''}
{None: ['Austria', 'Belgium', 'Cyprus', 'Germany', 'Estonia', 'Spain', 'Finland', 'France', 'Greece (GR)', 'Ireland', 'Italy', 'Lithuania', 'Luxembourg', 'Latvia', 'Malta', 'Netherlands', 'Portugal', 'Slovenia', 'Slovakia', 'Euro area (changing composition)'], 'Data Source in SDW: null': ''}
{None: ['End of period (E)', 'End of period (E)', 'End of period (E)', 'End of period (E)', 'End of period (E)', 'End of period (E)', 'End of period (E)', 'End of period (E)', 'End of period (E)', 'End of period (E)', 'End of period (E)', 'End of period (E)', 'End of period (E)', 'End of period (E)', 'End of period (E)', 'End of period (E)', 'End of period (E)', 'End of period (E)', 'End of period (E)', 'Average of observations through period (A)'], 'Data Source in SDW: null': 'Collection:'}
{None: ['[Percent per annum ]', '[Percent per annum ]', '[Percent per annum ]', '[Percent per annum ]', '[Percent per annum ]', '[Percent per annum ]', '[Percent per annum ]', '[Percent per annum ]', '[Percent per annum ]', '[Percent per annum ]', '[Percent per annum ]', '[Percent per annum ]', '[Percent per annum ]', '[Percent per annum ]', '[Percent per annum ]', '[Percent per annum ]', '[Percent per annum ]', '[Percent per annum ]', '[Percent per annum ]', '[Percent per annum ]'], 'Data Source in SDW: null': 'Period\\Unit:'}
{None: ['4.20', '8.09', '6.13', '8.85', '16.38', '11.03', '6.41', '6.00', '8.18', '10.40', '6.07', '9.60', '7.24', '21.58', '6.79', '5.83', '15.28', '6.80', '13.86', '7.36'], 'Data Source in SDW: null': '2016Feb'}
{None: ['4.17', '8.05', '6.13', '8.83', '16.41', '10.85', '6.44', '6.10', '8.19', '9.91', '6.07', '9.58', '7.10', '21.51', '6.82', '5.81', '15.41', '6.79', '13.97', '7.35'], 'Data Source in SDW: null': '2016Jan'}
{None: ['3.99', '8.21', '6.16', '8.69', '16.32', '10.49', '6.40', '5.86', '8.22', '10.37', '5.91', '9.45', '6.96', '21.59', '6.84', '5.88', '15.16', '6.65', '13.72', '7.23'], 'Data Source in SDW: null': '2015Dec'}
{None: ['4.09', '8.20', '6.15', '8.82', '16.37', '10.73', '6.49', '6.18', '8.30', '9.11', '6.12', '9.53', '6.88', '21.67', '6.78', '5.97', '15.32', '6.79', '14.10', '7.37'], 'Data Source in SDW: null': '2015Nov'}
{None: ['4.10', '8.40', '6.16', '8.89', '16.42', '10.86', '6.52', '6.15', '8.34', '9.29', '6.11', '9.40', '7.08', '21.74', '6.78', '5.93', '15.55', '6.74', '14.12', '7.41'], 'Data Source in SDW: null': '2015Oct'}
{None: ['4.32', '8.58', '6.17', '8.95', '16.44', '10.87', '6.52', '6.41', '8.53', '9.38', '6.14', '9.33', '7.07', '21.75', '6.79', '5.97', '15.51', '6.81', '14.21', '7.53'], 'Data Source in SDW: null': '2015Sep'}
{None: ['4.28', '8.27', '6.36', '8.91', '16.40', '10.81', '6.47', '6.39', '8.59', '8.91', '6.12', '9.39', '7.13', '21.80', '6.60', '6.05', '15.21', '6.79', '14.26', '7.49'], 'Data Source in SDW: null': '2015Aug'}
{None: ['4.07', '8.23', '6.38', '8.90', '16.37', '10.74', '6.44', '6.25', '8.45', '8.83', '6.19', '9.43', '7.26', '21.82', '6.78', '5.92', '15.42', '6.71', '14.21', '7.44'], 'Data Source in SDW: null': '2015Jul'}
{None: ['4.29', '8.17', '6.42', '9.01', '16.36', '10.83', '6.47', '6.57', '8.65', '8.54', '6.27', '9.50', '7.33', '21.92', '6.78', '5.87', '15.47', '6.76', '14.15', '7.58'], 'Data Source in SDW: null': '2015Jun'}
{None: ['4.32', '8.12', '6.46', '8.99', '16.33', '11.07', '6.49', '6.72', '8.57', '8.39', '6.28', '9.61', '7.32', '21.81', '6.76', '5.90', '15.81', '6.80', '14.14', '7.62'], 'Data Source in SDW: null': '2015May'}
{None: ['4.21', '8.24', '6.40', '9.10', '16.31', '11.09', '6.67', '6.58', '8.57', '8.32', '6.36', '9.64', '7.33', '21.86', '6.78', '5.99', '15.73', '6.82', '13.97', '7.64'], 'Data Source in SDW: null': '2015Apr'}
{None: ['4.43', '8.31', '6.23', '9.21', '16.32', '11.21', '6.57', '6.89', '8.57', '8.41', '6.37', '9.32', '7.59', '21.56', '6.77', '6.05', '15.66', '6.86', '13.89', '7.75'], 'Data Source in SDW: null': '2015Mar'}
{None: ['4.26', '8.09', '7.14', '9.22', '16.32', '11.44', '6.69', '6.89', '8.62', '8.35', '6.57', '9.31', '8.45', '21.55', '6.75', '5.97', '15.80', '6.90', '13.96', '7.80'], 'Data Source in SDW: null': '2015Feb'}
{None: ['4.24', '8.31', '7.18', '9.22', '16.32', '11.13', '6.67', '6.87', '8.58', '7.50', '6.57', '9.27', '8.22', '21.61', '6.76', '6.04', '15.83', '6.90', '14.00', '7.76'], 'Data Source in SDW: null': '2015Jan'}
{None: ['4.20', '8.37', '7.20', '9.20', '16.26', '10.92', '6.63', '6.65', '8.58', '7.71', '6.40', '3.92', '8.68', '21.45', '6.77', '6.01', '15.51', '6.87', '13.75', '7.64'], 'Data Source in SDW: null': '2014Dec'}
{None: ['4.30', '8.32', '7.19', '9.20', '16.35', '11.01', '6.62', '7.10', '8.66', '7.59', '6.65', '3.86', '7.39', '21.11', '6.73', '6.08', '15.90', '7.01', '13.40', '7.80'], 'Data Source in SDW: null': '2014Nov'}
{None: ['4.30', '8.40', '7.20', '9.27', '16.36', '10.63', '6.60', '6.96', '9.04', '7.34', '6.70', '3.85', '7.34', '21.12', '6.71', '6.07', '15.98', '6.95', '13.57', '7.77'], 'Data Source in SDW: null': '2014Oct'}
{None: ['4.59', '7.72', '7.20', '9.40', '16.39', '10.79', '6.68', '7.22', '9.01', '7.49', '6.83', '3.95', '7.06', '21.37', '6.69', '6.06', '15.78', '6.97', '13.59', '7.90'], 'Data Source in SDW: null': '2014Sep'}
{None: ['4.50', '7.68', '7.24', '9.27', '16.30', '10.80', '6.70', '7.16', '8.60', '7.50', '6.80', '3.95', '7.10', '21.36', '6.72', '5.96', '15.53', '6.96', '13.58', '7.81'], 'Data Source in SDW: null': '2014Aug'}
{None: ['4.52', '7.67', '7.28', '9.37', '16.30', '10.58', '6.67', '6.90', '8.73', '7.49', '6.86', '4.01', '7.04', '21.38', '6.62', '6.00', '15.66', '6.88', '13.45', '7.77'], 'Data Source in SDW: null': '2014Jul'}
{None: ['4.62', '8.04', '7.32', '9.46', '16.36', '10.75', '6.73', '7.16', '8.86', '7.49', '7.03', '3.71', '7.13', '21.39', '6.69', '5.99', '15.74', '7.03', '13.55', '7.92'], 'Data Source in SDW: null': '2014Jun'}
{None: ['4.54', '8.06', '7.29', '9.35', '16.29', '10.76', '6.83', '7.22', '8.97', '7.43', '7.01', '3.64', '7.02', '21.43', '6.72', '6.06', '15.90', '7.00', '13.61', '7.92'], 'Data Source in SDW: null': '2014May'}
{None: ['4.59', '8.70', '7.31', '9.25', '16.38', '10.76', '6.83', '7.36', '9.03', '7.48', '7.06', '3.70', '7.25', '21.35', '6.72', '6.12', '15.72', '7.06', '13.69', '7.96'], 'Data Source in SDW: null': '2014Apr'}
{None: ['4.79', '8.74', '7.31', '9.46', '16.39', '10.73', '6.85', '7.51', '9.00', '7.47', '7.12', '3.67', '7.20', '21.30', '6.79', '6.10', '15.89', '7.07', '13.66', '8.06'], 'Data Source in SDW: null': '2014Mar'}
{None: ['4.58', '8.84', '7.31', '9.41', '16.51', '10.83', '6.83', '7.68', '9.06', '7.53', '7.20', '3.66', '7.47', '21.38', '6.80', '6.07', '16.04', '7.16', '13.64', '8.11'], 'Data Source in SDW: null': '2014Feb'}
{None: ['4.57', '8.95', '7.33', '9.45', '16.52', '10.50', '6.79', '7.48', '9.09', '7.57', '7.18', '3.66', '7.12', '21.66', '6.82', '6.11', '15.96', '7.12', '13.72', '8.04'], 'Data Source in SDW: null': '2014Jan'}
{None: ['4.50', '8.97', '7.23', '9.42', '16.47', '10.04', '6.76', '7.33', '9.12', '7.61', '6.97', '3.69', '7.56', '8.56', '6.86', '6.08', '15.54', '7.20', '13.65', '7.92'], 'Data Source in SDW: null': '2013Dec'}
{None: ['4.44', '8.94', '7.32', '9.44', '16.53', '10.61', '6.76', '7.57', '9.07', '7.56', '7.08', '3.64', '7.10', '8.62', '6.83', '6.17', '15.79', '7.30', '13.72', '8.02'], 'Data Source in SDW: null': '2013Nov'}
{None: ['4.62', '9.01', '7.80', '9.53', '16.53', '10.62', '6.73', '7.41', '9.31', '7.46', '7.19', '3.55', '7.21', '8.78', '6.88', '6.23', '16.03', '7.25', '13.81', '8.08'], 'Data Source in SDW: null': '2013Oct'}
{None: ['4.85', '8.98', '7.81', '9.61', '16.54', '10.32', '6.76', '7.64', '9.26', '7.58', '7.19', '3.57', '7.00', '9.45', '6.87', '6.17', '16.01', '7.28', '13.88', '8.13'], 'Data Source in SDW: null': '2013Sep'}
{None: ['4.59', '9.12', '7.84', '9.56', '16.50', '10.35', '6.69', '7.47', '9.40', '7.48', '7.26', '3.53', '6.85', '8.68', '6.88', '6.17', '15.48', '7.23', '13.84', '8.08'], 'Data Source in SDW: null': '2013Aug'}
{None: ['4.77', '9.11', '7.75', '9.62', '16.50', '10.03', '6.66', '7.18', '9.54', '7.52', '7.30', '3.52', '6.81', '8.79', '6.87', '6.14', '15.41', '7.17', '13.77', '8.02'], 'Data Source in SDW: null': '2013Jul'}
{None: ['4.81', '9.20', '7.77', '9.63', '16.43', '10.41', '6.66', '7.73', '9.61', '7.51', '7.37', '3.53', '6.81', '8.75', '6.85', '6.20', '15.56', '7.41', '13.71', '8.21'], 'Data Source in SDW: null': '2013Jun'}
{None: ['4.68', '9.18', '7.79', '9.66', '16.11', '10.26', '6.67', '7.58', '9.78', '7.48', '7.41', '3.56', '6.82', '8.73', '6.86', '6.29', '15.55', '7.42', '13.71', '8.18'], 'Data Source in SDW: null': '2013May'}
{None: ['4.73', '9.05', '7.93', '9.67', '16.15', '10.44', '6.68', '7.51', '9.84', '7.41', '7.48', '3.83', '6.77', '8.81', '6.87', '6.28', '15.51', '7.45', '13.84', '8.20'], 'Data Source in SDW: null': '2013Apr'}
{None: ['4.78', '9.14', '8.02', '9.68', '16.19', '10.25', '6.42', '7.92', '9.88', '9.08', '7.48', '4.08', '6.70', '8.69', '6.84', '6.52', '15.55', '7.50', '13.81', '8.33'], 'Data Source in SDW: null': '2013Mar'}
{None: ['4.88', '9.08', '7.76', '9.67', '16.21', '10.20', '6.44', '8.01', '9.96', '9.04', '7.55', '3.79', '6.48', '8.66', '6.87', '6.52', '15.50', '7.52', '13.63', '8.35'], 'Data Source in SDW: null': '2013Feb'}
{None: ['4.89', '9.13', '7.76', '9.72', '16.25', '9.99', '6.41', '7.86', '9.97', '9.07', '7.56', '3.53', '6.57', '8.44', '6.86', '6.55', '15.42', '7.50', '13.66', '8.32'], 'Data Source in SDW: null': '2013Jan'}
{None: ['4.68', '9.18', '7.81', '9.78', '16.25', '9.75', '6.40', '7.91', '10.00', '8.99', '7.31', '3.48', '6.98', '8.10', '6.85', '6.48', '15.11', '7.57', '13.52', '8.26'], 'Data Source in SDW: null': '2012Dec'}
{None: ['4.63', '9.30', '7.79', '9.75', '16.35', '9.96', '6.41', '8.10', '10.11', '8.81', '7.41', '3.55', '6.41', '7.80', '6.84', '6.57', '15.28', '7.70', '13.74', '8.34'], 'Data Source in SDW: null': '2012Nov'}
{None: ['4.91', '9.46', '7.77', '9.87', '16.90', '10.16', '6.43', '8.09', '10.20', '8.93', '7.40', '3.59', '6.56', '7.75', '6.88', '6.60', '15.27', '7.66', '13.85', '8.42'], 'Data Source in SDW: null': '2012Oct'}
{None: ['5.14', '9.48', '7.81', '9.98', '16.81', '10.16', '6.80', '8.25', '10.29', '8.96', '7.42', '3.55', '6.39', '7.84', '6.86', '6.57', '15.16', '7.72', '13.72', '8.50'], 'Data Source in SDW: null': '2012Sep'}
{None: ['4.96', '9.49', '7.80', '9.99', '16.81', '10.02', '6.63', '8.16', '10.40', '9.28', '7.40', '3.80', '6.15', '7.90', '6.85', '6.52', '14.94', '7.68', '13.80', '8.45'], 'Data Source in SDW: null': '2012Aug'}
{None: ['5.09', '9.55', '7.77', '10.02', '16.67', '9.89', '6.70', '8.06', '10.61', '9.37', '7.45', '3.81', '6.24', '7.98', '6.84', '6.49', '14.87', '7.55', '13.73', '8.46'], 'Data Source in SDW: null': '2012Jul'}
{None: ['5.09', '9.55', '7.76', '10.20', '16.80', '10.06', '6.99', '8.37', '10.56', '9.34', '7.49', '3.99', '6.36', '7.95', '6.84', '6.59', '15.02', '7.61', '13.82', '8.62'], 'Data Source in SDW: null': '2012Jun'}
{None: ['5.35', '9.60', '7.64', '10.21', '16.82', '9.85', '6.84', '8.30', '10.64', '9.32', '7.55', '3.99', '6.45', '8.03', '6.83', '6.68', '14.89', '7.58', '13.96', '8.62'], 'Data Source in SDW: null': '2012May'}
{None: ['5.23', '9.68', '7.75', '10.16', '16.86', '10.30', '6.91', '8.21', '10.78', '9.27', '7.53', '4.15', '6.34', '8.18', '6.83', '6.68', '14.90', '7.66', '13.94', '8.64'], 'Data Source in SDW: null': '2012Apr'}
{None: ['5.45', '9.66', '7.76', '10.31', '16.85', '10.08', '7.20', '8.61', '10.84', '9.99', '7.57', '4.10', '6.32', '8.24', '6.75', '6.71', '14.71', '7.66', '13.73', '8.77'], 'Data Source in SDW: null': '2012Mar'}
{None: ['5.52', '9.72', '7.86', '10.36', '16.83', '10.12', '7.14', '8.76', '10.96', '10.00', '7.57', '4.32', '6.30', '8.45', '6.81', '6.69', '13.29', '7.66', '13.86', '8.80'], 'Data Source in SDW: null': '2012Feb'}
{None: ['5.52', '9.61', '7.89', '10.39', '16.88', '9.90', '7.22', '8.97', '11.05', '9.87', '7.60', '4.42', '6.96', '8.61', '6.84', '6.70', '13.22', '7.62', '13.94', '8.84'], 'Data Source in SDW: null': '2012Jan'}
{None: ['5.34', '9.63', '7.94', '10.40', '16.86', '9.65', '7.49', '8.74', '11.23', '12.61', '7.44', '4.54', '7.54', '9.04', '7.01', '6.72', '12.99', '7.64', '13.86', '8.81'], 'Data Source in SDW: null': '2011Dec'}
{None: ['5.47', '9.47', '7.88', '10.41', '16.62', '9.86', '7.35', '9.01', '11.30', '10.02', '7.53', '4.68', '7.04', '8.55', '6.84', '6.77', '13.07', '7.65', '13.97', '8.85'], 'Data Source in SDW: null': '2011Nov'}
{None: ['5.54', '9.58', '7.90', '10.49', '16.65', '9.97', '7.36', '9.01', '11.34', '10.23', '7.52', '4.81', '7.44', '8.96', '6.85', '6.74', '13.10', '7.66', '14.04', '8.90'], 'Data Source in SDW: null': '2011Oct'}
{None: ['5.60', '9.53', '7.91', '10.45', '16.51', '9.79', '7.37', '9.10', '11.48', '10.65', '7.38', '4.81', '7.17', '8.82', '6.85', '6.74', '12.85', '7.64', '14.07', '8.88'], 'Data Source in SDW: null': '2011Sep'}
{None: ['5.68', '9.47', '7.90', '10.43', '16.57', '9.55', '7.30', '9.02', '11.47', '10.79', '7.28', '4.94', '7.33', '8.71', '6.85', '6.68', '12.73', '7.59', '14.09', '8.81'], 'Data Source in SDW: null': '2011Aug'}
{None: ['5.61', '9.55', '7.91', '10.39', '16.55', '9.35', '7.46', '9.04', '11.33', '10.75', '7.21', '4.86', '7.16', '8.69', '6.84', '6.58', '12.40', '7.56', '13.95', '8.76'], 'Data Source in SDW: null': '2011Jul'}
{None: ['5.52', '9.50', '7.89', '10.36', '16.61', '9.32', '7.12', '9.16', '11.21', '10.82', '7.15', '4.85', '6.81', '8.65', '6.82', '6.35', '12.34', '7.42', '13.78', '8.72'], 'Data Source in SDW: null': '2011Jun'}
{None: ['5.54', '9.44', '7.67', '10.34', '16.74', '9.29', '7.09', '9.02', '11.20', '10.67', '7.15', '4.55', '6.90', '9.94', '6.78', '6.37', '12.48', '7.33', '13.97', '8.68'], 'Data Source in SDW: null': '2011May'}
{None: ['5.42', '9.44', '7.65', '10.27', '16.71', '9.27', '7.26', '9.12', '11.16', '10.72', '7.14', '4.96', '7.43', '9.92', '6.79', '6.40', '12.03', '7.40', '14.04', '8.80'], 'Data Source in SDW: null': '2011Apr'}
{None: ['5.45', '9.33', '7.63', '10.29', '16.71', '9.18', '7.01', '9.24', '11.09', '10.73', '6.98', '4.71', '7.23', '9.99', '6.78', '6.44', '11.98', '7.43', '14.14', '8.67'], 'Data Source in SDW: null': '2011Mar'}
{None: ['5.46', '9.62', '7.68', '10.31', '16.81', '8.93', '7.01', '9.34', '11.14', '10.68', '7.05', '4.81', '7.14', '9.94', '6.78', '6.38', '12.00', '7.51', '14.31', '8.67'], 'Data Source in SDW: null': '2011Feb'}
{None: ['5.47', '9.53', '7.69', '10.24', '16.82', '8.59', '6.97', '9.32', '11.14', '10.58', '7.04', '4.86', '6.99', '10.09', '6.79', '6.36', '12.10', '7.53', '14.48', '8.61'], 'Data Source in SDW: null': '2011Jan'}
{None: ['5.24', '', '7.76', '10.19', '8.35', '8.38', '6.94', '9.42', '11.08', '10.62', '6.90', '4.63', '7.44', '9.99', '6.78', '6.43', '11.53', '7.32', '14.37', '8.55'], 'Data Source in SDW: null': '2010Dec'}
{None: ['5.30', '', '7.67', '10.07', '8.17', '8.07', '6.88', '9.56', '11.12', '10.28', '7.07', '4.45', '7.07', '9.87', '6.78', '6.49', '11.74', '7.33', '14.43', '8.54'], 'Data Source in SDW: null': '2010Nov'}
{None: ['5.35', '', '7.68', '10.15', '8.13', '8.38', '7.06', '9.55', '11.08', '10.40', '7.17', '4.48', '7.22', '9.55', '6.74', '6.46', '11.69', '7.30', '14.45', '8.63'], 'Data Source in SDW: null': '2010Oct'}
{None: ['5.44', '', '7.53', '10.30', '8.10', '8.69', '6.88', '9.66', '11.12', '10.19', '7.13', '4.41', '6.85', '9.85', '6.74', '6.47', '11.47', '7.16', '14.49', '8.70'], 'Data Source in SDW: null': '2010Sep'}
{None: ['5.47', '', '7.54', '10.19', '8.02', '8.60', '6.81', '9.49', '11.06', '9.95', '7.11', '4.54', '7.19', '9.82', '6.71', '6.44', '11.54', '7.27', '14.52', '8.64'], 'Data Source in SDW: null': '2010Aug'}
{None: ['5.31', '', '7.51', '10.12', '8.03', '8.72', '6.70', '9.45', '11.16', '10.35', '7.10', '4.59', '6.97', '8.83', '6.70', '6.46', '11.54', '7.18', '14.49', '8.65'], 'Data Source in SDW: null': '2010Jul'}
{None: ['5.55', '', '7.47', '10.29', '8.13', '8.71', '6.59', '9.64', '11.05', '9.95', '7.14', '4.81', '6.83', '8.46', '6.55', '6.62', '11.70', '7.16', '14.51', '8.74'], 'Data Source in SDW: null': '2010Jun'}
{None: ['5.91', '9.64', '7.21', '10.38', '8.39', '10.65', '7.65', '9.84', '13.92', '12.90', '6.43', '6.61', '4.03', '9.12', '6.57', '5.62', '11.34', '8.60', '14.51', '8.79'], 'Data Source in SDW: null': '2010May'}
{None: ['5.88', '9.65', '7.25', '10.34', '7.88', '11.60', '7.74', '9.80', '13.94', '12.93', '6.46', '6.47', '4.09', '4.59', '6.54', '5.72', '11.29', '8.61', '14.51', '8.78'], 'Data Source in SDW: null': '2010Apr'}
{None: ['6.03', '9.65', '7.25', '10.36', '7.60', '11.48', '7.71', '9.90', '13.84', '12.66', '6.51', '6.39', '4.10', '4.71', '6.45', '5.81', '11.24', '8.64', '14.60', '8.83'], 'Data Source in SDW: null': '2010Mar'}
{None: ['5.96', '9.74', '7.12', '10.28', '7.52', '11.96', '7.73', '10.61', '14.14', '12.84', '6.57', '6.31', '4.11', '4.45', '6.44', '5.67', '11.24', '8.61', '14.70', '9.03'], 'Data Source in SDW: null': '2010Feb'}
{None: ['5.97', '9.81', '7.13', '10.33', '7.26', '11.62', '7.79', '10.15', '14.05', '12.60', '6.64', '6.41', '3.66', '5.06', '6.43', '5.76', '10.88', '8.63', '14.62', '8.95'], 'Data Source in SDW: null': '2010Jan'}
{None: ['5.90', '9.81', '7.18', '10.38', '7.12', '12.34', '7.83', '10.28', '14.08', '12.59', '6.60', '6.31', '3.34', '5.64', '6.45', '5.80', '10.64', '8.64', '14.35', '9.01'], 'Data Source in SDW: null': '2009Dec'}
{None: ['6.04', '9.91', '7.23', '10.36', '6.92', '11.64', '7.82', '10.59', '14.22', '12.65', '6.69', '6.41', '3.10', '7.26', '6.40', '5.89', '10.98', '8.65', '14.34', '9.09'], 'Data Source in SDW: null': '2009Nov'}
{None: ['6.12', '10.24', '7.30', '10.53', '6.66', '11.87', '7.86', '10.53', '14.20', '12.71', '6.77', '6.45', '3.41', '6.12', '6.38', '5.90', '11.07', '8.67', '14.31', '9.17'], 'Data Source in SDW: null': '2009Oct'}
{None: ['6.36', '10.21', '7.31', '10.61', '6.73', '11.40', '7.98', '10.68', '14.31', '12.64', '6.81', '6.44', '3.63', '5.95', '6.49', '5.93', '11.42', '8.66', '13.83', '9.27'], 'Data Source in SDW: null': '2009Sep'}
{None: ['6.36', '10.18', '7.47', '10.58', '6.65', '11.64', '8.13', '10.74', '14.33', '12.51', '6.80', '6.34', '3.88', '7.66', '6.43', '5.91', '11.18', '8.74', '13.74', '9.28'], 'Data Source in SDW: null': '2009Aug'}
{None: ['6.34', '10.21', '7.44', '10.58', '6.79', '12.03', '8.28', '10.73', '14.44', '12.40', '6.85', '6.15', '3.73', '7.88', '6.43', '5.81', '11.42', '8.74', '14.17', '9.33'], 'Data Source in SDW: null': '2009Jul'}
{None: ['6.61', '10.25', '7.48', '10.85', '6.98', '11.61', '8.52', '10.99', '14.32', '12.36', '7.12', '6.24', '3.81', '8.06', '6.41', '6.19', '11.44', '10.02', '14.43', '9.56'], 'Data Source in SDW: null': '2009Jun'}
{None: ['6.57', '10.86', '7.54', '10.87', '7.14', '12.14', '8.80', '11.00', '14.31', '12.42', '7.28', '7.00', '3.71', '8.52', '6.16', '6.24', '11.69', '10.09', '14.34', '9.64'], 'Data Source in SDW: null': '2009May'}
{None: ['6.68', '11.19', '7.55', '10.97', '7.08', '13.00', '8.89', '11.06', '14.44', '12.46', '7.36', '6.73', '4.13', '8.87', '6.18', '6.46', '11.59', '10.05', '14.20', '9.73'], 'Data Source in SDW: null': '2009Apr'}
{None: ['7.10', '11.28', '7.60', '11.16', '7.10', '13.78', '9.31', '11.24', '14.46', '12.61', '7.69', '6.91', '4.19', '9.77', '6.19', '6.61', '11.95', '10.05', '14.28', '9.96'], 'Data Source in SDW: null': '2009Mar'}
{None: ['7.18', '11.35', '7.68', '11.19', '7.19', '13.56', '10.02', '11.67', '14.72', '12.87', '7.95', '7.07', '4.29', '9.89', '6.18', '6.62', '12.13', '10.04', '14.17', '10.16'], 'Data Source in SDW: null': '2009Feb'}
{None: ['7.27', '11.41', '7.63', '11.42', '7.34', '13.00', '10.46', '10.98', '14.81', '13.01', '8.24', '7.74', '4.28', '10.38', '6.36', '6.83', '12.48', '10.13', '14.02', '10.15'], 'Data Source in SDW: null': '2009Jan'}
{None: ['7.85', '11.43', '7.43', '11.82', '7.30', '13.43', '11.57', '10.97', '14.83', '13.05', '8.78', '7.87', '5.13', '11.14', '7.16', '7.44', '12.18', '11.13', '5.83', '10.46'], 'Data Source in SDW: null': '2008Dec'}
{None: ['7.93', '11.34', '7.31', '11.88', '7.36', '13.60', '12.33', '11.51', '15.24', '13.67', '9.08', '8.06', '5.37', '11.35', '7.19', '7.70', '12.50', '11.00', '7.45', '10.79'], 'Data Source in SDW: null': '2008Nov'}
{None: ['8.03', '11.42', '7.44', '12.01', '7.36', '13.77', '12.46', '11.35', '15.28', '13.80', '9.14', '7.88', '5.10', '11.77', '7.59', '7.91', '12.57', '11.02', '9.98', '10.83'], 'Data Source in SDW: null': '2008Oct'}
{None: ['8.00', '11.12', '7.43', '11.98', '7.37', '13.52', '12.35', '11.35', '15.15', '13.96', '9.11', '7.80', '5.84', '11.12', '7.99', '7.79', '12.55', '10.97', '7.66', '10.80'], 'Data Source in SDW: null': '2008Sep'}
{None: ['7.92', '11.13', '7.37', '11.94', '7.30', '13.40', '12.24', '11.49', '15.16', '13.67', '9.04', '7.68', '5.36', '9.56', '7.98', '7.44', '12.16', '10.83', '9.71', '10.78'], 'Data Source in SDW: null': '2008Aug'}
{None: ['7.92', '11.30', '7.33', '11.91', '7.27', '13.45', '12.20', '11.17', '14.99', '13.49', '9.03', '7.70', '5.25', '9.84', '7.94', '7.33', '11.94', '10.83', '7.53', '10.66'], 'Data Source in SDW: null': '2008Jul'}
{None: ['7.80', '11.04', '7.05', '11.83', '7.24', '13.28', '11.97', '11.39', '14.49', '13.59', '8.98', '7.27', '5.28', '11.04', '7.61', '7.23', '11.90', '10.75', '9.44', '10.63'], 'Data Source in SDW: null': '2008Jun'}
{None: ['7.68', '11.11', '6.84', '11.82', '7.21', '14.06', '11.79', '11.27', '14.48', '13.45', '8.92', '7.31', '5.32', '9.70', '7.62', '7.41', '11.85', '10.81', '7.38', '10.58'], 'Data Source in SDW: null': '2008May'}
{None: ['7.68', '11.17', '6.83', '11.81', '7.53', '14.09', '11.74', '11.13', '14.52', '13.47', '8.93', '7.14', '5.35', '10.49', '7.64', '7.36', '11.83', '10.68', '6.96', '10.54'], 'Data Source in SDW: null': '2008Apr'}
{None: ['7.82', '11.16', '6.65', '11.84', '7.37', '13.81', '11.55', '11.10', '14.46', '13.43', '8.86', '7.11', '5.42', '9.31', '7.65', '7.36', '11.78', '10.72', '7.32', '10.52'], 'Data Source in SDW: null': '2008Mar'}
{None: ['7.71', '11.21', '6.60', '11.81', '7.38', '13.57', '11.64', '10.87', '14.48', '13.64', '8.88', '7.04', '5.07', '9.22', '7.65', '7.32', '11.86', '10.77', '7.36', '10.45'], 'Data Source in SDW: null': '2008Feb'}
{None: ['7.79', '11.19', '6.61', '11.87', '7.72', '13.72', '11.78', '10.80', '14.48', '13.63', '8.93', '7.10', '5.39', '10.14', '7.69', '7.33', '11.66', '10.74', '7.16', '10.45'], 'Data Source in SDW: null': '2008Jan'}
{None: ['7.73', '11.09', '6.54', '11.88', '7.88', '13.56', '11.79', '10.76', '14.47', '13.51', '8.85', '6.92', '5.41', '9.98', '6.64', '7.43', '11.57', '10.77', '-', '10.45'], 'Data Source in SDW: null': '2007Dec'}
{None: ['7.67', '10.95', '6.83', '11.76', '7.69', '13.34', '11.77', '11.19', '14.50', '13.58', '8.88', '6.77', '5.06', '10.68', '6.44', '7.37', '11.72', '10.81', '-', '10.50'], 'Data Source in SDW: null': '2007Nov'}
{None: ['7.78', '10.84', '6.83', '11.90', '7.76', '13.39', '11.82', '11.38', '14.13', '13.46', '8.94', '6.82', '5.15', '10.18', '6.00', '7.38', '11.89', '10.78', '-', '10.64'], 'Data Source in SDW: null': '2007Oct'}
{None: ['7.68', '10.72', '6.83', '11.94', '7.08', '13.43', '11.63', '11.12', '14.14', '13.46', '8.83', '6.87', '5.34', '10.01', '6.73', '7.38', '11.78', '10.79', '-', '10.54'], 'Data Source in SDW: null': '2007Sep'}
{None: ['7.55', '10.74', '6.84', '11.85', '7.21', '13.27', '11.39', '11.51', '14.15', '13.50', '8.72', '6.96', '5.19', '9.65', '-', '7.24', '11.48', '10.76', '-', '10.56'], 'Data Source in SDW: null': '2007Aug'}
{None: ['7.57', '10.66', '6.84', '11.76', '7.21', '13.49', '11.33', '11.38', '14.12', '13.52', '8.72', '7.16', '5.25', '9.24', '-', '7.06', '11.65', '10.74', '-', '10.50'], 'Data Source in SDW: null': '2007Jul'}
{None: ['7.48', '10.60', '6.84', '11.66', '7.16', '13.28', '11.23', '10.94', '14.09', '13.54', '8.65', '7.32', '5.24', '9.27', '8.01', '7.03', '11.81', '10.74', '-', '10.39'], 'Data Source in SDW: null': '2007Jun'}
{None: ['7.38', '10.39', '6.84', '11.59', '6.98', '13.03', '11.12', '10.83', '13.92', '13.51', '8.72', '7.19', '5.07', '9.31', '-', '7.10', '11.52', '10.75', '-', '10.33'], 'Data Source in SDW: null': '2007May'}
{None: ['7.39', '10.43', '6.84', '11.52', '7.11', '13.21', '11.02', '10.74', '13.97', '13.33', '8.71', '7.16', '5.30', '9.11', '-', '7.20', '11.94', '10.74', '-', '10.30'], 'Data Source in SDW: null': '2007Apr'}
{None: ['7.30', '10.38', '6.85', '11.47', '6.98', '13.01', '10.94', '10.74', '13.88', '13.40', '8.65', '7.51', '5.48', '8.63', '7.04', '6.98', '11.33', '10.82', '-', '10.22'], 'Data Source in SDW: null': '2007Mar'}
{None: ['7.24', '10.29', '6.85', '11.36', '7.10', '12.72', '10.87', '11.44', '13.85', '13.41', '8.66', '7.49', '5.17', '8.45', '', '6.84', '11.53', '10.82', '-', '10.33'], 'Data Source in SDW: null': '2007Feb'}
{None: ['7.27', '10.53', '6.85', '11.40', '7.42', '12.74', '10.82', '10.74', '13.87', '13.29', '8.65', '6.94', '5.25', '8.28', '', '6.89', '10.34', '10.85', '-', '10.15'], 'Data Source in SDW: null': '2007Jan'}
{None: ['7.09', '10.62', '6.85', '11.27', '7.03', '12.18', '10.66', '10.49', '13.80', '13.39', '8.47', '7.38', '5.15', '7.96', '', '6.82', '10.56', '5.05', '-', '10.03'], 'Data Source in SDW: null': '2006Dec'}
{None: ['7.07', '10.60', '6.84', '11.02', '6.79', '11.93', '10.49', '10.97', '13.81', '13.14', '8.58', '7.48', '4.97', '7.40', '', '6.69', '11.28', '5.04', '-', '10.08'], 'Data Source in SDW: null': '2006Nov'}
{None: ['7.13', '10.67', '6.84', '11.10', '6.03', '12.50', '10.40', '10.65', '13.72', '13.29', '8.59', '7.51', '4.95', '7.00', '', '6.75', '11.09', '5.01', '-', '10.04'], 'Data Source in SDW: null': '2006Oct'}
{None: ['7.09', '', '6.85', '11.02', '5.99', '12.71', '10.28', '10.98', '13.58', '13.27', '8.54', '7.40', '5.09', '6.54', '', '6.60', '10.82', '4.76', '-', '10.06'], 'Data Source in SDW: null': '2006Sep'}
{None: ['7.11', '', '6.65', '11.00', '5.94', '12.58', '10.06', '10.59', '13.60', '13.22', '8.51', '7.26', '5.89', '6.47', '', '6.57', '9.93', '4.75', '-', '9.93'], 'Data Source in SDW: null': '2006Aug'}
{None: ['7.02', '', '6.65', '10.92', '6.02', '12.55', '9.97', '10.45', '13.41', '13.10', '8.46', '6.70', '5.90', '6.42', '', '6.41', '11.00', '4.77', '-', '9.86'], 'Data Source in SDW: null': '2006Jul'}
{None: ['6.92', '', '6.65', '10.86', '5.99', '12.46', '9.85', '10.50', '13.45', '13.14', '8.43', '6.59', '5.68', '6.29', '', '6.46', '10.88', '4.45', '-', '9.85'], 'Data Source in SDW: null': '2006Jun'}
{None: ['6.89', '', '6.65', '10.77', '6.20', '12.59', '9.72', '10.50', '13.22', '13.07', '8.40', '6.70', '5.49', '6.43', '', '6.34', '10.65', '4.50', '-', '9.78'], 'Data Source in SDW: null': '2006May'}
{None: ['6.84', '', '6.65', '10.61', '5.95', '12.47', '9.66', '10.57', '13.24', '13.13', '8.44', '6.87', '5.38', '6.31', '', '6.42', '10.54', '4.84', '-', '9.77'], 'Data Source in SDW: null': '2006Apr'}
{None: ['6.79', '', '6.65', '10.59', '6.20', '12.47', '9.49', '11.35', '13.22', '13.15', '8.35', '6.42', '5.37', '6.49', '', '6.41', '10.32', '4.53', '-', '9.92'], 'Data Source in SDW: null': '2006Mar'}
{None: ['6.70', '', '6.65', '10.54', '6.42', '12.53', '9.41', '10.33', '13.18', '13.07', '8.27', '6.32', '5.51', '6.38', '', '6.30', '10.70', '4.54', '-', '9.62'], 'Data Source in SDW: null': '2006Feb'}
{None: ['6.72', '', '6.66', '10.63', '6.52', '12.77', '9.37', '10.98', '13.18', '13.00', '8.34', '6.24', '5.74', '6.59', '', '6.36', '10.41', '4.57', '-', '9.81'], 'Data Source in SDW: null': '2006Jan'}
{None: ['6.56', '', '6.66', '10.47', '6.40', '12.92', '9.25', '10.94', '13.07', '13.07', '8.16', '6.37', '5.65', '6.26', '', '6.25', '9.79', '4.23', '-', '9.68'], 'Data Source in SDW: null': '2005Dec'}
{None: ['6.62', '', '6.65', '10.40', '6.29', '12.22', '9.17', '11.16', '13.09', '12.94', '8.19', '6.41', '5.46', '6.56', '', '6.25', '10.15', '4.18', '-', '9.72'], 'Data Source in SDW: null': '2005Nov'}
{None: ['6.68', '', '6.65', '10.53', '8.82', '12.65', '9.15', '10.71', '13.07', '13.02', '8.25', '6.60', '5.49', '6.38', '', '6.29', '9.90', '-', '-', '9.66'], 'Data Source in SDW: null': '2005Oct'}
{None: ['6.70', '', '6.95', '10.42', '6.88', '12.62', '9.15', '10.46', '13.23', '12.97', '8.28', '6.76', '5.40', '6.60', '', '6.41', '9.77', '-', '-', '9.61'], 'Data Source in SDW: null': '2005Sep'}
{None: ['6.69', '', '6.95', '10.40', '7.11', '12.66', '9.12', '10.33', '13.16', '13.02', '8.35', '6.87', '5.38', '5.34', '', '6.44', '9.61', '-', '-', '9.59'], 'Data Source in SDW: null': '2005Aug'}
{None: ['6.69', '', '6.95', '10.35', '6.96', '12.63', '9.13', '10.14', '13.14', '12.99', '8.36', '7.01', '5.45', '7.13', '', '6.35', '9.99', '-', '-', '9.52'], 'Data Source in SDW: null': '2005Jul'}
{None: ['6.83', '', '6.94', '10.38', '7.35', '12.40', '9.13', '10.29', '13.48', '13.10', '8.40', '7.08', '5.52', '7.14', '', '6.36', '9.91', '-', '-', '9.62'], 'Data Source in SDW: null': '2005Jun'}
{None: ['6.82', '', '7.32', '10.46', '7.44', '12.45', '9.09', '10.13', '13.63', '13.05', '8.48', '7.14', '5.45', '7.13', '', '6.43', '10.25', '4.25', '-', '9.65'], 'Data Source in SDW: null': '2005May'}
{None: ['6.81', '', '7.68', '10.37', '7.66', '12.48', '9.13', '10.11', '13.74', '13.05', '8.53', '7.45', '5.25', '7.18', '', '6.52', '9.96', '', '-', '9.63'], 'Data Source in SDW: null': '2005Apr'}
{None: ['6.92', '', '7.68', '10.36', '7.44', '12.47', '9.09', '10.16', '13.51', '13.29', '8.38', '8.35', '5.30', '7.11', '', '6.64', '10.07', '', '-', '9.60'], 'Data Source in SDW: null': '2005Mar'}
{None: ['6.86', '', '7.81', '10.30', '7.52', '12.35', '9.13', '10.26', '13.72', '13.43', '8.56', '', '5.46', '6.90', '', '6.58', '10.17', '', '-', '9.66'], 'Data Source in SDW: null': '2005Feb'}
{None: ['6.89', '', '7.81', '10.32', '7.55', '12.51', '9.20', '10.13', '13.42', '13.41', '8.64', '', '5.11', '7.15', '', '6.58', '9.99', '', '-', '9.63'], 'Data Source in SDW: null': '2005Jan'}
{None: ['6.85', '', '7.81', '10.30', '6.93', '12.08', '9.15', '10.45', '13.41', '13.05', '8.39', '', '5.28', '6.87', '', '6.58', '9.48', '', '-', '9.63'], 'Data Source in SDW: null': '2004Dec'}
{None: ['6.87', '', '7.81', '10.22', '6.68', '11.93', '9.25', '11.03', '13.75', '13.14', '8.55', '', '5.32', '7.27', '', '6.75', '10.12', '', '-', '9.81'], 'Data Source in SDW: null': '2004Nov'}
{None: ['6.96', '', '7.81', '10.26', '6.65', '12.37', '9.22', '10.76', '13.72', '13.33', '8.62', '', '5.45', '7.87', '', '6.76', '9.95', '', '-', '9.79'], 'Data Source in SDW: null': '2004Oct'}
{None: ['7.07', '', '7.81', '10.33', '6.60', '11.97', '9.23', '11.04', '13.62', '13.28', '8.60', '', '5.56', '8.09', '', '6.77', '9.83', '', '-', '9.86'], 'Data Source in SDW: null': '2004Sep'}
{None: ['7.01', '', '7.81', '10.33', '6.88', '11.88', '9.19', '10.65', '13.77', '13.21', '8.64', '', '5.50', '8.12', '', '6.72', '9.82', '', '-', '9.77'], 'Data Source in SDW: null': '2004Aug'}
{None: ['6.97', '', '7.81', '10.35', '6.87', '11.90', '9.21', '10.73', '13.84', '13.05', '8.60', '', '5.49', '9.03', '', '6.72', '9.99', '', '-', '9.80'], 'Data Source in SDW: null': '2004Jul'}
{None: ['7.07', '', '7.81', '10.38', '7.43', '12.36', '9.18', '10.72', '13.89', '13.05', '8.51', '', '5.64', '9.36', '', '6.66', '10.10', '', '-', '9.80'], 'Data Source in SDW: null': '2004Jun'}
{None: ['7.80', '', '7.81', '10.35', '8.00', '12.02', '9.04', '10.43', '13.79', '13.14', '8.49', '', '5.75', '7.48', '', '6.69', '10.30', '', '-', '9.82'], 'Data Source in SDW: null': '2004May'}
{None: ['7.84', '', '6.93', '10.36', '8.46', '12.01', '9.03', '10.67', '14.06', '13.10', '8.56', '', '5.61', '6.78', '', '6.84', '10.59', '', '-', '9.92'], 'Data Source in SDW: null': '2004Apr'}
{None: ['7.92', '', '6.93', '10.38', '13.85', '12.05', '9.03', '10.52', '14.00', '12.76', '8.52', '', '5.71', '7.99', '', '6.79', '10.58', '', '-', '9.86'], 'Data Source in SDW: null': '2004Mar'}
{None: ['7.84', '', '6.93', '10.40', '9.78', '12.46', '9.14', '10.88', '13.97', '12.67', '8.60', '', '5.56', '7.68', '', '6.79', '10.71', '', '-', '9.97'], 'Data Source in SDW: null': '2004Feb'}
{None: ['7.77', '', '6.93', '10.40', '10.78', '12.99', '9.15', '10.74', '13.92', '12.80', '8.57', '', '5.64', '7.77', '', '6.76', '10.49', '', '-', '9.93'], 'Data Source in SDW: null': '2004Jan'}
{None: ['7.75', '', '6.93', '10.48', '10.17', '13.29', '9.10', '10.92', '14.09', '12.88', '8.44', '', '5.49', '', '', '6.69', '9.80', '', '', '9.96'], 'Data Source in SDW: null': '2003Dec'}
{None: ['7.70', '', '6.93', '10.27', '9.32', '12.97', '9.35', '11.06', '14.27', '12.76', '8.53', '', '5.76', '', '', '6.65', '10.11', '', '', '9.95'], 'Data Source in SDW: null': '2003Nov'}
{None: ['7.91', '', '6.93', '10.41', '10.34', '12.73', '9.30', '10.99', '14.22', '12.85', '8.59', '', '5.79', '', '', '6.70', '10.00', '', '', '9.99'], 'Data Source in SDW: null': '2003Oct'}
{None: ['7.99', '', '6.93', '10.47', '10.94', '12.98', '9.28', '11.18', '14.14', '12.69', '8.65', '', '5.86', '', '', '6.68', '9.97', '', '', '10.06'], 'Data Source in SDW: null': '2003Sep'}
{None: ['8.04', '', '6.93', '10.38', '12.54', '12.92', '9.30', '11.12', '14.05', '12.68', '8.66', '', '5.75', '', '', '6.70', '9.81', '', '', '10.02'], 'Data Source in SDW: null': '2003Aug'}
{None: ['8.02', '', '6.93', '10.44', '12.79', '13.20', '9.28', '11.10', '14.24', '12.64', '8.70', '', '5.74', '', '', '6.44', '10.17', '', '', '10.03'], 'Data Source in SDW: null': '2003Jul'}
{None: ['8.20', '', '6.85', '10.65', '10.06', '12.76', '9.39', '11.34', '14.54', '12.94', '8.79', '', '6.00', '', '', '6.52', '10.22', '', '', '10.22'], 'Data Source in SDW: null': '2003Jun'}
{None: ['8.18', '', '6.73', '10.58', '9.89', '13.18', '9.63', '11.40', '14.58', '12.56', '8.87', '', '6.12', '', '', '6.59', '10.08', '', '', '10.23'], 'Data Source in SDW: null': '2003May'}
{None: ['8.24', '', '6.74', '10.71', '9.87', '12.95', '9.62', '11.50', '14.76', '12.65', '8.91', '', '6.07', '', '', '6.74', '10.24', '', '', '10.32'], 'Data Source in SDW: null': '2003Apr'}
{None: ['8.38', '', '7.16', '10.73', '8.92', '12.71', '9.65', '11.57', '14.66', '12.26', '8.96', '', '6.21', '', '', '6.82', '10.23', '', '', '10.35'], 'Data Source in SDW: null': '2003Mar'}
{None: ['8.33', '', '7.16', '10.84', '-', '12.93', '9.74', '11.69', '14.68', '12.62', '9.03', '', '6.11', '', '', '6.76', '10.30', '', '', '10.44'], 'Data Source in SDW: null': '2003Feb'}
{None: ['8.39', '', '7.16', '10.57', '-', '13.11', '9.75', '11.66', '14.71', '12.49', '9.07', '', '6.36', '', '', '6.95', '10.15', '', '', '10.33'], 'Data Source in SDW: null': '2003Jan'}
{None: ['8.41', '10.87', '7.03', '10.92', '-', '12.96', '9.85', '11.65', '14.54', '12.84', '9.13', '', '', '', '', '6.95', '8.10', '', '', '10.54'], 'Data Source in SDW: null': '2002Dec'}
{None: ['8.50', '10.87', '', '10.82', '-', '12.96', '9.96', '11.65', '14.48', '13.06', '9.22', '', '', '', '', '7.94', '8.10', '', '', '10.60'], 'Data Source in SDW: null': '2002Nov'}
{None: ['8.51', '11.22', '', '10.96', '-', '13.02', '10.13', '11.65', '14.51', '13.06', '9.26', '', '', '', '', '7.94', '8.30', '', '', '10.69'], 'Data Source in SDW: null': '2002Oct'}
{None: ['8.54', '11.22', '', '10.97', '-', '13.18', '10.25', '11.95', '14.40', '13.06', '9.22', '', '', '', '', '7.94', '8.10', '', '', '10.71'], 'Data Source in SDW: null': '2002Sep'}
{None: ['8.51', '11.22', '', '10.94', '-', '13.16', '10.18', '11.96', '15.84', '13.06', '9.26', '', '', '', '', '7.94', '8.50', '', '', '10.77'], 'Data Source in SDW: null': '2002Aug'}
{None: ['8.55', '11.22', '', '10.93', '-', '13.21', '10.17', '11.96', '15.87', '13.06', '9.28', '', '', '', '', '7.94', '8.10', '', '', '10.77'], 'Data Source in SDW: null': '2002Jul'}
{None: ['8.50', '11.22', '', '10.96', '-', '13.16', '10.09', '12.05', '15.91', '13.06', '9.24', '', '', '', '', '7.94', '8.40', '', '', '10.80'], 'Data Source in SDW: null': '2002Jun'}
{None: ['8.50', '11.22', '', '10.92', '-', '13.15', '10.13', '12.03', '15.94', '13.06', '9.19', '', '', '', '', '7.94', '8.40', '', '', '10.76'], 'Data Source in SDW: null': '2002May'}
{None: ['8.50', '11.22', '', '10.92', '-', '13.17', '10.15', '12.03', '15.93', '13.06', '9.20', '', '', '', '', '7.94', '7.90', '', '', '10.74'], 'Data Source in SDW: null': '2002Apr'}
{None: ['8.53', '11.22', '', '10.82', '-', '13.10', '10.00', '11.85', '15.88', '13.06', '9.21', '', '', '', '', '7.94', '8.10', '', '', '10.66'], 'Data Source in SDW: null': '2002Mar'}
{None: ['8.54', '11.22', '', '10.87', '-', '13.15', '9.98', '11.85', '15.90', '13.06', '9.24', '', '', '', '', '7.94', '8.50', '', '', '10.69'], 'Data Source in SDW: null': '2002Feb'}
{None: ['8.50', '11.22', '', '10.89', '-', '13.05', '10.11', '11.85', '15.88', '13.06', '9.24', '', '', '', '', '7.94', '8.60', '', '', '10.69'], 'Data Source in SDW: null': '2002Jan'}
{None: ['8.56', '11.22', '', '10.90', '-', '13.27', '10.15', '11.78', '15.39', '13.06', '9.28', '', '', '', '', '7.94', '9.20', '', '', '10.73'], 'Data Source in SDW: null': '2001Dec'}
{None: ['8.61', '11.26', '', '10.96', '-', '13.20', '10.25', '11.77', '15.46', '13.06', '9.51', '', '', '', '', '7.94', '10.00', '', '', '10.81'], 'Data Source in SDW: null': '2001Nov'}
{None: ['8.65', '11.58', '', '11.04', '-', '13.25', '10.48', '11.77', '15.57', '13.51', '9.72', '', '', '', '', '8.93', '10.40', '', '', '10.97'], 'Data Source in SDW: null': '2001Oct'}
{None: ['8.69', '11.77', '', '11.07', '-', '13.22', '10.61', '12.03', '15.83', '13.91', '9.85', '', '', '', '', '8.93', '9.90', '', '', '11.04'], 'Data Source in SDW: null': '2001Sep'}
{None: ['8.81', '12.47', '', '11.19', '-', '13.24', '11.05', '12.03', '15.75', '14.24', '9.89', '', '', '', '', '10.42', '10.20', '', '', '11.23'], 'Data Source in SDW: null': '2001Aug'}
{None: ['8.79', '12.62', '', '11.17', '-', '13.19', '11.12', '12.03', '15.73', '14.24', '9.93', '', '', '', '', '10.42', '10.60', '', '', '11.25'], 'Data Source in SDW: null': '2001Jul'}
{None: ['8.74', '12.62', '', '11.24', '-', '13.15', '11.15', '12.28', '15.76', '14.24', '9.96', '', '', '', '', '10.42', '10.10', '', '', '11.30'], 'Data Source in SDW: null': '2001Jun'}
{None: ['8.83', '12.62', '', '11.12', '-', '13.17', '11.28', '12.29', '16.08', '14.24', '10.03', '', '', '', '', '10.42', '10.80', '', '', '11.29'], 'Data Source in SDW: null': '2001May'}
{None: ['8.83', '12.62', '', '11.24', '-', '13.15', '11.35', '12.29', '16.44', '14.41', '10.05', '', '', '', '', '10.92', '10.70', '', '', '11.37'], 'Data Source in SDW: null': '2001Apr'}
{None: ['8.84', '12.60', '', '11.22', '-', '13.13', '11.43', '12.09', '16.52', '14.41', '10.06', '', '', '', '', '10.92', '10.80', '', '', '11.33'], 'Data Source in SDW: null': '2001Mar'}
{None: ['8.84', '12.62', '', '11.25', '-', '13.13', '11.40', '12.09', '17.09', '14.41', '10.09', '', '', '', '', '10.92', '11.00', '', '', '11.36'], 'Data Source in SDW: null': '2001Feb'}
{None: ['8.87', '12.62', '', '11.33', '-', '13.18', '11.49', '12.09', '17.19', '14.41', '10.13', '', '', '', '', '10.92', '10.70', '', '', '11.39'], 'Data Source in SDW: null': '2001Jan'}
{None: ['8.83', '12.63', '', '11.21', '-', '12.93', '11.39', '11.81', '17.80', '14.41', '10.16', '', '', '', '', '10.92', '10.80', '', '', '11.31'], 'Data Source in SDW: null': '2000Dec'}
{None: ['9.05', '12.63', '', '11.27', '-', '12.93', '11.48', '11.81', '18.00', '14.38', '10.23', '', '', '', '', '10.92', '10.10', '', '', '11.32'], 'Data Source in SDW: null': '2000Nov'}
{None: ['9.12', '12.27', '', '11.17', '-', '12.87', '11.49', '11.81', '18.21', '14.34', '10.20', '', '', '', '', '10.92', '10.10', '', '', '11.25'], 'Data Source in SDW: null': '2000Oct'}
{None: ['9.07', '12.27', '', '10.92', '-', '12.89', '11.35', '11.69', '18.39', '14.00', '9.98', '', '', '', '', '10.42', '9.60', '', '', '11.04'], 'Data Source in SDW: null': '2000Sep'}
{None: ['9.06', '12.27', '', '10.88', '-', '13.01', '11.32', '11.70', '18.59', '13.93', '9.76', '', '', '', '', '9.92', '9.80', '', '', '10.97'], 'Data Source in SDW: null': '2000Aug'}
{None: ['9.00', '11.57', '', '10.86', '-', '13.01', '11.09', '11.70', '18.66', '13.93', '9.78', '', '', '', '', '9.92', '10.30', '', '', '10.95'], 'Data Source in SDW: null': '2000Jul'}
{None: ['9.12', '11.55', '', '10.50', '-', '12.95', '11.03', '11.04', '19.25', '13.57', '9.60', '', '', '', '', '9.92', '9.50', '', '', '10.68'], 'Data Source in SDW: null': '2000Jun'}
{None: ['9.06', '11.55', '', '10.25', '-', '13.02', '10.83', '11.03', '19.35', '13.08', '9.36', '', '', '', '', '8.93', '9.40', '', '', '10.44'], 'Data Source in SDW: null': '2000May'}
{None: ['8.99', '10.82', '', '10.21', '-', '13.01', '10.54', '11.03', '20.46', '13.08', '9.18', '', '', '', '', '8.44', '9.20', '', '', '10.33'], 'Data Source in SDW: null': '2000Apr'}
{None: ['8.90', '10.48', '', '10.02', '-', '12.96', '10.49', '10.92', '20.87', '12.84', '9.05', '', '', '', '', '8.44', '9.10', '', '', '10.16'], 'Data Source in SDW: null': '2000Mar'}
{None: ['8.93', '10.14', '', '9.96', '-', '12.95', '10.35', '10.91', '21.22', '12.53', '8.97', '', '', '', '', '7.94', '9.10', '', '', '10.09'], 'Data Source in SDW: null': '2000Feb'}
{None: ['8.83', '10.01', '', '9.81', '-', '12.96', '10.28', '10.91', '21.62', '12.53', '8.88', '', '', '', '', '7.44', '9.00', '', '', '9.98'], 'Data Source in SDW: null': '2000Jan'}

Pandas provides direct csv ingestion into "data frames":


In [4]:
import pandas as pd
df = pd.read_csv('data/eu_revolving_loans.csv', header=1)
print(df)


       Unnamed: 0 MIR.M.AT.B.A2Z.A.R.A.2250.EUR.N  \
0             NaN                         Austria   
1     Collection:               End of period (E)   
2    Period\Unit:            [Percent per annum ]   
3         2016Feb                            4.20   
4         2016Jan                            4.17   
5         2015Dec                            3.99   
6         2015Nov                            4.09   
7         2015Oct                            4.10   
8         2015Sep                            4.32   
9         2015Aug                            4.28   
10        2015Jul                            4.07   
11        2015Jun                            4.29   
12        2015May                            4.32   
13        2015Apr                            4.21   
14        2015Mar                            4.43   
15        2015Feb                            4.26   
16        2015Jan                            4.24   
17        2014Dec                            4.20   
18        2014Nov                            4.30   
19        2014Oct                            4.30   
20        2014Sep                            4.59   
21        2014Aug                            4.50   
22        2014Jul                            4.52   
23        2014Jun                            4.62   
24        2014May                            4.54   
25        2014Apr                            4.59   
26        2014Mar                            4.79   
27        2014Feb                            4.58   
28        2014Jan                            4.57   
29        2013Dec                            4.50   
..            ...                             ...   
167       2002Jun                            8.50   
168       2002May                            8.50   
169       2002Apr                            8.50   
170       2002Mar                            8.53   
171       2002Feb                            8.54   
172       2002Jan                            8.50   
173       2001Dec                            8.56   
174       2001Nov                            8.61   
175       2001Oct                            8.65   
176       2001Sep                            8.69   
177       2001Aug                            8.81   
178       2001Jul                            8.79   
179       2001Jun                            8.74   
180       2001May                            8.83   
181       2001Apr                            8.83   
182       2001Mar                            8.84   
183       2001Feb                            8.84   
184       2001Jan                            8.87   
185       2000Dec                            8.83   
186       2000Nov                            9.05   
187       2000Oct                            9.12   
188       2000Sep                            9.07   
189       2000Aug                            9.06   
190       2000Jul                            9.00   
191       2000Jun                            9.12   
192       2000May                            9.06   
193       2000Apr                            8.99   
194       2000Mar                            8.90   
195       2000Feb                            8.93   
196       2000Jan                            8.83   

    MIR.M.BE.B.A2Z.A.R.A.2250.EUR.N MIR.M.CY.B.A2Z.A.R.A.2250.EUR.N  \
0                           Belgium                          Cyprus   
1                 End of period (E)               End of period (E)   
2              [Percent per annum ]            [Percent per annum ]   
3                              8.09                            6.13   
4                              8.05                            6.13   
5                              8.21                            6.16   
6                              8.20                            6.15   
7                              8.40                            6.16   
8                              8.58                            6.17   
9                              8.27                            6.36   
10                             8.23                            6.38   
11                             8.17                            6.42   
12                             8.12                            6.46   
13                             8.24                            6.40   
14                             8.31                            6.23   
15                             8.09                            7.14   
16                             8.31                            7.18   
17                             8.37                            7.20   
18                             8.32                            7.19   
19                             8.40                            7.20   
20                             7.72                            7.20   
21                             7.68                            7.24   
22                             7.67                            7.28   
23                             8.04                            7.32   
24                             8.06                            7.29   
25                             8.70                            7.31   
26                             8.74                            7.31   
27                             8.84                            7.31   
28                             8.95                            7.33   
29                             8.97                            7.23   
..                              ...                             ...   
167                           11.22                             NaN   
168                           11.22                             NaN   
169                           11.22                             NaN   
170                           11.22                             NaN   
171                           11.22                             NaN   
172                           11.22                             NaN   
173                           11.22                             NaN   
174                           11.26                             NaN   
175                           11.58                             NaN   
176                           11.77                             NaN   
177                           12.47                             NaN   
178                           12.62                             NaN   
179                           12.62                             NaN   
180                           12.62                             NaN   
181                           12.62                             NaN   
182                           12.60                             NaN   
183                           12.62                             NaN   
184                           12.62                             NaN   
185                           12.63                             NaN   
186                           12.63                             NaN   
187                           12.27                             NaN   
188                           12.27                             NaN   
189                           12.27                             NaN   
190                           11.57                             NaN   
191                           11.55                             NaN   
192                           11.55                             NaN   
193                           10.82                             NaN   
194                           10.48                             NaN   
195                           10.14                             NaN   
196                           10.01                             NaN   

    MIR.M.DE.B.A2Z.A.R.A.2250.EUR.N MIR.M.EE.B.A2Z.A.R.A.2250.EUR.N  \
0                           Germany                         Estonia   
1                 End of period (E)               End of period (E)   
2              [Percent per annum ]            [Percent per annum ]   
3                              8.85                           16.38   
4                              8.83                           16.41   
5                              8.69                           16.32   
6                              8.82                           16.37   
7                              8.89                           16.42   
8                              8.95                           16.44   
9                              8.91                           16.40   
10                             8.90                           16.37   
11                             9.01                           16.36   
12                             8.99                           16.33   
13                             9.10                           16.31   
14                             9.21                           16.32   
15                             9.22                           16.32   
16                             9.22                           16.32   
17                             9.20                           16.26   
18                             9.20                           16.35   
19                             9.27                           16.36   
20                             9.40                           16.39   
21                             9.27                           16.30   
22                             9.37                           16.30   
23                             9.46                           16.36   
24                             9.35                           16.29   
25                             9.25                           16.38   
26                             9.46                           16.39   
27                             9.41                           16.51   
28                             9.45                           16.52   
29                             9.42                           16.47   
..                              ...                             ...   
167                           10.96                               -   
168                           10.92                               -   
169                           10.92                               -   
170                           10.82                               -   
171                           10.87                               -   
172                           10.89                               -   
173                           10.90                               -   
174                           10.96                               -   
175                           11.04                               -   
176                           11.07                               -   
177                           11.19                               -   
178                           11.17                               -   
179                           11.24                               -   
180                           11.12                               -   
181                           11.24                               -   
182                           11.22                               -   
183                           11.25                               -   
184                           11.33                               -   
185                           11.21                               -   
186                           11.27                               -   
187                           11.17                               -   
188                           10.92                               -   
189                           10.88                               -   
190                           10.86                               -   
191                           10.50                               -   
192                           10.25                               -   
193                           10.21                               -   
194                           10.02                               -   
195                            9.96                               -   
196                            9.81                               -   

    MIR.M.ES.B.A2Z.A.R.A.2250.EUR.N MIR.M.FI.B.A2Z.A.R.A.2250.EUR.N  \
0                             Spain                         Finland   
1                 End of period (E)               End of period (E)   
2              [Percent per annum ]            [Percent per annum ]   
3                             11.03                            6.41   
4                             10.85                            6.44   
5                             10.49                            6.40   
6                             10.73                            6.49   
7                             10.86                            6.52   
8                             10.87                            6.52   
9                             10.81                            6.47   
10                            10.74                            6.44   
11                            10.83                            6.47   
12                            11.07                            6.49   
13                            11.09                            6.67   
14                            11.21                            6.57   
15                            11.44                            6.69   
16                            11.13                            6.67   
17                            10.92                            6.63   
18                            11.01                            6.62   
19                            10.63                            6.60   
20                            10.79                            6.68   
21                            10.80                            6.70   
22                            10.58                            6.67   
23                            10.75                            6.73   
24                            10.76                            6.83   
25                            10.76                            6.83   
26                            10.73                            6.85   
27                            10.83                            6.83   
28                            10.50                            6.79   
29                            10.04                            6.76   
..                              ...                             ...   
167                           13.16                           10.09   
168                           13.15                           10.13   
169                           13.17                           10.15   
170                           13.10                           10.00   
171                           13.15                            9.98   
172                           13.05                           10.11   
173                           13.27                           10.15   
174                           13.20                           10.25   
175                           13.25                           10.48   
176                           13.22                           10.61   
177                           13.24                           11.05   
178                           13.19                           11.12   
179                           13.15                           11.15   
180                           13.17                           11.28   
181                           13.15                           11.35   
182                           13.13                           11.43   
183                           13.13                           11.40   
184                           13.18                           11.49   
185                           12.93                           11.39   
186                           12.93                           11.48   
187                           12.87                           11.49   
188                           12.89                           11.35   
189                           13.01                           11.32   
190                           13.01                           11.09   
191                           12.95                           11.03   
192                           13.02                           10.83   
193                           13.01                           10.54   
194                           12.96                           10.49   
195                           12.95                           10.35   
196                           12.96                           10.28   

    MIR.M.FR.B.A2Z.A.R.A.2250.EUR.N MIR.M.GR.B.A2Z.A.R.A.2250.EUR.N  \
0                            France                     Greece (GR)   
1                 End of period (E)               End of period (E)   
2              [Percent per annum ]            [Percent per annum ]   
3                              6.00                            8.18   
4                              6.10                            8.19   
5                              5.86                            8.22   
6                              6.18                            8.30   
7                              6.15                            8.34   
8                              6.41                            8.53   
9                              6.39                            8.59   
10                             6.25                            8.45   
11                             6.57                            8.65   
12                             6.72                            8.57   
13                             6.58                            8.57   
14                             6.89                            8.57   
15                             6.89                            8.62   
16                             6.87                            8.58   
17                             6.65                            8.58   
18                             7.10                            8.66   
19                             6.96                            9.04   
20                             7.22                            9.01   
21                             7.16                            8.60   
22                             6.90                            8.73   
23                             7.16                            8.86   
24                             7.22                            8.97   
25                             7.36                            9.03   
26                             7.51                            9.00   
27                             7.68                            9.06   
28                             7.48                            9.09   
29                             7.33                            9.12   
..                              ...                             ...   
167                           12.05                           15.91   
168                           12.03                           15.94   
169                           12.03                           15.93   
170                           11.85                           15.88   
171                           11.85                           15.90   
172                           11.85                           15.88   
173                           11.78                           15.39   
174                           11.77                           15.46   
175                           11.77                           15.57   
176                           12.03                           15.83   
177                           12.03                           15.75   
178                           12.03                           15.73   
179                           12.28                           15.76   
180                           12.29                           16.08   
181                           12.29                           16.44   
182                           12.09                           16.52   
183                           12.09                           17.09   
184                           12.09                           17.19   
185                           11.81                           17.80   
186                           11.81                           18.00   
187                           11.81                           18.21   
188                           11.69                           18.39   
189                           11.70                           18.59   
190                           11.70                           18.66   
191                           11.04                           19.25   
192                           11.03                           19.35   
193                           11.03                           20.46   
194                           10.92                           20.87   
195                           10.91                           21.22   
196                           10.91                           21.62   

                        ...                      \
0                       ...                       
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                      ...                       
..                      ...                       
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                     ...                       

    MIR.M.IT.B.A2Z.A.R.A.2250.EUR.N MIR.M.LT.B.A2Z.A.R.A.2250.EUR.N  \
0                             Italy                       Lithuania   
1                 End of period (E)               End of period (E)   
2              [Percent per annum ]            [Percent per annum ]   
3                              6.07                            9.60   
4                              6.07                            9.58   
5                              5.91                            9.45   
6                              6.12                            9.53   
7                              6.11                            9.40   
8                              6.14                            9.33   
9                              6.12                            9.39   
10                             6.19                            9.43   
11                             6.27                            9.50   
12                             6.28                            9.61   
13                             6.36                            9.64   
14                             6.37                            9.32   
15                             6.57                            9.31   
16                             6.57                            9.27   
17                             6.40                            3.92   
18                             6.65                            3.86   
19                             6.70                            3.85   
20                             6.83                            3.95   
21                             6.80                            3.95   
22                             6.86                            4.01   
23                             7.03                            3.71   
24                             7.01                            3.64   
25                             7.06                            3.70   
26                             7.12                            3.67   
27                             7.20                            3.66   
28                             7.18                            3.66   
29                             6.97                            3.69   
..                              ...                             ...   
167                            9.24                             NaN   
168                            9.19                             NaN   
169                            9.20                             NaN   
170                            9.21                             NaN   
171                            9.24                             NaN   
172                            9.24                             NaN   
173                            9.28                             NaN   
174                            9.51                             NaN   
175                            9.72                             NaN   
176                            9.85                             NaN   
177                            9.89                             NaN   
178                            9.93                             NaN   
179                            9.96                             NaN   
180                           10.03                             NaN   
181                           10.05                             NaN   
182                           10.06                             NaN   
183                           10.09                             NaN   
184                           10.13                             NaN   
185                           10.16                             NaN   
186                           10.23                             NaN   
187                           10.20                             NaN   
188                            9.98                             NaN   
189                            9.76                             NaN   
190                            9.78                             NaN   
191                            9.60                             NaN   
192                            9.36                             NaN   
193                            9.18                             NaN   
194                            9.05                             NaN   
195                            8.97                             NaN   
196                            8.88                             NaN   

    MIR.M.LU.B.A2Z.A.R.A.2250.EUR.N MIR.M.LV.B.A2Z.A.R.A.2250.EUR.N  \
0                        Luxembourg                          Latvia   
1                 End of period (E)               End of period (E)   
2              [Percent per annum ]            [Percent per annum ]   
3                              7.24                           21.58   
4                              7.10                           21.51   
5                              6.96                           21.59   
6                              6.88                           21.67   
7                              7.08                           21.74   
8                              7.07                           21.75   
9                              7.13                           21.80   
10                             7.26                           21.82   
11                             7.33                           21.92   
12                             7.32                           21.81   
13                             7.33                           21.86   
14                             7.59                           21.56   
15                             8.45                           21.55   
16                             8.22                           21.61   
17                             8.68                           21.45   
18                             7.39                           21.11   
19                             7.34                           21.12   
20                             7.06                           21.37   
21                             7.10                           21.36   
22                             7.04                           21.38   
23                             7.13                           21.39   
24                             7.02                           21.43   
25                             7.25                           21.35   
26                             7.20                           21.30   
27                             7.47                           21.38   
28                             7.12                           21.66   
29                             7.56                            8.56   
..                              ...                             ...   
167                             NaN                             NaN   
168                             NaN                             NaN   
169                             NaN                             NaN   
170                             NaN                             NaN   
171                             NaN                             NaN   
172                             NaN                             NaN   
173                             NaN                             NaN   
174                             NaN                             NaN   
175                             NaN                             NaN   
176                             NaN                             NaN   
177                             NaN                             NaN   
178                             NaN                             NaN   
179                             NaN                             NaN   
180                             NaN                             NaN   
181                             NaN                             NaN   
182                             NaN                             NaN   
183                             NaN                             NaN   
184                             NaN                             NaN   
185                             NaN                             NaN   
186                             NaN                             NaN   
187                             NaN                             NaN   
188                             NaN                             NaN   
189                             NaN                             NaN   
190                             NaN                             NaN   
191                             NaN                             NaN   
192                             NaN                             NaN   
193                             NaN                             NaN   
194                             NaN                             NaN   
195                             NaN                             NaN   
196                             NaN                             NaN   

    MIR.M.MT.B.A2Z.A.R.A.2250.EUR.N MIR.M.NL.B.A2Z.A.R.A.2250.EUR.N  \
0                             Malta                     Netherlands   
1                 End of period (E)               End of period (E)   
2              [Percent per annum ]            [Percent per annum ]   
3                              6.79                            5.83   
4                              6.82                            5.81   
5                              6.84                            5.88   
6                              6.78                            5.97   
7                              6.78                            5.93   
8                              6.79                            5.97   
9                              6.60                            6.05   
10                             6.78                            5.92   
11                             6.78                            5.87   
12                             6.76                            5.90   
13                             6.78                            5.99   
14                             6.77                            6.05   
15                             6.75                            5.97   
16                             6.76                            6.04   
17                             6.77                            6.01   
18                             6.73                            6.08   
19                             6.71                            6.07   
20                             6.69                            6.06   
21                             6.72                            5.96   
22                             6.62                            6.00   
23                             6.69                            5.99   
24                             6.72                            6.06   
25                             6.72                            6.12   
26                             6.79                            6.10   
27                             6.80                            6.07   
28                             6.82                            6.11   
29                             6.86                            6.08   
..                              ...                             ...   
167                             NaN                            7.94   
168                             NaN                            7.94   
169                             NaN                            7.94   
170                             NaN                            7.94   
171                             NaN                            7.94   
172                             NaN                            7.94   
173                             NaN                            7.94   
174                             NaN                            7.94   
175                             NaN                            8.93   
176                             NaN                            8.93   
177                             NaN                           10.42   
178                             NaN                           10.42   
179                             NaN                           10.42   
180                             NaN                           10.42   
181                             NaN                           10.92   
182                             NaN                           10.92   
183                             NaN                           10.92   
184                             NaN                           10.92   
185                             NaN                           10.92   
186                             NaN                           10.92   
187                             NaN                           10.92   
188                             NaN                           10.42   
189                             NaN                            9.92   
190                             NaN                            9.92   
191                             NaN                            9.92   
192                             NaN                            8.93   
193                             NaN                            8.44   
194                             NaN                            8.44   
195                             NaN                            7.94   
196                             NaN                            7.44   

    MIR.M.PT.B.A2Z.A.R.A.2250.EUR.N MIR.M.SI.B.A2Z.A.R.A.2250.EUR.N  \
0                          Portugal                        Slovenia   
1                 End of period (E)               End of period (E)   
2              [Percent per annum ]            [Percent per annum ]   
3                             15.28                            6.80   
4                             15.41                            6.79   
5                             15.16                            6.65   
6                             15.32                            6.79   
7                             15.55                            6.74   
8                             15.51                            6.81   
9                             15.21                            6.79   
10                            15.42                            6.71   
11                            15.47                            6.76   
12                            15.81                            6.80   
13                            15.73                            6.82   
14                            15.66                            6.86   
15                            15.80                            6.90   
16                            15.83                            6.90   
17                            15.51                            6.87   
18                            15.90                            7.01   
19                            15.98                            6.95   
20                            15.78                            6.97   
21                            15.53                            6.96   
22                            15.66                            6.88   
23                            15.74                            7.03   
24                            15.90                            7.00   
25                            15.72                            7.06   
26                            15.89                            7.07   
27                            16.04                            7.16   
28                            15.96                            7.12   
29                            15.54                            7.20   
..                              ...                             ...   
167                            8.40                             NaN   
168                            8.40                             NaN   
169                            7.90                             NaN   
170                            8.10                             NaN   
171                            8.50                             NaN   
172                            8.60                             NaN   
173                            9.20                             NaN   
174                           10.00                             NaN   
175                           10.40                             NaN   
176                            9.90                             NaN   
177                           10.20                             NaN   
178                           10.60                             NaN   
179                           10.10                             NaN   
180                           10.80                             NaN   
181                           10.70                             NaN   
182                           10.80                             NaN   
183                           11.00                             NaN   
184                           10.70                             NaN   
185                           10.80                             NaN   
186                           10.10                             NaN   
187                           10.10                             NaN   
188                            9.60                             NaN   
189                            9.80                             NaN   
190                           10.30                             NaN   
191                            9.50                             NaN   
192                            9.40                             NaN   
193                            9.20                             NaN   
194                            9.10                             NaN   
195                            9.10                             NaN   
196                            9.00                             NaN   

    MIR.M.SK.B.A2Z.A.R.A.2250.EUR.N  \
0                          Slovakia   
1                 End of period (E)   
2              [Percent per annum ]   
3                             13.86   
4                             13.97   
5                             13.72   
6                             14.10   
7                             14.12   
8                             14.21   
9                             14.26   
10                            14.21   
11                            14.15   
12                            14.14   
13                            13.97   
14                            13.89   
15                            13.96   
16                            14.00   
17                            13.75   
18                            13.40   
19                            13.57   
20                            13.59   
21                            13.58   
22                            13.45   
23                            13.55   
24                            13.61   
25                            13.69   
26                            13.66   
27                            13.64   
28                            13.72   
29                            13.65   
..                              ...   
167                             NaN   
168                             NaN   
169                             NaN   
170                             NaN   
171                             NaN   
172                             NaN   
173                             NaN   
174                             NaN   
175                             NaN   
176                             NaN   
177                             NaN   
178                             NaN   
179                             NaN   
180                             NaN   
181                             NaN   
182                             NaN   
183                             NaN   
184                             NaN   
185                             NaN   
186                             NaN   
187                             NaN   
188                             NaN   
189                             NaN   
190                             NaN   
191                             NaN   
192                             NaN   
193                             NaN   
194                             NaN   
195                             NaN   
196                             NaN   

                MIR.M.U2.B.A2Z.A.R.A.2250.EUR.N  
0              Euro area (changing composition)  
1    Average of observations through period (A)  
2                          [Percent per annum ]  
3                                          7.36  
4                                          7.35  
5                                          7.23  
6                                          7.37  
7                                          7.41  
8                                          7.53  
9                                          7.49  
10                                         7.44  
11                                         7.58  
12                                         7.62  
13                                         7.64  
14                                         7.75  
15                                         7.80  
16                                         7.76  
17                                         7.64  
18                                         7.80  
19                                         7.77  
20                                         7.90  
21                                         7.81  
22                                         7.77  
23                                         7.92  
24                                         7.92  
25                                         7.96  
26                                         8.06  
27                                         8.11  
28                                         8.04  
29                                         7.92  
..                                          ...  
167                                       10.80  
168                                       10.76  
169                                       10.74  
170                                       10.66  
171                                       10.69  
172                                       10.69  
173                                       10.73  
174                                       10.81  
175                                       10.97  
176                                       11.04  
177                                       11.23  
178                                       11.25  
179                                       11.30  
180                                       11.29  
181                                       11.37  
182                                       11.33  
183                                       11.36  
184                                       11.39  
185                                       11.31  
186                                       11.32  
187                                       11.25  
188                                       11.04  
189                                       10.97  
190                                       10.95  
191                                       10.68  
192                                       10.44  
193                                       10.33  
194                                       10.16  
195                                       10.09  
196                                        9.98  

[197 rows x 21 columns]

2. Inputs: Excel

Many organizations still use Excel as the common medium for communicating data and analysis. We will look quickly at how to ingest Excel data.


In [5]:
from __future__ import print_function
from openpyxl import load_workbook

In [6]:
wb = load_workbook(filename='data/climate_change_download_0.xlsx')
ws = wb.get_sheet_by_name('Data')

For the sheet "Data", let's print out the content cell-by-cell to view the content.


In [ ]:
for row in ws.rows:
    for cell in row:
        print(cell.value)


Country code
Country name
Series code
Series name
SCALE
Decimals
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
ABW
Aruba
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
29.57481
..
..
..
..
..
..
..
..
..
29.57481
..
..
..
..
..
..
..
..
..
..
..
ADO
Andorra
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
AFG
Afghanistan
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
AGO
Angola
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0.2082346
..
..
..
..
..
..
..
..
..
0.2082346
..
..
..
..
..
..
..
..
..
..
..
ALB
Albania
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
4.967875
..
..
..
..
..
..
..
..
..
4.967875
..
..
..
..
..
..
..
..
..
..
..
ARE
United Arab Emirates
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
4.644515
..
..
..
..
..
..
..
..
..
4.644515
..
..
..
..
..
..
..
..
..
..
..
ARG
Argentina
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
1.230535
..
..
..
..
..
..
..
..
..
1.230535
..
..
..
..
..
..
..
..
..
..
..
ARM
Armenia
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
ASM
American Samoa
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
17.89262
..
..
..
..
..
..
..
..
..
17.89262
..
..
..
..
..
..
..
..
..
..
..
ATG
Antigua and Barbuda
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
32.42317
..
..
..
..
..
..
..
..
..
32.42317
..
..
..
..
..
..
..
..
..
..
..
AUS
Australia
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
1.141535
..
..
..
..
..
..
..
..
..
1.141535
..
..
..
..
..
..
..
..
..
..
..
AUT
Austria
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
AZE
Azerbaijan
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
19.96988
..
..
..
..
..
..
..
..
..
19.96988
..
..
..
..
..
..
..
..
..
..
..
BDI
Burundi
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
BEL
Belgium
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
9.242276
..
..
..
..
..
..
..
..
..
9.242276
..
..
..
..
..
..
..
..
..
..
..
BEN
Benin
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
1.155602
..
..
..
..
..
..
..
..
..
1.155602
..
..
..
..
..
..
..
..
..
..
..
BFA
Burkina Faso
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
BGD
Bangladesh
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
14.06936
..
..
..
..
..
..
..
..
..
14.06936
..
..
..
..
..
..
..
..
..
..
..
BGR
Bulgaria
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0.4296998
..
..
..
..
..
..
..
..
..
0.4296998
..
..
..
..
..
..
..
..
..
..
..
BHR
Bahrain
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
39.03492
..
..
..
..
..
..
..
..
..
39.03492
..
..
..
..
..
..
..
..
..
..
..
BHS
Bahamas, The
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
71.98609
..
..
..
..
..
..
..
..
..
71.98609
..
..
..
..
..
..
..
..
..
..
..
BIH
Bosnia and Herzegovina
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0.07322166
..
..
..
..
..
..
..
..
..
0.07322166
..
..
..
..
..
..
..
..
..
..
..
BLR
Belarus
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
BLZ
Belize
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
9.454244
..
..
..
..
..
..
..
..
..
9.454244
..
..
..
..
..
..
..
..
..
..
..
BMU
Bermuda
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
82.26367
..
..
..
..
..
..
..
..
..
82.26367
..
..
..
..
..
..
..
..
..
..
..
BOL
Bolivia
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
BRA
Brazil
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
1.212341
..
..
..
..
..
..
..
..
..
1.212341
..
..
..
..
..
..
..
..
..
..
..
BRB
Barbados
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
15.69373
..
..
..
..
..
..
..
..
..
15.69373
..
..
..
..
..
..
..
..
..
..
..
BRN
Brunei Darussalam
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
3.335603
..
..
..
..
..
..
..
..
..
3.335603
..
..
..
..
..
..
..
..
..
..
..
BTN
Bhutan
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
BWA
Botswana
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
CAF
Central African Republic
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
CAN
Canada
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
2.393023
..
..
..
..
..
..
..
..
..
2.393023
..
..
..
..
..
..
..
..
..
..
..
CHE
Switzerland
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
CHI
Channel Islands
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHL
Chile
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
3.080679
..
..
..
..
..
..
..
..
..
3.080679
..
..
..
..
..
..
..
..
..
..
..
CHN
China
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
1.382015
..
..
..
..
..
..
..
..
..
1.382015
..
..
..
..
..
..
..
..
..
..
..
CIV
Cote d'Ivoire
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0.192768
..
..
..
..
..
..
..
..
..
0.192768
..
..
..
..
..
..
..
..
..
..
..
CMR
Cameroon
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0.08356156
..
..
..
..
..
..
..
..
..
0.08356156
..
..
..
..
..
..
..
..
..
..
..
COG
Congo, Rep.
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0.05497334
..
..
..
..
..
..
..
..
..
0.05497334
..
..
..
..
..
..
..
..
..
..
..
COK
Cook Islands
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
87.86789
..
..
..
..
..
..
..
..
..
87.86789
..
..
..
..
..
..
..
..
..
..
..
COL
Colombia
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0.9430991
..
..
..
..
..
..
..
..
..
0.9430991
..
..
..
..
..
..
..
..
..
..
..
COM
Comoros
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
13.46283
..
..
..
..
..
..
..
..
..
13.46283
..
..
..
..
..
..
..
..
..
..
..
CPV
Cape Verde
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
14.51925
..
..
..
..
..
..
..
..
..
14.51925
..
..
..
..
..
..
..
..
..
..
..
CRI
Costa Rica
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
2.116565
..
..
..
..
..
..
..
..
..
2.116565
..
..
..
..
..
..
..
..
..
..
..
CUB
Cuba
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
12.66866
..
..
..
..
..
..
..
..
..
12.66866
..
..
..
..
..
..
..
..
..
..
..
CUW
Curacao
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
60.28383
..
..
..
..
..
..
..
..
..
60.28383
..
..
..
..
..
..
..
..
..
..
..
CYP
Cyprus
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
6.421041
..
..
..
..
..
..
..
..
..
6.421041
..
..
..
..
..
..
..
..
..
..
..
CZE
Czech Republic
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
DEU
Germany
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
4.917982
..
..
..
..
..
..
..
..
..
4.917982
..
..
..
..
..
..
..
..
..
..
..
DJI
Djibouti
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
2.564216
..
..
..
..
..
..
..
..
..
2.564216
..
..
..
..
..
..
..
..
..
..
..
DMA
Dominica
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
9.404154
..
..
..
..
..
..
..
..
..
9.404154
..
..
..
..
..
..
..
..
..
..
..
DNK
Denmark
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
17.66819
..
..
..
..
..
..
..
..
..
17.66819
..
..
..
..
..
..
..
..
..
..
..
DOM
Dominican Republic
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
4.139139
..
..
..
..
..
..
..
..
..
4.139139
..
..
..
..
..
..
..
..
..
..
..
DZA
Algeria
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0.3513818
..
..
..
..
..
..
..
..
..
0.3513818
..
..
..
..
..
..
..
..
..
..
..
EAP
East Asia & Pacific
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
2.46469755103
..
..
..
..
..
..
..
..
..
2.45265179589
..
..
..
..
..
..
..
..
..
..
..
ECA
Europe & Central Asia
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
1.44257664498
..
..
..
..
..
..
..
..
..
2.49051227472
..
..
..
..
..
..
..
..
..
..
..
ECU
Ecuador
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
2.036756
..
..
..
..
..
..
..
..
..
2.036756
..
..
..
..
..
..
..
..
..
..
..
EGY
Egypt, Arab Rep.
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
4.048382
..
..
..
..
..
..
..
..
..
4.048382
..
..
..
..
..
..
..
..
..
..
..
EMU
Euro area
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
3.6018206219
..
..
..
..
..
..
..
..
..
3.56661424632
..
..
..
..
..
..
..
..
..
..
..
ERI
Eritrea
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
3.119232
..
..
..
..
..
..
..
..
..
3.119232
..
..
..
..
..
..
..
..
..
..
..
ESP
Spain
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
1.256672
..
..
..
..
..
..
..
..
..
1.256672
..
..
..
..
..
..
..
..
..
..
..
EST
Estonia
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
3.354928
..
..
..
..
..
..
..
..
..
3.354928
..
..
..
..
..
..
..
..
..
..
..
ETH
Ethiopia
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0.6725273
..
..
..
..
..
..
..
..
..
0.6725273
..
..
..
..
..
..
..
..
..
..
..
FIN
Finland
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
1.108274
..
..
..
..
..
..
..
..
..
1.108274
..
..
..
..
..
..
..
..
..
..
..
FJI
Fiji
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
11.35986
..
..
..
..
..
..
..
..
..
11.35986
..
..
..
..
..
..
..
..
..
..
..
FRA
France
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
2.067913
..
..
..
..
..
..
..
..
..
2.067913
..
..
..
..
..
..
..
..
..
..
..
FRO
Faeroe Islands
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
14.54897
..
..
..
..
..
..
..
..
..
14.54897
..
..
..
..
..
..
..
..
..
..
..
FSM
Micronesia, Fed. Sts.
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
33.37462
..
..
..
..
..
..
..
..
..
33.37462
..
..
..
..
..
..
..
..
..
..
..
GAB
Gabon
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0.5366168
..
..
..
..
..
..
..
..
..
0.5366168
..
..
..
..
..
..
..
..
..
..
..
GBR
United Kingdom
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
7.612598
..
..
..
..
..
..
..
..
..
7.612598
..
..
..
..
..
..
..
..
..
..
..
GEO
Georgia
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
1.427602
..
..
..
..
..
..
..
..
..
1.427602
..
..
..
..
..
..
..
..
..
..
..
GHA
Ghana
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0.7665069
..
..
..
..
..
..
..
..
..
0.7665069
..
..
..
..
..
..
..
..
..
..
..
GIB
Gibraltar
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
100.0001
..
..
..
..
..
..
..
..
..
100.0001
..
..
..
..
..
..
..
..
..
..
..
GIN
Guinea
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
1.050092
..
..
..
..
..
..
..
..
..
1.050092
..
..
..
..
..
..
..
..
..
..
..
GMB
Gambia, The
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
16.58088
..
..
..
..
..
..
..
..
..
16.58088
..
..
..
..
..
..
..
..
..
..
..
GNB
Guinea-Bissau
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
9.497562
..
..
..
..
..
..
..
..
..
9.497562
..
..
..
..
..
..
..
..
..
..
..
GNQ
Equatorial Guinea
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0.9218137
..
..
..
..
..
..
..
..
..
0.9218137
..
..
..
..
..
..
..
..
..
..
..
GRC
Greece
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
6.334259
..
..
..
..
..
..
..
..
..
6.334259
..
..
..
..
..
..
..
..
..
..
..
GRD
Grenada
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
21.74677
..
..
..
..
..
..
..
..
..
21.74677
..
..
..
..
..
..
..
..
..
..
..
GRL
Greenland
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
16.26579
..
..
..
..
..
..
..
..
..
16.26579
..
..
..
..
..
..
..
..
..
..
..
GTM
Guatemala
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0.5609614
..
..
..
..
..
..
..
..
..
0.5609614
..
..
..
..
..
..
..
..
..
..
..
GUM
Guam
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
20.38489
..
..
..
..
..
..
..
..
..
20.38489
..
..
..
..
..
..
..
..
..
..
..
GUY
Guyana
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
2.715692
..
..
..
..
..
..
..
..
..
2.715692
..
..
..
..
..
..
..
..
..
..
..
HIC
High income
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
2.17596118231
..
..
..
..
..
..
..
..
..
2.20460948574
..
..
..
..
..
..
..
..
..
..
..
HKG
Hong Kong SAR, China
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
24.57421
..
..
..
..
..
..
..
..
..
24.57421
..
..
..
..
..
..
..
..
..
..
..
HND
Honduras
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
3.043469
..
..
..
..
..
..
..
..
..
3.043469
..
..
..
..
..
..
..
..
..
..
..
HRV
Croatia
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
3.030254
..
..
..
..
..
..
..
..
..
3.030254
..
..
..
..
..
..
..
..
..
..
..
HTI
Haiti
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
3.940334
..
..
..
..
..
..
..
..
..
3.940334
..
..
..
..
..
..
..
..
..
..
..
HUN
Hungary
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
IDN
Indonesia
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
5.497674
..
..
..
..
..
..
..
..
..
5.497674
..
..
..
..
..
..
..
..
..
..
..
IMY
Isle of Man
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
12.08876
..
..
..
..
..
..
..
..
..
12.08876
..
..
..
..
..
..
..
..
..
..
..
IND
India
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
1.353457
..
..
..
..
..
..
..
..
..
1.353457
..
..
..
..
..
..
..
..
..
..
..
IRL
Ireland
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
3.958941
..
..
..
..
..
..
..
..
..
3.958941
..
..
..
..
..
..
..
..
..
..
..
IRN
Iran, Islamic Rep.
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
1.593336
..
..
..
..
..
..
..
..
..
1.593336
..
..
..
..
..
..
..
..
..
..
..
IRQ
Iraq
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
4.024576
..
..
..
..
..
..
..
..
..
4.024576
..
..
..
..
..
..
..
..
..
..
..
ISL
Iceland
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
4.41256
..
..
..
..
..
..
..
..
..
4.41256
..
..
..
..
..
..
..
..
..
..
..
ISR
Israel
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
7.823743
..
..
..
..
..
..
..
..
..
7.823743
..
..
..
..
..
..
..
..
..
..
..
ITA
Italy
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
5.188644
..
..
..
..
..
..
..
..
..
5.188644
..
..
..
..
..
..
..
..
..
..
..
JAM
Jamaica
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
7.141161
..
..
..
..
..
..
..
..
..
7.141161
..
..
..
..
..
..
..
..
..
..
..
JOR
Jordan
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
2.007511
..
..
..
..
..
..
..
..
..
2.007511
..
..
..
..
..
..
..
..
..
..
..
JPN
Japan
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
5.883866
..
..
..
..
..
..
..
..
..
5.883866
..
..
..
..
..
..
..
..
..
..
..
KAZ
Kazakhstan
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
6.678062
..
..
..
..
..
..
..
..
..
6.678062
..
..
..
..
..
..
..
..
..
..
..
KEN
Kenya
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0.2394978
..
..
..
..
..
..
..
..
..
0.2394978
..
..
..
..
..
..
..
..
..
..
..
KGZ
Kyrgyz Republic
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
KHM
Cambodia
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
3.842303
..
..
..
..
..
..
..
..
..
3.842303
..
..
..
..
..
..
..
..
..
..
..
KIR
Kiribati
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
96.66959
..
..
..
..
..
..
..
..
..
96.66959
..
..
..
..
..
..
..
..
..
..
..
KNA
St. Kitts and Nevis
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
19.02063
..
..
..
..
..
..
..
..
..
19.02063
..
..
..
..
..
..
..
..
..
..
..
KOR
Korea, Rep.
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
4.301836
..
..
..
..
..
..
..
..
..
4.301836
..
..
..
..
..
..
..
..
..
..
..
KSV
Kosovo
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KWT
Kuwait
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
8.859625
..
..
..
..
..
..
..
..
..
8.859625
..
..
..
..
..
..
..
..
..
..
..
LAC
Latin America & Caribbean
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
1.5102249219
..
..
..
..
..
..
..
..
..
1.50947950939
..
..
..
..
..
..
..
..
..
..
..
LAO
Lao PDR
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
LBN
Lebanon
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
1.742301
..
..
..
..
..
..
..
..
..
1.742301
..
..
..
..
..
..
..
..
..
..
..
LBR
Liberia
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0.3521506
..
..
..
..
..
..
..
..
..
0.3521506
..
..
..
..
..
..
..
..
..
..
..
LBY
Libya
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0.7758676
..
..
..
..
..
..
..
..
..
0.7758676
..
..
..
..
..
..
..
..
..
..
..
LCA
St. Lucia
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
8.024293
..
..
..
..
..
..
..
..
..
8.024293
..
..
..
..
..
..
..
..
..
..
..
LIC
Low income
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0.724243777476
..
..
..
..
..
..
..
..
..
0.724681661206
..
..
..
..
..
..
..
..
..
..
..
LIE
Liechtenstein
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
LKA
Sri Lanka
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
3.868529
..
..
..
..
..
..
..
..
..
3.868529
..
..
..
..
..
..
..
..
..
..
..
LMC
Lower middle income
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
1.69769118902
..
..
..
..
..
..
..
..
..
1.72517836858
..
..
..
..
..
..
..
..
..
..
..
LMY
Low & middle income
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
1.3350401913
..
..
..
..
..
..
..
..
..
1.60768277092
..
..
..
..
..
..
..
..
..
..
..
LSO
Lesotho
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
LTU
Lithuania
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
1.911668
..
..
..
..
..
..
..
..
..
1.911668
..
..
..
..
..
..
..
..
..
..
..
LUX
Luxembourg
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
LVA
Latvia
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
3.031544
..
..
..
..
..
..
..
..
..
3.031544
..
..
..
..
..
..
..
..
..
..
..
MAC
Macao SAR, China
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
35.38876
..
..
..
..
..
..
..
..
..
35.38876
..
..
..
..
..
..
..
..
..
..
..
MAF
St. Martin (French part)
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0.702659
..
..
..
..
..
..
..
..
..
0.702659
..
..
..
..
..
..
..
..
..
..
..
MCO
Monaco
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
100
..
..
..
..
..
..
..
..
..
100
..
..
..
..
..
..
..
..
..
..
..
MDA
Moldova
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
1.302524
..
..
..
..
..
..
..
..
..
1.302524
..
..
..
..
..
..
..
..
..
..
..
MDG
Madagascar
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
1.338625
..
..
..
..
..
..
..
..
..
1.338625
..
..
..
..
..
..
..
..
..
..
..
MDV
Maldives
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
99.99999
..
..
..
..
..
..
..
..
..
99.99999
..
..
..
..
..
..
..
..
..
..
..
MEX
Mexico
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
2.941872
..
..
..
..
..
..
..
..
..
2.941872
..
..
..
..
..
..
..
..
..
..
..
MHL
Marshall Islands
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
99.01826
..
..
..
..
..
..
..
..
..
99.01826
..
..
..
..
..
..
..
..
..
..
..
MIC
Middle income
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
1.48622099229
..
..
..
..
..
..
..
..
..
1.77257699758
..
..
..
..
..
..
..
..
..
..
..
MKD
Macedonia, FYR
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
MLI
Mali
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
MLT
Malta
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
19.35084
..
..
..
..
..
..
..
..
..
19.35084
..
..
..
..
..
..
..
..
..
..
..
MMR
Myanmar
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
4.560159
..
..
..
..
..
..
..
..
..
4.560159
..
..
..
..
..
..
..
..
..
..
..
MNA
Middle East & North Africa
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
1.38658630189
..
..
..
..
..
..
..
..
..
1.38658630189
..
..
..
..
..
..
..
..
..
..
..
MNE
Montenegro
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNG
Mongolia
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
MNP
Northern Mariana Islands
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
28.05892
..
..
..
..
..
..
..
..
..
28.05892
..
..
..
..
..
..
..
..
..
..
..
MOZ
Mozambique
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
1.832448
..
..
..
..
..
..
..
..
..
1.832448
..
..
..
..
..
..
..
..
..
..
..
MRT
Mauritania
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
1.04547
..
..
..
..
..
..
..
..
..
1.04547
..
..
..
..
..
..
..
..
..
..
..
MUS
Mauritius
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
7.070228
..
..
..
..
..
..
..
..
..
7.070228
..
..
..
..
..
..
..
..
..
..
..
MWI
Malawi
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
MYS
Malaysia
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
2.99209
..
..
..
..
..
..
..
..
..
2.99209
..
..
..
..
..
..
..
..
..
..
..
MYT
Mayotte
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
21.56333
..
..
..
..
..
..
..
..
..
21.56333
..
..
..
..
..
..
..
..
..
..
..
NAM
Namibia
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0.2863445
..
..
..
..
..
..
..
..
..
0.2863445
..
..
..
..
..
..
..
..
..
..
..
NCL
New Caledonia
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
8.02987
..
..
..
..
..
..
..
..
..
8.02987
..
..
..
..
..
..
..
..
..
..
..
NER
Niger
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
NGA
Nigeria
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0.5417737
..
..
..
..
..
..
..
..
..
0.5417737
..
..
..
..
..
..
..
..
..
..
..
NIC
Nicaragua
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
3.569984
..
..
..
..
..
..
..
..
..
3.569984
..
..
..
..
..
..
..
..
..
..
..
NIU
Niue
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
10.43766
..
..
..
..
..
..
..
..
..
10.43766
..
..
..
..
..
..
..
..
..
..
..
NLD
Netherlands
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
58.46905
..
..
..
..
..
..
..
..
..
58.46905
..
..
..
..
..
..
..
..
..
..
..
NOR
Norway
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
4.850657
..
..
..
..
..
..
..
..
..
4.850657
..
..
..
..
..
..
..
..
..
..
..
NPL
Nepal
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
NRU
Nauru
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
40.35884
..
..
..
..
..
..
..
..
..
40.35884
..
..
..
..
..
..
..
..
..
..
..
NZL
New Zealand
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
2.741883
..
..
..
..
..
..
..
..
..
2.741883
..
..
..
..
..
..
..
..
..
..
..
OMN
Oman
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
1.082381
..
..
..
..
..
..
..
..
..
1.082381
..
..
..
..
..
..
..
..
..
..
..
PAK
Pakistan
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
1.420484
..
..
..
..
..
..
..
..
..
1.420484
..
..
..
..
..
..
..
..
..
..
..
PAN
Panama
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
3.705232
..
..
..
..
..
..
..
..
..
3.705232
..
..
..
..
..
..
..
..
..
..
..
PER
Peru
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0.37851
..
..
..
..
..
..
..
..
..
0.37851
..
..
..
..
..
..
..
..
..
..
..
PHL
Philippines
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
6.017094
..
..
..
..
..
..
..
..
..
6.017094
..
..
..
..
..
..
..
..
..
..
..
PLW
Palau
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
21.3706
..
..
..
..
..
..
..
..
..
21.3706
..
..
..
..
..
..
..
..
..
..
..
PNG
Papua New Guinea
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
1.840861
..
..
..
..
..
..
..
..
..
1.840861
..
..
..
..
..
..
..
..
..
..
..
POL
Poland
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
1.680418
..
..
..
..
..
..
..
..
..
1.680418
..
..
..
..
..
..
..
..
..
..
..
PRI
Puerto Rico
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
7.731913
..
..
..
..
..
..
..
..
..
7.731913
..
..
..
..
..
..
..
..
..
..
..
PRK
Korea, Dem. Rep.
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
2.420686
..
..
..
..
..
..
..
..
..
2.420686
..
..
..
..
..
..
..
..
..
..
..
PRT
Portugal
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
2.305464
..
..
..
..
..
..
..
..
..
2.305464
..
..
..
..
..
..
..
..
..
..
..
PRY
Paraguay
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
PYF
French Polynesia
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
37.59521
..
..
..
..
..
..
..
..
..
37.59521
..
..
..
..
..
..
..
..
..
..
..
QAT
Qatar
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
13.39369
..
..
..
..
..
..
..
..
..
13.39369
..
..
..
..
..
..
..
..
..
..
..
ROM
Romania
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
2.905914
..
..
..
..
..
..
..
..
..
2.905914
..
..
..
..
..
..
..
..
..
..
..
RUS
Russian Federation
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
1.905153
..
..
..
..
..
..
..
..
..
1.905153
..
..
..
..
..
..
..
..
..
..
..
RWA
Rwanda
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
SAS
South Asia
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
1.51127561273
..
..
..
..
..
..
..
..
..
1.51335908264
..
..
..
..
..
..
..
..
..
..
..
SAU
Saudi Arabia
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0.4817074
..
..
..
..
..
..
..
..
..
0.4817074
..
..
..
..
..
..
..
..
..
..
..
SDN
Sudan
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0.09428031
..
..
..
..
..
..
..
..
..
0.09428031
..
..
..
..
..
..
..
..
..
..
..
SEN
Senegal
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
4.458758
..
..
..
..
..
..
..
..
..
4.458758
..
..
..
..
..
..
..
..
..
..
..
SGP
Singapore
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
8.058207
..
..
..
..
..
..
..
..
..
8.058207
..
..
..
..
..
..
..
..
..
..
..
SID
Small island developing states
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
5.400355944
..
..
..
..
..
..
..
..
..
5.4293836503
..
..
..
..
..
..
..
..
..
..
..
SLB
Solomon Islands
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
11.53864
..
..
..
..
..
..
..
..
..
11.53864
..
..
..
..
..
..
..
..
..
..
..
SLE
Sierra Leone
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
3.003588
..
..
..
..
..
..
..
..
..
3.003588
..
..
..
..
..
..
..
..
..
..
..
SLV
El Salvador
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
2.452742
..
..
..
..
..
..
..
..
..
2.452742
..
..
..
..
..
..
..
..
..
..
..
SMR
San Marino
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
SOM
Somalia
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0.5667931
..
..
..
..
..
..
..
..
..
0.5667931
..
..
..
..
..
..
..
..
..
..
..
SRB
Serbia
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0.1889901
..
..
..
..
..
..
..
..
..
0.1889901
..
..
..
..
..
..
..
..
..
..
..
SSA
Sub-Saharan Africa
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0.365694339319
..
..
..
..
..
..
..
..
..
0.376170613107
..
..
..
..
..
..
..
..
..
..
..
STP
Sao Tome and Principe
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
14.72324
..
..
..
..
..
..
..
..
..
14.72324
..
..
..
..
..
..
..
..
..
..
..
SUR
Suriname
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
3.449275
..
..
..
..
..
..
..
..
..
3.449275
..
..
..
..
..
..
..
..
..
..
..
SVK
Slovak Republic
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
SVN
Slovenia
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0.2044258
..
..
..
..
..
..
..
..
..
0.2044258
..
..
..
..
..
..
..
..
..
..
..
SWE
Sweden
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
1.528626
..
..
..
..
..
..
..
..
..
1.528626
..
..
..
..
..
..
..
..
..
..
..
SWZ
Swaziland
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
SXM
Sint Maarten (Dutch part)
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
43.94353
..
..
..
..
..
..
..
..
..
43.94353
..
..
..
..
..
..
..
..
..
..
..
SYR
Syrian Arab Republic
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0.05983744
..
..
..
..
..
..
..
..
..
0.05983744
..
..
..
..
..
..
..
..
..
..
..
TCA
Turks and Caicos Islands
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
53.2727
..
..
..
..
..
..
..
..
..
53.2727
..
..
..
..
..
..
..
..
..
..
..
TCD
Chad
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
TGO
Togo
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0.5779024
..
..
..
..
..
..
..
..
..
0.5779024
..
..
..
..
..
..
..
..
..
..
..
THA
Thailand
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
4.167608
..
..
..
..
..
..
..
..
..
4.167608
..
..
..
..
..
..
..
..
..
..
..
TJK
Tajikistan
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
TKM
Turkmenistan
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
5.304284
..
..
..
..
..
..
..
..
..
5.304284
..
..
..
..
..
..
..
..
..
..
..
TMP
Timor-Leste
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
2.888742
..
..
..
..
..
..
..
..
..
2.888742
..
..
..
..
..
..
..
..
..
..
..
TON
Tonga
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
40.46064
..
..
..
..
..
..
..
..
..
40.46064
..
..
..
..
..
..
..
..
..
..
..
TTO
Trinidad and Tobago
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
7.978341
..
..
..
..
..
..
..
..
..
7.978341
..
..
..
..
..
..
..
..
..
..
..
TUN
Tunisia
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
2.791754
..
..
..
..
..
..
..
..
..
2.791754
..
..
..
..
..
..
..
..
..
..
..
TUR
Turkey
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
1.026591
..
..
..
..
..
..
..
..
..
1.026591
..
..
..
..
..
..
..
..
..
..
..
TUV
Tuvalu
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
99.99996
..
..
..
..
..
..
..
..
..
99.99996
..
..
..
..
..
..
..
..
..
..
..
TZA
Tanzania
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0.1756921
..
..
..
..
..
..
..
..
..
0.1756921
..
..
..
..
..
..
..
..
..
..
..
UGA
Uganda
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
UKR
Ukraine
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
1.542492
..
..
..
..
..
..
..
..
..
1.542492
..
..
..
..
..
..
..
..
..
..
..
UMC
Upper middle income
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
1.36903038914
..
..
..
..
..
..
..
..
..
1.79126204534
..
..
..
..
..
..
..
..
..
..
..
URY
Uruguay
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
1.906647
..
..
..
..
..
..
..
..
..
1.906647
..
..
..
..
..
..
..
..
..
..
..
USA
United States
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
1.717947
..
..
..
..
..
..
..
..
..
1.717947
..
..
..
..
..
..
..
..
..
..
..
UZB
Uzbekistan
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0.0525719
..
..
..
..
..
..
..
..
..
0.0525719
..
..
..
..
..
..
..
..
..
..
..
VCT
St. Vincent and the Grenadines
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
21.95773
..
..
..
..
..
..
..
..
..
21.95773
..
..
..
..
..
..
..
..
..
..
..
VEN
Venezuela, RB
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
2.286449
..
..
..
..
..
..
..
..
..
2.286449
..
..
..
..
..
..
..
..
..
..
..
VIR
Virgin Islands (U.S.)
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
30.95858
..
..
..
..
..
..
..
..
..
30.95858
..
..
..
..
..
..
..
..
..
..
..
VNM
Vietnam
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
17.50231
..
..
..
..
..
..
..
..
..
17.50231
..
..
..
..
..
..
..
..
..
..
..
VUT
Vanuatu
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
11.67647
..
..
..
..
..
..
..
..
..
11.67647
..
..
..
..
..
..
..
..
..
..
..
WBG
West Bank and Gaza
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
14.84334
..
..
..
..
..
..
..
..
..
14.84334
..
..
..
..
..
..
..
..
..
..
..
WLD
World
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
1.59755744998
..
..
..
..
..
..
..
..
..
1.76428679274
..
..
..
..
..
..
..
..
..
..
..
WSM
Samoa
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
7.33132
..
..
..
..
..
..
..
..
..
7.33132
..
..
..
..
..
..
..
..
..
..
..
YEM
Yemen, Rep.
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0.5608405
..
..
..
..
..
..
..
..
..
0.5608405
..
..
..
..
..
..
..
..
..
..
..
ZAF
South Africa
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0.1342833
..
..
..
..
..
..
..
..
..
0.1342833
..
..
..
..
..
..
..
..
..
..
..
ZAR
Congo, Dem. Rep.
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0.01547777
..
..
..
..
..
..
..
..
..
0.01547777
..
..
..
..
..
..
..
..
..
..
..
ZMB
Zambia
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
ZWE
Zimbabwe
AG.LND.EL5M.ZS
Land area below 5m (% of land area)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
ABW
Aruba
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ADO
Andorra
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AFG
Afghanistan
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
5.66842370143
4.62214923317
7.25929833817
5.50236079238
5.84014771828
6.08546557637
5.94038512266
5.77947771037
4.84304932735
..
..
AGO
Angola
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ALB
Albania
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
17.4262734584
9.99153259949
16.7774086379
..
..
ARE
United Arab Emirates
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ARG
Argentina
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
1.05130133428
..
..
..
..
..
..
..
..
..
ARM
Armenia
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
8.71298405467
8.7949743004
8.87235260446
..
..
..
ASM
American Samoa
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ATG
Antigua and Barbuda
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AUS
Australia
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
0.549923195084
0.569351230425
0.541069397042
0.545772647747
0.540268539298
0.585388285337
0.45199307085
0.443578535688
0.430531820482
..
..
AUT
Austria
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
1.00710900474
..
1.2258657677
..
1.35802469136
..
..
..
..
AZE
Azerbaijan
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
29.9894625922
29.9957841484
29.9326882625
30.0378628523
30.0546448087
30.0252312868
30.0462573591
30.0462573591
29.5143998318
..
..
BDI
Burundi
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BEL
Belgium
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
0.0717360114778
..
0.216606498195
..
0.36496350365
..
..
..
..
BEN
Benin
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BFA
Burkina Faso
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BGD
Bangladesh
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
51.3461332189
51.1223284287
52.6185344828
..
..
..
..
..
BGR
Bulgaria
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
1.48328952309
..
1.02564102564
..
1.42689601251
..
..
..
..
BHR
Bahrain
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BHS
Bahamas, The
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BIH
Bosnia and Herzegovina
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BLR
Belarus
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
1.25985977213
1.27423822715
1.26864010683
1.27274757173
1.27388535032
1.23911587408
1.24495289367
0.594370303914
0.526492662709
..
..
BLZ
Belize
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BMU
Bermuda
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BOL
Bolivia
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BRA
Brazil
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BRB
Barbados
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BRN
Brunei Darussalam
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
0
0
0
0
0
0
..
..
..
..
BTN
Bhutan
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
6.8345323741
6.78571428571
6.7615658363
6.7615658363
6.7615658363
..
..
..
..
BWA
Botswana
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
0
0
0.00773963855888
..
..
..
..
..
..
CAF
Central African Republic
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CAN
Canada
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHE
Switzerland
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHI
Channel Islands
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
0
14.2857142857
0
0
0
..
..
0
0
..
..
CHL
Chile
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
5.63040162684
..
..
..
..
CHN
China
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
8.96554594977
..
..
10.1515422651
..
..
..
..
..
CIV
Cote d'Ivoire
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CMR
Cameroon
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
COG
Congo, Rep.
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
COK
Cook Islands
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
COL
Colombia
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
COM
Comoros
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CPV
Cape Verde
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CRI
Costa Rica
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.39275766017
1.49584487535
1.55555555556
1.5
1.5
..
..
CUB
Cuba
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CUW
Curacao
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYP
Cyprus
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
25
25
22.9299363057
21.7948717949
20.9580838323
21.0191082803
19.7278911565
20.8695652174
20.8
..
..
CZE
Czech Republic
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
0.374795033966
..
0.399061032864
..
0.470698987997
0.235626767201
0.259495163954
..
..
DEU
Germany
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DJI
Djibouti
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DMA
Dominica
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DNK
Denmark
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
7.62331838565
7.65478424015
7.67494356659
7.70975056689
9.6786110085
9.66789667897
9.538114908
9.52023988006
9.64312832194
..
..
DOM
Dominican Republic
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
8.86679920477
7.91252485089
7.66112687475
9.03931901094
..
..
..
..
..
..
..
DZA
Algeria
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
1.80929708057
1.92733017378
2.00189269855
2.02763410311
2.19383302628
2.06976687889
..
..
..
EAP
East Asia & Pacific
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ECA
Europe & Central Asia
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ECU
Ecuador
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
8.58477970628
9.26896551724
9.52570745317
10.0266666667
10.222998388
10.7528332434
10.1813297515
12.6360499071
..
..
EGY
Egypt, Arab Rep.
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
EMU
Euro area
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ERI
Eritrea
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ESP
Spain
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
12.6253387534
12.8488391856
12.2697492539
11.7436620687
11.7096420244
11.6031174641
11.8483073847
11.9358965248
..
..
..
EST
Estonia
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ETH
Ethiopia
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
0.382826589047
0.365547868644
0.436318304592
0.394517665624
0.467542834336
0.475183264277
0.485922538231
..
..
FIN
Finland
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
2.8802880288
2.86225402504
2.84951024043
2.84065690191
2.8144239226
..
..
..
..
..
..
FJI
Fiji
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FRA
France
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
5.66835871404
..
5.06152695629
..
..
..
..
FRO
Faeroe Islands
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FSM
Micronesia, Fed. Sts.
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GAB
Gabon
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GBR
United Kingdom
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GEO
Georgia
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.97140587768
4.17163289631
4.00317082838
..
..
..
GHA
Ghana
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GIB
Gibraltar
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GIN
Guinea
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GMB
Gambia, The
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GNB
Guinea-Bissau
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GNQ
Equatorial Guinea
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRC
Greece
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
28.6244541485
..
33.4928229665
17.7224371373
27.3619108552
17.2681978369
16.9045005488
..
..
GRD
Grenada
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
..
GRL
Greenland
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GTM
Guatemala
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GUM
Guam
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GUY
Guyana
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HIC
High income
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HKG
Hong Kong SAR, China
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HND
Honduras
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HRV
Croatia
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
0.752508361204
1.02040816327
1.32122213047
0.325203252033
0.665557404326
..
0.384615384615
..
..
HTI
Haiti
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HUN
Hungary
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
2.54049445865
2.02933151432
1.27920859628
1.32552935101
2.06647149991
1.3816925734
1.83295867197
..
..
IDN
Indonesia
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
16.5290842772
11.7495850706
14.8669010547
16.0134833286
..
..
..
..
..
..
IMY
Isle of Man
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IND
India
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
32.2281975938
31.6168343174
29.8770444071
31.6293042653
32.9181910174
33.5667016719
34.3371784385
34.6595588399
35.1161071998
..
..
IRL
Ireland
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IRN
Iran, Islamic Rep.
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
12.5675696849
12.7381175442
12.9106045281
13.0819092516
17.9987823056
18.2124049152
18.4219832338
19.0209963971
..
..
..
IRQ
Iraq
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ISL
Iceland
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ISR
Israel
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
31.550802139
30.9058614565
..
..
..
..
29.9227799228
..
28.3524904215
..
..
ITA
Italy
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
18.3336687462
..
17.7320846906
..
18.825024714
..
..
..
..
JAM
Jamaica
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
JOR
Jordan
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
7.14285714286
7.31707317073
7.06467661692
7.32883317261
7.89733464956
8.25147347741
7.47663551402
9.46502057613
9.17073170732
..
..
JPN
Japan
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
35.4683914041
35.3348729792
35.0506756757
35.9991514637
36.2745098039
36.0522372083
35.8924731183
35.0907519447
35.1703189412
..
..
KAZ
Kazakhstan
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KEN
Kenya
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
0.0447110548083
0.0261018718771
0.111632060728
0.0407528156491
0.0407377231316
0.0443557329785
0.0332103321033
0.0330882352941
0.036563071298
..
..
KGZ
Kyrgyz Republic
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
9.53043801039
9.53043801039
9.4741697417
9.49860724234
9.31596091205
9.30015841953
9.31208053691
9.30362636338
9.39059998116
..
..
KHM
Cambodia
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KIR
Kiribati
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KNA
St. Kitts and Nevis
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0
0
0
0
0
..
..
KOR
Korea, Rep.
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
54.8723293382
53.4174553102
52.8790279979
52.0999468368
51.3993541442
51.6304347826
..
..
..
..
KSV
Kosovo
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KWT
Kuwait
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LAC
Latin America & Caribbean
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LAO
Lao PDR
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LBN
Lebanon
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
18.9792663477
19.7492163009
20.0612557427
20.6095791001
19.941775837
..
..
..
..
LBR
Liberia
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LBY
Libya
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LCA
St. Lucia
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LIC
Low income
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LIE
Liechtenstein
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LKA
Sri Lanka
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LMC
Lower middle income
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LMY
Low & middle income
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LSO
Lesotho
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LTU
Lithuania
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LUX
Luxembourg
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LVA
Latvia
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
..
..
MAC
Macao SAR, China
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAF
St. Martin (French part)
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4.29746013781
4.30491180099
3.90369331463
4.11214953271
4.42947199893
4.61154549992
..
..
MCO
Monaco
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MDA
Moldova
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
11.0673493501
8.99763220205
9.01898734177
9.04044409199
9.12364945978
9.18244059605
9.05432595573
9.18984280532
9.22330097087
..
..
MDG
Madagascar
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
2.17907597385
2.17907597385
2.17907597385
2.17907597385
2.17907597385
2.17907597385
2.17907597385
2.17896927408
2.17896927408
..
..
MDV
Maldives
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MEX
Mexico
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
1.94449760766
1.99903938521
5.20483091787
5.26829268293
5.18748595931
5.4547044761
5.471006389
..
..
MHL
Marshall Islands
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MIC
Middle income
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MKD
Macedonia, FYR
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
7.34200743494
..
..
..
..
MLI
Mali
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MLT
Malta
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
20
..
22.2222222222
..
22.2222222222
22.2222222222
22.2222222222
..
..
MMR
Myanmar
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
22.8373702422
23.1997834326
23.4040664121
24.8081400362
24.7580106809
..
..
..
..
MNA
Middle East & North Africa
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNE
Montenegro
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNG
Mongolia
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNP
Northern Mariana Islands
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MOZ
Mozambique
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MRT
Mauritania
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MUS
Mauritius
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
19.8113207547
20.7547169811
20.1923076923
20.1923076923
20.3883495146
20.7920792079
21.4285714286
21.4285714286
..
..
MWI
Malawi
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.603621730382
0.56338028169
0.744167337088
0.529970760234
..
..
..
MYS
Malaysia
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MYT
Mayotte
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NAM
Namibia
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NCL
New Caledonia
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NER
Niger
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NGA
Nigeria
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NIC
Nicaragua
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NIU
Niue
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NLD
Netherlands
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
10.5538140021
..
..
..
..
NOR
Norway
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4.23076923077
4.15057915058
5.41062801932
..
..
..
..
..
NPL
Nepal
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
27.553668318
27.730294397
27.7434679335
27.7434679335
27.7434679335
27.7434679335
27.7434679335
27.7434679335
..
..
..
NRU
Nauru
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NZL
New Zealand
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
3.17381601785
..
..
..
..
..
..
..
..
..
OMN
Oman
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4.03050108932
..
..
PAK
Pakistan
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
65.6111929308
65.9699303264
66.9482188762
69.4043655198
70.140428677
70.0989373397
71.056547619
72.7929984779
73.8584474886
..
..
PAN
Panama
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PER
Peru
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PHL
Philippines
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PLW
Palau
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PNG
Papua New Guinea
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
POL
Poland
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.446372438074
..
0.445076342956
..
..
..
..
PRI
Puerto Rico
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
7.65765765766
7.90697674419
..
..
..
8.46560846561
..
..
..
..
PRK
Korea, Dem. Rep.
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRT
Portugal
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
11.9316688568
..
11.443326991
..
..
..
..
PRY
Paraguay
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PYF
French Polynesia
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
QAT
Qatar
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ROM
Romania
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
2.20975807542
3.29329194223
3.84459459459
2.31422505308
0.324400564175
0.683809388133
2.36232098036
1.89723903735
2.18886341788
..
..
RUS
Russian Federation
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
2.06906728273
2.05214838611
2.0996222437
2.09741642745
2.0743694362
2.05719111969
2.0193722356
1.97082053329
..
..
..
RWA
Rwanda
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SAS
South Asia
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SAU
Saudi Arabia
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SDN
Sudan
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
1.03458156756
1.13431948264
1.23348476174
1.1831143334
1.07503129372
0.861751762507
1.16479691955
1.04365505994
..
..
SEN
Senegal
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
0.636363636364
0.62197650311
0.686734577086
0.759120779515
0.729335494327
..
..
..
..
..
SGP
Singapore
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SID
Small island developing states
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLB
Solomon Islands
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLE
Sierra Leone
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLV
El Salvador
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
1.80528691167
1.73913043478
1.91693290735
2.17096336499
2.12765957447
..
..
..
..
SMR
San Marino
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SOM
Somalia
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SRB
Serbia
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.513225424398
0.514545814368
0.514240506329
0.613254203759
..
..
SSA
Sub-Saharan Africa
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
STP
Sao Tome and Principe
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SUR
Suriname
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SVK
Slovak Republic
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
4.92239467849
3.35270451498
4.20393559928
2.17166494312
1.33951571355
1.28932439402
1.29533678756
1.34228187919
1.03626943005
..
..
SVN
Slovenia
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
0.588235294118
0.594059405941
0.588235294118
0.609756097561
0.392927308448
0.61099796334
0.803212851406
0.813008130081
0.854700854701
..
..
SWE
Sweden
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SWZ
Swaziland
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SXM
Sint Maarten (Dutch part)
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYR
Syrian Arab Republic
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
9.85303699414
10.3487953973
10.3124096037
10.1030482093
10.0453335252
9.7567995395
8.90135174001
..
..
TCA
Turks and Caicos Islands
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TCD
Chad
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TGO
Togo
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
THA
Thailand
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TJK
Tajikistan
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
14.9313621964
15.0348910975
15.0200973133
14.7789473684
..
..
TKM
Turkmenistan
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TMP
Timor-Leste
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TON
Tonga
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TTO
Trinidad and Tobago
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
12.7272727273
..
..
..
..
..
..
..
TUN
Tunisia
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
3.64248868302
3.67714841749
3.55682747343
3.62156663276
3.62377850163
3.80379359576
3.88577256502
4.0076915292
4.12708141792
..
..
TUR
Turkey
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
12.658996019
12.8309221533
12.6546954623
12.6507047037
12.87876917
13.2008606506
13.3300955984
13.4023797898
..
..
TUV
Tuvalu
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TZA
Tanzania
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
UGA
Uganda
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
UKR
Ukraine
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
5.27322933824
5.26825958416
5.26978591495
5.26213780405
..
..
UMC
Upper middle income
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
URY
Uruguay
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.15824823521
1.07475355969
1.20886501007
1.16836631323
..
..
USA
United States
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
UZB
Uzbekistan
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VCT
St. Vincent and the Grenadines
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VEN
Venezuela, RB
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VIR
Virgin Islands (U.S.)
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VNM
Vietnam
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VUT
Vanuatu
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
WBG
West Bank and Gaza
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
4.33604336043
4.32432432432
4.08719346049
4.08719346049
4.05405405405
4.35967302452
4.63215258856
4.61956521739
..
..
..
WLD
World
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
WSM
Samoa
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
YEM
Yemen, Rep.
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
2.8829895164
1.99616939774
2.86539032984
3.04808060196
3.26744825835
..
..
..
..
..
ZAF
South Africa
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ZAR
Congo, Dem. Rep.
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ZMB
Zambia
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ZWE
Zimbabwe
AG.LND.IRIG.AG.ZS
Agricultural land under irrigation (% of total ag. land)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ABW
Aruba
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ADO
Andorra
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AFG
Afghanistan
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1200.6
1160
1097.7
1135.5
1140.3
1219.6
1203.7
1349.3
1389.1
1286
806.3
1006.6
1669.7
1458
1334.8
1790.4
1551.6
1913.5
1418.1
2031.3
..
..
AGO
Angola
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
320.9
417.4
397
267.8
298.4
402.2
653.3
567.3
701.6
620.3
572.1
623.7
639.7
668.4
499.7
598.8
449.1
526.8
729.9
587.7
..
..
ALB
Albania
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
2794.3
2071.8
2269.2
2685
2460.9
2841.4
2450.8
2833.3
2872.1
2798
3175
3030.7
3291.8
3185.7
3466.2
3462.1
3602.6
3728.3
4081.1
4315.3
..
..
ARE
United Arab Emirates
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
2216.4
1594
2315.3
858.5
1855.3
1741.9
1194.8
5137.9
7200
4156.8
6500
3533.3
3411.7
2500
2000
2000
2600
3000
3000
3000
..
..
ARG
Argentina
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
2232.2
2666.1
3057.3
2846.5
2815.9
2799.7
2753.4
3307.4
3691.7
3351.5
3453.4
3206.4
3240.7
3673
3668.6
4232.2
3702.2
4352.4
3927.1
3166.6
..
..
ARM
Armenia
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
1842.8
1688.8
1439.9
1859
1877.1
1365.8
1768.3
1802.4
1410.2
1902.6
2229
1589
2323.3
1974.9
1364.2
2647.4
2386.4
2229.7
..
..
ASM
American Samoa
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ATG
Antigua and Barbuda
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
2380.9
1833.3
1722.2
1578.9
1707.3
1607.1
1727.2
1846.1
1882.3
2793.1
1600
1677.4
1562.5
1571.4
1578.9
1628.5
1625
1777.7
1619
1736.8
..
..
AUS
Australia
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1716.1
1603.3
1896.5
1979.4
1266.6
1871
2129.1
1953.7
1986.2
2110.9
1962.3
2219.3
1088.2
2089.4
1704.5
2087.3
1054.5
1231.3
1696.5
1764
..
..
AUT
Austria
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
5577.3
5463
5160
5098.5
5399.7
5515.2
5391.6
5910.3
5694.9
5939.1
5415.6
5859.9
5647.1
5580.9
6872.5
6345.9
5723.5
5846.9
6809.8
6133.4
..
..
AZE
Azerbaijan
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
2112.7
1618.9
1632.6
1507
1578.1
1710.1
1558.8
2085.9
2335.1
2599.5
2623.2
2604.1
2588.7
2593.1
2599.3
2667.4
2741.4
2606.6
..
..
BDI
Burundi
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1348.5
1368.9
1391.3
1387.2
1288.8
1331.8
1388.7
1449
1275.9
1309.4
1243.3
1306.4
1334.2
1317
1353.9
1376.9
1297.7
1370.8
1318.3
1319.4
..
..
BEL
Belgium
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
8021.3
8218.1
8500.8
8530.6
9184.9
8649.5
8373.3
8637.7
8885.7
9710.7
..
..
BEN
Benin
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
847.8
878.5
913.3
919.1
956.8
1086.4
1009.5
1116.9
1055.9
1162.6
1102.1
1069.2
945.1
1148.7
1146.5
1136.3
1125.1
1067.9
1157.1
1423.5
..
..
BFA
Burkina Faso
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
600.2
876.5
871.5
936.1
787.8
851
916.5
704.5
888.9
912.9
859
967.7
942.6
996.3
940.6
1127.2
1203.8
936.1
1039.8
1002
..
..
BGD
Bangladesh
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
2490.5
2585.7
2625.6
2647.7
2475.8
2593.1
2694.1
2682.4
2865.3
3116.4
3384.3
3311
3394.9
3479.3
3439.4
3681.5
3761.3
4020.8
4102.2
4140.4
..
..
BGR
Bulgaria
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
3953.7
3990
2953.7
2512.4
2798.6
3068.9
1908.5
3011.4
2684.7
2946.8
2459.1
2899.6
3156.2
2371.3
4077.7
3387
3572.4
2088.8
4100.8
3413
..
..
BHR
Bahrain
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BHS
Bahamas, The
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
2032.5
1582.2
1666.6
1600
1793.1
1793.1
1793.1
1740
1984.2
2165.7
1950
1935.4
1906.2
1899.4
2151.5
2117.6
2794.1
2222.2
2067.4
2195.9
..
..
BIH
Bosnia and Herzegovina
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
3552.7
3515.5
3605.9
3586.3
3536.7
3523.7
3481.1
3756.3
2550.2
3201.6
3828.1
2521.6
4433.5
4253.2
4290.8
3223.2
4427
4539
..
..
BLR
Belarus
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
2741.4
2795.8
2271.1
2065.1
2193.6
2409.4
1891.4
1501.4
1951.6
2002.7
2482.3
2427
2992.7
2854.8
2555.1
2888.1
3554.6
3374.4
..
..
BLZ
Belize
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
2013.8
2276.1
2098.3
2131.1
1753.5
1777
2505.8
2395
2459.2
2806.3
2420.2
3101.2
2520.3
2955.6
2523.8
3041.7
2244.9
2638.4
2428
2972
..
..
BMU
Bermuda
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BOL
Bolivia
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1360.7
1358
1399.7
1536.9
1426.6
1561.1
1613.5
1388
1494.5
1366.5
1642
1784.9
1712
1963.3
1618.6
1926.9
2100
1763.2
2016.4
2089.1
..
..
BRA
Brazil
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1755
1850.6
2142.4
2354.5
2284.3
2513.1
2573.1
2522
2581.2
2720.9
2661.3
3149.6
2846
3385.2
3131.4
2882.5
3210.5
3553.1
3830.8
3533
..
..
BRB
Barbados
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
2674.4
2625
2571.4
2666.6
2600
2750
2666.6
2600
2600
2600
2608.6
2604.1
2626.5
2630
2659.5
2736.8
2700
2666.6
2484.2
2639.5
..
..
BRN
Brunei Darussalam
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1550
1600
1233.3
2257.1
1670.2
1638.7
1651.8
1670.4
1657.9
526.3
650
729.1
729.4
792.7
819
872.8
1223.4
1115.8
1221.2
1290.9
..
..
BTN
Bhutan
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1287.8
1260.9
1317.8
1381.1
1317.9
1437.5
1523.2
1574.6
1590.2
1550.2
1451.2
1454
1561.1
1807.8
2995.2
2337.2
2201.6
2000.6
2742.2
2159
..
..
BWA
Botswana
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
265.5
382.4
288.6
422.6
226.6
469.8
335.2
301.9
246.7
226.2
130.6
234
358.8
1213.4
576.5
536.2
568.4
603.4
538.2
569.4
..
..
CAF
Central African Republic
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
809.8
883.7
984.9
985.8
867.1
859.1
866
947.9
965.2
986.6
968.8
1011.3
1048.2
1019.4
990.9
961.5
859.8
951.2
946.7
948.3
..
..
CAN
Canada
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
2636.2
2580.7
2460.6
2647.1
2594.8
2699.8
2844.2
2584.1
2782.6
3087.7
2805.7
2446.8
2375.4
2759.5
3141.8
3215.9
3046.3
2964.9
3386.9
3301.1
..
..
CHE
Switzerland
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
5983.8
6292.7
6028.1
6403.8
5978.2
6278.4
6879.9
6578.7
6773.5
5790.7
6601.1
6160.8
6431
5086.5
6732.4
6300.3
6155.9
6421.8
6416.4
6578.6
..
..
CHI
Channel Islands
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHL
Chile
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
3619.6
4050.8
4177.4
4246
4489.2
4472.4
4264.2
4507.4
5052
4061.1
4362.1
4935.6
5183.3
5390
5657.4
5811.2
5998.3
5767.5
5868.3
5472.2
..
..
CHN
China
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
4324.6
4232.7
4366.6
4567.6
4510
4663.7
4898
4826.1
4954
4947
4756.3
4802.2
4889.6
4877.6
5189.6
5225.5
5313.4
5319.8
5548.4
5449.6
..
..
CIV
Cote d'Ivoire
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
886.5
844.2
858.5
961
890.2
890.4
1024.7
1198.5
1498.5
1645.7
1682.3
1719.9
1750.9
1826.9
1853.9
1836.2
1820.7
1593.8
1728.3
1899.7
..
..
CMR
Cameroon
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1259.2
1178.6
1072.3
959.3
970
1175.1
1368.2
1405.2
1407.6
1893.5
1763.7
1709.1
1648.2
1577.7
1563.2
1508.7
1694
1522.3
1510.9
1524
..
..
COG
Congo, Rep.
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
624.3
707.3
653
630.3
643.4
826.8
854.4
827.8
842
757.5
767
777.3
777.4
927.8
766
756.9
741.4
770.9
776.3
861.5
..
..
COK
Cook Islands
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
COL
Colombia
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
2475.3
2450.7
2549.9
2505.4
2506
2643.9
2683.9
2906.7
3060.4
3146.6
3646
3548.3
3713.4
3993.4
4005.4
3948.4
3780
3937.9
4154.4
4017.4
..
..
COM
Comoros
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1266.9
1305.9
1302.5
1253.4
1326.9
1297
1199.2
1165
1084.3
1231.2
1197.2
1278.7
1168.6
1197
1254.8
1284.5
1322.2
1379.6
1290.5
1063.9
..
..
CPV
Cape Verde
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
334.6
252.8
302.1
359.1
250.3
262.8
317.1
146.9
141.4
1162
794.7
637.3
148.4
379.1
385.1
243.2
140.6
110
336.8
223.6
..
..
CRI
Costa Rica
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
3096.7
3298.9
3169
3419.3
3815.4
3777.6
3483.3
3790.7
3768.9
3676.8
3626.2
3549.6
3683.4
3171.3
3059.3
3189.1
3758.9
3720.2
3757.8
3769.7
..
..
CUB
Cuba
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
2342.1
2179.4
1752.6
1326.9
1793.8
1971.8
2010.9
2190.3
1874.7
2750.8
2528.3
2880.6
3123.2
3188.7
2921.5
2561.5
2782.8
2912.8
2674.2
2068.8
..
..
CUW
Curacao
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYP
Cyprus
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1885.9
1335.9
2789.8
2964.3
2553.5
2384.9
2395.4
1110.6
1114.4
2156.4
931.4
2275.8
2394.4
2263.9
1677.9
1201.2
1128.5
1458.6
1327.5
900
..
..
CZE
Czech Republic
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
4019.5
4095.5
4183.2
4196.3
4135.1
3970.7
4350.8
3907.5
4511.2
4328.4
3944
5448.9
4746.3
4163
4523.8
5363.5
5074.1
..
..
DEU
Germany
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
5411.1
5986.1
5335.6
5710.5
5827.5
6107.6
6281.8
6474.9
6339.1
6697.6
6452.8
7051.9
6251.4
5749
7357.2
6723.2
6486.6
6182.9
7118.7
7201
..
..
DJI
Djibouti
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1666.6
1500
1166.6
1833.3
2000
1666.6
2000
1833.3
1666.6
2000
1833.3
1714.2
1666.6
1666.6
1833.3
1500
1666.6
1857.1
1500
1111.1
..
..
DMA
Dominica
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1363.6
1327.1
1248
1333.3
1430.7
1297.7
1409
1478.2
1512.5
2208.6
2328.7
2420.6
2602.9
1333.3
1382.9
1357.1
1785.7
1448.2
1351.1
1436.9
..
..
DNK
Denmark
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
6117.9
5911.5
4314.2
5677.6
5530.5
6291.1
6052.5
6207.2
6100
5862
6216
6126.5
5761.8
6096.6
6013.1
6153.3
5778.3
5675.7
6017.3
6775.9
..
..
DOM
Dominican Republic
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
3996.1
4130.7
4108.3
4014.8
3356
3847.3
3755.2
4187.5
3581.3
3995.6
4138.7
4304.7
4343.3
3995
3819.3
4623.3
3837.5
3846
4250.1
2846.1
..
..
DZA
Algeria
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
687.6
1114.5
943.2
741.7
749.6
829.6
1337.9
779.8
846.2
1069.9
883.2
1106.9
1058.6
1470.3
1344.1
1500.8
1503.6
1253.4
1034
1653.9
..
..
EAP
East Asia & Pacific
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
3796.46170968
3781.48966295
3872.82582095
4021.33266305
3996.1322189
4070.18407982
4249.62743135
4209.3219937
4303.84554111
4298.19685322
4209.76201551
4240.00448256
4323.06592786
4320.13407587
4571.59500912
4613.72721407
4693.2751827
4724.50435478
4910.1208949
4859.52813144
..
..
ECA
Europe & Central Asia
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
2596.4787748
2670.43823932
1904.25101534
1875.53096662
1683.71964818
1591.93052785
1581.90513407
1973.98942702
1694.99768252
1808.03313875
1741.55914162
2111.08505913
2133.13368195
1906.99310995
2242.75403793
2181.79281565
2192.27170375
2067.61524289
2553.2957112
2475.4981699
..
..
ECU
Ecuador
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1723.6
1673.9
1775.7
1959.8
2062.7
1926.7
1856.7
1884.2
1955
2122.5
2234.7
1899.4
2443.9
2617.4
2922.1
2841.6
2841.7
3153.6
2991.5
2974.4
..
..
EGY
Egypt, Arab Rep.
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
5702.9
5612.9
5898.7
5995.4
5861
5903.7
6499
6605.4
6797.4
7166.4
7280
7099.3
7445
7514.5
7555.2
7548
7514
7450.3
7500.4
7571.4
..
..
EMU
Euro area
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
4489.70134477
4816.4788256
4541.24293972
4844.65524172
4795.35747347
4685.87692342
5315.05549981
5175.4856137
5453.7212502
5321.53739695
5492.54953462
5356.72349204
5478.3576521
4888.16338439
6005.23907655
5338.50116488
5402.58182154
5439.95924632
5898.0038858
5816.90356257
..
..
ERI
Eritrea
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
54.2
767
415.9
264.9
265.5
959.6
746.5
377.2
637
158.2
261
275.2
758.1
798.4
938.4
252.2
500
..
..
ESP
Spain
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
2484.5
2490.7
1956.1
2720.3
2350.4
1730.5
3307.4
2767.6
3401
2708.7
3609.7
2809.6
3228.7
3258.7
3760.4
2166
3036.5
3944.8
3580.8
2939.5
..
..
EST
Estonia
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
1303.6
2161
1597.1
1687.2
2182.8
1991.9
1630.7
1251.2
2114.7
2037
2016.6
1921.7
2330.2
2694.3
2209.9
3009.4
2794
2760.5
..
..
ETH
Ethiopia
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
1312.9
974.1
1033.5
1214
1263.8
1140.8
1124.5
1116.3
1197.9
1351.1
1121.7
1170.9
1362
1651.9
1391.9
1421.7
1676.8
..
..
FIN
Finland
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
3543.1
3347.6
2845.8
3606.4
3587.2
3409
3438
3410.1
2402.7
2541.1
3498.6
3164.3
3294.9
3177.9
3210.6
3422.9
3288.7
3654.7
3542.2
3760.3
..
..
FJI
Fiji
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
2180.9
2317.5
2153.7
2275.2
2300.5
2648.6
2104.3
2242.1
753.8
2705.3
2521
2339.4
2374.2
2442.5
2374.5
2358.8
2283.3
2500.4
2009.3
2457.9
..
..
FRA
France
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
6082.6
6537.9
6488.2
6513.2
6542.2
6457.7
7081
6889.8
7390.4
7267.5
7239.6
6739.1
7468.2
6133.9
7538.1
6981.2
6831.8
6551.4
7289
7455.7
..
..
FRO
Faeroe Islands
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FSM
Micronesia, Fed. Sts.
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
1193.5
1055.5
937.1
970.8
1006.7
1061.2
928.5
1144.7
1108.8
1075.9
1141
1071.4
1192.8
1405.5
1450.2
..
..
GAB
Gabon
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1749.9
1712.2
1592.3
1764.1
1850
1905.2
1786.8
1550.2
1587.9
1672.9
1630.3
1307
1279.2
1588
1321
1444.6
1662.9
1665.8
1881.2
2388.8
..
..
GBR
United Kingdom
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
6170.9
6467.6
6324.5
6424.4
6555.5
6872.7
7320.3
6695
6661.5
7043.5
7164.7
6291.7
7075.6
7029.4
7030.5
7196.1
7277.4
6634.7
7420.1
7072.2
..
..
GEO
Georgia
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
1997.7
1767.9
2015.5
2150.8
2492.9
2203.4
1592.7
2110.2
1362.4
2012.2
1860.1
2136.8
2003.4
2011.5
1583.8
2114.5
2090.5
1917.6
..
..
GHA
Ghana
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
989.2
1220.8
1042.1
1340.2
1327.4
1354.1
1389.2
1321.7
1333.8
1296.9
1309.1
1186
1349
1396.3
1373.3
1432.3
1334.4
1316.9
1598.1
1659.8
..
..
GIB
Gibraltar
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GIN
Guinea
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1455
1421.9
1392.5
1405.2
1422.2
1454.7
1458.8
1463.2
1468.2
1473.7
1492
1483
1487.2
1484.7
1491.3
1495.6
1502
1514
1677.7
1339.2
..
..
GMB
Gambia, The
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1003.9
1108.3
1230.8
1181.5
1155.1
1028.3
1095.7
934.2
1027.9
1291.7
1295.8
1282.7
959.6
1197.7
1170.7
1040.3
1026.3
800.3
976.5
1049.3
..
..
GNB
Guinea-Bissau
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1530.7
1614.4
1441.6
1431.5
1394.7
1402.2
1366.5
1110.2
1136
1016.8
1097
1004.8
1067.2
1098.5
1275.1
1534.2
1674.5
1346.1
1427.3
1444.5
..
..
GNQ
Equatorial Guinea
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRC
Greece
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
3035.8
4123.9
3606.7
3553.1
3848
3750.7
3703.9
3789.4
3584.8
3667.8
3899.7
3846.1
3745.9
3693.7
4033.9
4034.3
3918.8
3923.4
4404
4102.9
..
..
GRD
Grenada
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
992.3
1113.2
1021.2
989.7
991.4
983.3
1000
1000
1022.9
1500
1582.2
1651
1777.2
1785.4
1514.2
984.3
1000
1000
931
988.5
..
..
GRL
Greenland
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GTM
Guatemala
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1997.5
1810
1839.5
1813.2
1893.7
1911
1784.1
1490.1
1679.7
1737.1
1772.8
1825.4
1726.4
1630.5
1573.4
1370.9
1499.7
2461.9
2257.8
1965.7
..
..
GUM
Guam
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
2100
2125
2666.6
1800
2375
2000
2416.6
2285.7
2000
2071.4
2000
2000
2000
2272.7
2000
2066.6
2000
2333.3
3000
3333.3
..
..
GUY
Guyana
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
2980.3
3164.3
3425.7
3348.8
3787.2
3893.8
3958.5
3964.1
3991.7
3777.5
3802.9
3947.8
4091.2
4155.5
4205.6
3861.6
4488.1
4222.6
4161.2
2567.6
..
..
HIC
High income
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
4137.74272752
4111.06361566
4316.7835345
3948.5487759
4488.04465898
4117.50009762
4491.54672423
4478.06008328
4698.4172731
4734.55636683
4715.18819456
4704.82712305
4501.67593141
4604.7779163
5284.02406096
5053.6123047
4802.11091285
5005.43451729
5226.7367686
5444.81351906
..
..
HKG
Hong Kong SAR, China
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HND
Honduras
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1468.4
1316.6
1328.5
1328.7
1310.7
1540.8
1579.6
1570
1089.5
1169.7
1367.5
1446.5
1341
1522.5
1370.2
1532.9
1557.7
1748
1750.7
1752.1
..
..
HRV
Croatia
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
3974.9
4257.8
4140.3
4368.3
4512.3
5013.5
4673.6
4609.3
3985.6
4701.4
5185.6
3409.7
4671.8
5592.9
5419.6
4560.3
6641.3
6117
..
..
HTI
Haiti
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1026.7
987.6
976
915.2
923.9
918.1
974
1004
913.5
969.3
931.8
826.5
920.4
878.4
933.8
956.8
962.8
959.7
961
990.7
..
..
HUN
Hungary
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
4520.8
5486.1
3646
3085.2
3972.3
4064.4
3999.5
4785.7
4555
4706.3
3632.6
4884.8
3963.2
3038.8
5589.9
5526.5
5097.3
3492
5665
4712.4
..
..
IDN
Indonesia
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
3800.2
3862.1
3817
3916.2
3865.4
3842.7
3944.8
4011.3
3816.8
3895.7
4026.3
4044.9
4169.5
4248
4274.4
4311.3
4365.8
4464.7
4694.2
4812.6
..
..
IMY
Isle of Man
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IND
India
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1891.2
1926.3
2024.8
2084.8
2115.5
2111.7
2180.9
2228.5
2248.4
2313.6
2294.1
2423
2187.3
2399.4
2350
2411.5
2446.5
2583.3
2672.6
2571.9
..
..
IRL
Ireland
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
6577.4
6550.1
6831.8
5801.3
6079.5
6668.5
7434
6385.4
6343
7170.7
7841.5
7628.1
6597.2
7157.7
8158.7
7015.1
7465.5
7188.9
7597.4
6797.7
..
..
IRN
Iran, Islamic Rep.
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1445.2
1508
1615.4
1638.7
1816.7
1890.3
1845.9
1859.7
2159.5
2047.7
1833.3
1931
2274.5
2382
2415.1
2299.3
2575.2
2451.8
1897.1
2289.2
..
..
IRQ
Iraq
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1060.9
799.5
754.9
706.1
792.4
801.2
899.6
799.9
864.8
589.9
363.1
692.7
1306.4
1209.6
1191.1
947.4
1329.7
1265.6
733.7
1221.9
..
..
ISL
Iceland
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ISR
Israel
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
3485.9
2644.1
3269.2
3015.8
1885.6
3133.6
2797.4
1967.4
2470.1
1668.3
2443.2
2439.7
2667.1
3306.5
3067.1
2952.3
2397.6
2749.7
2442.9
3181.5
..
..
ITA
Italy
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
3944.9
4366.2
4707.4
4851.3
4675.4
4669
4948.6
4747.6
5078.2
5047.3
4993.9
4821.4
4959.1
4307.1
5444.4
5361.3
5316
5173.9
5353
5035.4
..
..
JAM
Jamaica
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1115.7
1285.1
1493.4
1572.8
1405.7
1362.3
1374.4
1159.7
1149.6
1220.5
1146.8
1190.2
1173.1
1221.8
1178
1255.8
1229.5
1197.1
1253.4
1261.8
..
..
JOR
Jordan
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1219.9
985.4
1294.5
1743.3
1352.5
997.8
1196
1076.6
1182.7
3011
1726.2
1373.5
1293.6
1417.8
1310.7
1524.8
966.5
733.8
943.6
1043.5
..
..
JPN
Japan
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
5846.3
5415.6
5876.7
4429.3
6448.6
6003.1
6154.7
6061.4
5809.4
5998.9
6256.9
6107.2
6085.6
5451.1
5942.5
6154.2
5852.5
6062.1
6262.6
5919.9
..
..
KAZ
Kazakhstan
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
1338.4
988.6
839.5
580.7
722.8
871.3
561.1
1303.8
942.7
1216.5
1145.8
1077.7
884.6
997.4
1170
1327.4
1012.2
1254
..
..
KEN
Kenya
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1561.8
1712.5
1661.1
1461.2
1918.2
1753
1402.3
1397
1589.9
1427.7
1374.9
1639.9
1488.4
1594
1806.3
1646.2
1646.7
1773.3
1416.6
1203.8
..
..
KGZ
Kyrgyz Republic
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
2771.9
2463.5
1811.9
1629.7
2158.1
2372.9
2493.4
2483.5
2669.3
2866.8
2665.4
2774.1
2876.4
2677.8
2550.6
2512.9
2380.2
3034.2
..
..
KHM
Cambodia
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1362.1
1390.6
1315.9
1301.2
1481.1
1778.8
1800.9
1761.4
1777
1933.5
2133.6
2092.5
1922
2160.6
2024.8
2508.6
2533
2677.2
2804.7
2946.6
..
..
KIR
Kiribati
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KNA
St. Kitts and Nevis
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KOR
Korea, Rep.
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
5852.9
5735.4
6066.9
5502.8
5987.1
5849.9
6486.4
6655.2
6088.5
6367.4
6435.7
6560.4
6087.2
5728.7
6496.6
6376.1
6401.4
6109.3
7072.8
7238.3
..
..
KSV
Kosovo
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KWT
Kuwait
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
3652.6
86
5597.1
5728.8
5840.9
6425
6244.9
3362.9
2318.4
2258.8
2323.7
2016.2
2424.7
2647.4
2508.8
2753
3025
3313.7
2913.7
3084.2
..
..
LAC
Latin America & Caribbean
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
2089.41109487
2175.36102482
2437.09369741
2489.36493864
2439.94370844
2547.35404211
2572.4714291
2712.93288294
2811.70581806
2822.14231847
2864.06685569
3006.33212994
2927.02226874
3257.65161627
3190.19548411
3199.3781507
3255.26445903
3558.35931758
3634.79023928
3337.34655986
..
..
LAO
Lao PDR
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
2268
2186.6
2610.9
2242.7
2555.1
2492.6
2523.3
2719
2687.6
2899.7
3017.6
3094.3
3244.4
3116.7
3261.4
3577.2
3440.1
3645.1
3803.2
3807.5
..
..
LBN
Lebanon
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1878.2
2024.9
2099.9
2154.5
2067.9
2568.9
2449.6
1639
1943.2
1738.3
2414.9
2911.7
2467.4
2372.4
2729
2699.9
2682.4
2183.5
2683.4
2831.8
..
..
LBR
Liberia
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1028.5
909
916.6
1083.3
1111.1
1124
1249.3
1245.5
1293.3
1277.1
1278
1115.3
916.6
833.3
916.6
1290
1261.5
1448.7
1553.4
1609.7
..
..
LBY
Libya
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
674.4
700.4
756.8
695.3
674.9
677.1
678
836.8
705.7
652
643.7
607.9
629.4
554.5
552.4
621.2
622.6
625.3
621.9
568.8
..
..
LCA
St. Lucia
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LIC
Low income
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1565.33418525
1630.64753336
1562.32879452
1599.03367118
1532.04448776
1509.62548479
1569.12860734
1535.64855734
1601.9974977
1711.39728252
1735.08430527
1765.49382023
1781.14010969
1730.33434028
1760.27124621
1840.60595108
1930.10547404
1966.94183374
1969.96128172
2046.56591097
..
..
LIE
Liechtenstein
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LKA
Sri Lanka
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
2965
2925.8
2957.7
3024.1
2901.9
3052.6
3008.5
3143.1
3400
3191.9
3338.1
3424.9
3405
3282.5
3563.7
3467.1
3579.8
3727.8
3595.3
3663.5
..
..
LMC
Lower middle income
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1927.81231205
1934.4343598
2038.55561226
2126.25256608
2084.46048246
2120.84768395
2170.81065994
2188.99931423
2203.31469527
2262.41097085
2272.64070248
2410.06029647
2345.42234289
2404.71181297
2508.31028892
2452.18005512
2534.84843033
2571.40968082
2749.79027446
2753.68407662
..
..
LMY
Low & middle income
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
2429.20205735
2447.16507276
2349.04056525
2395.83757721
2347.7514635
2381.10103505
2485.20075056
2552.06339679
2574.90698948
2637.82297805
2580.44392931
2686.20176969
2673.9512756
2677.80001928
2808.20344095
2798.87558046
2887.95337951
2925.04109357
3086.35985286
3064.77595861
..
..
LSO
Lesotho
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1036.8
462.2
615.4
976.6
819.2
773.9
1183.5
1013.9
1353.3
943.3
718.3
995
737.2
610.5
596.6
689.9
522.4
435.5
390
421
..
..
LTU
Lithuania
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
1937.9
2106.9
1756.5
1856.9
2423.8
2535.1
2453
2022.9
2712.7
2505.8
2765.9
3037
3254.8
2940.1
1929.3
3007
3348.2
3449.5
..
..
LUX
Luxembourg
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
5328.8
5142.3
5748
5677.9
6396.6
5634.7
5596.7
5202.9
6106.4
6202
..
..
LVA
Latvia
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
1641.2
1774.3
1851.8
1718
2162.9
2170.2
2108.3
1964.4
2273
2160.6
2543.2
2193.3
2447.4
2802.9
2263.9
2941.5
3104.3
3074.8
..
..
MAC
Macao SAR, China
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAF
St. Martin (French part)
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1120
1575.8
587.5
560.4
1584.9
446.7
1687.9
833.3
1122.2
743.1
366.6
894.3
1068.8
1433.2
1512.3
784.3
1652.4
516.2
1002.4
1910.7
..
..
MCO
Monaco
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MDA
Moldova
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
2928.2
3832.3
2181.5
2989.4
2288.4
3432.5
2748.8
2443.8
2032.7
2487.1
2502.7
1861.6
2832
2793.4
2537.7
968.9
3202.6
2340.1
..
..
MDG
Madagascar
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1945.2
1927
1933.4
1923.8
1925.7
1967.5
2007
2000.1
1874.8
1962.4
1889.8
2020.1
1966.8
2202
2354.1
2516.2
2451.2
2289.8
2697
2581.7
..
..
MDV
Maldives
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1000
1000
1000
1000
1100
1571.4
1800
1736.8
2723.4
2591.8
2511.1
2727.2
1786.8
2934.7
2129
1323.5
2285.7
2305.5
2333.3
2041.6
..
..
MEX
Mexico
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
2424.4
2426.9
2708.2
2639.5
2518.4
2519.7
2553
2679
2639.5
2708.3
2761.3
2855.6
2913.5
2964.1
3078.8
3131.1
3213.6
3353.1
3452.5
3433.9
..
..
MHL
Marshall Islands
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MIC
Middle income
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
2556.26404871
2565.66464892
2441.97001486
2502.58532844
2459.44515851
2505.26353987
2617.27588889
2699.57303973
2723.29712604
2783.31707554
2711.2572571
2831.68378535
2819.95544154
2846.6879519
2988.87200895
2969.98258453
3061.09941503
3094.09528172
3292.27498474
3255.71382568
..
..
MKD
Macedonia, FYR
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
2651.5
2011.4
2695.7
3006.8
2454.7
2748
3079.4
2940.6
2565
2287.8
2901.2
2422.3
3596.7
3205
3243.5
2625.2
3536.8
3373
..
..
MLI
Mali
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
726.3
1055.3
738
762.7
817.7
810.1
1100.5
1064.3
1204.2
1174.1
1006.4
986.2
792.3
979.3
864.1
1089.5
1124.8
1101.1
1397.6
1588.2
..
..
MLT
Malta
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
3743
3136.3
3043.1
2703.7
2607.1
2508.4
3500
3904.8
4019.5
3647.6
4007.5
4000
4694.8
4013.6
4726.7
4166.4
4033.3
4306.4
4489.4
4430.9
..
..
MMR
Myanmar
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
2762.4
2703.2
2750.7
2875.2
2991.6
2816.9
2898.9
2894.4
2931.4
3048.8
3189.8
3239
3240.8
3369.5
3628.9
3577.1
3685.3
3789.7
3898.4
3949.3
..
..
MNA
Middle East & North Africa
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1471.07724456
1636.0913084
1527.88859906
1558.3671124
1865.73875145
1770.13498266
1981.09293323
1847.33389693
1939.14560557
1887.97717302
1770.48470095
2039.4009151
2275.9999933
2354.14462954
2286.83080502
2135.22479909
2486.65086021
2187.89698212
2016.16520015
2512.11509405
..
..
MNE
Montenegro
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2971.2
2149.3
3334.5
3463.7
..
..
MNG
Mongolia
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1098.2
970.3
833.4
866.1
737.2
736.9
661.7
758.7
634.9
607.2
774.6
712.5
588.4
797.8
802.6
480.6
1098
942.5
1382.8
1551.7
..
..
MNP
Northern Mariana Islands
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MOZ
Mozambique
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
476.6
341.6
175.7
565.1
520.7
652.7
822.3
821.7
839.2
985.5
868
884
826.8
817.5
773.3
739
779.8
796.6
845.7
876.6
..
..
MRT
Mauritania
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
869.8
673.1
862.1
848.9
668
772
849.2
782
894.4
864.1
864.2
638.2
1011.7
804.7
630.9
844
665.2
708.6
768.6
875.8
..
..
MUS
Mauritius
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
4190.8
3723.7
4434.5
4242.9
3728.8
3853.3
4866.6
5043.4
5180
4902.4
8900
7203.7
7763.1
6555.5
6473.6
7539.6
7793.1
9453.7
7894.7
8306.9
..
..
MWI
Malawi
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
991.5
1140.9
481.5
1488.7
896.3
1309.1
1390.5
1054.4
1322.1
1745.3
1675.4
1175.4
1045.6
1208.9
1020.6
777.7
1444.6
2466.9
1598.6
2162.8
..
..
MYS
Malaysia
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
2740.2
2787.4
2953.1
3003
3031.8
3119.1
3199.9
3023.2
2843.2
2910.3
3039.5
3108.1
3232.1
3347.2
3314.8
3407
3389.4
3540.6
3602.1
3750.4
..
..
MYT
Mayotte
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NAM
Namibia
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
457
547
158.9
356
334.5
205.6
273.9
521.2
252.8
243.3
373.6
387.2
412.5
327.9
388.8
377.2
423.9
481.3
494.9
364.7
..
..
NCL
New Caledonia
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1865
2358.9
3003.7
2400
3036.3
3128.1
3711.1
3704.1
3649.2
3704.5
3760.7
3979.1
3649.9
3895.2
3871.1
3783.9
3685.2
3965.5
3626.1
3391
..
..
NER
Niger
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
310.2
361.6
298.3
292.5
349.1
291.3
311.2
267.9
389.1
381.4
289.6
401
411.3
441.9
347.2
436.8
450.3
436.9
488.9
379.8
..
..
NGA
Nigeria
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1147.9
1094
1163.9
1153
1132.2
1210.4
1220.3
1182.7
1201.8
1239.2
1171.4
1233.5
1255.2
1308.8
1372.8
1421.6
1507.4
1399.8
1598.4
1528
..
..
NIC
Nicaragua
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1524.4
1417.1
1688
1787.1
1725.2
1681.3
1689.3
1686.4
1706.4
1634
1687.7
1692.8
1731.9
1860.2
1798.1
1778.6
1902.2
1822.4
1811
2076.7
..
..
NIU
Niue
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NLD
Netherlands
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
6958.6
7008.4
7459.2
7998.3
7164.4
7769.2
8292.8
7176.1
7307
7469.7
7905.5
7280.4
7690.7
8324.4
8410.8
8203.8
7854.1
7157.7
8331.9
9032.1
..
..
NOR
Norway
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
4399.2
4021.2
2812.2
4003.2
3671.6
3628.9
4025.7
3879.4
4047.5
3711.5
3931.7
3718.2
3495.2
3940.6
4401.4
3992.6
3674.4
3855
4488
3105.2
..
..
NPL
Nepal
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1920
1848.2
1725.9
1858.8
1773
1891.2
1957.8
1946.5
1960.2
2003.1
2136.3
2176.9
2170.7
2205.9
2316.4
2316.7
2278.5
2218
2361.1
2373.9
..
..
NRU
Nauru
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NZL
New Zealand
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
5033.9
5304.7
5440.3
5414.9
5782.4
5209.4
5871.7
5874.2
6272.1
6168.5
6277.7
6485.6
6459.4
6947.5
7231.4
7477.6
7112.2
7916.4
7379.7
6923.9
..
..
OMN
Oman
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
2159.6
1931
2019.5
1940.8
1965.6
2675.5
2807.6
2907.6
3350.7
3423.5
3451.6
3364.1
3615.7
3459.3
3653.9
3475.2
3381.3
3503.1
3341.4
3472.9
..
..
PAK
Pakistan
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1766.4
1805.4
1881.5
1957.7
1839.1
2042
2048
2043.3
2195.1
2217.9
2407.8
2230.8
2261.3
2320.5
2430.7
2615.7
2554
2744
2653.7
2789.7
..
..
PAN
Panama
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1866.6
1882.9
1835.8
1898.7
1969.6
1720.9
1800.4
2085.9
1771.9
2035.1
2042.5
1831.5
1980.3
1986.7
1694.8
1871.9
2146.1
2191.8
2735
2019.2
..
..
PER
Peru
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
2603
2293.8
2498.6
2689.7
2905.3
2639.3
2628.3
2765.5
2750.4
3109.9
3084
3241.3
3372.9
3442.5
3278
3557.8
3520.4
3640.3
3830.6
3910.2
..
..
PHL
Philippines
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
2064.7
2042.6
2103.2
2212.8
2312.3
2263.7
2339.6
2375.1
2240.5
2464.7
2580.8
2667.8
2730.5
2823.3
2992.2
3049
3180.8
3319.8
3334.3
3228.9
..
..
PLW
Palau
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PNG
Papua New Guinea
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
2602.6
2466
2529.1
2680
2955.1
2994.1
3000.3
4085.1
4843.6
4031.3
4116.5
4064.5
3894.1
3777
4085.9
4132.4
3887.6
3902.9
4228.2
4415.1
..
..
POL
Poland
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
3283.7
3190.7
2398.9
2752.9
2566.1
3022.3
2901
2854
3070.9
2959.3
2534.7
3056.4
3240.8
2865.3
3537.5
3233
2598.2
3249.5
3217.2
3475.1
..
..
PRI
Puerto Rico
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1080
1149.4
1069.7
1732.7
1410.2
1500
1595.7
1708.3
1870.6
1750
1730.7
1802.3
1946
1959.2
2035.5
1816
1851.8
1896.5
1764.2
1878.1
..
..
PRK
Korea, Dem. Rep.
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
3916
5714.1
5720.3
6239.3
4813.3
2532.1
1867.3
2005.7
3148.1
2912.6
2450.2
3112.4
3326.8
3452.1
3547
3481.3
3692.9
3033.6
3716.2
3512.7
..
..
PRT
Portugal
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1877.6
2160.5
1778.9
2033.4
2398.7
1993.8
2498.1
2220.7
3135.2
2829.3
2780.6
2632.2
2905.6
2629.1
2945.4
2027.3
3122.5
3463.3
3597.8
3455
..
..
PRY
Paraguay
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1979.3
1768.4
1966.8
1967.4
1790.4
2462.7
1989.6
2261.7
1998.2
2205.3
1844.5
2160.2
2090.4
2323.4
2445.8
2115.2
2422.6
2334.4
2681.3
2357.9
..
..
PYF
French Polynesia
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
QAT
Qatar
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
2897.4
2781.1
3145.4
3048.2
3169.7
3188
3377.7
3377
3362.5
3797.8
4099.4
4046.7
4163
3706.4
4121.6
3649.1
3635.8
3787
3970
4746.1
..
..
ROM
Romania
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
3010.7
3191.6
2128.2
2422.6
2772.8
3085
2430.2
3498
2620.2
3178.4
1860.3
3005.2
2513.7
2534.1
3995.3
3334.2
3102.2
1642.9
3247.1
2824.6
..
..
RUS
Russian Federation
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
1743.2
1635.8
1457.6
1223.5
1389.4
1790
1301
1452.5
1563.3
1936.9
1972
1783.5
1882.5
1860.1
1886.8
1989.8
2388.1
2281.1
..
..
RWA
Rwanda
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1042.6
1261
962.5
1460.5
1041.1
1145.2
1269.9
1129.1
972.6
824.8
848.3
914
1027.4
944.3
959.3
1183.5
1117.7
1014.6
1278.4
1828.7
..
..
SAS
South Asia
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1926.14054535
1961.48505751
2045.0253684
2100.13381962
2095.50163939
2127.86738946
2189.66364474
2228.49276163
2275.9931578
2353.21182527
2375.82692668
2460.0440353
2305.06363709
2466.83587442
2436.58085183
2530.70802546
2552.84405057
2702.8832982
2773.13194196
2728.38756824
..
..
SAU
Saudi Arabia
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
4244.7
4200.6
4191.6
4462.3
4546.5
3784.4
3429.4
3562.7
3540.4
3575.4
3516.3
3931.9
4047.5
4228.8
4675.1
4753.2
5047.1
5121.7
5218.2
4161.4
..
..
SDN
Sudan
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
455.7
681.1
651.5
503.1
508.2
424.8
606.9
430.4
594
429.5
505.1
626.1
487.1
643.7
657.2
503.7
644.7
729.4
567.1
587.2
..
..
SEN
Senegal
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
795
825.6
787.7
841.5
745.3
873.7
758.4
699
669.6
803.3
879.3
887
651.6
1090.6
974.4
1201.1
879
722.4
1174.2
1134.5
..
..
SGP
Singapore
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SID
Small island developing states
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1983.74201256
1984.43563013
1916.60646124
1801.50665886
1827.98791273
1997.55055669
2052.79091953
2058.84517309
1921.07337616
2125.90912322
2075.4228571
2181.6542302
2302.78740364
2282.35832666
2217.02345272
2181.8594451
2205.78609388
2109.16783284
2175.42968144
1921.71879661
..
..
SLB
Solomon Islands
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
3571.4
3544.6
3664.4
3202
3440.5
3734.2
2699.1
3541.4
3939.3
4500
4649.5
4649.5
4598.3
3207.5
3125
3000
3374.8
3001
3174
3265
..
..
SLE
Sierra Leone
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1201.6
1233.7
1233.9
1187.7
1161
1194.9
1253.3
1205.5
1111.5
1118.9
1078.2
998.5
995.8
1011.8
1011.4
1117.7
1343.4
1273.5
1332.7
1402.3
..
..
SLV
El Salvador
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1939.3
1633.5
2039.3
1986.9
1609.6
2051.2
2119.3
1736.2
1886.6
2250
2155.2
1909.6
2476.8
2472.5
2486.1
2632.6
2802.9
2615.2
2905.3
2726.8
..
..
SMR
San Marino
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SOM
Somalia
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
793
560.9
519.1
452.4
410.3
493.8
501.4
478.9
419.1
581.4
732.9
812.6
769.4
687.4
497.5
472.3
395
434.5
337.9
371.4
..
..
SRB
Serbia
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4460.3
3217.1
4580
4622.7
..
..
SSA
Sub-Saharan Africa
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1033.198288
1043.19040348
885.58030289
1055.77450922
1040.02879803
986.877511048
1132.97568308
1052.97827054
1071.54596889
1108.90957202
1130.47256317
1129.74597984
1138.87542445
1112.33799453
1175.86332334
1170.61997263
1242.98190706
1201.24073788
1292.46611816
1296.90879925
..
..
STP
Sao Tome and Principe
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1928.5
2117.6
2222.2
1967.5
2263.1
2222.2
2250
2222.2
1931.4
2189.9
2230
2173.9
2107.4
2131.1
2145.7
2384.6
2454.5
2307.6
3167
4056.2
..
..
SUR
Suriname
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
3765.1
3813.4
3795.1
3694.9
3957.8
4026.5
3700.7
3980.7
3756.5
3718.6
3896
3767.3
3921.2
3693.7
3558.9
3597.8
4128.7
4252.7
4188.7
3749.6
..
..
SVK
Slovak Republic
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
3774.9
4302.9
4114.8
4013.5
4399.2
4053.9
3856.6
2709.1
4086.9
3895.1
3135
4640.7
4511.8
3974.1
3561.1
5175.3
4327.3
..
..
SVN
Slovenia
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
3278.8
3765.1
5018.6
5003.6
4864.8
5632.3
5793
5186.4
4803
4734.4
6120.9
4000.7
5815.1
6000.7
5107.8
5339.6
5464
5256.5
..
..
SWE
Sweden
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
4963.7
4492.6
3359.3
4758.9
3891.3
4358.6
4893.6
4718.2
4379.7
4276.3
4560.2
4583.3
4780.4
4584.4
4892.9
4932.3
4292.1
5150.8
4820.4
5085.9
..
..
SWZ
Swaziland
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1283.9
1050.3
1573.5
1380
1272.1
2168.5
1756.5
1906.2
1897.6
1627.4
1628
1411.4
985.6
1012.6
1236.6
1306.9
1413.8
555.5
1153.9
1147.5
..
..
SXM
Sint Maarten (Dutch part)
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYR
Syrian Arab Republic
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
749.9
922.3
1174.6
1489.1
1536.6
1661.3
1853
1273
1584.9
1072.3
1148.6
2269.7
1993.5
1999
1657.5
1711.4
2002.2
1622.4
896.6
1707.7
..
..
TCA
Turks and Caicos Islands
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TCD
Chad
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
559.2
618.5
729.9
500.9
746.5
585.5
601.3
581.9
694.5
662.5
528.4
634.6
670.8
790.4
671.1
761.7
749.5
763.1
811.7
879.9
..
..
TGO
Togo
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
746.8
762.7
863.2
877.5
721.7
849.3
811.3
981.1
835.4
1060.8
1058.3
1150.3
1131
1154.6
1094.8
1132.5
1130.6
1121.5
1136.4
1398.4
..
..
THA
Thailand
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
2009.1
2295.3
2254.1
2224.1
2409.4
2507.5
2525.6
2458
2565.3
2537.3
2719.1
2725.1
2699.7
2734.1
2922.1
3002.6
2963.7
3045.9
3020.8
2951.1
..
..
TJK
Tajikistan
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
993.6
968.2
880.7
915.9
1038.7
1314.2
1235.2
1235.4
1310.7
1397.9
1889.3
2100.5
2150.4
2164.4
2158.7
2440
2140.2
2730.9
..
..
TKM
Turkmenistan
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
2209.5
2333.5
2610.7
1700.6
824.2
1186.4
2148.5
2270.7
2122.4
2318.9
2921
2769.4
2931.5
2908.8
3288.4
2974.3
2490.6
3203.2
..
..
TMP
Timor-Leste
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1608.1
1737.4
1735.4
2031.7
2025.1
2017.3
2046.6
1779.3
2094.9
1555.8
1936.7
1338.7
1667.1
1443.4
1562.7
1541.8
1503.3
1276
1442.6
2315.5
..
..
TON
Tonga
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TTO
Trinidad and Tobago
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
3326
3207.3
3594.6
3262.1
3624.5
3878
3890.9
4163.8
3865.3
1580.6
2813.6
2787.3
2760.7
2671.3
2145.4
2534.3
2913.6
3075
2893.7
2597.7
..
..
TUN
Tunisia
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1144.5
1551
1509.7
1205.8
891.6
1112
1440.4
927.8
1345
1232.9
977.1
1711.7
1248.8
1792.5
1307.9
1435.9
1245.1
1612.8
1442.4
1812.9
..
..
TUR
Turkey
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
2214.1
2239.4
2123.4
2255
1911.5
2037.8
2105.7
2131.4
2359.4
2075.1
2311
2127.1
2237.6
2297.9
2465.1
2624.2
2658.6
2381.4
2487.4
2807.7
..
..
TUV
Tuvalu
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TZA
Tanzania
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1506.5
1233.8
1087.4
1227.4
1151.9
1701.6
1587.4
1102.2
1195.7
1769.2
1441.4
2046.7
1903
858
1369.3
1098.5
1338.1
1449.5
1277.8
1109.5
..
..
UGA
Uganda
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1497.6
1434
1530.1
1540.9
1494.9
1571.2
1204.8
1218.1
1526.3
1633.9
1539.3
1641
1638.7
1677.5
1468
1532
1522.9
1525.2
1534.4
1539.4
..
..
UKR
Ukraine
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
2834.4
3291.3
2728.9
2512.2
2010.1
2490.1
2105.3
2002.6
1950.7
2725.8
2749.6
1849
2845.1
2623
2427.7
2206.9
3487.3
3004
..
..
UMC
Upper middle income
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
3176.66330146
3189.02661182
2743.58432896
2790.94551961
2759.57103033
2817.4292514
2978.72091631
3123.7000428
3185.33644065
3249.00829192
3102.72867336
3199.95513214
3229.44791711
3252.44116737
3411.3302708
3451.16448006
3540.87913292
3562.72555573
3781.47819098
3689.76699985
..
..
URY
Uruguay
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
2182.5
2421.3
2733.4
2478.3
2972
3190.3
3290.7
3077.6
3437
3896.2
3905.4
3343.1
3320.3
3907.5
4300.3
4410
4457.4
4130.9
3943.9
4045.3
..
..
USA
United States
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
4755.1
4510.2
5360.5
4301.1
5563.3
4644.7
5177.4
5277.6
5676.1
5732.9
5854.2
5891.5
5547.4
6024
6851.6
6451
6400.1
6704.3
6619.9
7238.4
..
..
UZB
Uzbekistan
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
1777.1
1662.3
1593.4
1935.5
2029.6
1965
2357.6
2520.9
2435.9
2919.7
3608.9
3403.4
3518.3
4041.6
4111.9
4397.3
4348.7
4269.4
..
..
VCT
St. Vincent and the Grenadines
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
3566.7
3333.3
3135.5
2900.1
3125.1
3574
3333.3
3495.8
3333.3
3000
3000
3131.3
3378.3
2864.7
3009.2
2694.3
3032.7
3190.4
3181.8
3386.9
..
..
VEN
Venezuela, RB
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
2486.1
2621
2576.5
2912.6
2961.6
2974
3031.9
3080.7
3089.1
3318
3243.6
3303.3
3182.8
3209.3
3328.6
3350
3413.7
3592.4
3826.4
3695.4
..
..
VIR
Virgin Islands (U.S.)
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VNM
Vietnam
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
3072.9
3006.3
3212.5
3361.5
3458.7
3569.9
3666.2
3758.3
3838.7
3971.1
4112.3
4167.2
4440.9
4506.7
4690.9
4726.1
4749.7
4846.1
5064.2
5074.6
..
..
VUT
Vanuatu
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
510.9
494.2
484.2
563.4
611.3
623.2
736.6
413.4
480.1
500
470.8
459.2
495.7
596.8
529.6
551.2
535.7
551.7
546.6
565.1
..
..
WBG
West Bank and Gaza
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
1111.2
1651.8
1622.6
1352.9
1555.7
653.5
2184.6
1276.9
2296.6
2053.5
1930.2
2091.6
2042.9
1743.7
1467.9
1564.6
..
..
WLD
World
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
2882.31558337
2873.12599483
2786.01471353
2728.89828365
2810.10445498
2757.65228503
2939.86378544
2987.01669557
3058.38041046
3103.23673485
3063.9261699
3129.87971752
3072.36275445
3113.48936989
3357.94157073
3281.74172661
3285.98791145
3379.41513938
3554.12787117
3566.39007807
..
..
WSM
Samoa
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
YEM
Yemen, Rep.
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
907.7
699.6
1110.3
1109.3
1091.6
1104.9
937
895.4
1081.4
1111.1
1084.9
1064.2
943.8
785.1
715.2
713
930.2
1019.4
939.1
1002.5
..
..
ZAF
South Africa
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1877.2
1988.7
943.2
2157.9
2585.5
1422.1
2495.8
2276.7
2182.2
2196
2755.3
2423.6
2771.8
2537.1
2782.6
3314.4
3159
2791.8
4055.3
4414.2
..
..
ZAR
Congo, Dem. Rep.
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
799.8
802.3
782.1
790.5
793.4
765.7
780.8
801.7
810.9
787.2
786.6
786.5
771.9
771.5
771.6
771.6
771.5
771.5
771.5
788.5
..
..
ZMB
Zambia
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1351.8
1639.4
763.1
2302.8
1417.5
1331.4
1911.7
1413.3
1211.1
1323.5
1682.2
1402
1419.2
1702.2
1814.7
1900.7
1816.1
1907.9
2144
2066.9
..
..
ZWE
Zimbabwe
AG.YLD.CREL.KG
Cereal yield (kg per hectare)
0
0
1625.4
1337.1
412.6
1478.4
1472.5
537.4
1523.6
1267.8
1110.3
1063.2
1404.4
1159.7
546.9
803.3
1075.3
587.7
850.9
653
309.4
449.6
..
..
ABW
Aruba
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
21.1851381499
-3.8578087757
-1.65549243204
-5.87443899966
-0.418781716975
6.12145704236
12.7899334852
5.01845018543
26.8741887924
-6.88608327973
-14.1100317965
13.6714410639
..
..
..
..
..
..
..
..
..
ADO
Andorra
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AFG
Afghanistan
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
..
..
..
..
..
0.0276235652215
1.15236379419
1.21272464428
3.27653155834
3.97666616697
3.08213035452
2.49503631959
2.55158333333
..
..
..
AGO
Angola
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
-3.26309639819
5.44951457869
4.98245984723
5.71552892997
4.19501819776
9.37441690459
2.39899396706
5.3633598872
17.2837359195
40.1570869489
9.6243032266
24.0092259075
14.6267604703
25.112026402
7.32852477173
-4.25640309512
-0.0835078708701
-1.47778095992
1.99453632535
2.92119982672
11.7804627334
..
ALB
Albania
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
2.81907498412
4.72285382792
2.66912020805
2.88719448267
2.99015884043
2.16280334746
1.65008065357
1.19962644329
3.87886085677
5.06719564715
3.03413506077
3.14979053923
4.57214197947
3.13352261843
3.56152309685
6.18683776983
7.39231784118
8.0007516244
9.41412431136
..
ARE
United Arab Emirates
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
-0.344157178946
0.0764748673682
0.366309323452
1.12272099854
0.16321710983
0.934079157638
0.6261686198
0.453880807961
0.531252497204
-1.78524753408
-0.717268424249
1.72378131277
0.126586169856
4.80470681559
9.6387621313
8.19544569397
7.84218885229
6.83457936662
5.25108559703
1.73840058303
..
..
ARG
Argentina
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
1.2988816648
1.28557881764
1.93679057504
1.17974376781
1.41195326504
2.17392651013
2.55320333148
3.12787913285
2.43876804591
8.46058148953
3.66579065623
0.806164238977
2.10594174903
1.27472756823
2.693609323
2.87415362291
2.5867461528
2.48234159979
2.97711920344
1.30817236752
1.7186390833
..
ARM
Armenia
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
0.188593618773
0.066593791058
0.608291621351
1.7244228572
1.10020926863
3.16805367488
11.6611351906
6.61290589659
5.45051163539
3.29806741744
4.6600625646
4.30600544932
6.92988859445
4.88496688856
7.09805494059
7.59069017415
8.02120501166
9.10301345787
6.15296956292
..
ASM
American Samoa
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ATG
Antigua and Barbuda
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
15.4780374267
13.3513827178
4.6365893701
3.33833620743
4.95689663927
6.3711308898
3.5765623387
3.95694956313
3.67301847329
7.94544559487
6.4916606008
14.1403177168
9.23083238037
22.0846515391
9.85613829368
25.4913079561
35.4957704354
29.2725027529
14.4757331138
10.7547831808
5.66494323925
..
AUS
Australia
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
2.57882703601
1.30691206294
1.73230281278
1.36850124214
1.53147399406
3.24083166814
1.53133040479
1.7435970307
1.48471716286
0.848530239633
3.26631009371
2.17147272443
4.27746481192
1.71277192156
5.98541161529
-5.1148332732
3.52519104218
4.79404787253
4.54877077423
2.94596531173
..
..
AUT
Austria
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.396258982709
0.209141663474
0.747003481745
0.599651814904
1.05201832596
0.797647740177
1.91548609106
1.26856432962
2.19687089484
1.42654887701
4.45888750246
3.10581993848
0.154466985773
2.81638406503
1.34655063405
26.9535968184
0.76855179309
17.1833027099
1.59215455915
2.28661400067
-7.07276741624
..
AZE
Azerbaijan
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
10.8125638547
19.7458748829
28.1332208037
23.0066541516
11.1393193937
2.46437386157
3.96860809912
22.3288875669
45.1498570704
40.966466418
12.6830237278
-2.78323069712
-14.3690467662
0.031940314216
1.10021272738
1.10218879275
..
BDI
Burundi
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.110894210226
0.0764520532875
0.05540789109
0.0504648856963
0.00042786140812
0.198107378477
1.15070315469e-05
1.0278588098e-05
0.223771014493
0.0295343441698
1.64770275066
0.00138181263471
1.71056610932e-06
0.00077620211538
0.00672552544837
0.0734657964007
0.00343850405628
0.0510566187573
0.327932910101
0.0261802758359
0.875480081732
..
BEL
Belgium
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
3.97245419354
4.5083278711
4.87262237472
4.84905195866
3.52409077416
3.76174863094
5.10609146594
4.8101234295
8.8888910747
56.1433256026
92.4989337332
31.718048971
7.16197248276
11.1005283194
12.2996427208
8.94379682899
14.7395784009
21.0605683682
27.0232364906
5.37112125198
13.4364056884
..
BEN
Benin
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
3.38077909569
6.4320023056
4.77571291614
0.0666479513837
0.911840180387
0.663414689725
1.60852793547
1.25259100944
1.62566757717
1.64467205987
2.64926007961
1.84917787834
0.481168511567
1.25721678806
1.57740152492
1.23718737224
1.12359617775
4.6021615249
2.54139563496
2.03112662198
1.67238151741
..
BFA
Burkina Faso
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.0148324433603
0.0181814944278
0.13895912314
0.136293173631
0.969320331639
0.41255240101
0.627285395334
0.398984456665
0.157122226098
0.262913479833
0.88502464492
0.313979218599
0.488301817382
0.695864283459
0.343127268883
0.954834201081
1.31924952016
5.46955015396
1.89496873064
2.10552179048
0.420932026965
..
BGD
Bangladesh
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.0107497933272
0.00449146992888
0.0117375804254
0.0423616413871
0.0330122304431
0.00499837763605
0.0332706101716
0.329348086267
0.431054233715
0.393186601642
0.594981587617
0.167122036936
0.110023607332
0.516791195527
0.793669546869
1.34929476029
1.12632262688
0.954198199533
1.26909861672
0.798326946195
0.966911262899
..
BGR
Bulgaria
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.019299150915
0.510803226732
0.400119534527
0.369276235084
1.0860518138
0.691708573973
1.22605338955
5.02115245849
4.11397327403
6.18963535287
7.7614618283
5.86174643511
5.66148560445
10.1450105343
10.5295442431
14.9243456309
23.359820368
31.3782675811
19.2554471023
6.978226383
4.54270261293
..
BHR
Bahrain
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
-4.31966786014
13.4182172218
18.2825788635
-5.28819112826
3.74032684693
7.36112643484
33.5660163269
5.18622864868
2.90194247639
6.85281774644
4.56123975614
1.01348877725
2.55543752295
5.30079505237
7.70143691366
7.79038527942
18.3832882741
9.50740663191
8.19069146994
1.24860796652
..
..
BHS
Bahamas, The
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
-0.546430827543
-0.0417850576634
0.00964940495336
0.876455368693
0.718011660018
3.11461067367
2.43280687171
4.99433746154
3.11615803492
2.89897956763
4.52678950845
1.80901197337
2.58426905075
3.2007050895
4.53603420464
8.65623266848
10.2736767394
9.86112723875
11.7863459216
9.38169109761
11.4284425577
..
BIH
Bosnia and Herzegovina
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
..
..
1.62111582654
3.77274414999
2.65303347739
2.06114827783
4.02586773851
4.56133472133
7.08231975342
5.64692502474
6.26938321686
13.5996980171
5.30677720638
1.37648399445
1.37105971257
..
BLR
Belarus
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
0.0411228167488
0.108105634209
0.0703206649587
0.105205619851
0.708145154901
2.48860232571
1.3349086983
3.65778750791
0.932726219683
0.775405864952
1.69305421814
0.963791290531
0.707816602723
1.00959640125
0.957742484509
3.94295290191
3.58866853429
3.82454137085
2.56391846277
..
BLZ
Belize
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
4.16414493796
3.05809898003
3.01074791563
1.64356254432
2.64644507353
3.39498731443
2.58548903364
1.82742805494
2.5621578302
7.31346101267
2.80513578062
7.01538354204
2.72192151283
-1.10552173976
10.5553133716
11.3832053432
8.97107799428
10.9945999768
12.4875579222
8.05328053451
6.7376791536
..
BMU
Bermuda
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.18578038997
3.00712622713
0.864714601333
0.615190803632
..
..
BOL
Bolivia
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.558798921569
0.973188745747
1.64957893262
2.1587864072
2.17681380329
5.8479580497
6.40939671987
9.21807391585
11.1715219877
12.1966504286
8.76830713204
8.66860963447
8.55789350252
2.44234492368
0.745772608533
-2.49884903882
2.45180476566
2.79176673576
3.07245935916
2.43961514136
3.14345952701
..
BRA
Brazil
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.214091608375
0.270782606205
0.527694958048
0.294775601389
0.562396973715
0.631899673796
1.33383630592
2.25550967427
3.78193857915
4.8692779538
5.08440307107
4.0567334443
3.29026293218
1.83603412649
2.73678646729
1.70783755711
1.72485236282
2.53186971197
2.72644787551
1.62739089544
2.31993759359
..
BRB
Barbados
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.654803830975
0.438604949694
0.909663222606
0.572742235205
0.749880107284
0.632010681551
0.670735960735
0.675070647627
0.66609142402
0.702883464951
0.758153062356
0.726258454438
0.702716331155
2.16150649031
-0.428470254958
2.06186356073
3.28418314582
6.84046110524
7.78820041447
8.29551626034
2.49765844521
..
BRN
Brunei Darussalam
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
..
..
..
..
..
1.08362189011
3.93049837973
1.88828156011
1.43802179259
1.83675498442
0.765769354306
2.10355604942
1.54368804404
3.03367154578
..
..
BTN
Bhutan
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
0.414251080426
0.492999091978
1.09907670182
0.682041717216
6.17095290033
2.28110588209
1.39529133193
0.771118250609
..
BWA
Botswana
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
2.52901986757
-0.208307135963
-0.0377282546298
-6.8973305296
-0.326178509637
1.47501464162
1.48292577491
1.93273983429
1.83638052671
0.625111432643
1.01513037636
-1.15614295642
12.0139438546
9.52843145759
7.44473905217
4.801162139
6.67052905676
5.22976932079
6.64432360998
2.19256039895
3.56241870419
..
CAF
Central African Republic
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.0469139438783
-0.34707384487
-0.74445190747
-0.768383623928
0.42230711043
0.552680779162
1.02100877272
0.149255095079
0.72596260263
0.359339375532
0.0878375622661
0.535788863439
0.537462844238
1.94831733672
2.25130492389
2.40132539236
2.34382912723
3.34470527684
5.90620736285
2.13370151118
3.57850064718
..
CAN
Canada
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
1.30089324223
0.480499567324
0.824250763303
0.842496957716
1.45683745685
1.57813199873
1.5698454308
1.80740124985
3.68737551937
3.74868867032
9.12436402754
3.8733666657
3.00179176606
0.832224563016
-0.0747094202844
2.28450288929
4.71557043081
8.26184338183
3.86079079992
1.6814248968
1.49848485404
..
CHE
Switzerland
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
2.32766634168
1.17791200475
0.449628576586
0.699307323319
1.36284667961
1.31615164737
1.43492026049
2.76139618338
3.5392356772
4.63291221685
7.90834016527
3.68344142764
2.43537049027
5.37499249463
0.511327809087
-0.140961908877
11.5002199551
7.6961616523
3.18425560145
5.60822110059
-1.18821586357
..
CHI
Channel Islands
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHL
Chile
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
2.09512823159
2.2586651717
2.10511183024
2.16861693273
4.68159949234
4.14440512903
6.35433420077
6.36573425474
5.83042491237
12.0021669976
6.46188352203
6.12493451564
3.79083899677
5.82165347154
7.49870817024
5.90598157114
4.97257815087
7.62780175086
8.87299638652
8.0032171902
7.41970235338
..
CHN
China
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.97692336893
1.15055616008
2.63946807522
6.24629826288
6.0417573759
4.92429195798
4.69346066157
4.64356006353
4.29159169678
3.57738295168
3.20399920669
3.33943524234
3.39159702689
2.86885358798
2.84402751721
5.19332411857
4.5736932298
4.58068907152
3.87338246693
2.28829221183
3.14836565923
..
CIV
Cote d'Ivoire
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.445671964728
0.155402646378
-2.06970678711
0.795829696525
0.938089310187
1.9225458213
2.21743262898
3.54288088032
2.97290758194
2.57776847703
2.25306233766
2.58580622621
1.85109558922
1.2036221344
1.82790669562
1.90620766747
1.83600579486
2.15590805511
1.90547399195
1.65296475562
1.8346262218
..
CMR
Cameroon
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
-1.01179698273
-0.116596591555
0.25625638467
0.037841232064
-0.0976706195331
0.0835020091035
1.04102332855
0.796049137747
2.23378185808
-0.14775957652
1.57618723403
0.763527690366
5.53086697606
2.46859923182
0.545928080381
1.41070937794
0.0912399224312
0.923414417804
-0.101948582238
3.01239573561
-0.00246145512676
..
COG
Congo, Rep.
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.805771318692
1.20202513939
0.0933793483977
14.9066580287
0.168985707887
5.90827464421
2.85665682628
3.40857488321
1.68133156057
22.8646565364
5.15248061454
2.76302862194
10.9652997708
9.24303074037
-0.183239674271
8.4374101174
19.2425626313
31.6222701333
21.0634668772
21.7488383845
23.668243821
..
COK
Cook Islands
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
COL
Colombia
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
1.24148944722
1.10791699892
1.47870562374
1.71873896469
1.77042271318
1.04680225891
3.20262764156
5.21492782764
2.87354601717
1.74959319478
2.42762840862
2.57423788765
2.17216494673
1.8126372363
2.57332719561
6.99457254494
4.0882483951
4.36272011323
4.33130850774
3.02635803903
2.34724639075
..
COM
Comoros
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.157180458088
1.01537227273
-0.543589211841
0.0723559980878
0.0956687601665
0.383591525539
0.221264519631
0.00942959308963
0.178378838262
0.121753569691
0.0463772831539
0.520597567158
0.171372098718
0.244631885573
0.185241835238
0.144338784677
0.142935573415
1.61794095473
1.4187096191
1.6979280952
1.73568825247
..
CPV
Cape Verde
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.07458161792
0.496517736781
0.114378053347
1.00319175229
0.518115747181
5.33635312511
5.68087406398
2.28590781173
1.67553586979
9.1386090615
6.29011301795
1.65627196902
2.40285991579
4.9234343049
7.31000457499
8.04943630902
11.8979141496
14.4130133784
13.6286137333
7.54817075819
6.76181887075
..
CRI
Costa Rica
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
2.19492046746
2.4907342766
2.63599556554
2.55958223319
2.81884101012
2.87399539674
3.60501366105
3.1816256975
4.34934323772
3.92154324788
2.56210391444
2.80656644604
3.91439519997
3.28279551544
4.26876170769
4.31278039829
6.52161480767
7.21850207802
7.00601995556
4.60507936323
4.0869592884
..
CUB
Cuba
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.00408446919061
0.0393542255152
0.032690994004
0.0120266535879
0.0455216765036
0.0177466526826
0.0770276212176
0.00402136844803
0.0589819207591
0.0315530814493
-0.0335342114389
0.0137300637896
0.007889135321
-0.0202222216032
0.0091876639252
0.0365822772937
0.0491063218227
0.108713900164
0.0386230820215
..
..
..
CUW
Curacao
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
121.65709413
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYP
Cyprus
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
2.26515713783
1.41817198232
1.55397509324
1.26629677823
1.01198784198
2.62744548111
2.49993732855
6.13893484872
3.61459954349
8.31306166512
9.17572592911
9.76133016768
10.4509364198
6.81584086066
7.07102623235
6.83688553619
10.1547953232
10.5122760875
15.3240202723
23.3932308504
..
..
CZE
Czech Republic
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
1.90304088944
2.13732181818
4.64658324858
2.31457071796
2.25167780066
5.98281000625
10.4874109603
8.79232313876
9.12111143748
11.2872638794
2.21248481895
4.54489906298
9.3152245258
3.87191634023
6.08791811107
3.04163967981
1.50829913805
3.49726893274
..
DEU
Germany
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.175209764085
0.262538711954
-0.102668569335
0.0200223993638
0.339673720559
0.475087853844
0.263653694679
0.59226413176
1.08198748254
2.6080517755
11.0558412791
1.38400845616
2.65777766365
1.26663761399
-0.35709098369
1.66665563767
1.94082909323
2.42081767419
0.131693368528
1.16863840193
1.39371545917
..
DJI
Djibouti
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
0.495241645158
0.479043307006
0.305457413554
0.289528332116
0.646649156197
0.660629850552
0.616772609505
0.617093465504
0.599332209169
0.596129445834
0.59274200683
0.580649337298
2.28673980375
5.78669482577
3.13233272264
14.0839401369
23.0388936447
23.1701380736
9.23304673378
..
..
DMA
Dominica
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
7.74934851464
8.43630705814
10.644133128
6.58621804062
10.4892215975
24.1444883957
7.52819562167
8.59088937883
2.51938272454
6.70632187802
6.48910753794
6.43088752121
7.8909943118
11.9741818503
9.17680547054
6.42780356193
8.20743417656
11.7568797255
15.1028062991
10.9941607854
8.05066424127
..
DNK
Denmark
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.833452396402
1.1357599123
0.677374098319
1.21795295082
3.2593746925
2.27461320552
0.419356775809
1.63796392382
3.84367107117
9.68579062775
22.4966914314
5.78678147448
2.5481262898
0.557245234735
-3.59753125176
4.98078381041
0.881969221657
3.79215832452
0.763233440362
0.940423159941
-0.219173158213
..
DOM
Dominican Republic
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
1.87738347078
1.49109778329
1.59341077568
1.45880123375
1.42511251622
2.53262889729
0.532213739446
2.14663574856
3.30542817656
6.16240942349
3.97096984331
4.33462145947
3.45045579362
2.88221568834
4.12464451956
3.30166710948
3.01672922526
4.03585488249
6.30788520069
4.4350164937
3.15218881236
..
DZA
Algeria
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.000539792139948
0.0254590237921
0.0624957070021
..
..
..
0.575184050859
0.53966695448
1.25882536695
0.599704606747
0.799415091597
2.16741307364
1.86668409037
0.931803864981
1.03735922715
1.05629226638
1.53282445606
1.22382656609
1.51763909264
1.96334343188
1.43715960604
..
EAP
East Asia & Pacific
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
1.57373339474
1.80183300992
2.63470152004
4.4581567943
4.33061726213
3.89612272226
3.91040323
4.00978332217
4.07497474512
3.24228137824
2.64157675929
2.68332196076
2.94960139148
2.49331665238
2.66891267739
4.68581354977
4.14860883126
4.30981908091
3.67088972626
2.18181647062
3.03026207804
..
ECA
Europe & Central Asia
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
0.316783069396
0.473673174336
0.453289996415
0.773588667248
0.940114280036
1.65143095702
1.59063921515
1.69783461826
1.38571835011
1.99455459586
1.7751279351
2.36742506423
3.16762929801
3.05853497244
4.52500321545
5.04243964677
4.86957660712
3.29319499958
2.80744604198
..
ECU
Ecuador
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
1.2166902337
1.40988546871
1.48373507606
3.14487857054
3.10156522165
2.23936970152
2.34831886101
3.06144416913
3.73925178363
3.8868848696
-0.147032332311
2.53444024688
3.14569211121
3.04342849401
2.56397838657
1.32684703019
0.650830482029
0.426688277257
1.84571624085
0.608316670689
0.278584824925
..
EGY
Egypt, Arab Rep.
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
1.7018152906
0.684328377455
1.09663050471
1.05842526318
2.42013255637
0.994028440878
0.940414984536
1.13537592833
1.26843702586
1.17439282657
1.23699724341
0.522267246346
0.736363105877
0.286287340625
1.58957073755
5.99381897916
9.34352718789
8.87395044375
5.83076150067
3.55141010363
2.91696557554
..
EMU
Euro area
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
1.22433341084
1.09513123579
1.10023032483
1.15194854337
1.0489113793
1.22545091779
1.33146945267
1.42301493271
2.74395310139
6.70654421429
11.597297222
5.73742292531
5.30427070301
3.58634192982
2.03877474559
4.33762365685
3.95703915317
6.61418884716
2.91273178657
3.36389309597
2.66872671609
..
ERI
Eritrea
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
5.29198936809
5.98663480339
19.9212670748
12.0800554486
4.39954812841
1.75975634454
2.96085721459
2.52805994866
-0.709617585508
-0.0946837440758
0.0371536354849
-0.00834608172128
-0.0169062205442
0.00191497063562
2.62634796768
..
ESP
Spain
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
2.68415860218
2.22927829704
2.16716809905
1.89900396199
1.78896050109
1.35492679367
1.54607493329
1.56071175641
2.37705479557
2.99789616488
6.68795213643
4.62375043683
5.82781720689
2.89779780227
2.37398999763
2.17424278472
2.52450512899
4.62445823188
4.88721891695
0.584233689992
1.75204638993
..
EST
Estonia
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
2.06370528988
4.20309404445
5.4080809143
4.62869102987
3.17683215063
5.2699841002
10.3698936954
5.34895906251
6.82391022219
8.69370785586
3.8845471152
9.33425994388
8.02753132468
21.1552869875
10.7645688314
12.7199840674
7.4350879222
9.99901260443
8.24203493467
..
ETH
Ethiopia
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
0.00120584375027
0.0399381205877
0.250321077679
0.185913829396
0.258520591351
3.24480512295
3.23033688281
0.894076794867
1.64605958768
4.27735976157
3.27361714575
5.43466569244
5.42173893869
2.15422259262
3.59561875683
1.13539478592
0.40738557096
0.692878570386
0.619174018451
..
FIN
Finland
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.584950725447
-0.1859613371
0.359914840501
0.988889745421
1.48741864321
0.798872999911
0.872108860132
1.73176679031
9.2762845324
3.57031563001
7.4973611977
3.00207306149
6.12648038935
2.11565710569
1.51958797243
2.45655515193
3.71672958052
5.15630131122
-0.806880602173
0.0242345204795
1.84107496448
..
FJI
Fiji
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
6.873698694
0.372194853101
6.76284366097
5.57613642038
3.70073010321
3.52945548072
0.113788487282
0.744282016163
6.4586145936
-1.70964812937
0.0351149987055
2.48789852965
1.66466241093
1.74071552225
9.18856175776
5.1790548557
13.289022208
9.99413949558
8.67818153809
1.98462717833
4.28327403962
..
FRA
France
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
1.05961048398
1.21669106403
1.59067806242
1.60015273885
1.1547541385
1.50988448529
1.39701357471
1.62138953981
2.00959781222
3.15750540404
3.19523142732
3.76170048269
3.41375012503
2.40272227173
1.59698798778
3.97820256876
3.18440532021
3.80703704078
2.3496814222
1.33820994156
1.31529234415
..
FRO
Faeroe Islands
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FSM
Micronesia, Fed. Sts.
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
-32.36701449
..
-0.103233113437
-0.41740725166
..
-0.0997496751987
..
..
..
0.0161095449054
0.234779148428
6.5271802894
2.20524573464
2.77918424752
3.49681709098
..
GAB
Gabon
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
1.23410725154
-1.01036217591
2.2698646422
-2.59704974083
-2.37667275443
-6.34269938152
-8.58939204162
-5.84394826104
3.27048038081
-3.35883441142
-0.841116313056
-1.8903850698
0.79014895436
2.60924527333
4.45109562055
2.79647258494
2.8054236493
2.3276089429
1.43825903581
0.299777751687
1.30954146849
..
GBR
United Kingdom
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
3.30875497206
1.55813319304
1.51673048693
1.68364367706
1.01124246894
1.87806752192
2.2459634659
2.75970854516
5.12735149911
5.94566839601
8.26735580806
3.66051230484
1.5838025078
1.4838808352
2.60313176587
7.78053889789
6.30569051992
7.18866525256
3.51858118725
3.35565487372
2.09012853044
..
GEO
Georgia
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
..
6.90776751518
7.3419119855
2.93926016148
4.287882111
3.41048036318
4.71797417997
8.38430689602
9.60499634042
7.06196037655
15.1067360468
17.2050035423
12.2237194887
6.11509501041
4.7039415557
..
GHA
Ghana
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.25144394876
0.303049663822
0.350870347659
2.0953100306
4.28267886877
1.64925995221
1.73271933008
1.18825839246
2.23975886709
3.16090734604
3.33300599945
1.68199919623
0.956235991159
1.79363905864
1.56979270498
1.35228844376
3.11948258903
3.47256949306
4.27806400885
6.43783997916
8.0730811125
..
GIB
Gibraltar
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GIN
Guinea
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.669762681057
1.28595048849
0.599459552872
0.0829505177705
0.00620710645076
0.0208189318854
0.614468899076
0.457240138196
0.496324802
1.83320583305
0.31943579134
0.0579807337984
0.982525977362
2.29124912433
2.67023729115
3.57498843854
4.43050973222
9.16772752234
10.1072980684
1.19625823049
2.24693450324
..
GMB
Gambia, The
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
4.45534814965
2.90336445932
1.82161069469
3.02016458336
2.67818357653
2.02323236004
2.72158994183
2.84801085754
..
..
..
..
..
5.19980538912
13.8538836203
11.6369876389
16.1730102768
11.9974498753
9.56482375036
5.37812884547
4.63299426681
..
GNB
Guinea-Bissau
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.827999082775
0.812754132272
2.57607172472
1.39310518746
0.182496655495
0.0157504821739
0.380890236917
4.27446583886
2.13464551492
0.325635351132
0.325947072432
0.198766691402
1.74891760195
0.842870083822
0.321248536858
1.51740329469
3.06379088241
2.71719552938
0.607289766204
1.67230205983
1.00723485517
..
GNQ
Equatorial Guinea
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
8.38055902942
31.6433463376
3.90333270799
14.6595815547
13.5158541976
77.4021994538
145.201888715
10.7388024535
60.2825920761
17.6941989749
12.3183505066
54.1866471449
15.0641645311
23.3636663792
6.50495560681
9.3600858503
4.88906544067
9.88260399747
-4.30904372878
13.387272473
4.96216653785
..
GRC
Greece
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
1.06686958275
1.12176782015
1.02285984937
0.933078000367
0.874283304802
0.799432865616
0.759547400162
0.724130747648
..
0.422073122337
0.862865944893
1.20963228578
0.0360010659179
0.684261932129
0.915056945949
0.271453753307
2.03746345774
0.630239853037
1.5282203242
0.741017583828
0.738095166783
..
GRD
Grenada
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
5.82351883021
6.3228260653
8.99966044796
8.09086925479
7.37691014726
7.23056313038
5.75695118016
10.9857407732
14.2849383092
10.9453725394
8.70791746849
13.9105196512
12.4617514379
18.5676655772
13.8526034795
12.6669144418
15.9073581129
25.6513985829
20.9642621846
16.6800506536
10.1316574465
..
GRL
Greenland
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GTM
Guatemala
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.623519176558
0.964268128999
0.901268282496
1.25000626973
0.502186083853
0.513068303392
0.487276940849
0.474459646279
3.46917278758
0.844020553741
1.19177422376
2.4356126499
0.532410147872
0.597735236402
1.23512012439
1.86908123232
1.95758474583
2.1842044796
1.92608974301
1.59236487321
1.66763549654
..
GUM
Guam
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GUY
Guyana
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
1.99202050095
3.66489212291
39.8092346164
15.7233044366
19.725447718
11.9718135778
8.36397724171
6.94131117501
6.13214183212
6.62103922409
9.41532481524
8.04272445981
6.03492857518
3.51785520356
3.81718838571
9.31043894391
7.02115434865
8.75693389352
8.73816428644
7.12253370483
8.44005592955
..
HIC
High income
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
1.05931707683
0.710169768802
0.647472472971
0.824248392986
0.78597224635
1.0056970206
1.11010346954
1.34245217981
2.31797877629
4.09727163265
5.58752832995
2.79684269474
2.17985263543
1.64268168721
1.66640604184
2.47547796265
3.1502813546
4.3302606976
2.85585667314
2.2504121483
1.84669476971
..
HKG
Hong Kong SAR, China
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
..
..
8.84616217655
15.0522868785
36.6151412955
14.272025057
5.91153212984
8.59195389455
20.5150045928
18.9105990329
23.7209849497
26.2522814629
27.6805187394
25.0355204178
30.7026697533
..
HND
Honduras
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
1.42674585882
1.69791898936
1.39202656239
0.766802723787
1.01388067355
1.27842802677
2.25332579612
2.60551034719
1.90303529345
4.41690230362
5.37128893494
4.02091936796
3.53848167535
4.89169331276
6.1645519181
6.14678327505
6.12870324371
7.48472906805
6.44396508668
3.49493669086
5.17774627426
..
HRV
Croatia
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
0.126945422408
1.32249610306
0.785003681633
0.490134554734
2.11010504692
2.30254131079
3.74737333548
6.30261138766
5.16425369889
6.86451913016
4.14691566946
6.00058999827
2.63041782417
3.98937462941
6.94346814351
8.42240223754
8.61562660591
4.5107852876
0.549129298099
..
HTI
Haiti
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
-0.051778501171
-0.104195980386
-0.155014246921
-0.131768828478
0.27453165425
0.138006934691
0.123355237878
0.286360583056
0.733728987457
0.361576916232
0.125428239607
0.17731420428
0.488239604252
0.161172324359
0.625866060118
3.2911585724
1.24763779095
0.46506493941
0.585772126401
2.23553533311
..
HUN
Hungary
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
1.67535918944
4.3738659214
3.97043802395
6.08802564734
2.75540002152
10.7580579496
7.28241938123
9.08678097375
7.10532506561
6.88463563615
5.78563827115
7.41467656463
4.53046228904
2.5819322342
4.19470088488
6.92056843788
17.3084047816
51.3739511819
46.4843061407
2.60474475897
-32.195689485
..
IDN
Indonesia
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.955198331395
1.15629486438
1.2773487956
1.26829944495
1.19225190091
2.15007979628
2.72419798262
2.16779829847
-0.252290447278
-1.33257352862
-2.75743933521
-1.8556861947
0.0741516383679
-0.254256325802
0.738243956866
2.91611492677
1.34794260232
1.6034241522
1.82633608535
0.904301048804
1.88288156704
..
IMY
Isle of Man
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IND
India
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.0745558707498
0.0274882905848
0.11260796953
0.199382436194
0.300851000211
0.601637434424
0.624718697594
0.870576296348
0.63294563344
0.481399696123
0.778869460739
1.14512090063
1.10925688879
0.721105269932
0.799821385108
0.912002246475
2.13761233156
2.05103939922
3.57611636199
2.57821299791
1.39728384083
..
IRL
Ireland
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
1.31118814826
2.80788618769
2.65652944524
2.20387539752
1.51282772035
2.15572267203
3.53503392186
3.378736354
12.5383139423
19.0281660987
26.3563605517
9.13238133313
24.0087766354
14.1820167373
-5.92883913725
-15.02767537
-2.48253762296
9.48377411154
-6.1969874522
11.9717936557
13.2839663333
..
IRN
Iran, Islamic Rep.
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
-0.311931665028
..
..
0.34540828617
0.00297937308408
0.0187163871911
0.0235137843268
0.0503329950395
0.0233777114124
0.0334428858037
0.0385046321405
0.939440537218
3.14124791416
1.99237231007
1.75424126001
1.6329901177
0.738767075823
0.583649605725
0.477678804769
0.911161501538
..
..
IRQ
Iraq
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
..
0.011073908756
0.0679165460596
-0.0384564740053
-0.0121436633731
-0.0340619332815
-0.00838183586726
..
1.16481847242
1.64543408515
0.849599348443
1.70521394478
2.14457243276
2.22647630644
1.73632935898
..
ISL
Iceland
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.347484591083
0.27123377958
-0.186794846071
0.00344584188095
-0.0218073227768
-0.132683283132
1.13712822344
1.99132333375
1.80602064751
0.748080155885
1.78593484268
2.09822289993
1.03934267055
3.06464355825
5.72042397665
19.1633094342
23.3386135046
33.6750019569
7.16050304652
0.502479207348
23.4223211923
..
ISR
Israel
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.287672057918
0.584076926568
0.894768310232
0.91754972396
0.591404401576
1.4056134221
1.32589695353
1.50733648102
1.58108475981
3.74580384049
6.45094207101
1.43938873732
1.4003153599
2.79385414589
2.32326710172
3.58920816598
10.4876031238
5.26865127476
5.38051559699
2.27138549911
2.37065097889
..
ITA
Italy
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.565612148926
0.200849735386
0.245261543438
0.367170907613
0.208665883621
0.429982529256
0.281507836164
0.310306896737
0.216468253467
0.578175873944
1.20075397829
1.33116719476
1.20591551768
1.09727360282
0.971807090918
1.10462312474
2.09334594942
1.89220579394
-0.413174901313
0.785288489011
0.467943641506
..
JAM
Jamaica
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
3.00291262172
3.24387041345
4.02777309531
1.59265118545
2.62649897572
2.53548998715
2.81433247732
2.72063061062
4.22207187666
5.93030682922
5.19834885067
6.74280768693
4.97163659683
7.66788365136
5.9358969607
6.11998717115
7.35800635695
6.72021708429
10.1730256733
4.27520021391
1.62687747395
..
JOR
Jordan
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.936424560022
-0.283483070845
0.766783022958
-0.598463695465
0.0457689514802
0.197817608148
0.223927691429
4.97969774022
3.91722859734
1.93790313689
10.7900480288
3.04693504649
2.4855707865
5.36360696767
8.20945009288
15.7640632796
22.6519652538
14.7598561576
12.4543185276
9.67075929737
6.17043984023
..
JPN
Japan
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.0581209606978
0.0368954134177
0.0727053399709
0.0027286929508
0.019077022979
0.000747134542956
0.00447257971362
0.0750867051768
0.0847311812958
0.281738169956
0.176267612226
0.151165786155
0.231915887953
0.147507843103
0.169498720875
0.0705950502241
-0.155494364249
0.506632059453
0.503125186649
0.235131267736
-0.0247172156642
..
KAZ
Kazakhstan
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
0.401494530304
5.43123801841
3.10434798357
4.73243088842
5.40518497017
5.96140056843
5.20165906682
9.40677613492
7.01139873648
12.7975370548
10.5136979907
6.78487916267
9.63395090516
3.45078943662
7.75045482897
10.6043562658
10.7326052259
11.9433818105
6.96638082405
..
KEN
Kenya
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.664461938178
0.230995266994
0.0774036170649
2.53235258891
0.103976829404
0.467473986332
0.902161731884
0.473452964619
0.18837590061
0.402863318148
0.873864258671
0.0408317470548
0.210037978715
0.548445031448
0.286180527418
0.113201905621
0.22519858191
2.68290644015
0.318285504556
0.478362365907
0.423564661677
..
KGZ
Kyrgyz Republic
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
0.493024819318
2.27113867812
5.78500473828
2.58474284701
4.74131484698
6.6361415925
3.55569211986
-0.172310639068
0.328285919271
0.29034912593
2.37333634521
7.93380097321
1.73038176197
6.42244374284
5.46787270122
7.33453790626
4.0378702835
5.05951258619
..
KHM
Cambodia
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
2.1361412399
2.46826433722
4.38218509621
8.37255419965
5.91564184666
7.78172663356
6.60286377629
4.06410122577
3.7538814617
3.38714777743
1.80283811144
2.46197704163
6.05716501644
6.64257882502
10.0390320936
7.87474573616
5.0695415678
6.89911524864
..
KIR
Kiribati
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
1.05495175758
0.894718951228
0.818231421356
-1.5834584252
0.767548180892
..
..
0.740549875551
0.655387709698
0.639736960083
1.05776297
0.770014626845
0.703003640925
0.994138257816
1.12516761917
4.39006299312
0.518570026297
0.901699186121
2.01064456932
2.47950524823
2.42711804666
..
KNA
St. Kitts and Nevis
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
30.6438903636
13.0324900766
6.89139573578
6.9371698236
6.92166335676
8.87158924175
14.3242838126
7.1505241455
11.1114578885
18.9296343109
29.4952908827
25.7422766315
22.7064011403
20.8496629243
13.9573301096
21.1968464074
22.6662363823
26.2033721874
31.2038789643
24.847426484
24.3362119249
..
KOR
Korea, Rep.
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.298926760183
0.382821955024
0.220773327602
0.162397665782
0.191056844015
0.343403160233
0.417004690631
0.550899471591
1.56681880625
2.09551293108
1.74047206466
0.699127902296
0.415381127514
0.547639946334
1.28068101024
0.746689104343
0.376812348651
0.170066608753
0.355453313541
0.26964472683
-0.0147957113699
..
KSV
Kosovo
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.46402706437
3.57518909775
9.44474282897
12.8966752832
9.51493994344
7.50890759923
7.39441667782
..
KWT
Kuwait
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.0303889043294
0.00726615104735
0.177757134856
0.0553523176027
4.02439026074e-05
0.02464481519
1.10295032949
0.0651694456439
0.227639292122
0.239932634588
0.0432149886271
-0.319615395634
0.00949018279355
-0.14017822479
0.0399609093684
0.289492646124
0.119440939507
0.0972227249306
-0.00400029943631
1.01731974165
..
..
LAC
Latin America & Caribbean
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.727464020062
1.07923828107
1.13489035146
0.957996264442
1.75270704336
1.70668757456
2.29408466997
3.15294786911
3.53716816198
4.7579890235
3.84302096753
3.61038990435
3.11457302058
2.2577407939
3.04050916551
2.76529573746
2.29886179233
2.98103372282
3.0073361536
1.97875981853
2.30166882709
..
LAO
Lao PDR
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.693192961415
0.671148807684
0.691607745734
2.25193223849
3.83517460768
5.39257400269
8.52870949354
4.93986336155
3.53857083992
3.54834840998
1.95313938613
1.35157901983
0.243285351487
0.906725953987
0.67477559389
1.01234031194
5.35583648377
7.58935510482
4.14306117179
5.22697100909
4.67145423374
..
LBN
Lebanon
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
6.97552914589
14.2410590326
8.70934007779
12.0130313717
11.9201175677
13.4733566105
14.4052619839
13.7541662912
12.6545101769
..
LBR
Liberia
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
58.5952133195
2.41666666667
-4.85458612975
-33.4289276808
13.1467473525
3.41246290801
-82.8920953576
72.2608989523
52.9226900441
58.0036192153
3.70832582402
1.52854503056
0.50062576112
90.7411011146
16.3808113651
15.6171463561
17.6276809842
17.9115118776
46.8288034913
24.7654553257
25.1439463873
..
LBY
Libya
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.549772235514
0.287264620961
0.292421810199
0.189669816504
-0.253837511203
-0.346442001999
-0.400657026152
-0.221216991797
-0.469309625412
-0.420114786302
0.415970912652
-0.467974994185
0.730753968254
0.594285714286
1.06935483871
2.35909090909
3.65410788382
6.53034246575
4.41279533333
2.74372634271
..
..
LCA
St. Lucia
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
11.2754336681
13.3831776694
8.56507535805
6.94327363822
6.28367793345
5.84008640692
3.25137332449
7.9128141143
12.6832764666
12.007359406
7.59663302944
8.55943045687
7.366686935
14.416661068
9.57416673535
9.11752514214
25.1289911518
28.385813205
16.3487575217
15.3420858562
12.9924036264
..
LIC
Low income
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.531090923011
0.254793702309
0.178943542301
0.302789132159
0.498997206363
0.829991534344
0.836705956404
1.30789689642
1.75353202848
1.68081863081
1.51026203664
1.63255894403
1.96592991743
2.32862315493
2.21841097225
2.08747576997
2.18744029173
3.54119944104
3.16663145959
2.67189300838
3.23926079091
..
LIE
Liechtenstein
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LKA
Sri Lanka
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.539742838708
0.53719139972
1.2637915704
1.88108227637
1.42019594736
0.429753548031
0.862545735591
2.84957674743
1.22459231184
1.12676493101
1.05898854136
1.09099169127
1.14894650916
1.21132740877
1.12667735136
1.11612854302
1.69700722773
1.86391940286
1.84746502979
0.960350688231
0.965075880515
..
LMC
Lower middle income
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.557982412586
0.800132498688
0.863491809023
1.2571159057
1.39468454213
1.49650742698
1.67583486832
1.68026251188
1.62446293976
1.19422774822
0.944043787158
1.08462111936
1.4808959803
1.37754843651
1.42062796358
2.36875872751
2.95435911748
3.19538886507
3.66209839486
2.82294211844
2.4201841452
..
LMY
Low & middle income
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.726023886537
1.03687190439
1.1555353669
1.58580973057
1.97278352948
1.95086673955
2.21364679324
2.75315308615
2.8474741622
3.05617032262
2.55520995871
2.69822275693
2.57708831578
2.23098757368
2.55590727481
3.25539826661
3.37470073612
3.77698640861
3.68357517821
2.43662339784
2.65724138975
..
LSO
Lesotho
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
3.15847297464
1.24665873015
0.376637940688
2.12189233666
2.53792026445
33.8142499532
36.1137909721
32.0109922464
33.0946317155
20.8564177714
4.33857888968
4.31964281559
4.43938387578
4.63373217975
4.50404327567
5.10331975623
4.13525174685
6.60925196113
6.87254981589
5.86764988319
5.48876542826
..
LTU
Lithuania
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
0.406421833344
0.449870252799
0.917880537815
1.80855861201
3.49998025413
8.22392827471
4.43387907168
3.31352433926
3.66655769591
5.03003573007
0.962879901019
3.42838621264
3.97430505578
6.11590811119
5.15813739166
4.38024744021
0.342326429053
1.71383839301
..
LUX
Luxembourg
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
63.507580291
68.2552260801
73.3454009425
68.0786202437
48.5054761561
51.6952142578
68.3314336629
64.7968262011
117.240200177
564.916267531
437.792605656
436.672985173
524.879971942
307.918622869
234.950616378
305.771725799
305.222741385
377.621219122
171.663957611
397.904387993
279.151110757
..
LVA
Latvia
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
0.606537864159
1.00991782787
4.2374857884
3.43062668731
6.83391211274
8.49556669008
5.39371743319
4.76914087771
5.26613553717
1.58786529407
2.72255371484
2.71310316892
4.62810581248
4.44774403086
8.34811199753
8.04986856962
4.03155773898
0.361341746928
1.41026449962
..
MAC
Macao SAR, China
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.0160525592397
0.309382365091
-0.42565175558
-0.0681785736205
0.0592993099112
0.03334836252
0.0928409413808
0.0354653715853
-0.289180663042
0.159202569818
-0.0129470089275
2.58600848215
6.07545633273
6.51991500154
7.48920116812
15.3510174676
18.5976830688
27.0759618942
14.2091289804
8.2653331202
..
..
MAF
St. Martin (French part)
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.63949782016
1.1404503376
1.48492467784
1.83375575326
1.81516110701
0.280075474172
0.208555853868
0.0106802078554
0.0296577651872
0.00667404192874
0.596261718911
0.381284233178
0.195864853811
4.64183022767
1.38205662542
2.72118191305
3.60466842088
3.7309311447
2.77475923681
2.15631220386
1.36039547222
..
MCO
Monaco
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MDA
Moldova
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
0.732997664287
0.590265777668
0.679545465933
1.47804160094
1.40048215912
4.07964172494
4.60507036494
3.23629004926
9.89894428296
3.68350024744
5.05771338869
3.72305225715
3.37498799083
6.38182718101
7.03310022908
12.120851661
11.7719706978
2.35024203872
3.34527144428
..
MDG
Madagascar
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.726531306188
0.5156734355
0.698732058215
0.455593808418
0.192411204393
0.307298064337
0.254372206943
0.394998805338
0.444961711883
1.57058763437
2.13929006953
2.05452831563
0.333440397889
0.235188648713
1.2124825161
1.69579830377
5.33999774255
10.5315166783
12.4469664724
12.559641936
9.86618910108
..
MDV
Maldives
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
2.60357334112
2.65883151089
2.3169816334
2.14068559459
2.4566591333
1.81225837758
2.06829872568
2.24485508475
2.13257607722
2.09121157448
3.57378189879
3.28621955461
3.85804264168
4.58888384605
6.81709811973
7.06769146132
6.97263126264
8.59393072964
10.6959328774
8.51789226452
11.0702364993
..
MEX
Mexico
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.970272193801
1.50801121124
1.20816502138
1.08855379212
2.60181367564
3.32275831566
2.75919260585
3.19562515286
3.02856510751
2.88425674021
3.11471557099
4.79807234284
3.66413350925
2.3192890467
3.26414345613
2.84136426959
2.10569134033
2.87030044074
2.39882748587
1.7369779975
1.79666873138
..
MHL
Marshall Islands
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
1.45579479117
1.38468099719
..
1.14864632031
-5.28569163275
-4.75109037524
-5.15267372239
-17.964032882
-3.11529736454
102.213496507
116.370063211
-0.814627081825
-39.3340375233
3.78065725272
3.07576894224
4.68975468975
4.28769017981
8.07947019868
3.61842105263
5.21378708554
5.55555555558
..
MIC
Middle income
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.732821477971
1.06532468827
1.18509979609
1.62221816385
2.00803597322
1.97798125623
2.24905637905
2.78957405582
2.87655659262
3.09353380018
2.58109397997
2.72530856804
2.59308796188
2.22851528812
2.56392297764
3.28027352762
3.39875176147
3.78151488879
3.69344889945
2.43189679519
2.64646174868
..
MKD
Macedonia, FYR
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
0.709792418437
0.213288358006
0.253496037749
0.421383786793
4.21395309742
2.40673076623
5.99563866075
13.0095050929
2.78464883397
2.54366769173
6.01714916042
1.6681693601
6.65538511566
8.56749487701
5.96859872762
2.12460772635
3.24360248857
..
MLI
Mali
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.236649801249
0.0497438039871
-0.768477696869
0.151653634919
0.988076389548
4.51836546456
1.71024706148
2.54470082908
0.341512556192
0.0847334961129
3.40311983388
4.629049216
7.29339353753
3.03180560025
2.07218884863
3.54622175802
0.811847877298
0.752297021087
1.50694159819
8.01431115296
1.59590255658
..
MLT
Malta
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
1.79774067031
2.79914300544
1.30850904216
2.08333280863
5.05895691462
3.61406160668
7.9846318229
2.26417670397
7.43268751794
21.9400141565
15.4387036089
6.23543067092
-10.156428189
20.1636101223
7.04823540261
11.3874579857
28.4953971515
13.1987735774
9.90691492082
9.43239012505
..
..
MMR
Myanmar
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNA
Middle East & North Africa
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.232542045497
0.631684143967
1.22308739131
1.37259739228
1.1384856457
0.356694170185
0.40041702601
0.544219457522
0.719502477926
0.492013475974
0.984890850097
0.922016703617
1.93551904188
2.23611049895
1.90367459345
2.9027917816
4.02671612502
3.70520183669
3.15654452924
2.74727710984
2.89461390371
..
MNE
Montenegro
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
25.4695766275
21.2495593227
36.8779870231
18.9934215489
..
MNG
Mongolia
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
0.467419686996
0.151789768786
1.00208007641
0.745287603572
0.674854417052
1.18152414127
2.11696804374
1.68083632719
2.87495295172
4.72338651393
3.39117274713
5.57041842206
8.24297764937
4.66349832843
7.3156428071
10.1292201673
8.80197674839
15.0215613074
13.6045319291
23.913801033
..
MNP
Northern Mariana Islands
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MOZ
Mozambique
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.373492005296
0.834732027281
1.28498051552
1.57818123581
1.61829397753
2.00285617171
2.28084331584
1.71649443351
5.0161110287
8.58134005308
3.27625944285
6.26779475921
8.27322151351
7.2157106114
4.29456373943
1.63947809913
2.16636557781
5.32291538003
5.98123598863
9.00316251798
8.2290767496
..
MRT
Mauritania
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.660672356594
0.200822650441
0.515531415306
1.28741169732
0.158040659248
0.493845479788
-0.0301913540923
-0.237521124532
0.0108507372119
1.26561950396
3.70858087731
6.8386549245
5.86262097035
7.92833714762
25.299428565
43.8197578575
3.90859310345
4.8739592019
9.42983039933
-1.26527155152
0.374831875391
..
MUS
Mauritius
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
1.54665314402
0.608271009248
0.456357835176
0.45145217283
0.561766417373
0.462655405932
0.829075694972
1.32010722284
0.291878857766
1.15010998362
5.79678390327
-0.610058261289
0.672772740796
1.11642470641
0.217595557674
0.664831644199
1.64063649923
4.37326704227
3.91788499964
2.89539849751
4.43065292579
..
MWI
Malawi
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
1.23884416102
-1.30245083474
-0.394548112818
0.38635279832
2.11479032814
0.403807903104
0.692565762386
0.558271510945
0.691439004779
3.29565240869
1.49124744064
1.12437867289
0.221375115836
2.71498310123
4.10302098313
1.89905621059
2.31614350223
2.66183508101
4.17334182966
1.2786317547
2.74173108235
..
MYS
Malaysia
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
5.29812339661
8.13786902448
8.76288274108
7.48289692345
5.82942178181
4.70350555107
5.03552312491
5.12785630234
2.99742641402
4.92146653192
4.03842857326
0.59702931076
3.1765623419
2.24419665306
3.70679757736
2.87708528746
3.88192352134
4.60248949673
3.32505060043
0.718510985847
3.82793400586
..
MYT
Mayotte
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NAM
Namibia
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
1.25801685459
4.83289741354
4.16656345354
1.94151820069
3.01290350169
4.36801511097
3.68596348379
2.50253734299
2.8314438446
0.0470352271356
3.04113175253
1.01885963697
..
0.674005618965
1.33524361432
2.28757338627
-0.387047150659
1.92973033654
4.56091697174
5.33857036448
7.04700537417
..
NCL
New Caledonia
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
1.23946842075
0.124350851042
-0.00684049521883
0.651431535072
0.00131634042405
0.0195676364017
-0.0238427370728
0.303813789025
0.000633150530904
0.145894668543
-1.5145719021
..
..
..
..
..
..
..
..
..
..
..
NER
Niger
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
1.64524252062
0.651091737881
2.40470099397
-2.13816013649
-0.720238177778
0.382191239673
0.49672823928
0.984572440758
-0.0492989337784
0.0136810102443
0.469152720472
1.17693086822
0.110787942313
0.545952461076
0.862351175287
1.29146449076
1.38662090555
3.00753917496
6.3395273895
14.0492872675
17.0644143772
..
NGA
Nigeria
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
2.06474165722
2.6081506115
2.74115306133
6.30067787932
8.27954027043
3.83961802459
4.51415748478
4.24916514139
3.27069488449
2.88968126684
2.4794440888
2.48049499757
3.17006437046
2.96409681501
2.13333037095
4.43883801356
3.3053074014
3.63725877364
3.95745911611
5.0750314816
3.12314747043
..
NIC
Nicaragua
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.0663724154982
2.82105613029
0.836680053548
2.20899572594
1.56846516579
2.78583645799
3.61387711675
6.01162926884
6.10777611131
9.01292145763
6.77026945868
3.661042112
5.06406649991
4.907228341
5.59688907127
4.94773013297
5.48339375028
6.74191854907
9.82542583771
6.98781079482
7.75432535013
..
NIU
Niue
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NLD
Netherlands
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
3.62044611744
1.85381192511
1.84005194778
1.94821268031
2.0292465495
2.91338097025
3.97252380874
2.85443651884
9.34286787527
10.0053744418
16.3913168025
12.9736901857
5.81469322876
3.79718955845
0.717939277902
7.41277363873
1.04088503487
15.9419167979
1.03408699333
4.43128988507
-2.25772812918
..
NOR
Norway
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.852822306335
-0.332286980572
-0.520748342966
0.839077640713
2.19756712546
1.6067482379
1.98492809329
2.45605892601
2.88069507323
4.26038633162
4.13676302132
1.23088216473
0.342293684425
1.57690088039
0.983827392058
1.77136906515
2.14353346138
1.68584444985
1.68337657133
3.96191377285
2.83426789789
..
NPL
Nepal
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.163746463862
0.0566113359343
..
..
..
..
0.423749430011
0.468752021001
0.247611787039
0.0864185348911
-0.00882425818208
0.372615646465
-0.0983748686511
0.233443497647
-0.00573756077963
0.0301562928601
-0.0732574131811
0.0558661092829
0.00791501700394
0.296012970972
0.559501195086
..
NRU
Nauru
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NZL
New Zealand
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
3.89876053609
3.08414933961
4.74698596067
5.22812437754
4.6000090339
5.28135713976
3.39425319455
3.79913399319
2.3243275655
1.98569817996
7.44295666359
-0.5656221324
2.26234506389
2.61320923807
2.28986762249
1.4092102925
4.12661925661
2.22581213806
4.34677465076
-0.994149202994
..
..
OMN
Oman
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
1.21747645305
1.19244174392
0.837527927902
1.13664751188
0.591870837712
0.335399751031
0.396654916984
0.407262497275
0.724155464271
0.255249022046
0.412726459637
0.0260739193144
0.544817741101
0.115900035284
0.450089592662
4.97769919408
4.33679595119
7.95233064163
4.87375468418
3.22031073986
..
..
PAK
Pakistan
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.612997637145
0.568544194837
0.691843694813
0.67709420941
0.811304164739
1.19175194004
1.45605449463
1.14722858023
0.813610045502
0.84479502474
0.416484257775
0.529665859279
1.13820521424
0.641481501536
1.14107520858
2.00821167883
3.35137254902
3.90441700404
3.31804526746
1.44329918152
1.1533236854
..
PAN
Panama
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
2.55025220206
1.85714530236
2.17574607763
2.33843947771
5.19142993832
2.82060687317
4.45715021293
12.8847679492
11.0048021953
6.59549767377
5.36896002754
3.95596019479
0.803428832176
6.320941453
7.18723773388
5.93351309757
14.9215148509
8.97494190159
9.54803144129
7.36209567236
8.82283742452
..
PER
Peru
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.155926906703
-0.0202637280711
-0.218933549999
2.18342532035
7.3239519559
4.76390319446
6.21222477275
3.6122188343
2.89674091001
3.76631151007
1.51940482177
2.12152378885
3.79733662504
2.17616681141
2.29334981776
3.24836805452
3.75556660928
5.12057480244
5.45931376855
4.3932067673
4.76339522782
..
PHL
Philippines
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
1.19607519714
1.19777604773
0.430380619682
2.27706704885
2.48265794008
1.99406722631
1.83105982102
1.48401151712
3.16728196471
1.50249751473
2.76453465978
0.255697468623
1.8953347993
0.585163269537
0.752972185829
1.79884782211
2.390134039
1.9523309867
0.889387942817
1.1661371795
0.858261807982
..
PLW
Palau
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
1.30059307044
1.19253473257
1.21284156651
..
..
-0.220502535779
-3.49343363862
71.7408778144
-1.3041254688
5.41921839891
12.4392014216
8.63175458863
1.03804780043
1.27110357865
5.27852650494
0.598234177737
0.753444775052
1.89300561815
1.03368886028
1.21641217697
1.37590845421
..
PNG
Papua New Guinea
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
4.82691035296
3.08180700091
2.38236819843
1.24532654452
1.03496339373
9.80495542297
2.15874944531
0.57884448641
2.89294360154
8.52710832226
2.72427320438
2.0298579949
0.609386616591
3.32724821241
0.77675065474
0.783322318784
0.229640011243
1.61600188912
-0.380512796177
5.34764963073
0.304510308772
..
POL
Poland
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.150909114059
0.380754527225
0.804027905045
1.99765568395
1.90324515563
2.63120568978
2.87074575592
3.12305333895
3.68128657939
4.32846021879
5.45493445669
3.00072227571
2.08447367998
2.11668823879
5.03068239085
3.39209654244
5.81730786465
5.56073603381
2.82923661256
3.02383400817
1.93262636997
..
PRI
Puerto Rico
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRK
Korea, Dem. Rep.
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRT
Portugal
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
3.36429441667
2.78400822992
1.7667036703
1.63806191289
1.29231243314
0.588024477231
1.11329522551
2.04083240809
2.45138349649
0.925827820336
5.71007675341
5.14341289753
1.33055937572
4.49450570569
0.898647485022
2.12302636782
5.45538535485
1.28156882869
1.85817233411
1.15355924507
0.645963744443
..
PRY
Paraguay
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
1.46070091437
1.37786617397
1.82297418874
1.09094206826
1.97530823662
1.27947446766
1.70852030698
2.65777116582
4.31957335545
1.29593392386
1.4721550695
1.30628406863
0.198194621074
0.493547525271
0.542162569378
0.71588847657
1.86842130468
1.68789070715
1.65173611835
1.43753736109
2.30964024706
..
PYF
French Polynesia
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
QAT
Qatar
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.0663003913534
0.617998102102
0.517645880647
1.00676390993
1.78792981022
1.1496806908
3.74055941852
3.70275569829
3.38647728747
0.913812621933
1.41667547318
1.6849825047
3.22210553523
2.65541583362
3.78519221997
5.80853552287
5.78543938784
5.82037419856
3.41301223505
8.26413705145
..
..
ROM
Romania
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
2.61102699595e-05
0.138663278135
0.306891461188
0.356585192211
1.13392167504
1.18104502386
0.74433236831
3.44330283937
4.82245322033
2.92478686515
2.79872122712
2.87948859073
2.49647951247
3.09877710029
8.53496855864
6.5533694053
9.29002758893
5.86298080126
6.93903446511
3.00787683118
2.13644459154
..
RUS
Russian Federation
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
0.252278648371
0.278352332152
0.174645274512
0.522086286886
0.658376093451
1.20136441138
1.01909143216
1.6892968693
1.0451063554
0.896367133503
1.00290556643
1.84923002772
2.61318691027
1.6866220289
3.00035465434
4.23735889234
4.51591529228
2.98689715677
2.89686910373
..
RWA
Rwanda
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.292619148654
0.239438015811
0.107339962996
0.296826271175
0.000132689986708
0.171031394277
0.160470607809
0.140344588948
0.356358436913
0.0893604920055
0.479505352884
0.276716968189
0.159087845964
0.25218033665
0.3667014498
0.311099398685
0.36105210329
1.79475999768
2.19319369966
2.25527503092
0.752176650841
..
SAS
South Asia
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.135197128453
0.109328647064
0.222081867081
0.300087834941
0.375222702068
0.625957808526
0.686602933907
0.913391888613
0.65247349697
0.529499104054
0.723423521806
0.988993361643
1.03275863176
0.712968386578
0.857507904915
1.07467817965
2.19659524981
2.1702871171
3.34934774112
2.32130751192
1.34568478402
..
SAU
Saudi Arabia
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
1.59390599983
0.121825015971
-0.0579097110875
1.03457091052
0.260061686262
-1.31594635694
-0.714748521258
1.84216957641
2.93845400425
-0.483938586257
-0.998221211575
0.0107315209889
-0.325711713881
-0.273336912538
-0.133546945954
3.83634825745
5.13626653868
6.32226508329
8.28356161082
9.78299992558
4.96016866278
..
SDN
Sudan
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
-0.250873420926
-0.00544852704192
0.00127987599897
-0.00180159791606
0.775219530253
0.0867650111377
0.00443541828412
0.838098952016
3.29504774688
3.47124544025
3.17156362384
4.29565864685
4.7622716507
7.58811626124
6.96834962897
8.41517978235
9.71082883384
5.21259707284
4.48114389836
4.87257265649
4.66490794586
..
SEN
Senegal
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.995201749412
-0.134415068591
0.35609696764
-0.0143030704932
1.72484583261
0.649163710581
0.172182345876
3.76728816867
1.39612874451
2.97520696276
1.34142781237
0.654879361548
1.46334762892
0.763968994264
0.958003255529
0.512350415161
2.3492552756
2.62414862655
3.01007147537
1.62260765727
1.8310500812
..
SGP
Singapore
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
14.3547575955
10.8157931821
4.23819736157
7.74941834645
11.6749066022
13.249298415
10.1723951431
13.850059972
8.60317003202
19.5309651982
17.4792723137
17.2024364336
7.06303345983
12.4445188845
18.6578765409
12.3265479565
20.1936751157
20.8837852025
4.5345847457
8.33383203824
17.3499154625
..
SID
Small island developing states
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
6.2269710587
5.2470268507
2.6826926892
4.3926628617
6.356232359
7.6462173678
5.95464539
8.5893787067
5.5774381746
11.1311675513
9.7229175908
9.3274704207
4.702208801
7.3181381368
10.6288472334
7.4522552053
11.3648012009
12.1477329114
4.8924240856
6.8783639682
12.2481320937
..
SLB
Solomon Islands
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
3.45100313683
4.53038124242
3.74177260842
5.68739758547
0.451074547294
0.390094979647
1.05180827967
5.9642137794
1.86864553133
2.05313276808
2.99430945714
-2.32562263318
-0.130476843592
-0.541335495495
1.60373771192
4.48901268044
7.46124743663
10.9907967809
14.6978123261
19.5652267352
35.0462047305
..
SLE
Sierra Leone
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
4.99268177574
0.962116980737
-0.823348548789
-0.970701412184
-0.315182427316
0.836853884954
0.0704991537431
0.211710876734
0.0155990199204
0.0796545771454
6.13339254068
1.220824739
1.112753308
0.869229405969
5.57952836611
6.71151453477
4.1327447428
5.80496076891
2.94776487827
4.00205064147
4.54538345581
..
SLV
El Salvador
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.0395398563623
0.474120032426
0.257100309563
0.236841614891
0.0269616642591
0.40037106381
-0.0465051502935
0.530265324608
9.19115364506
1.73129539646
1.32022269783
2.01914984089
3.28517407928
0.938411744768
2.29942462164
0.322901899216
0.0939764978342
0.515834261681
1.67889518157
1.09476078766
-0.0255095943162
..
SMR
San Marino
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SOM
Somalia
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.609567092938
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SRB
Serbia
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
..
3.46102462926
0.69735174021
0.635183281313
0.853012962014
1.55817996558
3.75524808913
7.14566639447
4.33588255477
8.12686715124
17.0015782332
8.71368536019
6.13301910915
4.64686107927
3.42523136621
..
SSA
Sub-Saharan Africa
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.423129092973
0.732013572766
0.523794556009
0.856869340922
1.22560654795
1.35847843657
1.2189634172
2.42864843187
2.08692619073
2.71474405158
1.93751198775
4.24200399422
3.24212748008
3.07935303761
2.0453731181
2.94524329573
2.1425898234
3.27720024076
3.82841837107
3.55221132957
3.6062475234
..
STP
Sao Tome and Principe
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
..
..
..
..
..
3.92359660866
3.9685359242
3.46960580865
3.27917937317
14.2104046201
22.1570770881
15.3511741072
33.2018642825
3.94816203752
1.52433904866
..
SUR
Suriname
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
-19.2444999286
4.22161465962
-13.4206620826
-10.7078677473
-4.99214167835
-2.96996999949
2.22096253321
-0.989664986476
0.962962977312
-6.94566673816
-16.5888721757
-3.51030902391
-6.82491207365
-5.98717843125
-2.5129373301
1.5556950398
-7.66242949923
-10.1971314561
-7.62074088159
-2.87218811615
..
..
SVK
Slovak Republic
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
1.22355529598
1.36073560708
0.935540940475
1.28656507795
0.642981372141
1.92126812205
1.18398797152
7.15131298436
..
11.8572240906
1.22099065751
5.42085820365
3.93423645844
6.03407561421
3.99249602669
3.28123750804
-0.0360029428766
0.621268130743
..
SVN
Slovenia
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
0.886401903986
0.888500369453
0.81262350478
0.722578922223
0.824932831706
1.65009553494
0.998945963141
0.48110045312
0.682823814601
2.4688879653
7.19324883216
1.03757696491
2.46530389838
1.51153533373
1.66700995868
3.23656159005
3.54447735421
-1.30346120005
0.766623333125
..
SWE
Sweden
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.810658871155
2.46251183564
-0.00202815945085
1.8337763487
2.88158345138
5.88906498684
1.98652971759
4.05685725192
7.85843471718
23.4248637658
9.65841600013
4.94521271408
4.93641082276
1.59150079989
3.34679289749
3.2727500186
7.13838551968
6.00812089175
7.7762221144
2.59488556605
1.15460963613
..
SWZ
Swaziland
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
2.70034538534
7.09144992679
6.79032644187
5.29268935918
4.45455442757
3.04632956044
1.34562358832
-0.891291912775
9.77601039365
6.40244960918
6.08598950528
2.27262416431
7.8400388873
-3.39131377873
3.04979113535
-1.81658943477
4.53356070846
1.27108486957
3.72696496807
2.23791849259
2.54344142062
..
SXM
Sint Maarten (Dutch part)
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
5.49124691245
5.22184932593
2.07860016197
3.97458613833
6.31129277996
9.0281794893
5.72754179666
9.48543963811
8.74644675601
8.86337817938
3.95638273276
10.4040180112
6.84107522521
8.27903386774
5.43224522721
9.7168857231
15.0665748062
24.4671672304
26.2147877541
34.8907925538
39.3914990736
..
SYR
Syrian Arab Republic
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.324975391865
0.415965901067
0.430072936035
0.795855010866
2.47974218585
0.877446473138
0.645415766215
0.551525057552
0.539443654977
1.656810224
1.39708924846
0.521331121035
0.532845305559
0.714386815564
1.09944526999
1.73256153581
1.97703014826
3.07387806177
2.78993153542
4.76419849077
2.33643669673
..
TCA
Turks and Caicos Islands
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TCD
Chad
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.540661609644
0.225849878292
0.104193611004
1.03606465253
2.29476172228
2.25542736315
2.45535198218
2.86750094606
1.24361084314
1.59572413228
8.31539232427
26.9030875193
46.4878200273
26.0412835448
10.5729724668
-1.87370194096
-4.57807858907
-0.990281599285
2.79502000117
6.7525851383
10.2978459016
..
TGO
Togo
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
1.12007097054
0.404408588083
-0.774356402509
-0.962542298839
1.56920682701
1.99854853806
1.1811886937
1.40097475085
1.90013374066
2.70002445304
3.15409019844
4.78788844462
3.61513936025
1.91783135065
2.88005124648
3.64003311012
3.51076918686
1.9482206314
0.754987603314
1.53746050512
1.30201062431
..
THA
Thailand
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
2.86320415547
2.05017747928
1.89589036239
1.44310936168
0.94689150109
1.23077858924
1.28379657957
2.5811635345
6.53927007036
4.97650699308
2.74270180384
4.38577812898
2.63374303359
3.66816281627
3.63224466885
4.56777441971
4.5646715021
4.58503716152
3.12977895656
1.8870312904
1.9778299735
..
TJK
Tajikistan
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
0.471390118366
0.546549673659
0.891481143845
0.812002629627
1.72431455336
1.95260990639
2.26799448833
0.616887659059
2.73584242045
0.878574054438
2.95356584749
2.03649570985
13.1023899516
2.35604544
11.9646345237
9.67785063641
7.28081619931
0.317776406827
0.279901590771
..
TKM
Turkmenistan
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
2.48488158054
4.02168020114
9.38672671186
4.5417067224
4.40229630032
2.39092318205
5.10061127159
4.50999024061
4.80936257033
6.18552682417
3.7808824173
5.17229951233
5.16018810883
7.11158374904
6.75922962963
7.5041984296
20.9289010426
9.88421751922
..
TMP
Timor-Leste
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
1.51746138348
..
0.273563265876
2.59414607161
2.18704847843
7.97278499212
8.34966555184
39.8925820257
..
TON
Tonga
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.174231312467
0.271529151695
0.893024883779
1.57271653534
1.43495430339
0.50776521809
0.129785223986
-0.00496168158485
0.0242249727832
0.492204472488
2.54616619401
0.666926370367
-0.181357119178
1.62562244793
1.92288629882
2.77463731045
3.4100346045
9.06575969006
1.19711859558
-0.0111164563448
4.53500427095
..
TTO
Trinidad and Tobago
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
2.15884459805
3.15768697862
3.21544793028
8.27134690608
10.4336659755
5.60934990378
6.17063284001
17.41706089
12.0748258215
9.44782286837
8.33301113492
9.460759717
8.77748659123
7.19386649979
7.74638949688
5.87963500924
4.80505925138
3.81811211917
10.3225096892
3.61361303494
2.69336972036
..
TUN
Tunisia
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.620645309364
0.959532828641
3.39259638003
3.84625647958
2.76353438383
1.46604336772
1.21679619985
1.79439939453
3.27996805844
1.68206056262
3.8685843117
2.43414339376
3.90926194445
2.35113572982
2.28120847602
2.49601872013
10.562107034
4.30069467847
6.45980431694
3.66583835815
3.41495341517
..
TUR
Turkey
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.453953302827
0.536277347902
0.530500633638
0.352506324566
0.465222433571
0.522167204269
0.397849726304
0.424053250431
0.349069821614
0.313511667129
0.368386949705
1.71015793496
0.465307176875
0.561706341166
0.710157955337
2.07689828541
3.80203360461
3.40675657543
2.67054616917
1.36830954964
1.26186046403
..
TUV
Tuvalu
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
2.20441877644
..
0.324274394615
..
0.391929622407
0.146127266813
-6.60915782799
4.24584349301
167.382676799
0.0536820666365
0.182052483599
-0.0901435307886
19.9903045962
0.497205943536
5.58486512388
8.54101566548
4.784566271
..
TZA
Tanzania
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.000234811175435
0.000201751307158
0.264476039541
0.480488346191
1.10845937796
2.2822311631
2.31007875192
2.05475596824
1.84379584347
5.32799962822
4.54949387115
3.74437305954
3.66702094192
3.12424013504
1.76778305706
6.61523053494
2.81231244795
3.45612294334
1.93118675854
1.94000737666
1.87990997272
..
UGA
Uganda
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
-0.13730138148
0.0301048019698
0.104988427651
1.69542093421
2.21028781677
2.10569519918
2.00179157801
2.79136538541
3.18915524586
2.33722633189
2.5947618356
2.59388844451
2.98852735237
3.19082033282
3.72044064397
4.11166501672
6.45734179869
6.64908095681
5.04722295854
4.99063057901
4.80389137756
..
UKR
Ukraine
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
0.270481194067
0.304652535339
0.302571544081
0.553782573459
1.16926049194
1.24226327671
1.77397921877
1.57058253053
1.9032979198
2.0836981243
1.63470785173
2.84044706446
2.64321685941
9.06410155578
5.2007799277
6.93040121765
6.05085599033
4.10824159545
4.70893389134
..
UMC
Upper middle income
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.793841273996
1.1568979986
1.27947543161
1.72942839258
2.18643499979
2.11551061441
2.41202362706
3.09718079403
3.19307282986
3.65036921835
3.0455122835
3.18927449718
2.92784385251
2.48237087738
2.89974787751
3.53916995101
3.52534418518
3.94812471617
3.70168661033
2.32153030322
2.71223480922
..
URY
Uruguay
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.446722403441
0.288590416893
0.0877454726769
0.676569935913
0.884141497195
0.811497222314
0.666814008058
0.527331393123
0.646421114605
0.981072955804
1.17682158183
1.42015375351
1.42394136329
3.45691848347
2.4284771414
4.88052996081
7.54203958454
5.56802612662
5.80358822808
4.02817529969
4.04054947843
..
USA
United States
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.843187034847
0.390847623383
0.316362707209
0.780507071352
0.659631361446
0.787637632181
1.11622866432
1.27887119239
2.04816382565
3.11195570369
3.24558532347
1.63202689102
0.796679949387
0.574883670598
1.2357119274
0.895394961724
1.82324050329
1.58032154341
2.16895271003
1.12918064071
1.61993910467
..
UZB
Uzbekistan
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
0.0694776791618
0.366414212744
0.565932081903
-0.17976906597
0.64521252734
1.1312613249
0.931351445248
0.70966561123
0.542863132597
0.726229698117
0.674033132783
0.8150414872
1.46799380148
1.33915686348
1.02049826343
3.1607169067
2.54786248962
2.16657134541
2.10868688671
..
VCT
St. Vincent and the Grenadines
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
3.86800216114
4.18663850488
5.96083315331
13.1505070036
19.2862253005
11.4982623741
15.1480077465
31.5522759556
27.9853206889
17.114191633
11.1335680512
6.02083653086
9.20084988476
14.2560425776
15.6160147988
8.99692722074
21.9144058885
23.4971672692
27.2737525453
18.1178838111
17.7603138457
..
VEN
Venezuela, RB
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
0.959013172264
3.70353453297
1.07575875434
0.640192136959
1.4381768569
1.31528447571
3.19813233231
7.22528994066
5.45771791544
2.94975807403
4.01288580859
2.9965079755
0.841859701885
2.43954381652
1.31879193538
1.78815036752
-0.2768731527
0.44495943145
0.112492947596
-0.952065613212
-0.361994051783
..
VIR
Virgin Islands (U.S.)
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VNM
Vietnam
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
2.7813228973
3.90279678627
4.8033478434
7.0275923428
11.9394824231
8.58596607973
9.7130807329
8.27009654404
6.14121441488
4.92266362876
4.16392423065
3.99916884018
3.9913976305
3.66705628144
3.54318076015
3.69159120688
3.93874432895
9.4218486892
10.6110562751
7.82322614102
7.72411119312
..
VUT
Vanuatu
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
8.27740628684
13.4878596316
13.4865629596
13.8068215051
13.5848439804
13.2726096555
13.350367936
11.8149497329
7.5200718162
4.83994837336
7.21431164967
6.74309402776
5.21397027506
5.54602198177
5.27180827455
3.26048124194
9.68562178583
6.27203845144
7.08883700918
5.21010849142
5.33642025028
..
WBG
West Bank and Gaza
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
..
..
..
..
..
3.8073352961
5.27163224762
4.40388432897
5.53069927408
4.52473826065
1.50745304799
0.575456220805
0.333269987273
0.57155659187
1.35574538569
1.15895308683
..
..
..
..
..
..
WLD
World
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
1.0119700284
0.753775421955
0.725818301152
0.946230265093
0.978209961527
1.16212594168
1.30656336368
1.61026195905
2.41543919807
3.91848546402
5.03686007148
2.77862910255
2.25192611828
1.75083091337
1.83962930078
2.64225774997
3.2029050958
4.18801705678
3.08788968744
2.30407592041
2.10727956846
..
WSM
Samoa
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
5.88976037926
2.85054980309
4.2414862059
4.21536454071
1.52283959022
1.7169318191
0.520949825389
7.85889846203
1.24940750566
0.867222079321
-0.626991147412
0.493144908331
-0.0272715549385
0.16892677832
0.614536436885
-0.723692814277
4.67936805183
1.38325537145
5.76280983553
0.61026647421
0.361775926291
..
YEM
Yemen, Rep.
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
-2.71136616323
5.55697223085
12.4759352082
18.4250917105
0.416394694934
-5.13892194863
-1.03731326492
-1.99674069661
-3.47230390938
-4.118999515
0.0677808535753
1.64004004341
1.15424792161
-0.809564629621
1.03491853004
-1.80474649146
5.87462486875
4.23566539483
5.77554388467
0.490016555598
..
..
ZAF
South Africa
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
-0.0676008914795
0.211381101366
0.00257293697509
0.00865799899622
0.27575205373
0.826152744748
0.567994085604
2.56060589576
0.4097965787
1.12876710758
0.729115370327
6.13640077693
1.33194740205
0.465544727286
0.320148159876
2.63983825533
-0.0703538213271
2.00473513797
3.50366162078
1.89340570689
0.430415905816
..
ZAR
Congo, Dem. Rep.
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
-0.154656300442
0.136334147592
-0.00889568358369
0.0641588833799
-0.0257714985639
-0.396035094231
0.429527744719
-0.7281425249
0.986360740265
0.236878667425
1.67216422564
1.71149055946
2.5433895703
6.8973449351
6.22527873737
..
2.99766254176
18.1215356787
14.798969977
5.92459607627
22.3603880557
..
ZMB
Zambia
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
6.1641261781
1.01575708604
1.4138445901
9.60438350052
1.19525199533
2.78924620545
3.58070715813
5.30382693867
6.11638951729
5.17350575285
3.7532627262
1.97143945922
8.00626161382
7.93349224369
6.69218982089
4.97230853667
5.75386009711
11.4708502585
6.41099074852
5.42599376871
6.43123067498
..
ZWE
Zimbabwe
BX.KLT.DINV.WD.GD.ZS
Foreign direct investment, net inflows (% of GDP)
0
1
-0.138958362675
0.0322917526426
0.221431698181
0.425897783727
0.502837235891
1.65511911275
0.945850735547
1.58390135819
6.94005325567
0.871194305722
0.35116849666
0.0562202697542
0.41167766928
0.0671611980066
0.153405760605
1.84118404488
0.768736513051
1.37299728515
1.16847826087
1.79917751885
1.41022210329
..
ABW
Aruba
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ADO
Andorra
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AFG
Afghanistan
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
15.6
..
..
AGO
Angola
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
26.2
..
..
ALB
Albania
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ARE
United Arab Emirates
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
100
..
..
ARG
Argentina
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
97.2
..
..
ARM
Armenia
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ASM
American Samoa
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ATG
Antigua and Barbuda
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AUS
Australia
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AUT
Austria
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AZE
Azerbaijan
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BDI
Burundi
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BEL
Belgium
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BEN
Benin
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
24.8
..
..
BFA
Burkina Faso
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
14.6
..
..
BGD
Bangladesh
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
41
..
..
BGR
Bulgaria
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BHR
Bahrain
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
99.4
..
..
BHS
Bahamas, The
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BIH
Bosnia and Herzegovina
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BLR
Belarus
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BLZ
Belize
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BMU
Bermuda
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BOL
Bolivia
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
77.5
..
..
BRA
Brazil
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
98.3
..
..
BRB
Barbados
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BRN
Brunei Darussalam
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
99.7
..
..
BTN
Bhutan
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BWA
Botswana
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
45.4
..
..
CAF
Central African Republic
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CAN
Canada
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHE
Switzerland
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHI
Channel Islands
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHL
Chile
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
98.5
..
..
CHN
China
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
99.4
..
..
CIV
Cote d'Ivoire
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
47.3
..
..
CMR
Cameroon
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
48.7
..
..
COG
Congo, Rep.
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
37.1
..
..
COK
Cook Islands
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
COL
Colombia
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
93.6
..
..
COM
Comoros
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CPV
Cape Verde
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CRI
Costa Rica
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
99.3
..
..
CUB
Cuba
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
97
..
..
CUW
Curacao
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYP
Cyprus
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CZE
Czech Republic
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DEU
Germany
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DJI
Djibouti
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DMA
Dominica
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DNK
Denmark
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DOM
Dominican Republic
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
95.9
..
..
DZA
Algeria
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
99.3
..
..
EAP
East Asia & Pacific
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
90.7729530972
..
..
ECA
Europe & Central Asia
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ECU
Ecuador
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
92.2
..
..
EGY
Egypt, Arab Rep.
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
99.6
..
..
EMU
Euro area
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ERI
Eritrea
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
32
..
..
ESP
Spain
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
EST
Estonia
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ETH
Ethiopia
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
17
..
..
FIN
Finland
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FJI
Fiji
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FRA
France
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FRO
Faeroe Islands
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FSM
Micronesia, Fed. Sts.
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GAB
Gabon
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
36.7
..
..
GBR
United Kingdom
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GEO
Georgia
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GHA
Ghana
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
60.5
..
..
GIB
Gibraltar
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GIN
Guinea
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GMB
Gambia, The
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GNB
Guinea-Bissau
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GNQ
Equatorial Guinea
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRC
Greece
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRD
Grenada
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRL
Greenland
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GTM
Guatemala
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
80.5
..
..
GUM
Guam
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GUY
Guyana
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HIC
High income
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HKG
Hong Kong SAR, China
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HND
Honduras
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
70.3
..
..
HRV
Croatia
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HTI
Haiti
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
38.5
..
..
HUN
Hungary
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IDN
Indonesia
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
64.5
..
..
IMY
Isle of Man
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IND
India
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
66.3
..
..
IRL
Ireland
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IRN
Iran, Islamic Rep.
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
98.4
..
..
IRQ
Iraq
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
86
..
..
ISL
Iceland
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ISR
Israel
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
99.7
..
..
ITA
Italy
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
JAM
Jamaica
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
92
..
..
JOR
Jordan
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
99.9
..
..
JPN
Japan
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KAZ
Kazakhstan
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KEN
Kenya
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
16.1
..
..
KGZ
Kyrgyz Republic
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KHM
Cambodia
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
24
..
..
KIR
Kiribati
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KNA
St. Kitts and Nevis
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KOR
Korea, Rep.
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KSV
Kosovo
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KWT
Kuwait
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
100
..
..
LAC
Latin America & Caribbean
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
93.4164416786
..
..
LAO
Lao PDR
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
55
..
..
LBN
Lebanon
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
99.9
..
..
LBR
Liberia
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LBY
Libya
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
99.8
..
..
LCA
St. Lucia
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LIC
Low income
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
22.9932766579
..
..
LIE
Liechtenstein
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LKA
Sri Lanka
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
76.6
..
..
LMC
Lower middle income
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
67.2715807316
..
..
LMY
Low & middle income
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
73.7336635242
..
..
LSO
Lesotho
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
16
..
..
LTU
Lithuania
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LUX
Luxembourg
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LVA
Latvia
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAC
Macao SAR, China
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAF
St. Martin (French part)
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
97
..
..
MCO
Monaco
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MDA
Moldova
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MDG
Madagascar
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
19
..
..
MDV
Maldives
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MEX
Mexico
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MHL
Marshall Islands
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MIC
Middle income
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
81.5928519661
..
..
MKD
Macedonia, FYR
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MLI
Mali
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MLT
Malta
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MMR
Myanmar
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
13
..
..
MNA
Middle East & North Africa
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
92.9333806781
..
..
MNE
Montenegro
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNG
Mongolia
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
67
..
..
MNP
Northern Mariana Islands
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MOZ
Mozambique
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
11.7
..
..
MRT
Mauritania
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MUS
Mauritius
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
99.4
..
..
MWI
Malawi
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
9
..
..
MYS
Malaysia
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
99.4
..
..
MYT
Mayotte
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NAM
Namibia
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
34
..
..
NCL
New Caledonia
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NER
Niger
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NGA
Nigeria
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
50.6
..
..
NIC
Nicaragua
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
72.1
..
..
NIU
Niue
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NLD
Netherlands
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NOR
Norway
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NPL
Nepal
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
43.6
..
..
NRU
Nauru
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NZL
New Zealand
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
OMN
Oman
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
98
..
..
PAK
Pakistan
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
62.4
..
..
PAN
Panama
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
88.1
..
..
PER
Peru
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
85.7
..
..
PHL
Philippines
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
89.7
..
..
PLW
Palau
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PNG
Papua New Guinea
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
POL
Poland
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRI
Puerto Rico
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRK
Korea, Dem. Rep.
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
26
..
..
PRT
Portugal
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRY
Paraguay
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
96.7
..
..
PYF
French Polynesia
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
QAT
Qatar
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
98.7
..
..
ROM
Romania
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
RUS
Russian Federation
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
RWA
Rwanda
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SAS
South Asia
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
62.1010196695
..
..
SAU
Saudi Arabia
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
99
..
..
SDN
Sudan
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
35.9
..
..
SEN
Senegal
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
42
..
..
SGP
Singapore
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
100
..
..
SID
Small island developing states
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
81.4170306754
..
..
SLB
Solomon Islands
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLE
Sierra Leone
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLV
El Salvador
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
86.4
..
..
SMR
San Marino
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SOM
Somalia
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SRB
Serbia
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SSA
Sub-Saharan Africa
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
32.4659224564
..
..
STP
Sao Tome and Principe
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SUR
Suriname
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SVK
Slovak Republic
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SVN
Slovenia
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SWE
Sweden
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SWZ
Swaziland
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SXM
Sint Maarten (Dutch part)
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYR
Syrian Arab Republic
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
92.7
..
..
TCA
Turks and Caicos Islands
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TCD
Chad
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TGO
Togo
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
20
..
..
THA
Thailand
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
99.3
..
..
TJK
Tajikistan
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TKM
Turkmenistan
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TMP
Timor-Leste
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
22
..
..
TON
Tonga
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TTO
Trinidad and Tobago
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
99
..
..
TUN
Tunisia
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
99.5
..
..
TUR
Turkey
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TUV
Tuvalu
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TZA
Tanzania
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
13.9
..
..
UGA
Uganda
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
9
..
..
UKR
Ukraine
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
UMC
Upper middle income
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
97.9962453941
..
..
URY
Uruguay
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
98.3
..
..
USA
United States
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
UZB
Uzbekistan
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VCT
St. Vincent and the Grenadines
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VEN
Venezuela, RB
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
99
..
..
VIR
Virgin Islands (U.S.)
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VNM
Vietnam
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
97.6
..
..
VUT
Vanuatu
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
WBG
West Bank and Gaza
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
WLD
World
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
74.1301165223
..
..
WSM
Samoa
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
YEM
Yemen, Rep.
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
39.6
..
..
ZAF
South Africa
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
75
..
..
ZAR
Congo, Dem. Rep.
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
11.1
..
..
ZMB
Zambia
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
18.8
..
..
ZWE
Zimbabwe
EG.ELC.ACCS.ZS
Access to electricity (% of total population)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
41.5
..
..
ABW
Aruba
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ADO
Andorra
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AFG
Afghanistan
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AGO
Angola
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
172.978279353
179.27188408
193.632182662
266.318379061
260.830190039
237.623933921
221.197556722
210.613713
197.782663613
201.808972556
202.509044252
206.28424433
188.820180669
195.884892215
191.536400379
151.650655986
138.93010746
121.605309176
114.49189937
116.923619722
..
..
ALB
Albania
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
206.751128014
205.47493062
160.750768632
143.72493858
141.201086614
117.045071749
114.545753062
108.907732563
104.270061364
127.143773085
119.68607173
113.177881705
122.13619333
120.069422737
110.052853345
118.57410059
106.513730079
99.6826197483
89.9795475488
72.3389458539
..
..
ARE
United Arab Emirates
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
214.318642703
245.977706133
227.818578038
241.743691706
249.83158582
245.909665477
261.711232485
242.208887343
241.074973098
238.009692354
237.781569672
254.042342775
268.409167859
237.471808715
228.605481499
215.801020961
208.922072382
223.706279181
240.509215223
247.132031892
..
..
ARG
Argentina
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
189.247911556
173.122857269
162.694128374
153.552750885
155.259927068
161.302663971
157.566965432
153.434912196
151.649994122
157.84424478
160.516265428
159.328821452
171.236624855
167.733074783
175.35319939
159.81919868
160.571475391
148.847886257
144.833258619
139.639613639
..
..
ARM
Armenia
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
739.537683909
882.756696555
769.744983856
446.765077205
265.614299973
296.933739121
303.967929454
307.660154214
292.099379764
273.350147511
283.909881367
258.322931471
213.350943021
197.44298382
188.919512707
199.454564656
179.087445858
175.940044074
173.330174699
175.503032206
..
..
ASM
American Samoa
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ATG
Antigua and Barbuda
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
125.53636459
..
..
..
..
..
..
..
..
..
..
..
..
..
106.625410079
103.855612905
95.6981867933
89.5761115936
..
..
..
..
AUS
Australia
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
210.715232352
208.68664446
211.314309372
213.599384506
205.887139213
200.626226161
205.8722116
202.83403632
199.306314437
193.642975754
189.650075704
183.763120019
184.791155342
181.683592352
175.367851785
179.331690393
177.965811843
175.173410655
174.897113573
174.897559296
..
..
AUT
Austria
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
125.225570634
128.939159583
121.614503027
122.424205217
119.477875406
121.789666895
126.531053585
123.184616081
121.015916296
116.938441344
112.503744278
118.52904527
117.74382467
123.370371237
121.262877196
123.546486492
118.58485397
112.670671398
110.976014805
109.160764587
111.822719222
..
AZE
Azerbaijan
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
770.898440091
725.646348468
791.079543033
867.530959885
985.750116439
895.974288306
816.666019234
737.952115833
709.153759569
613.43649792
570.570925269
517.367658552
470.395783364
442.675071856
423.62561063
367.623060245
266.32118366
191.715978071
189.707664304
155.725842088
..
..
BDI
Burundi
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BEL
Belgium
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
193.197389095
198.748529621
197.988221177
195.229672594
200.092181927
198.788677582
206.88416044
199.641473348
199.103546782
193.728779171
187.911128814
185.988545539
177.185443292
184.774648861
177.931055785
174.322823324
168.097781091
160.269119727
162.999658572
163.716678927
159.053048129
..
BEN
Benin
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
311.595089068
302.08396168
297.604971376
294.245285392
288.047072486
281.410778355
310.467845189
303.458931614
286.338689571
285.295495268
232.836522398
235.82750147
243.208907956
247.002816758
248.937685704
242.766109874
275.160763413
285.993507124
278.256778591
284.026806845
..
..
BFA
Burkina Faso
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BGD
Bangladesh
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
161.935196562
154.496129843
155.245749549
156.704433799
157.245677445
163.051742089
156.769563872
155.399259429
153.861565682
148.747418142
148.023364632
152.799924383
150.247600531
149.248658503
145.860039022
145.839589049
145.417048263
142.578163942
141.611570495
141.872123476
..
..
BGR
Bulgaria
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
434.899771549
367.38747955
369.597465937
400.874254514
380.061938268
401.42743465
438.438409569
404.418527287
370.728642568
331.716106149
320.460948896
321.522082463
299.703536707
291.472036404
263.403289357
261.670208274
252.57820607
233.308360916
216.091510145
202.148296401
..
..
BHR
Bahrain
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
492.781458893
411.61077078
412.746371446
393.794658763
419.527557472
402.187739
389.05217002
411.531709106
421.764835214
393.202235927
387.325275053
383.179083894
385.888245611
377.800155568
369.306352516
368.672146093
381.0196406
372.242612054
369.797154403
..
..
..
BHS
Bahamas, The
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
106.708353043
..
..
..
..
..
..
..
..
..
..
..
..
..
81.5844564489
82.7042915692
86.3857699772
85.5550772385
..
..
..
..
BIH
Bosnia and Herzegovina
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
325.847502127
280.76397221
173.030517279
197.319212954
211.604407437
191.079939521
235.188517231
217.64343707
216.833247412
208.12364121
214.335868824
213.925786118
215.240389306
208.81040984
211.729073061
217.67999657
..
..
BLR
Belarus
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
684.483620486
674.237720779
622.359024021
573.633558062
551.662947028
569.583319089
568.98124492
509.458979253
460.245040071
433.428594313
418.340552822
400.918407406
389.019108243
374.179375087
347.090265075
321.866670983
310.312072863
276.856123815
249.533045757
236.780329897
..
..
BLZ
Belize
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
134.41726672
..
..
..
..
..
..
..
..
..
..
..
..
..
87.5024079306
88.2183555119
90.0553768337
92.0746882231
..
..
..
..
BMU
Bermuda
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BOL
Bolivia
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
127.539017169
124.898118125
130.14764811
131.319813546
138.356582486
148.599685166
157.955048953
164.974911574
163.817871495
154.876424378
127.666428829
97.6774203575
115.563283232
118.783416181
110.951912995
151.38505714
178.693737351
143.139071993
148.965950169
150.235112176
..
..
BRA
Brazil
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
130.618483171
131.112804461
133.089201741
130.329751576
130.251550055
129.01177468
133.009861022
135.211546071
138.420247226
141.200496397
137.117272928
136.14299286
136.494586063
137.185833801
136.705086928
136.129754254
135.523420854
134.859305994
135.435780745
131.68437628
..
..
BRB
Barbados
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
77.0850059557
..
..
..
..
..
..
..
..
..
..
..
..
..
79.6235778869
80.2544725458
79.1929361034
79.4105378386
..
..
..
..
BRN
Brunei Darussalam
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
138.713899945
152.521546784
156.436996754
150.47533009
136.700534618
155.817184076
151.933154413
159.131812341
159.366938551
157.607132428
154.763608671
139.955724423
131.478211814
148.115160923
148.325418834
144.549274871
177.394034433
180.773476635
201.482502532
176.530072068
..
..
BTN
Bhutan
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
59.6869127466
..
..
..
..
..
..
..
..
..
..
..
..
..
84.0375339224
88.9098790934
86.0657502062
84.3973492381
..
..
..
..
BWA
Botswana
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
131.305053473
124.292060984
139.120239179
136.94471695
130.242972378
127.665425774
117.442620758
111.853376282
114.613812981
112.597744311
109.603236561
107.699859277
101.41984958
94.9554783448
87.1943703045
89.0571084837
86.2122724099
85.8338436672
88.45891313
87.8111064203
..
..
CAF
Central African Republic
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CAN
Canada
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
278.561873076
283.945526352
288.485717551
291.160217625
287.582587268
283.017647973
284.937892092
276.59472713
263.712668727
257.531162533
251.858187988
243.929040946
237.325042917
245.911020805
243.54991166
240.464999303
230.69294591
228.651142688
222.910657148
217.887547029
212.39594025
..
CHE
Switzerland
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
108.426408414
111.040847559
111.486772484
108.91014369
108.667699837
106.727046064
108.119205058
107.992924166
106.482912843
105.173075593
100.281969103
105.237895181
102.088877594
102.713019282
100.620269649
97.3814992995
98.1046158877
90.1301744534
91.9285859374
94.3393306626
89.785149795
..
CHI
Channel Islands
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHL
Chile
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
156.071199369
147.906920191
142.855232285
136.936902229
139.528387844
135.804261392
140.397394272
147.837868169
148.37118281
159.020259347
153.021571306
145.17064489
147.165853432
143.154426726
143.907911442
139.671409826
136.277431935
131.475897663
130.194674521
130.136919226
134.328769693
..
CHN
China
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
690.666887957
627.922681111
568.488545826
527.682471296
487.946301603
470.046572623
442.657251948
405.93717299
375.926237425
349.453174909
325.074084563
299.205069387
296.943254364
307.263051673
325.318236392
316.239722001
306.669604999
284.472645312
279.840202181
273.162154315
..
..
CIV
Cote d'Ivoire
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
180.754685562
185.978572985
201.270681805
208.529770126
212.122398434
197.654050136
206.563797155
200.763483812
191.325773989
224.206758968
224.290359404
215.983959234
234.770391721
225.83106447
313.709544106
320.892076478
315.50595717
332.813372628
326.66992408
317.154645973
..
..
CMR
Cameroon
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
196.383935002
206.140645642
215.049135273
229.899874455
242.156560494
238.54696387
232.796520787
229.491671666
224.78019065
216.989564322
217.157693064
210.230898168
206.492851907
206.14382459
204.55530952
200.674163239
186.557398745
170.243371205
166.892664316
176.992012414
..
..
COG
Congo, Rep.
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
93.8258703969
93.9290890144
92.2114065706
93.3276706535
89.8094561893
90.4960230964
86.5451648829
82.1411874939
80.5343431543
79.1476220099
86.7048569208
91.5276720166
85.3532853879
96.5323001223
96.3671982395
101.171013241
93.8662796568
99.9910023672
98.6260213398
99.0522210856
..
..
COK
Cook Islands
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
COL
Colombia
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
119.659459498
119.217829363
117.787377697
121.286065801
118.701031142
114.824633583
115.197998287
108.144928189
112.522883063
105.700917423
101.763295313
99.3991164928
94.6078049422
93.5148889165
89.7744572646
89.0199438521
88.3036639147
82.1490098017
82.8191257618
84.5002628126
..
..
COM
Comoros
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
33.7368506804
..
..
..
..
..
..
..
..
..
..
..
..
..
52.3533002897
54.6606271384
61.2859348525
59.5344372345
..
..
..
..
CPV
Cape Verde
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
51.1524677953
..
..
..
..
..
..
..
..
..
..
..
..
..
77.9478564801
77.492445473
72.4892216626
67.3724475554
..
..
..
..
CRI
Costa Rica
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
105.714273449
106.723848348
122.343152083
101.487931183
95.8179418616
93.6655744244
93.0785088709
90.4358721933
85.3111294044
86.2085421778
94.5443207311
92.0793838497
95.6333379273
96.4475493298
107.052163148
104.406565698
106.550750431
108.999212162
104.69082665
106.082601388
..
..
CUB
Cuba
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CUW
Curacao
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYP
Cyprus
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
129.535361524
131.229632988
135.350824818
144.298635348
159.569051945
133.259650973
145.150154178
138.990762817
137.755983915
132.085410554
135.269808428
128.70987755
127.784345245
136.409328249
122.562389675
119.91392285
119.773030494
121.019095585
123.995957677
121.375267578
..
..
CZE
Czech Republic
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
293.064028134
299.636625648
292.756922114
283.750979957
268.960937268
257.343257273
255.140633566
258.704269234
252.40562078
233.127148896
236.229234167
236.59953964
234.755850986
236.59715392
232.03499461
215.443503011
205.921257472
193.759040569
184.358594591
180.962138215
178.307589512
..
DEU
Germany
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
172.326045827
160.757770493
154.362359689
154.127531839
149.439908628
148.258226033
151.727740187
147.765079784
143.967997073
137.952345734
134.329116005
136.650845773
133.460363348
134.858825167
133.820195304
130.948390381
127.623881889
120.884481708
120.751586034
120.608363653
121.121104128
..
DJI
Djibouti
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
84.5255486789
..
..
..
..
..
..
..
..
..
..
..
..
..
92.2403156438
93.4398619465
91.7260524411
87.2749751335
..
..
..
..
DMA
Dominica
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
50.666922848
..
..
..
..
..
..
..
..
..
..
..
..
..
77.7146887123
79.0329942202
76.1975951657
74.3984672683
..
..
..
..
DNK
Denmark
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
132.751342726
145.298659544
136.334842992
140.126377137
137.398067807
132.078928869
145.363914454
130.530186347
125.703820263
117.443401807
110.250145419
112.822817121
111.141372789
117.023839216
110.647166241
105.001608235
108.881759382
104.573326198
102.860689491
105.063094558
108.874821686
..
DOM
Dominican Republic
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
148.679830052
148.214162356
158.557679117
150.725789366
166.79344405
165.540535668
160.983376185
164.866310256
164.438201579
157.990697278
157.015095993
156.453711182
151.810865464
151.223040488
134.673422709
133.456511268
124.444000882
117.284185184
109.18791784
104.736772258
..
..
DZA
Algeria
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
141.222346784
151.220718752
152.652300393
155.919053485
151.657593844
151.448063103
141.044220124
143.671454464
141.381490647
146.395344713
145.516834378
142.210375426
144.268683364
143.978228878
138.093454344
136.830063186
144.113736094
148.559454813
147.053493622
153.526419479
..
..
EAP
East Asia & Pacific
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
495.305283135
461.017479529
431.226736543
411.40667943
386.131961984
378.02749824
360.630441473
340.48906506
331.933954256
316.255373429
298.863132925
281.637747485
280.185144294
286.564587942
299.899977482
292.82728139
285.060433368
267.629400328
264.115930633
259.544351091
..
..
ECA
Europe & Central Asia
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
447.502514985
463.990310134
474.114826864
472.541227017
468.382503438
465.10983945
460.032770132
431.741317905
430.771550439
422.932149467
398.297402449
387.434439638
372.115423759
362.167519403
338.322290703
318.157752412
304.496812723
286.257742741
278.573733935
276.84245608
..
..
ECU
Ecuador
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
106.130491981
104.670150837
103.490068966
98.8027889363
98.2913377321
110.788716914
118.233796566
115.786679351
115.396541333
117.040257219
118.879147497
123.638258582
123.570494431
129.246201147
128.348267924
122.541941035
117.784170515
119.770684244
108.227946058
110.976643111
..
..
EGY
Egypt, Arab Rep.
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
172.94466534
174.093787249
170.87785759
177.005279836
160.00977585
162.325955481
164.057338906
161.205571602
166.389013215
172.473009409
161.24490914
160.190658722
173.532481112
178.539607739
175.274550433
182.594472289
179.283683847
176.402029373
173.078089101
164.501191012
..
..
EMU
Euro area
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
151.242188573
150.105532565
146.102368065
146.503556592
142.884051573
143.794910118
145.971521683
142.104596916
140.611458772
136.752721655
133.612184853
134.43993208
132.939698577
134.955228315
133.814978249
131.596308901
127.112216073
122.381105881
121.681483583
120.503596847
122.194528156
..
ERI
Eritrea
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
549.679009419
508.645502893
432.821188489
441.883345182
424.534485202
390.937403248
249.721319231
258.891049079
300.712866604
289.395470031
283.488360608
312.955728691
285.178833711
285.269111834
263.135946898
268.250164086
279.469631436
288.221710511
..
..
ESP
Spain
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
117.335831659
118.679357944
119.709999801
116.054888696
119.666570799
121.854389338
117.221209498
119.967902572
120.562339086
120.674615988
120.53018084
119.225407221
119.669383653
119.980696625
121.29492658
119.375849095
114.47960942
112.395781391
107.52043888
101.788606924
103.237123673
..
EST
Estonia
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
622.49595897
615.667040151
569.015844616
473.879969349
500.995977677
448.298971579
466.875736723
411.322701634
372.664218637
349.958036703
312.901190004
300.82965498
266.832157815
273.366759402
259.522780989
231.842149432
204.558357895
213.575068561
217.623629536
220.608205314
249.813234034
..
ETH
Ethiopia
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
564.115099338
627.009154751
697.300909454
606.316636217
608.654142851
592.339268414
542.019268354
536.083698052
572.860991423
556.675335598
539.021769339
516.744065922
521.866304007
548.935533001
495.603985815
454.635166297
422.708757179
526.170845389
490.413921898
464.624700876
..
..
FIN
Finland
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
245.987267483
265.526246131
259.241624446
274.133031184
282.520303769
258.599892492
268.533780946
262.236946881
252.059182684
241.795483276
228.067081884
228.342159374
235.944026094
245.494230807
237.019750404
212.608212603
221.706836434
207.728803547
197.488022243
202.245633922
210.555972674
..
FJI
Fiji
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
114.275112359
..
..
..
..
..
..
..
..
..
..
..
..
..
188.592473652
162.535598813
154.261759674
145.916399779
..
..
..
..
FRA
France
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
158.317596337
165.573428355
160.342037265
164.145009074
154.479278351
157.477974957
164.605701561
156.128090279
155.62396861
150.423987525
146.57970513
148.769194781
147.843590862
149.166122882
147.583852574
145.444164812
140.237669496
135.572011127
137.124227887
135.178101031
137.372646766
..
FRO
Faeroe Islands
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FSM
Micronesia, Fed. Sts.
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GAB
Gabon
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
85.0922038119
82.806883051
91.3388847079
92.8856040078
81.3131272634
83.7620653362
85.4008414985
79.7871209297
82.9146567729
88.6477883553
89.3647842301
97.7027655478
101.155481508
100.41404308
100.290859488
103.949490319
102.613601483
104.401887169
102.063968267
93.3421624208
..
..
GBR
United Kingdom
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
151.793753213
159.199977531
158.408428672
156.46174574
151.108788868
146.956200371
148.984435682
140.173001044
136.669234941
132.415021984
127.939877587
125.333720414
119.841541863
118.59441262
115.01799323
112.803279732
108.076178946
101.056218323
100.10472342
99.480794535
101.982441424
..
GEO
Georgia
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
421.535061176
432.547686302
676.006230765
841.122884162
581.140246925
448.036366978
404.749672997
321.301743817
288.275663146
256.653816939
259.761327085
221.868455891
208.246106138
199.398781468
193.625364148
180.444485683
176.094188294
172.801805168
151.856890838
167.424628178
..
..
GHA
Ghana
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
394.290636188
387.538025598
386.391054093
386.13473005
388.955853133
391.031944595
386.683918967
389.840754058
390.489620213
385.464789708
378.54628024
384.485465729
378.35850949
356.16643652
342.667686717
325.743920584
338.801964933
320.632230191
294.596252445
274.989757704
..
..
GIB
Gibraltar
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GIN
Guinea
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GMB
Gambia, The
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
56.8910563877
..
..
..
..
..
..
..
..
..
..
..
..
..
61.4339757189
61.9795641961
64.4502093736
71.4922056459
..
..
..
..
GNB
Guinea-Bissau
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
60.7774308425
..
..
..
..
..
..
..
..
..
..
..
..
..
64.50663383
62.5662068498
63.3698475588
64.8149208172
..
..
..
..
GNQ
Equatorial Guinea
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
55.4563097873
82.8245224056
98.4279961635
94.8538330819
..
..
..
..
GRC
Greece
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
120.737550542
118.068245478
120.137562063
120.551175342
121.480125206
120.035710071
121.022769583
121.396927521
123.670245548
120.055285624
121.008074224
120.067668442
117.388972449
114.011622877
111.363339236
110.861186505
105.328933364
100.986407873
100.636826567
99.4231633116
95.5073035496
..
GRD
Grenada
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
87.0282237739
..
..
..
..
..
..
..
..
..
..
..
..
..
101.299686099
96.5235350369
100.913928437
96.5366343295
..
..
..
..
GRL
Greenland
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GTM
Guatemala
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
149.18002623
150.359245783
149.850111733
143.345229461
145.045244735
146.073675937
146.945738377
148.1431449
151.165765006
160.409698492
159.375928557
159.01870349
154.790137036
152.034768825
154.553125439
157.487344521
151.178597574
148.289776298
137.27593177
163.806658559
..
..
GUM
Guam
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GUY
Guyana
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
337.054680621
..
..
..
..
..
..
..
..
..
..
..
..
..
248.120356701
261.526135874
251.278222811
260.770817934
..
..
..
..
HIC
High income
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
189.814853195
190.426929489
188.946955808
189.350429435
186.845200964
185.41096766
185.427027659
180.58967624
176.980437778
174.201529252
171.27056558
169.122972381
167.771942051
166.369070348
164.817352537
161.340835154
156.65468537
153.186587164
150.656987978
148.94352261
146.988760553
..
HKG
Hong Kong SAR, China
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
64.0461670441
62.2124598223
70.4130128319
64.7471973637
62.9575181372
61.0947204781
57.662974071
52.0387366371
72.5513390144
86.262309443
67.4598673656
70.9001252816
64.944560856
65.0210438925
56.421982809
52.0973819974
51.2391381001
51.8052752128
49.9330175137
54.2013601084
..
..
HND
Honduras
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
183.096839356
178.882592962
176.628328596
169.937024705
178.740422753
182.614593227
176.987911221
184.137138098
192.125798208
172.170048846
166.492198007
174.799858779
176.59167901
182.257508445
181.262841654
177.301797322
164.200214049
182.000820208
173.259937035
169.226197645
..
..
HRV
Croatia
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
140.587989258
144.390625571
150.526033214
168.649180723
158.203858024
151.982334132
147.27582826
148.974767394
150.837471765
150.829788353
142.146531998
139.908509468
138.378140209
140.364469187
135.131435005
130.635263015
125.039342914
124.109252126
118.309708882
120.560659172
..
..
HTI
Haiti
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
155.549696152
170.588410613
174.303148165
181.837312799
195.034572769
214.983397978
220.559488391
216.006526673
213.10138984
204.505761515
211.148652831
237.989505079
227.762857408
243.498051155
270.226421739
270.775720073
274.776619283
272.103150121
247.483370484
..
..
HUN
Hungary
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
224.919799447
243.467046242
230.568617062
237.733534033
223.875040086
228.897474066
232.030829402
218.223791857
205.033778028
195.286610265
180.244509544
177.247050547
169.837775807
166.239301219
158.907399407
161.278342118
158.598466894
153.917150248
151.109238226
152.163261969
153.922776615
..
IDN
Indonesia
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
273.685958564
263.078971774
255.502023774
261.435146589
244.430565666
249.659733981
240.821366095
237.260119482
266.8512965
286.576996934
278.147855928
275.800743639
274.64056987
262.671995146
267.685803047
257.220162668
252.349847783
238.022537955
228.682481675
230.300705937
..
..
IMY
Isle of Man
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IND
India
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
299.805371568
308.585808396
304.218617538
297.016226408
289.282703536
283.874335946
272.441450401
272.074544855
262.453144454
259.496724644
254.378784618
245.620705246
243.329615214
230.172804219
225.229446015
213.686293171
205.40380749
197.488866846
195.293835887
195.422174773
..
..
IRL
Ireland
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
161.657950522
159.039721448
151.885896866
150.80343616
149.63170984
137.241099831
135.926036847
127.77504316
125.569289468
118.345425544
111.178286198
111.016225261
104.7079801
98.9559284198
96.1288659515
89.8545967871
87.0099966146
84.1369355538
86.4362350712
89.9971471779
94.7393125296
..
IRN
Iran, Islamic Rep.
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
199.466126271
194.326333239
190.24115954
208.855125566
231.090962133
232.496264729
219.941483343
211.377046145
236.123895201
283.29948323
263.652077684
271.342306682
259.673733761
249.874681884
259.895697956
273.597080362
268.293686294
266.099795835
275.321770609
282.090268227
..
..
IRQ
Iraq
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
356.359461115
270.189978977
210.407073156
226.189785001
266.869766516
299.997697784
559.949654926
403.149017466
406.932543824
397.995954679
371.753244065
352.914083275
317.05513113
..
..
ISL
Iceland
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
319.735817331
314.640800285
323.038270487
341.725298398
330.331976555
340.356683301
344.102768933
333.629788301
333.318419466
367.598486181
369.030087439
370.969261696
375.756543488
365.653713095
349.328461479
335.866230854
383.683597662
426.183216614
451.029822759
482.066936715
511.985281134
..
ISR
Israel
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
137.852336112
128.421771913
139.725006673
138.779674392
138.425783664
136.094828833
132.494946231
135.812831196
133.472219737
125.731804351
125.221446004
131.501773294
132.705399225
135.184881514
127.659946805
124.83587661
122.027129984
119.014266546
118.602996038
113.656554379
110.425132893
..
ITA
Italy
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
108.681640596
109.675342594
108.153307551
108.551452473
104.9225013
110.78298035
109.485944995
109.000861951
110.50510541
110.588413512
108.678812723
107.12406333
106.797138212
111.16879171
111.058416773
111.476098036
108.198385019
104.858411662
104.465985296
103.059051089
105.165090741
..
JAM
Jamaica
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
196.729688404
188.272054368
194.628594641
178.54729618
179.592633669
186.726849003
197.009688656
199.277775728
212.043388848
215.865525538
226.768242612
224.452461133
208.395676544
206.382877571
205.680185397
202.46807618
220.479344893
242.182160978
216.668554392
169.276848985
..
..
JOR
Jordan
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
312.274470919
316.935488238
300.037590286
284.517072867
290.605749755
291.83771301
293.387734485
290.140913777
291.266650645
280.834775072
282.046866983
265.254960303
263.397687662
258.512747636
286.291470433
284.324010024
270.401235555
262.183206887
238.90843284
246.340838634
..
..
JPN
Japan
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
136.101108599
133.147409196
135.167357939
135.843267084
142.255254486
143.372286923
142.73414013
142.031585472
142.398075893
145.174125321
142.956144623
140.446794824
139.969381206
136.89113522
137.513844749
134.401185275
131.528368506
127.353504533
123.94725536
125.97602456
125.654113776
..
KAZ
Kazakhstan
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
627.699721518
722.342374664
803.003884415
735.969847353
746.921065572
730.440067119
631.71467008
540.253972845
549.476694606
488.772317771
442.244220258
377.34146539
395.139701672
391.777907345
420.229741471
385.073258956
420.920208502
416.121247786
421.992319965
396.459661277
..
..
KEN
Kenya
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
328.334530635
329.581782126
340.458456101
343.86829926
342.765042639
346.057040445
341.17294748
342.621269955
342.300751064
340.727876802
348.475927848
339.275296175
346.303240451
348.044684679
348.17538452
340.834197153
334.615827736
318.222402972
321.601101322
329.418736499
..
..
KGZ
Kyrgyz Republic
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
675.578360693
664.705751413
566.287726908
520.652281011
470.366366399
424.352070639
458.280303226
392.149191295
408.817218378
344.635501126
325.465227432
283.756453776
321.065470671
323.176494843
307.554775932
299.141583689
294.067233109
296.906898434
253.763198404
271.417875117
..
..
KHM
Cambodia
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
372.415700121
364.507295568
360.980684159
360.378103629
328.184849187
308.650191716
299.061077152
289.146552002
275.391222059
259.932048209
236.12173923
221.130966594
207.542295605
197.919382343
201.288709754
..
..
KIR
Kiribati
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
50.9405668219
..
..
..
..
..
..
..
..
..
..
..
..
..
37.2512621515
37.1398293216
45.5595215254
49.9121939296
..
..
..
..
KNA
St. Kitts and Nevis
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
60.3941802982
..
..
..
..
..
..
..
..
..
..
..
..
..
127.089920857
125.086956962
118.559091716
122.08764322
..
..
..
..
KOR
Korea, Rep.
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
190.766684198
187.227930139
196.24603817
207.398787756
202.898017497
203.673347478
206.816247618
215.155674966
210.897991042
213.018670658
213.605338942
208.595504322
202.45057435
200.946140636
197.350441003
191.569418573
185.103219668
183.223330427
182.976758235
184.187520181
186.622441859
..
KSV
Kosovo
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KWT
Kuwait
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
199.73789321
207.532742314
224.452351179
219.519075599
214.651287572
211.6117521
233.059653122
254.638059476
252.603616668
267.603284433
267.213295092
242.793554591
235.022297446
239.022666813
221.884136824
217.607460221
..
..
..
..
LAC
Latin America & Caribbean
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
145.384928544
143.844701747
143.679328845
139.64141353
141.04709438
140.769840292
142.239509727
140.140715305
141.589407046
142.872506696
138.025381753
137.168599664
138.92272121
138.191806467
137.748114288
138.620755758
135.973565706
131.402548821
130.671990724
130.59861574
..
..
LAO
Lao PDR
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LBN
Lebanon
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
115.634432608
103.559895476
100.438643207
134.477910749
136.398115957
146.763674859
147.238616744
170.156790773
161.398363083
169.613175612
152.066424736
156.727577892
150.498528488
145.760143422
136.743660526
129.004703086
121.815902524
99.8009502387
117.828452107
133.162386463
..
..
LBR
Liberia
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LBY
Libya
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
245.419323746
251.010813263
268.831656174
270.891903306
245.685344008
247.947806797
217.110590726
205.898653657
196.340401412
204.020756655
212.107402954
..
..
LCA
St. Lucia
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
58.4833592291
..
..
..
..
..
..
..
..
..
..
..
..
..
87.4999191983
85.9584046617
78.5418362613
82.7012915566
..
..
..
..
LIC
Low income
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
365.495305008
362.779713742
369.798872035
364.262962404
360.26836524
361.256603872
355.054543433
348.851924483
348.379039648
342.641866742
345.033702891
341.312928966
340.247537377
338.380917276
325.648275321
317.149285518
308.846487731
315.397586112
308.075951271
303.939916271
..
..
LIE
Liechtenstein
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LKA
Sri Lanka
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
159.763855408
155.049200644
152.39092275
150.290617293
136.670116477
132.488248457
144.183785941
140.422874144
136.343682755
139.597945345
145.039430612
142.415320767
139.519097906
139.462487199
134.027388186
129.061751653
120.978515023
115.498312019
105.620456565
105.505414628
..
..
LMC
Lower middle income
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
337.144951623
341.707329362
328.11299231
322.220622035
310.447441857
307.379364659
295.879433609
293.203718202
289.717656731
289.74350319
282.307998365
275.983010608
275.266686061
267.847943683
259.840655393
249.217628134
238.724052847
228.296019778
223.485381344
217.947658279
..
..
LMY
Low & middle income
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
333.663119015
330.081737948
321.659493397
314.675159019
303.499287951
301.111169911
293.143551366
281.591692175
276.824967696
273.66402957
262.73507661
255.886081897
254.297186974
254.586716173
254.489888869
247.986340519
241.252443189
230.664208035
228.363835522
226.131398604
..
..
LSO
Lesotho
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
11.6193289844
13.3673583907
7.34914022055
7.03583347063
..
..
..
..
LTU
Lithuania
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
348.269621093
387.07862335
319.311919996
313.977954925
311.137567001
326.067475701
336.00872694
296.100730713
288.566172093
247.429369736
213.912953317
228.527267861
229.163682396
216.502881976
203.85339521
177.415633797
162.005254385
160.972897207
155.145795101
166.299296109
..
..
LUX
Luxembourg
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
209.249311256
205.693220222
203.207466918
197.732931993
184.101814151
159.256132068
159.471023827
146.22296495
132.47223741
127.194350617
123.153423455
127.712769273
127.369149836
132.400073662
141.211566215
137.49571898
129.454468824
117.701376522
115.972479231
113.577345417
116.813669473
..
LVA
Latvia
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
291.479014477
314.170647321
381.885749201
347.366158442
307.53834452
298.912259626
282.645717116
254.512775518
237.553830096
207.16029563
183.331229276
185.939314343
171.149089285
169.353413224
160.134966678
147.139220435
134.918056412
125.991778529
126.331464124
144.914655027
..
..
MAC
Macao SAR, China
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAF
St. Martin (French part)
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
103.328831781
101.85081632
112.891215548
118.44604856
115.534460917
122.167727695
114.984279754
121.352329126
115.023179465
122.062610655
120.676939342
119.453967172
117.441035885
109.894223401
115.607320275
120.838591642
114.226124084
119.865616053
118.442437075
113.696701144
..
..
MCO
Monaco
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MDA
Moldova
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
582.453528292
578.008327184
675.980217575
582.526765157
691.457085465
646.027294002
715.802018066
692.471886743
659.396927083
545.387079846
471.967050177
487.983187724
432.263574521
449.962083407
425.084610503
416.440392646
379.470034429
363.874640474
318.684345397
263.618153115
..
..
MDG
Madagascar
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MDV
Maldives
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
202.042801469
190.693921038
206.894594313
200.289829738
..
..
..
..
MEX
Mexico
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
145.435548673
145.869601433
142.210090242
140.122275216
138.589672057
142.874995659
139.079692992
134.164268859
132.053570336
132.077075322
122.48836578
123.500421103
126.336557774
127.052378451
126.453862289
131.074156031
125.577139336
124.821405712
126.57682587
129.970104259
119.803486561
..
MHL
Marshall Islands
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MIC
Middle income
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
332.995801833
329.388909458
320.667180237
313.668151631
302.360558816
299.862795744
291.860681232
280.218208051
275.349716505
272.2396701
261.059994406
254.120998524
252.535350642
252.896374342
253.055801402
246.602082653
239.919468188
229.0225414
226.824664139
224.595718935
..
..
MKD
Macedonia, FYR
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
155.409084555
162.234424495
193.2042926
214.401796339
194.767085311
198.99260286
224.230292752
200.498957434
216.49805254
194.793022881
183.889190788
185.853097252
180.711169083
192.620602918
184.246162231
185.959330923
179.683621904
177.203389305
167.021890226
155.592139185
..
..
MLI
Mali
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MLT
Malta
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
142.97364848
130.117200281
122.89341133
150.490014359
129.163859643
111.767365296
105.961028153
113.072875328
94.7989382459
98.7138762318
84.2866065703
99.7570005956
90.6252285422
102.353641598
100.805471462
101.685187098
93.5383448757
95.3478815511
87.7048407283
87.5357482033
..
..
MMR
Myanmar
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNA
Middle East & North Africa
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
174.972419462
175.662799207
173.254488149
182.360741879
186.380967433
188.435756163
181.605811061
190.548129588
196.489485733
213.197324042
205.328817027
210.014036334
210.996331437
213.642699377
214.06511237
219.826963323
216.814818611
214.860660947
216.41696969
213.888106824
..
..
MNE
Montenegro
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
167.175256403
173.713290142
139.86227423
..
..
..
..
MNG
Mongolia
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
639.964284774
784.439105141
757.063606241
731.546652941
619.68435674
581.160375289
479.126768593
451.882154203
440.75185632
428.201422551
443.958344249
431.096358027
438.378025675
400.475228873
373.05839904
351.193560312
362.134917546
348.831255939
325.750558549
345.132720127
..
..
MNP
Northern Mariana Islands
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MOZ
Mozambique
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
1092.9999555
1037.08387604
1106.80297826
1038.59425101
983.024170152
977.990201601
927.59304235
866.472950754
789.909156384
745.008089228
778.646871677
732.129988063
681.594946345
677.960833891
652.748080866
610.48420023
578.450385316
569.648845904
542.017493528
529.652349028
..
..
MRT
Mauritania
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MUS
Mauritius
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
74.2492196405
..
..
..
..
..
..
..
..
..
..
..
..
..
81.693147359
85.2842940335
89.3586665735
85.9109702203
..
..
..
..
MWI
Malawi
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MYS
Malaysia
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
182.756141388
195.39612696
202.305370325
202.653058411
184.092435001
196.192521085
182.398090138
197.379924053
201.974296833
185.891847732
197.757665714
207.806213746
200.744573503
206.074328034
189.837112954
207.601115028
200.346130423
204.735711924
205.35981703
191.208272351
..
..
MYT
Mayotte
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NAM
Namibia
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
106.803423427
107.575103967
120.062067423
122.088525085
126.891853837
132.648155524
130.058550359
130.783180666
121.182681416
119.704657334
133.296406492
129.503643402
132.570119716
132.446923799
133.038855977
132.658599905
131.936027334
144.424868345
135.355721013
..
..
NCL
New Caledonia
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NER
Niger
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NGA
Nigeria
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
510.599775741
509.914462725
518.693117037
516.450960654
502.438386586
511.93176331
507.950586886
503.611385048
482.378505727
507.307812931
494.226002748
496.271770748
508.245931246
469.499910785
435.213931497
425.92481819
404.671295678
382.917059346
378.195893332
345.099027469
..
..
NIC
Nicaragua
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
269.25494693
278.548817708
287.630548493
286.075097197
281.758358177
275.410378002
267.626407072
271.188578204
259.004490842
253.13898517
250.718137919
247.792714132
256.49457385
269.230753285
270.005289427
261.9843099
259.375887229
224.221905361
216.876663092
222.825462887
..
..
NIU
Niue
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NLD
Netherlands
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
167.196356356
172.348978632
166.998078641
166.328246342
162.558134262
160.779956287
161.381343697
150.665845219
146.518418781
138.42971791
136.471371093
138.266151112
138.327908108
142.061332756
140.849888999
137.587411548
129.70395902
128.904231704
126.843409278
129.72965233
135.882225296
..
NOR
Norway
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
154.174385278
154.452570518
151.627327828
157.032989583
146.283654915
143.195400001
132.045270718
132.903346255
134.871332704
138.612610527
131.97194324
133.254248139
122.797178431
131.886635048
124.204281991
122.34582519
121.204174667
119.865029613
128.700892374
123.758797073
134.943032544
..
NPL
Nepal
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
427.765185124
415.180851643
408.520612247
403.762866239
386.343656534
385.147933019
374.456868359
367.985862789
366.49071375
370.315851918
368.107282411
362.808739572
366.392862156
362.45765257
351.234278375
350.921687989
339.012082609
334.024946443
325.232625073
323.225505467
..
..
NRU
Nauru
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NZL
New Zealand
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
196.780431768
205.570823457
207.801000273
206.14986981
200.016323323
196.623031294
198.231160562
202.541740874
197.785281867
194.607187078
193.856062376
187.336052267
182.266567222
172.629924508
166.815906033
158.2539779
157.538912523
153.717803871
158.581451826
158.673592027
162.902720049
..
OMN
Oman
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
154.008972476
201.045941081
179.870363213
182.373002248
177.356230126
177.142504106
167.673476811
169.786507807
166.841466376
173.395965531
191.962016726
186.14421265
190.605460574
200.690588269
199.875563289
212.992256363
256.149569569
256.262248789
252.997873351
229.255856306
..
..
PAK
Pakistan
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
236.349822417
231.918102349
228.682852814
236.378697309
237.094711168
235.821764505
235.556255971
238.964119198
237.523211034
241.530110786
238.205816828
237.98927296
233.326682583
233.400762635
232.749412757
223.869972506
220.179701296
220.523918612
213.390589976
212.736973171
..
..
PAN
Panama
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
99.3660982767
97.8845584126
103.916838401
100.078580733
102.301536647
101.276061258
105.286959467
104.17132095
111.23012371
106.299459278
104.89896103
111.402545782
100.448711473
96.5056666398
89.3722652434
85.7063201785
87.2851684601
74.8278923089
70.4541262492
75.5350296006
..
..
PER
Peru
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
100.266543394
96.2711920321
94.0303877936
95.8155949827
87.9758037105
86.5351725379
86.9372035161
78.7482112673
83.3809428535
88.0254660236
85.255563518
82.1032217865
78.6972100756
74.1399045221
78.1446932751
77.525569144
69.8557014773
69.404255289
66.3353718553
69.2106256077
..
..
PHL
Philippines
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
183.730872765
184.716072351
192.616274576
188.73946061
193.575151756
194.136812485
190.082886182
190.227837854
196.513696787
195.488562516
193.842028076
180.720787545
176.715089993
168.708533983
157.185414473
150.115911926
141.437917072
130.247699156
129.851130679
125.904167274
..
..
PLW
Palau
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PNG
Papua New Guinea
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
POL
Poland
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
331.010115995
348.677981885
331.616611553
327.201465497
296.400252352
286.440915991
280.470856242
258.43270421
230.229367604
214.490642863
197.175867282
196.175696965
191.493187364
189.031716279
179.965483338
175.594892718
173.632715001
162.05185284
156.025946884
147.38374782
153.630409717
..
PRI
Puerto Rico
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRK
Korea, Dem. Rep.
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRT
Portugal
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
103.779863174
100.663621687
105.913426809
106.553705984
108.317751558
115.154569629
110.172801855
111.184336714
114.482783404
118.061864189
114.338264378
112.776528577
116.535264123
114.464733065
115.857904133
117.820082829
108.38567324
108.445289337
104.71965441
105.927163685
102.041522456
..
PRY
Paraguay
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
180.779976675
182.171124491
175.322748724
175.287119797
184.700406588
191.776891376
195.410074382
206.359126165
202.490639332
196.108599657
189.926393096
189.391217608
187.856715473
184.620800751
179.083432609
178.625596508
175.006558096
168.977470111
165.350224015
182.27130436
..
..
PYF
French Polynesia
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
QAT
Qatar
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
278.10906582
305.766988936
292.721768947
309.971499754
318.203196075
295.642348825
278.168567797
264.237595363
214.15789696
203.714261517
..
..
ROM
Romania
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
341.360953186
323.180922647
322.960983219
309.018219511
280.19766168
282.615276801
278.576405393
278.982980945
266.883549224
239.94007586
235.575700678
225.565106439
222.258955632
218.764299064
198.769322755
188.614042816
181.778912812
170.12119502
155.358635802
148.208381338
..
..
RUS
Russian Federation
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
469.584299299
490.004073909
523.653136655
541.313549348
541.466600649
547.402893179
561.992535048
529.510330016
546.11484944
531.631421
491.457341047
472.741940947
449.229501148
433.61689234
405.881502172
384.098793451
365.475156895
337.697529403
328.440280616
334.769628523
..
..
RWA
Rwanda
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SAS
South Asia
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
281.004250539
286.188783257
282.190393968
277.827369406
271.813918604
267.944372648
259.175434509
259.036890921
251.222340601
249.424135609
244.925292665
238.258876052
235.647000407
225.164220664
220.682742749
210.389602004
202.995331263
196.270851442
193.392752886
193.467989997
..
..
SAU
Saudi Arabia
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
191.809678706
204.743548888
222.77626956
227.596111451
241.580778427
243.973772764
250.889078032
234.413257303
242.183569671
248.761954071
248.742565001
260.406794886
285.180663307
274.924013511
309.199599442
296.670717153
312.63247274
279.131541824
286.327414566
292.887164143
..
..
SDN
Sudan
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
389.740837229
361.778478086
339.254954591
315.048488574
361.576742198
342.396397021
331.171410493
305.780071909
296.364503426
319.179357428
283.274595841
276.354627848
283.883843687
268.638415372
266.359774621
243.957938852
227.682388691
199.575746209
181.491613804
187.451279785
..
..
SEN
Senegal
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
157.58344844
152.49162847
160.105709603
157.512516817
156.469183195
157.267874504
157.888576153
162.344671898
161.874193243
160.471049176
165.392053327
170.936273721
172.440357509
157.046523834
158.689660267
153.275518017
147.475178085
144.162155116
141.339817692
142.150863987
..
..
SGP
Singapore
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
149.484515075
157.617117262
167.399228912
184.652295331
203.266959619
161.386617115
158.281240236
166.653986906
149.505145866
130.610389535
125.621910161
144.889399631
133.673921623
93.1995387902
107.72144155
96.1594846457
91.5761141129
68.3881003243
71.9214030201
80.1632439047
..
..
SID
Small island developing states
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
169.39165462
184.526918866
196.060212432
199.522428661
212.874487963
186.162321402
188.847344196
189.771595329
185.398412836
175.437002641
175.889609066
190.891739814
183.465646284
159.656426848
155.447467321
153.866263818
153.766171654
138.099022744
138.874923479
142.988095858
..
..
SLB
Solomon Islands
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
73.6144900843
..
..
..
..
..
..
..
..
..
..
..
..
..
62.7893632936
59.5604748612
56.6519658177
55.5130802801
..
..
..
..
SLE
Sierra Leone
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLV
El Salvador
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
125.66368846
133.449475174
129.476140773
126.982233516
126.814284203
126.696497113
119.053250821
126.389435507
125.319681323
126.090055056
128.623914201
132.379326105
131.888364845
134.638260951
131.117988763
131.33909171
131.941245855
133.927311494
132.806670288
137.521548863
..
..
SMR
San Marino
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SOM
Somalia
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SRB
Serbia
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
217.516995442
205.35605943
255.563210945
312.266318175
280.004063799
307.497893053
338.545814969
326.012551862
320.456668373
261.989581656
269.665113659
278.876976587
284.700556277
290.715470157
292.779498564
252.859200721
255.637255727
232.193397177
224.447409884
198.093335181
..
..
SSA
Sub-Saharan Africa
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
361.731944859
375.299204192
379.30730673
392.316750514
392.32354852
393.704875621
384.466639021
379.618028862
369.876442212
378.675187071
372.043249801
368.57376802
362.501649383
360.150603416
351.035060857
335.610419443
320.273582822
314.66911564
318.216405935
308.380537758
..
..
STP
Sao Tome and Principe
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
185.738673927
198.901399422
190.791635411
179.992108878
..
..
..
..
SUR
Suriname
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
256.723225079
..
..
..
..
..
..
..
..
..
..
..
..
..
228.367297551
227.50249602
224.859161114
213.817137835
..
..
..
..
SVK
Slovak Republic
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
324.45712675
340.618880792
345.444781543
352.073059508
325.409073116
313.538964443
295.077458743
279.4150332
259.708759982
261.102781268
258.893292409
262.160314774
252.536340148
239.814018128
224.82598333
216.259803327
197.300173383
170.845234069
165.021906538
160.72883797
165.132637231
..
SVN
Slovenia
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
174.197163536
186.073046873
182.754425955
186.276032139
183.983472514
191.460580729
192.575169345
190.906468844
180.794487957
171.112450461
163.486417764
166.854510949
162.826348689
160.231558639
158.479931054
155.139656411
147.208971375
137.797794349
140.712881003
137.490844636
138.308872865
..
SWE
Sweden
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
224.49480274
234.189921451
226.564163859
231.157371159
237.504730912
231.414237743
233.018445413
221.042860413
215.895033713
202.573108749
183.90990606
192.981853934
192.971165993
184.322087267
183.716853852
174.636280745
163.018023046
157.325839263
156.847547591
151.677706653
160.715673198
..
SWZ
Swaziland
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
102.245832181
..
..
..
..
..
..
..
..
..
..
..
..
..
85.1397068669
81.8637053571
80.9746174887
81.5038941521
..
..
..
..
SXM
Sint Maarten (Dutch part)
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
39.5181246257
..
..
..
..
..
..
..
..
..
..
..
..
..
191.258007973
158.498508126
155.978931214
119.953464578
..
..
..
..
SYR
Syrian Arab Republic
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
281.764066277
284.507768171
239.879932654
229.217113093
222.161690886
223.107241462
226.609316396
248.14107159
259.334821562
266.668655521
261.56149616
245.897136463
253.103397683
246.693881718
255.279125922
279.965623935
279.940831016
291.162499915
286.222056297
239.544238753
..
..
TCA
Turks and Caicos Islands
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TCD
Chad
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TGO
Togo
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
375.907442325
387.724775028
408.736083991
483.684800389
475.72322135
464.286432947
478.31898576
412.1595459
450.931655395
503.068445433
505.962078841
505.673710411
503.091377768
517.064829352
507.294728889
511.013449245
490.306092244
497.586977391
506.709835951
503.113572553
..
..
THA
Thailand
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
186.855269907
186.876692153
184.227671654
179.060759088
177.237474575
182.385225931
192.559771907
198.823194851
208.297351612
212.909130595
208.466522714
214.085852237
217.274590866
219.208155176
222.391923149
215.67383249
209.85193962
207.961272971
211.056570206
210.015763373
..
..
TJK
Tajikistan
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
338.040622374
347.626969948
400.05349387
373.356988657
363.762596893
372.773206923
432.054032791
423.401114026
422.717971198
405.37601543
359.307121848
322.048180347
296.100323065
273.842631073
268.143600375
242.692670834
235.402982658
235.376144941
209.321450926
180.326166865
..
..
TKM
Turkmenistan
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
1427.51445592
1294.32007467
912.692032909
959.856652639
1464.45193486
1621.29504958
1524.46720918
1725.33014439
1596.40179945
1622.97943656
1387.67753215
1201.12560455
1054.22036915
1005.89274114
883.001685355
818.754232901
749.985746752
778.603588421
722.478660697
593.226377435
..
..
TMP
Timor-Leste
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
87.0809144226
81.9797083565
88.4925301311
84.8956550687
..
..
..
..
TON
Tonga
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
88.7834491946
..
..
..
..
..
..
..
..
..
..
..
..
..
135.360851436
136.453306523
136.269463499
139.922775523
..
..
..
..
TTO
Trinidad and Tobago
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
453.943534279
439.37751392
491.239734977
476.980165458
463.274148201
435.183803635
495.374245314
435.816217211
489.97154235
534.210639806
593.278404346
615.108600275
608.721057292
588.155518913
565.526455689
635.360185395
654.862237125
644.240287902
602.981868422
654.917198578
..
..
TUN
Tunisia
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
150.931161194
143.853825397
148.389618011
141.366447002
148.080562084
146.528161725
142.946149317
139.828392465
145.445767448
141.758001712
140.31698012
141.256040199
140.803885008
137.036583014
136.18367892
127.335340841
124.771085854
121.678449991
120.902108693
117.394450591
..
..
TUR
Turkey
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
120.496907364
118.122456352
115.901458814
114.096625464
118.229950745
120.019716333
121.560961184
118.983770325
118.280738538
120.170344163
122.096425206
119.388889161
118.600976074
118.109320132
112.194316574
108.006150877
111.40602775
114.411025325
111.953579205
116.625901165
114.875339345
..
TUV
Tuvalu
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TZA
Tanzania
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
457.584519177
457.485612074
460.700557503
467.557074859
468.61985337
474.074479905
459.076280895
447.744688415
457.28805048
466.075102872
466.41130631
466.945282605
457.764457863
444.549104666
430.751190584
425.238992583
414.196661597
397.270116191
382.315173115
373.138398406
..
..
UGA
Uganda
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
UKR
Ukraine
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
601.733313012
658.519654557
634.551106315
655.341256682
724.728768024
815.684529927
830.95731701
818.915458706
788.987671345
786.87110718
736.031251928
675.572173653
649.364694885
633.032920868
561.792198543
543.279218547
486.636133578
451.038906858
437.608651612
435.936744933
..
..
UMC
Upper middle income
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
331.442598138
324.830886905
317.861715635
310.473910951
299.340985487
297.016868106
290.325591674
275.242342991
269.839970481
265.453004467
252.991222089
245.762384624
243.938603809
247.262901941
250.492558905
245.617152496
240.366055341
229.291079375
228.044241294
227.112570446
..
..
URY
Uruguay
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
99.1645684664
103.859535205
106.342876978
96.6713705034
86.0752144788
93.4088340643
97.5284465227
91.2854072619
89.8945217166
100.061927417
97.4812124617
88.9084107861
90.1936878153
88.94065422
96.0497489356
92.0984886736
95.0993691832
88.2546138475
106.484249143
102.516546735
..
..
USA
United States
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
240.290649798
242.889301978
239.601813242
237.000347653
231.856821377
228.98560482
225.535303922
217.99347783
210.581495885
206.235171265
203.5631049
197.595785099
196.236749376
191.886428325
189.06942303
184.333577271
177.815764062
177.491567839
172.971728065
168.807619478
169.592739031
..
UZB
Uzbekistan
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
1129.05544878
1176.55211166
1247.41793702
1325.58709556
1383.3800113
1278.2053247
1301.82558143
1258.65838902
1341.05306509
1320.39721965
1261.05464611
1217.70448726
1219.63357356
1128.67800179
1019.49988076
896.70577992
869.565125647
791.638224419
753.12024527
673.34858075
..
..
VCT
St. Vincent and the Grenadines
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
61.3807620426
..
..
..
..
..
..
..
..
..
..
..
..
..
86.6503028427
86.1307094718
82.1579255904
75.678319771
..
..
..
..
VEN
Venezuela, RB
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
230.2677555
218.924026971
229.531137555
214.436824959
252.483424581
230.264007043
247.230756109
231.847711172
242.72102458
244.220228611
242.674056106
240.71914064
262.434915805
261.527574836
235.976501869
252.224985697
240.468931569
204.709923566
200.48854053
210.626381848
..
..
VIR
Virgin Islands (U.S.)
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VNM
Vietnam
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
406.753133217
390.495135155
373.205962609
364.063927117
349.284213034
338.37194956
331.711646905
324.229392008
322.135575612
307.219624422
297.786455239
293.697450974
296.091250844
287.102710745
302.515497024
286.131724525
271.942812574
267.966241281
266.177197372
273.653783469
..
..
VUT
Vanuatu
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
108.523561839
..
..
..
..
..
..
..
..
..
..
..
..
..
41.2947391837
39.2781761672
37.8654571369
40.0516193007
..
..
..
..
WBG
West Bank and Gaza
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
WLD
World
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
237.222884212
236.587814754
232.393599239
230.615940163
225.062576282
223.598673806
221.434116366
214.762031822
210.685514007
207.883726606
202.517701807
199.213652503
198.300361236
198.242708589
198.112258155
194.406877338
189.918784515
184.71937368
183.310967421
182.895803135
..
..
WSM
Samoa
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
102.272564085
..
..
..
..
..
..
..
..
..
..
..
..
..
84.4619902804
82.5480231717
80.8092293132
80.4037772838
..
..
..
..
YEM
Yemen, Rep.
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
114.897131114
137.129730949
138.267513053
115.005688997
117.531752448
119.147070063
114.720748955
112.919315009
113.315354783
124.490432144
126.422915399
134.237357792
125.156600145
134.755596662
141.524320515
142.83419689
144.399341212
145.202572533
142.167696429
142.970028124
..
..
ZAF
South Africa
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
334.424727494
352.195729575
339.700283572
363.917396107
365.825927177
371.651521302
360.337025564
360.140156098
350.189106396
354.174254799
340.247986802
332.71986119
313.958441271
327.578812199
341.0117377
321.276478167
305.038227587
306.914442297
320.191040513
312.693117689
..
..
ZAR
Congo, Dem. Rep.
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
513.598305569
572.420581492
651.064348884
765.85069686
799.969158107
829.573928817
864.315532112
931.726371954
969.970688864
1032.54330019
1291.63884901
1363.97769896
1364.07104286
1337.24360278
1303.30705843
1271.10712783
1254.51894173
1223.05131575
1193.88721895
1196.38712757
..
..
ZMB
Zambia
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
550.159043887
567.247765003
587.582342831
551.929758045
609.025258786
637.473908014
590.997817522
596.668966687
613.988414271
601.739056146
595.24704836
584.456124243
583.464997182
571.287320094
555.546898848
542.745184739
524.149882349
493.133638039
481.196264769
466.786788985
..
..
ZWE
Zimbabwe
EG.USE.COMM.GD.PP.KD
Energy use per units of GDP (kg oil eq./$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ABW
Aruba
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ADO
Andorra
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AFG
Afghanistan
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AGO
Angola
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
569.242999455
565.451027196
550.54826405
551.688878141
541.553066688
528.38616435
531.680254723
531.736161549
519.27434863
531.89794676
533.443417033
542.469880272
549.321868464
568.512866747
597.237843617
551.955631568
581.149517888
605.808197911
630.636694917
641.107047841
..
..
ALB
Albania
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
809.215612301
565.879281039
413.941241812
410.921451542
443.46429342
421.572747399
454.236767561
390.423111729
423.029992819
569.095509686
574.984634696
580.734963336
642.287892528
663.774531247
640.551691739
724.181361003
679.845796452
671.007503948
649.924545726
537.834005643
..
..
ARE
United Arab Emirates
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
11258.1323446
12262.3881304
11058.7901762
11039.3207535
11635.3088698
11754.3404644
12607.8392616
11789.2924288
11596.1113367
11311.8840692
11330.5956734
11857.9874517
12438.6474784
11784.9115499
11570.7162466
10623.7565271
9757.15804139
9561.66422565
9409.65175426
8587.9632185
..
..
ARG
Argentina
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
1411.46651957
1434.96060067
1489.45070789
1469.43427608
1552.45942865
1547.44373573
1575.62102063
1638.88014449
1662.64176631
1653.37180297
1650.49336042
1550.46150733
1470.79355578
1553.82547801
1755.40976242
1731.38620353
1870.2377136
1867.24018904
1922.760639
1853.3253691
..
..
ARM
Armenia
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
2171.31375196
2309.84088785
1193.32886949
646.577990033
414.996626693
506.306983832
557.521077743
589.980145692
606.005401561
589.324032946
651.264361539
651.636272307
610.102947763
643.765801878
680.194879404
817.053680518
829.406640859
925.555131594
973.201146963
843.184345825
..
..
ASM
American Samoa
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ATG
Antigua and Barbuda
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
1588.81566509
..
..
..
..
..
..
..
..
..
..
..
..
..
1629.68685869
1632.58496592
1683.30351257
1698.95851516
..
..
..
..
AUS
Australia
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
5052.77847771
4926.72778292
4957.33861103
5160.70057169
5111.08064968
5121.51610226
5403.64862651
5469.99843387
5554.77387633
5610.94467928
5644.60914739
5502.98403132
5676.00735825
5686.29909426
5649.97302185
5863.86569125
5910.01739307
5929.28840906
6019.06760937
5970.86726768
5635.65005733
..
AUT
Austria
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
3213.88953948
3381.07379003
3256.04537554
3229.31722116
3221.34130668
3356.75092389
3559.87307416
3536.66023678
3594.19331958
3580.24544793
3566.05107934
3761.80656149
3779.35888472
3974.8866688
3978.51505254
4123.58556108
4076.09088837
4008.35065297
4016.59604511
3784.40744626
3943.55391846
..
AZE
Azerbaijan
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
3664.79452437
3372.75615459
2803.11649959
2328.27738492
2095.8569172
1660.95237476
1518.2030143
1437.55192651
1505.19423733
1386.12075661
1420.70678753
1404.83886253
1402.18467693
1456.26823843
1522.37001673
1652.88619315
1592.93150491
1417.76956871
1522.13239154
1337.63097746
..
..
BDI
Burundi
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BEL
Belgium
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
4844.1756125
5055.89334799
5093.02687904
4954.27864545
5225.41312428
5304.05759214
5586.58915034
5579.64502505
5659.69665785
5689.20506552
5707.01648459
5673.66569457
5454.61656828
5709.10357452
5650.96534092
5600.42789998
5509.34389386
5366.71814563
5469.58157598
5299.74751987
5220.88940882
..
BEN
Benin
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
348.055167912
341.840226652
338.327458947
334.35332579
330.220965111
326.84195988
369.425032871
372.652695942
357.644099444
362.777898202
304.192665941
313.709311109
327.529967274
334.662949325
336.787787485
327.524834757
374.768268179
395.343376263
392.489450669
403.969368634
..
..
BFA
Burkina Faso
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BGD
Bangladesh
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
120.99640737
116.511475882
120.23543905
124.190375715
126.988771805
135.307621224
133.336185584
136.512118866
139.454308402
138.703612419
143.550832795
153.217126366
154.589664067
158.971027955
162.580466449
169.844213218
178.339365184
184.024701021
192.061895142
201.31467598
..
..
BGR
Bulgaria
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
3277.39068594
2560.05444856
2413.88442623
2600.10587819
2520.94119739
2750.22678571
2746.93788894
2505.27113108
2424.27637156
2224.97404971
2314.28846154
2464.20581542
2416.32329394
2493.91039243
2418.77246853
2569.26303957
2655.47978834
2624.43634034
2594.20887938
2304.54108176
..
..
BHR
Bahrain
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
8825.51314591
7976.4034854
8319.86007204
8746.28166548
9073.51342034
8818.15840263
8635.9855561
9130.50898335
9512.9826892
9020.93448103
9189.51163676
9445.44053789
10019.4262308
10432.9289021
10375.1652376
10348.0636914
10193.2475567
9456.5938559
8784.70750001
8096.2535205
..
..
BHS
Bahamas, The
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
2519.51111554
..
..
..
..
..
..
..
..
..
..
..
..
..
2109.68453226
2179.37236581
2178.56856319
2155.92605995
..
..
..
..
BIH
Bosnia and Herzegovina
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
1628.89394334
1519.3368106
1131.63775903
1016.28687171
425.19393235
459.826811816
539.756817978
812.466722288
974.021380433
931.554562372
1179.44130787
1122.85900271
1169.38580989
1165.20241932
1273.63872979
1334.88803626
1426.14134591
1479.14281798
1583.14795012
1579.90043218
..
..
BLR
Belarus
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
4470.35361665
4348.46262507
3620.72768207
3076.69704073
2615.73648186
2427.66676476
2501.34616142
2505.60274785
2465.39666303
2408.82222222
2467.19290355
2484.79968051
2544.24413098
2633.08895424
2735.83445225
2749.00398783
2941.62147444
2891.95557617
2931.19579254
2814.8049858
..
..
BLZ
Belize
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
562
..
..
..
..
..
..
..
..
..
..
..
..
..
548.47841472
551.747772447
570.696714512
571.428571429
..
..
..
..
BMU
Bermuda
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BOL
Bolivia
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
392.071171991
394.95752318
408.716710008
420.122764774
452.763261836
497.675053625
540.029344212
579.327278833
591.545452732
550.081940807
455.385345424
347.198777261
412.710504716
427.347326896
408.09961842
571.030283749
694.229078961
571.844107944
621.53580415
637.600718109
..
..
BRA
Brazil
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
937.155990283
939.256647427
934.013848938
942.659701554
977.328094775
995.483260415
1032.48711818
1068.57177475
1077.93311119
1086.14377242
1084.47501968
1075.75798873
1092.31121845
1096.12900677
1140.61387473
1158.38611141
1186.26776034
1240.22240584
1297.91008492
1242.77270375
..
..
BRB
Barbados
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
1240.79799307
..
..
..
..
..
..
..
..
..
..
..
..
..
1389.16157616
1441.75850175
1468.2987656
1476.33809247
..
..
..
..
BRN
Brunei Darussalam
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
6990.23896877
7706.78639867
8049.94864952
7552.2704659
6885.27659574
7984.06154399
7805.00558569
7855.29951497
7635.29735824
7600.38666808
7502.65719982
6818.52441169
6512.56934584
7394.15547738
7292.04395086
6992.87844615
8785.17054308
8795.3845298
9433.5096635
7971.322259
..
..
BTN
Bhutan
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
100.22372068
..
..
..
..
..
..
..
..
..
..
..
..
..
280.199252802
309.42236608
312.740391385
354.351920834
..
..
..
..
BWA
Botswana
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
912.328166607
901.156950484
1008.78475607
984.40941358
944.868579824
943.037403895
894.222099595
917.46349677
1018.01853871
1030.95628404
1044.62192642
1046.5751613
1059.88652195
1041.91020623
1002.67999393
1027.91637988
1032.30040428
1062.19274308
1110.35275846
1033.69842994
..
..
CAF
Central African Republic
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CAN
Canada
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
7504.77733799
7388.56367426
7480.02534278
7641.83037125
7834.87442676
7861.67435443
7956.9702648
7965.74845267
7837.80384754
8010.93409007
8171.98900217
7974.97952184
7914.66130987
8272.4412489
8364.39824973
8424.3120203
8224.3437165
8248.2764738
8001.48276566
7531.73148112
7485.53963511
..
CHE
Switzerland
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
3623.31168057
3628.0025
3606.43127273
3484.62136062
3490.09722619
3416.81309473
3466.88592027
3527.73194131
3559.13909986
3546.48543417
3481.12520791
3671.94994843
3550.90219073
3539.18213862
3530.52936446
3484.7008551
3615.26518005
3411.81960232
3501.1462961
3480.48956647
3361.64781081
..
CHI
Channel Islands
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHL
Chile
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
1027.66446405
1032.61707689
1099.41277373
1107.17325023
1171.86722437
1241.26911181
1357.53069439
1502.40969733
1535.9364438
1613.01533389
1602.04451154
1552.61083554
1590.00654524
1589.54361125
1676.33155509
1699.57426594
1716.80669917
1715.37060638
1743.8449479
1697.56873441
1826.32048685
..
CHN
China
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
760.189496866
744.485727941
760.353575629
795.387312888
822.492539655
869.188004366
891.00692949
883.990699754
874.063525064
866.724905906
867.125313132
858.108668475
922.91517104
1043.96585688
1209.74062844
1301.19158715
1414.14677656
1490.26043471
1598.51623706
1695.30928435
..
..
CIV
Cote d'Ivoire
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
345.336894149
343.706723684
358.970942547
359.425882162
357.368749383
346.43494672
379.367951251
379.682079807
369.805375867
430.360017852
406.120246275
383.793713132
404.319417736
376.846301919
524.575960532
534.609281888
520.422183175
548.777819453
541.320704206
535.031839234
..
..
CMR
Cameroon
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
408.821442959
401.288150332
394.549554256
397.377025005
397.494013664
394.316651025
394.234670577
398.843472772
400.90784044
394.846375805
402.446086363
398.020553579
397.488372348
403.581558074
406.056777328
398.486429186
373.979456102
345.489504045
340.917516056
360.773345416
..
..
COG
Congo, Rep.
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
333.612262035
332.930986846
326.524206847
318.567228303
281.996864926
287.542457915
278.912486949
255.783697547
252.844202576
235.525720216
270.510971298
289.254760638
275.665012528
307.143381421
309.927113428
342.078248556
328.003580483
334.444053683
338.655160558
355.773529261
..
..
COK
Cook Islands
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
COL
Colombia
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
729.523561815
729.181570052
742.490017847
768.181329315
781.196445105
780.706304062
785.14729531
748.991093434
770.212850202
681.338527082
673.557820878
658.054627218
631.770097845
638.775949744
635.961948687
650.25114219
677.887585607
664.189772951
683.290360336
697.239591744
..
..
COM
Comoros
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
40.7576114036
..
..
..
..
..
..
..
..
..
..
..
..
..
54.3238596783
57.545095136
63.5825111761
60.4183306268
..
..
..
..
CPV
Cape Verde
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
83.426312237
..
..
..
..
..
..
..
..
..
..
..
..
..
190.666346747
209.354110848
213.269993539
213.240363295
..
..
..
..
CRI
Costa Rica
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
659.543879306
666.213389819
813.603675707
707.707667103
683.005574239
676.956042201
661.85356309
661.967626786
660.191285946
704.855586736
769.326491766
741.485895638
776.879734189
818.195343856
930.037149356
943.995852799
1030.64708272
1118.45215209
1085.32317999
1067.05272949
..
..
CUB
Cuba
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
1824.17423565
1524.82715374
1342.76077534
1102.89521908
1125.26141144
1114.36358541
1171.82771061
1199.21426745
1111.20880169
1134.85530225
1215.13568647
1184.97970587
1101.50594599
1089.99851803
1060.5715013
990.490341331
982.912305271
913.744786771
935.999815389
1021.55908905
..
..
CUW
Curacao
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYP
Cyprus
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
1774.99892391
1773.28843996
1957.12539044
2054.53937068
2353.28025991
2040.74821375
2217.65373415
2130.7672791
2176.07776587
2146.39590969
2265.44428354
2199.08849048
2187.35776232
2335.97993857
2148.95659211
2150.06362814
2202.98739259
2292.58146783
2401.26239437
2297.71759594
..
..
CZE
Czech Republic
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
4782.73009746
4344.82200019
4219.51066098
4087.12544768
3958.14464009
4014.26609234
4146.61803199
4178.2213876
4049.16949169
3794.38033648
3988.88954864
4113.01545383
4166.17652405
4349.03964413
4452.68243511
4386.9259038
4463.96112856
4429.78006921
4281.34501804
4003.97332819
4022.16693634
..
DEU
Germany
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
4423.90497652
4306.24443222
4194.98638123
4127.7664498
4090.42392904
4128.42056784
4252.96643959
4208.46186838
4184.79030312
4088.57473169
4102.83250213
4219.18723962
4111.93895137
4144.33915266
4163.33440989
4107.00276709
4142.23938829
4033.16863177
4076.28265255
3889.13246363
4057.42182698
..
DJI
Djibouti
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
231.298169983
..
..
..
..
..
..
..
..
..
..
..
..
..
167.561588333
171.951601191
173.610689562
170.349024901
..
..
..
..
DMA
Dominica
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
298.502580154
..
..
..
..
..
..
..
..
..
..
..
..
..
564.505623344
594.849474066
611.35371179
628.342636701
..
..
..
..
DNK
Denmark
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
3378.09747082
3735.2935584
3563.02998066
3645.44054731
3760.37137368
3709.20600612
4170.88179399
3848.80228302
3774.58102245
3604.52075544
3491.18419199
3585.91633144
3536.26781759
3728.76019969
3597.1929822
3487.56604994
3724.56684161
3617.74499683
3497.97901967
3368.66865408
3550.21185436
..
DOM
Dominican Republic
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
569.950988691
562.187441501
651.704688684
651.597625289
724.018293665
744.51767863
762.321273561
829.213051027
870.789027326
878.739404911
908.343572549
907.290595188
917.186449018
897.680124882
797.990134683
851.501797174
866.196971043
873.126118737
843.800815069
826.085562995
..
..
DZA
Algeria
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
877.17998155
905.415887663
908.458286099
887.953630162
837.9865206
852.033241962
811.824181558
823.003840554
838.833446217
883.709563869
884.947275034
874.483405221
915.257811818
962.01104725
956.211449001
980.875139475
1037.8612764
1085.24796275
1083.36835325
1137.55536168
..
..
EAP
East Asia & Pacific
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
712.172625187
705.238686883
718.975640192
750.172897364
769.963609434
813.169231167
833.245393255
833.507281118
818.598978109
819.961187269
825.534899146
822.301746523
873.296697423
962.341678737
1086.60387296
1154.94356149
1235.38907882
1289.68282495
1371.64640772
1436.49241623
..
..
ECA
Europe & Central Asia
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
4066.61461619
3951.99864167
3560.09561439
3299.68456995
2915.25344973
2848.535085
2805.5441065
2698.73214883
2646.84198686
2654.88122065
2692.42377193
2703.04863327
2737.23009145
2846.35631037
2879.37281778
2889.25659462
2985.82684426
3017.83626393
3058.47021146
2832.55542608
..
..
ECU
Ecuador
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
584.488684712
592.925543036
582.247122476
545.916702562
557.408337672
627.457265164
673.886320132
675.610040933
676.890487681
633.297327964
650.733255013
701.144738591
718.192210404
764.826464322
806.562772331
803.077771692
804.316998575
821.911141748
784.726330572
795.970863228
..
..
EGY
Egypt, Arab Rep.
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
559.877698813
558.775405727
562.549195507
589.474186145
544.862922174
568.795808701
593.437222248
604.802105584
638.411852566
690.029916426
667.76787496
674.494954363
734.278321545
765.156979035
767.448548767
819.962315649
844.653734013
874.099959902
902.79126142
903.39213723
..
..
EMU
Euro area
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
3510.40026013
3553.22495204
3488.56741314
3459.00039664
3446.4533686
3546.5778318
3649.39183317
3638.52499182
3695.80120719
3691.85451702
3731.91405649
3811.29282158
3784.8967105
3851.54448855
3878.83901799
3857.48935126
3823.08656048
3765.61398894
3740.24977156
3536.44708583
3641.74594008
..
ERI
Eritrea
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
275.540755253
289.593814386
298.20063194
310.569048496
320.95521444
312.031187737
197.341861654
198.163782157
193.013314516
194.552722078
188.331425503
194.012543722
172.188730724
170.054311543
150.016025099
150.176479991
136.885523073
142.316258265
..
..
ESP
Spain
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
2319.6831548
2399.61224015
2434.89456137
2328.94900152
2452.0534827
2559.73856856
2516.10549127
2667.63897591
2790.86261458
2911.00298676
3028.78231238
3070.41950666
3119.72328959
3171.6753205
3257.86981763
3268.12827275
3206.95334422
3205.71004956
3047.07681469
2755.90975406
2780.63290546
..
EST
Estonia
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
6316.63161249
5777.01537476
4285.8962818
3452.25100402
3665.91455913
3505.85873347
3889.6779661
3840.39857143
3702.37988746
3498.69322176
3442.5641276
3605.76350449
3466.15400808
3834.07960499
3915.90497083
3836.51475339
3749.64403925
4191.66830641
4057.87234043
3542.85737735
4085.24789385
..
ETH
Ethiopia
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
307.579101687
306.895449285
301.267392905
286.570586774
287.300636489
287.570655808
287.119975987
284.60805335
285.623221257
284.137110689
284.228663203
287.534267602
287.366754804
288.45632542
288.671497445
289.179201173
291.220791889
395.060188808
399.06523666
402.498401514
..
..
FIN
Finland
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
5692.0631769
5742.48643797
5380.98452995
5617.71101461
5971.77146787
5661.67110415
6069.70634146
6276.95169203
6319.93731807
6283.99148507
6230.89688403
6366.50987135
6682.03800956
7074.74668347
7090.84445186
6523.70200622
7075.65357479
6953.48874586
6640.65939712
6212.8966967
6639.3673382
..
FJI
Fiji
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
392.380730103
..
..
..
..
..
..
..
..
..
..
..
..
..
813.085549785
702.690282571
675.083268321
627.344310262
..
..
..
..
FRA
France
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
3848.01074964
4047.2952872
3959.99019129
4010.15318746
3843.2541816
3981.99959316
4189.92555595
4044.77902629
4150.48844792
4130.75727446
4145.13500991
4253.51243649
4235.6942182
4281.87202376
4312.6887057
4295.59570823
4214.8231917
4142.32110217
4162.7559724
3969.73005278
4072.81152099
..
FRO
Faeroe Islands
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FSM
Micronesia, Fed. Sts.
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GAB
Gabon
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
1271.63514322
1271.26989437
1315.52453422
1346.7935998
1185.50412188
1244.66972677
1278.69953453
1229.97938029
1289.4995993
1225.41931058
1184.1915235
1293.08205975
1306.88739218
1302.2230251
1291.96210899
1352.82612391
1325.6223912
1397.17919666
1371.923244
1214.19221747
..
..
GBR
United Kingdom
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
3597.00672793
3708.49356508
3685.48601509
3712.17408304
3729.11936069
3727.46441986
3878.05774585
3759.67575811
3786.86049981
3783.75538956
3785.47684346
3785.78986654
3682.23541629
3731.1254682
3706.62735832
3692.25960541
3613.870947
3447.61754331
3390.30975272
3183.77795257
3282.51364568
..
GEO
Georgia
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
2587.45189504
2080.14888645
1777.45685852
1551.63446071
970.327875597
788.223067174
812.045232989
725.717406655
677.966483186
625.770016844
649.982346151
586.075369323
584.11751205
625.181454873
644.21601093
651.52159956
689.655070487
761.963357944
685.837078267
722.943456969
..
..
GHA
Ghana
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
357.661364871
359.821776006
362.207487081
368.926594154
373.465608729
380.733170123
384.05954051
393.816552555
403.392506791
406.069756711
403.830635168
416.431012927
417.971915688
403.944476555
400.507416911
393.503342867
425.046489587
418.019528801
406.577649688
387.85523347
..
..
GIB
Gibraltar
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
2180.13417816
2846.69960254
3430.19384433
3451.09596611
3925.64168472
3878.8622952
3916.7491477
4107.19400683
4334.85361189
4514.36760491
4674.89395934
4666.55803006
4674.65790132
4747.6592749
4858.02104678
4911.60791058
5088.00492527
5248.29328236
5420.52787926
5596.84861742
..
..
GIN
Guinea
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GMB
Gambia, The
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
63.9563598237
..
..
..
..
..
..
..
..
..
..
..
..
..
73.9476327514
71.823887827
73.6786795229
83.5764696419
..
..
..
..
GNB
Guinea-Bissau
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
73.4090518789
..
..
..
..
..
..
..
..
..
..
..
..
..
64.1401417348
63.6106734323
64.4933829789
66.7045361191
..
..
..
..
GNQ
Equatorial Guinea
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1291.97652062
2055.15854668
2401.81406475
2731.63792675
..
..
..
..
GRC
Greece
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
2110.08325952
2106.87173489
2135.90472517
2089.6215364
2130.13133706
2132.62967839
2185.46222803
2257.62772571
2364.54074758
2363.44298447
2480.99973968
2557.43415248
2577.52884335
2643.51267663
2685.58172021
2724.02884915
2710.93263105
2699.66325562
2707.10754934
2609.18622748
2386.73093356
..
GRD
Grenada
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
441.521798337
..
..
..
..
..
..
..
..
..
..
..
..
..
722.268312918
768.97619094
786.125372439
783.60807987
..
..
..
..
GRL
Greenland
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GTM
Guatemala
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
497.000212145
507.428249514
518.03474109
503.192145262
517.591643234
534.63635751
541.265547246
556.717039474
583.002538246
627.750399706
631.101384601
628.952515397
620.395867886
609.373698194
623.221046366
639.648462227
631.284971489
642.295716949
599.207967134
701.309205755
..
..
GUM
Guam
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GUY
Guyana
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
527.065168961
..
..
..
..
..
..
..
..
..
..
..
..
..
644.039674995
663.329916179
668.162459693
666.606227702
..
..
..
..
HIC
High income
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
4649.31165313
4675.21342732
4704.73986102
4744.00372493
4803.43621308
4875.34421798
4991.0714872
4999.49621901
4996.03951961
5062.97609358
5147.58990207
5120.18217319
5130.20004219
5159.55468466
5242.69297931
5235.2677006
5203.07529712
5189.0545014
5097.54494483
4854.7501051
4944.46297775
..
HKG
Hong Kong SAR, China
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
1517.70812516
1545.33883866
1840.09292302
1763.72275885
1777.6117573
1729.97758321
1627.40393132
1530.14115544
1988.06500909
2401.14856581
2009.29377344
2106.68096451
1956.56321822
2021.73827777
1888.11424781
1858.72614924
1943.9093786
2070.19159965
2026.23930522
2132.98042463
..
..
HND
Honduras
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
486.68922881
477.518195814
484.662115856
482.424481475
488.202325771
506.535937747
496.858815355
530.74495935
557.664353293
480.061128075
480.809809861
507.999499628
521.767187313
551.765933557
571.388382365
580.992850521
562.076352185
649.256113334
629.952968351
591.603564225
..
..
HRV
Croatia
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
1883.81945607
1618.15742794
1502.64966443
1491.71875
1478.29010753
1509.87234954
1610.08411215
1705.62751531
1788.87158409
1749.52481335
1760.11319476
1790.07545045
1856.86441441
1984.68355856
1990.02095066
2004.78815849
2014.5204955
2102.60504959
2048.75597654
1964.83918323
..
..
HTI
Haiti
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
219.017394967
214.254701637
218.01575426
206.494910975
185.955682364
214.939151913
241.984247071
250.142661646
245.676667147
244.460209917
232.528945259
233.618189224
258.434121388
244.39211984
248.326700051
276.504392409
279.367338964
289.030190396
284.842587537
263.088158531
..
..
HUN
Hungary
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
2762.42511559
2634.77037423
2419.67498224
2483.32371392
2410.77870768
2505.06222066
2569.69774144
2526.08593996
2501.77566607
2490.75655944
2448.29203804
2512.0431985
2520.11023558
2580.16346626
2588.01040373
2734.4955148
2713.61860402
2657.98923604
2635.7051691
2480.29902271
2541.93195662
..
IDN
Indonesia
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
549.661178053
565.993391368
579.914111751
626.515644066
620.433549564
676.883738899
692.895548619
704.951112989
679.595393339
725.925087518
729.591856125
740.05546506
760.175639129
752.143997431
795.143508093
797.969935968
816.530555928
810.078588156
816.352793909
850.826719742
..
..
IMY
Isle of Man
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IND
India
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
372.85183075
380.237682481
388.103150016
389.693102302
397.566309598
412.2431097
418.103624321
426.968060607
429.917531901
448.784606342
450.048089274
449.894203818
455.35605153
459.880757723
480.341371373
491.427852433
509.095704524
530.373658781
543.020423539
584.957938508
..
..
IRL
Ireland
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
2848.87129899
2840.68865757
2785.12580654
2828.4183201
2961.82485227
2946.81228683
3131.3024569
3248.16509629
3425.26616777
3539.83822247
3600.0897725
3739.78666111
3695.3916215
3587.53050466
3579.24821547
3470.47390884
3456.01983503
3451.68376548
3367.08006425
3215.87206113
3333.284465
..
IRN
Iran, Islamic Rep.
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
1236.82350887
1327.65095023
1331.3426198
1416.9044338
1539.19571873
1564.403629
1557.42248801
1518.96570341
1710.79096914
2055.00706483
1978.10643972
2079.60063609
2111.11510671
2148.843046
2320.29908036
2524.81845245
2590.22754017
2736.97627194
2862.74582497
2951.304787
..
..
IRQ
Iraq
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
994.021148209
834.089559949
992.020071802
1092.38211786
1225.92647838
1241.83314756
1213.94541985
1118.39527155
1109.03052038
1045.74674306
1043.82681812
1121.48847305
1133.28040817
1210.59713279
1244.93589614
1216.59536294
1226.56392279
1128.74442016
1138.90431017
1034.86578994
..
..
ISL
Iceland
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
8196.54631083
7948.08527132
7791.27920337
8264.77634572
8209.08270677
8404.87313433
8838.02962963
8923.94852941
9409.61313869
10665.963964
11031.2064057
11362.3052632
11404.875
11305.9605348
11531.6871752
11729.2693119
13690.2153518
15709.1370689
16541.775095
16404.6920085
16876.026314
..
ISR
Israel
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
2462.52381974
2326.41200242
2582.81573297
2636.8639042
2740.5693647
2798.57060415
2803.60523542
2883.23029472
2887.95059454
2739.60538776
2901.71442201
2974.99534089
2922.80030441
2968.33535136
2891.64708474
2919.92510931
2964.01037753
2990.87756438
3052.84150613
2878.30193972
2873.33210923
..
ITA
Italy
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
2583.89901091
2645.66722429
2627.31206309
2611.9477414
2578.41587555
2799.32491411
2796.03357555
2834.21729608
2912.71702546
2957.04458153
3011.87553338
3021.06397429
3016.16618321
3114.72676251
3128.30892148
3137.38485387
3089.5060711
3016.31710795
2942.62189582
2735.04935765
2813.51418017
..
JAM
Jamaica
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
1167.19539749
1163.25235152
1217.43991304
1213.02184239
1227.4595439
1295.67741935
1349.19494599
1336.30829871
1376.38041974
1406.23973766
1481.55555796
1477.36172211
1378.26230448
1429.16250905
1437.34581707
1422.83315726
1583.81134768
1756.19440915
1591.11268235
1208.23601425
..
..
JOR
Jordan
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
1028.2170347
950.193229901
1013.67104206
961.220856216
991.423507696
1023.4135876
1018.74523849
1009.49998918
1012.54513421
991.464800769
1012.69431996
978.121809863
1002.89380707
1000.39891557
1174.07504726
1232.3960085
1236.47661188
1271.93341575
1220.26853292
1259.62789518
..
..
JPN
Japan
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
3556.14414305
3583.48175854
3658.547827
3674.05275583
3867.50050016
3956.0810354
4031.99138843
4064.21340936
3981.1432798
4045.35191473
4090.37645622
4017.15262409
4004.67398486
3963.4746551
4089.39036169
4073.74569745
4068.51785435
4031.99408315
3880.45101784
3700.21885267
3883.04655694
..
KAZ
Kazakhstan
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
4449.8430389
4529.09449561
4771.30421004
3997.10827895
3597.26979615
3286.51428303
2900.11758039
2562.56723489
2601.3088237
2399.14438067
2390.66958549
2319.13690195
2666.41009848
2879.88653043
3362.13247147
3349.79004794
4010.77424119
4268.82674924
4417.76122354
4134.06769231
..
..
KEN
Kenya
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
466.585593652
459.553563045
455.838254667
447.655645831
444.277116065
454.940617785
454.429027203
446.593928163
449.191804666
445.936981344
447.192414108
440.256612803
440.147134961
443.514169568
454.275316914
458.898317363
466.850504262
463.121037007
463.317028565
474.459905771
..
..
KGZ
Kyrgyz Republic
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
1692.55754013
1509.99221357
1095.32446106
851.933744222
615.47246696
519.437242641
592.05432682
548.837460317
575.535751511
495.928750565
488.742091022
445.230483571
499.809540976
533.501369428
537.606017277
516.836784291
518.931260954
564.063192481
518.335322761
565.746709326
..
..
KHM
Cambodia
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
301.986268887
303.695883133
310.285395672
318.365113404
318.129850642
319.605230165
329.103287232
334.411191959
340.845647681
350.410767472
356.073565454
365.058844838
373.363232695
375.678415794
370.748459193
..
..
KIR
Kiribati
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
99
..
..
..
..
..
..
..
..
..
..
..
..
..
88.4975331313
86.9678653737
106.912994205
115.737087424
..
..
..
..
KNA
St. Kitts and Nevis
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
514
..
..
..
..
..
..
..
..
..
..
..
..
..
1565.62223184
1606.57271267
1585.99506133
1645.03022495
..
..
..
..
KOR
Korea, Rep.
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
2171.42893466
2309.83271702
2540.15550924
2823.75998729
2971.52392414
3210.16006919
3454.73304778
3726.0826261
3377.52422927
3708.67078534
4000.91880106
4032.39200118
4170.09176431
4234.04160137
4334.04945981
4364.57779717
4421.05232209
4584.4984522
4669.00639826
4701.37639239
5043.80470588
..
KSV
Kosovo
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KWT
Kuwait
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
4363.75711493
1325.25686803
..
..
..
9135.87966418
8986.19757757
8803.94707686
9567.61352458
9749.45361797
9689.59741053
9985.80007444
9971.53466782
10344.7761082
10719.0531107
11660.1580202
10963.5793541
10780.6021526
10935.0650676
11402.0570717
..
..
LAC
Latin America & Caribbean
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
1048.41025107
1054.58625387
1065.06944971
1048.3361417
1089.79258811
1080.94929104
1111.20648973
1134.17106414
1150.47942401
1146.73075407
1139.25409938
1122.34042485
1122.57478122
1122.40151305
1166.72767343
1210.49433931
1237.7378652
1248.04619046
1281.42936377
1245.46598146
..
..
LAO
Lao PDR
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LBN
Lebanon
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
662.703010339
799.168291717
782.866916764
1080.46405332
1143.11429404
1273.25010237
1314.08137068
1459.88213546
1416.0562169
1462.97634737
1310.68299981
1381.89693505
1348.48303117
1325.3814522
1315.45491518
1236.59813149
1161.81158216
1013.93634434
1298.08599407
1580.31541652
..
..
LBR
Liberia
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LBY
Libya
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
2614.0337237
3068.81431788
2804.73196052
2929.8712725
3196.43144405
3307.5646559
3124.57921736
3176.10717347
3193.45406173
3043.68247894
3168.43379201
3186.47814768
3109.09993259
3124.97387685
3227.43519712
3042.88431184
2991.69270843
2959.05581439
3125.96127891
3258.21523003
..
..
LCA
St. Lucia
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
417
..
..
..
..
..
..
..
..
..
..
..
..
..
738.761589322
746.399985436
713.266761769
760.374959902
..
..
..
..
LIC
Low income
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
385.741584417
375.302024778
353.997774358
336.626147549
325.017581261
323.461968532
316.650067857
312.66919054
311.36077554
314.691829898
320.862515485
324.330303413
325.06998639
329.965040157
332.902495302
341.204335272
344.267731954
356.008211421
363.519809993
364.789256143
..
..
LIE
Liechtenstein
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LKA
Sri Lanka
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
318.173082292
319.19841376
323.873047059
337.930607046
321.570040885
326.354022475
366.426314608
377.920982977
382.484476714
406.260145695
444.200143355
425.412780627
428.477049556
448.222864675
448.633555601
453.612229808
452.794751489
456.881762964
438.309910144
449.04282916
..
..
LMC
Lower middle income
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
615.787495839
615.667428068
594.604938206
584.035894812
568.644709581
580.394037628
579.750639051
582.483580409
578.288390337
596.191605326
594.680568827
595.96419012
605.987806066
613.432987902
631.207042624
638.746608115
648.912379871
660.710471478
670.115264831
679.545009206
..
..
LMY
Low & middle income
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
968.405682994
955.87350713
922.288980238
908.003102169
884.761838026
896.273620788
901.531289147
893.416082994
884.548931339
893.955633341
894.774320667
892.12600454
913.403135204
956.479327473
1016.05496624
1050.15780421
1092.62340607
1123.24054247
1165.14079932
1173.01053458
..
..
LSO
Lesotho
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
13.6785138881
15.9748120781
9.1102585827
9.0212940524
..
..
..
..
LTU
Lithuania
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
4357.21660357
4560.49973002
2965.50540541
2454.0733098
2209.37178786
2408.68667401
2630.31733703
2508.43631285
2649.60421941
2262.78108185
2038.02132626
2336.08930248
2512.19923495
2627.86140371
2670.59845016
2521.21310815
2497.61761796
2740.80657231
2733.09401256
2511.66327689
..
..
LUX
Luxembourg
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
8931.85805945
9412.09043928
9342.61490406
9346.48468457
8912.46509896
7711.00642398
7732.63805903
7417.77089045
7067.87379327
7258.83733086
7519.86706395
7899.95583489
8116.65377935
8464.34692115
9291.75171089
9393.65763891
9137.12426238
8723.31888173
8564.44694567
7934.06966489
8312.66964658
..
LVA
Latvia
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
2940.94769162
2779.69947408
2319.73746201
2040.57076566
1873.70211931
1827.61153082
1810.94861501
1795.31387755
1783.95145228
1642.44016736
1565.80227656
1725.27002967
1706.00940975
1819.43602274
1879.81463314
1920.58333102
1987.35111113
2051.66205351
1978.59356231
1871.42689883
..
..
MAC
Macao SAR, China
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAF
St. Martin (French part)
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
280.099212686
289.795237339
302.956697252
309.488301032
327.926488109
319.067497011
332.12196578
337.945443529
340.250739566
358.369590599
355.583200165
374.194742843
375.898042268
369.987842924
403.683951866
430.082014057
433.676847474
462.742701435
478.012913386
476.801421131
..
..
MCO
Monaco
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MDA
Moldova
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
2669.41856061
2219.19427955
1838.61175519
1567.10283401
1289.18787223
1193.73137975
1256.39602285
1237.62431158
1103.98434504
883.455685071
782.169300481
859.964036503
823.092585575
915.917515969
931.700192068
983.611678074
941.704689975
932.948158519
882.205211216
686.944115764
..
..
MDG
Madagascar
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MDV
Maldives
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
231.904189107
..
..
..
..
..
..
..
..
..
..
..
..
..
859.141957744
762.091857472
961.862807637
985.046402604
..
..
..
..
MEX
Mexico
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
1452.94357849
1490.22393668
1478.04165993
1458.31631826
1480.39436096
1406.74264511
1415.43472099
1433.74288156
1456.60977704
1490.07477032
1451.82025249
1441.75855999
1468.15804092
1478.16354762
1512.30016264
1597.93340124
1589.5883646
1610.83826258
1636.92824867
1558.82051534
1497.34448591
..
MHL
Marshall Islands
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
558.035714286
557.295770317
574.602566558
609.674776611
..
..
..
..
MIC
Middle income
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
1025.465497
1012.98516326
979.265420254
965.90072182
942.06503759
957.052653296
964.133635207
956.06242049
946.831001176
957.351953898
958.037372167
955.193096118
979.269806184
1027.17599805
1094.04930903
1131.68393985
1179.27098923
1212.65720393
1258.77977857
1268.02817889
..
..
MKD
Macedonia, FYR
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
1297.68460835
1262.21230368
1396.13703396
1426.15731895
1266.56631902
1273.35898841
1444.6463077
1303.9388924
1448.68661175
1354.04496751
1331.13482665
1280.01984053
1251.39262853
1367.66841617
1358.15249978
1423.46606585
1426.3260912
1486.11568214
1467.46737188
1351.94521115
..
..
MLI
Mali
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MLT
Malta
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
1929.875
1849.81322542
1812.15016747
2295.9989003
2060.81971745
1876.20634921
1836.21052632
2046.30548303
1794.16363636
1941.31185567
1732.09487179
2001.33578269
1851.91264973
2071.49846205
2044.79799037
2131.80070177
2019.44351489
2120.81897079
1986.94016264
1934.7262213
..
..
MMR
Myanmar
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
271.363285769
262.97812732
267.25668476
261.376681573
273.892484233
279.312591479
275.800689635
277.737473522
281.447828505
277.573496652
278.04988071
268.188178763
278.282482438
297.34252326
315.761985913
344.713848068
331.794973951
331.954999577
330.989899221
316.422799056
..
..
MNA
Middle East & North Africa
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
812.367673684
840.202126072
850.535925447
884.596561963
917.852202493
938.284227104
936.2283894
931.898533548
994.562794156
1088.65928959
1064.75660906
1098.47175095
1124.89633128
1151.21811308
1204.73834793
1271.24262441
1299.49198481
1342.32695107
1388.74749343
1398.87315721
..
..
MNE
Montenegro
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1378.56428274
1554.84041756
1383.84169743
..
..
..
..
MNG
Mongolia
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
1558.187647
1717.34751304
1487.0380543
1379.51494252
1184.57592085
1172.67058983
980.217763288
952.21216754
951.150346762
943.680296308
980.382098302
970.770358778
1023.65655857
990.054229538
1008.38708241
1005.00326026
1108.9610753
1159.57956326
1160.23923757
1193.90269942
..
..
MNP
Northern Mariana Islands
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MOZ
Mozambique
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
437.144517385
425.053986242
416.920685448
409.736115234
399.143353
394.410326149
390.032031525
390.928626051
384.923761476
382.76641081
394.088927344
403.749123731
398.187741565
408.829081717
413.640041752
408.733446628
410.614001666
423.461049548
420.391395654
427.225727272
..
..
MRT
Mauritania
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MUS
Mauritius
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
454
..
..
..
..
..
..
..
..
..
..
..
..
..
826.180936057
866.275810314
936.162945027
947.098894893
..
..
..
..
MWI
Malawi
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MYS
Malaysia
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
1207.53681702
1376.55094615
1511.75257642
1622.19772407
1569.21599256
1791.05242507
1786.30869283
2023.6849631
1871.90266946
1784.99160694
2018.84487358
2083.49516564
2073.54853126
2202.85597265
2122.03973099
2396.60484361
2403.37046689
2570.24354092
2655.20713978
2390.97125358
..
..
MYT
Mayotte
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NAM
Namibia
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
444.796993723
465.20055219
493.902975184
523.589578923
550.281224112
576.307117976
571.778645928
577.191901159
538.385032366
537.363668539
592.759550072
592.144655337
620.872341464
684.488966344
692.522083453
725.878187698
746.511785173
836.263225872
763.804381471
..
..
NCL
New Caledonia
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NER
Niger
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NGA
Nigeria
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
723.534553454
738.498905488
754.580021374
749.646100274
712.907484337
727.197990145
735.170461541
731.358148653
697.267974245
724.179142394
726.142890073
733.856903928
744.818750894
740.457740654
740.595008903
745.219925372
733.489523039
720.661671199
735.88315007
700.711249733
..
..
NIC
Nicaragua
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
507.83185874
512.132226767
518.08691722
500.882356526
497.917898533
504.218639477
510.470374574
527.569749538
513.303240344
528.069184921
535.997961253
537.490227992
552.9255953
587.297625254
612.430853404
611.880606216
622.993934498
551.143726767
540.806735495
540.319566813
..
..
NIU
Niue
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NLD
Netherlands
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
4393.05972445
4602.5819509
4503.48965608
4511.78542838
4509.96854393
4576.17613195
4732.30695366
4580.54578074
4602.39189706
4521.1910155
4597.82833997
4712.29962521
4687.98228043
4807.93127918
4856.6389459
4829.93557301
4700.18324247
4843.79608802
4837.16689328
4729.1599568
5016.12662925
..
NOR
Norway
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
4951.67794412
5090.38106859
5143.51693729
5442.82142857
5296.1472121
5372.38600917
5181.74389409
5467.83088486
5661.7933213
5899.45672646
5759.53507014
5902.32151562
5490.42684002
5921.5541348
5757.98502148
5787.63915142
5817.36837803
5849.37376212
6249.36789723
5849.34390562
6332.36422366
..
NPL
Nepal
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
303.398594544
305.647081927
305.460622629
305.840802307
308.906459553
310.80073084
310.468653954
312.681971117
313.034728033
322.353329887
332.275149232
335.248971745
331.243846228
333.045193208
330.582316146
334.712939272
327.607844673
327.445797075
332.069300093
338.403593576
..
..
NRU
Nauru
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NZL
New Zealand
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
3719.64472158
3783.8253555
3827.67194269
3993.4796484
4025.55233281
4065.37322372
4172.06698821
4278.49394404
4162.55779817
4288.90120205
4359.97433771
4334.18425461
4346.8236039
4193.29906635
4134.8146789
4004.60751349
4025.86842231
3998.81370764
4042.53086275
4032.33676259
4192.8098814
..
OMN
Oman
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
2258.01488714
2999.85105611
2788.90476755
2882.21054435
2819.22176981
2891.09227614
2786.55616209
2981.70237493
3012.05451776
3131.41996231
3646.27105027
3775.27048212
3924.2246862
4085.54444476
4132.34589225
4482.94676704
5548.26348459
5764.81686031
6235.396932
5554.0604268
..
..
PAK
Pakistan
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
382.918413133
384.025361654
397.340959289
407.504822258
413.453156265
420.710481942
429.177131736
428.276140785
425.296997156
437.342761437
439.550785391
438.643521828
435.506835502
448.607405667
471.936345773
480.155288147
492.510073039
512.018035436
494.354537431
501.599568976
..
..
PAN
Panama
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
603.405485102
637.167929871
717.005858528
713.370422373
734.778602182
725.218029934
759.582343266
784.155440459
881.043908506
857.964241029
853.031974956
894.030972886
808.923917354
795.23158213
777.810531781
785.632431127
853.50740898
806.591093789
822.579096882
895.515787424
..
..
PER
Peru
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
448.882819918
431.642073197
411.761351733
431.405721678
438.792322322
460.448816336
465.993455889
443.416513711
458.755317568
481.07415889
472.574449034
449.707861066
446.71377509
432.331481001
472.6437267
495.152341529
475.394172915
508.911961403
528.515770006
550.339678254
..
..
PHL
Philippines
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
468.805053518
457.326930947
467.304719474
456.887139477
478.104850013
490.675555545
497.199964327
511.849302879
514.255443732
515.98837192
522.876992636
491.081885025
487.420665174
478.591340631
466.456412188
457.977631257
445.942632419
430.245144106
439.214697849
423.568028078
..
..
PLW
Palau
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
4868.62456094
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PNG
Papua New Guinea
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
POL
Poland
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
2704.82239735
2641.04820575
2569.04367817
2624.71179698
2495.78059652
2577.81160269
2679.4534673
2641.68271669
2469.59607688
2405.37120389
2317.48390671
2346.06781267
2324.20188309
2384.658249
2393.02678613
2420.42884604
2544.04126114
2536.84305792
2567.37784551
2463.51837431
2663.43968475
..
PRI
Puerto Rico
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRK
Korea, Dem. Rep.
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
1649.29207914
1549.08077619
1332.08283558
1205.42829594
1085.56649315
1009.83243778
877.121051407
826.568919592
763.977850893
814.501146631
864.193321466
887.329818863
845.544831765
859.014530722
872.982398091
902.954151196
906.765570472
765.848546142
839.779479091
794.957409961
..
..
PRT
Portugal
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
1691.52233226
1705.67871163
1809.08672087
1780.86885903
1823.43128626
2015.69891294
1993.50711089
2092.90613539
2254.87530852
2409.4740515
2412.80478193
2410.8184602
2490.62194052
2406.71520892
2459.61814783
2508.87470254
2333.47659524
2385.06400863
2299.87941535
2266.25523561
2210.03762059
..
PRY
Paraguay
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
723.893342382
728.514437694
707.188036141
716.983222957
765.212834982
818.623399887
818.74560411
871.045237454
841.314194826
785.919675024
720.545316503
718.504906837
698.155285389
698.534503081
692.058665564
696.780469245
699.041723051
707.559776085
719.666748097
749.368958033
..
..
PYF
French Polynesia
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
QAT
Qatar
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
13098.3657082
14289.6965581
14818.9732161
15311.7659029
15312.8637963
15937.7088025
16411.3230892
18343.7546687
18628.306136
19224.4160949
18029.4234606
19906.0795287
19889.0756249
20818.0198929
23599.0846624
20550.7889294
19244.3087038
19240.1654399
16513.3346704
14911.1471337
..
..
ROM
Romania
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
2682.5543586
2214.16734958
2052.10215455
1996.1628653
1883.83850249
2040.62620696
2098.85637827
1978.36960184
1806.01573124
1607.41827609
1612.39856525
1654.81357311
1739.56627968
1806.31282853
1783.76505484
1767.37012599
1841.86169084
1830.62437877
1832.17381992
1601.7557121
..
..
RUS
Russian Federation
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
5928.79274674
5861.24852648
5351.21632401
5057.92045516
4428.88942671
4297.57024051
4264.84834742
4086.63690735
4002.40729345
4162.33817469
4232.75414038
4289.24964061
4288.36168014
4462.82985523
4500.47947352
4552.64845966
4706.47578246
4733.22084448
4850.1775907
4560.55682059
..
..
RWA
Rwanda
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SAS
South Asia
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
347.630308008
353.145833508
360.917828809
363.740666436
370.429026515
383.303872483
389.041150045
396.20049967
398.450936814
414.533205401
416.879262299
417.345437995
421.208845867
426.765676917
445.164089283
455.319098359
470.846685142
489.837136634
498.123530147
531.979179609
..
..
SAU
Saudi Arabia
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
3702.78522538
4175.0016377
4609.37996954
4579.61251649
4774.99635859
4734.28892574
4954.28602941
4690.48552996
4922.25163371
4935.51008909
5054.79729987
5157.09784399
5449.04816049
5434.78121681
6190.53697748
6053.80532251
6379.73508752
5650.42697321
5888.24579267
5888.09868886
..
..
SDN
Sudan
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
401.197259669
390.570610864
380.455429181
359.897781083
406.388807657
397.434278131
396.785461669
394.804931658
389.133556867
421.488940483
395.706950877
400.304477708
423.408656049
419.604980789
413.843165706
393.501303816
398.777191825
375.487765716
355.637457413
372.314985514
..
..
SEN
Senegal
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
232.877028237
224.297925623
231.435672223
223.998620355
216.245576031
222.823174466
222.287814014
229.795425803
236.665206848
243.317447614
252.247507906
265.578053787
262.556925467
248.241689904
258.52616064
256.707102378
246.488466097
245.93458578
242.538064632
242.76424987
..
..
SGP
Singapore
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
3759.83918608
4102.86944595
4525.8810784
5426.36064584
6401.25446037
5289.07164137
5366.21216662
5930.93651212
5034.49837034
4634.33223028
4778.24672906
5299.04035766
5049.72988506
3737.43170993
4659.99184007
4363.1632988
4377.67664834
3410.98962647
3451.89135017
3704.39189189
..
..
SID
Small island developing states
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
1289.33643157
..
..
..
..
..
..
..
..
..
..
..
..
..
1394.60401377
1418.42995453
1490.21431328
1416.35879127
..
..
..
..
SLB
Solomon Islands
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
172.236993865
..
..
..
..
..
..
..
..
..
..
..
..
..
126.93715954
123.455476208
122.15320911
128.904912486
..
..
..
..
SLE
Sierra Leone
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLV
El Salvador
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
462.925959554
501.618707661
515.290837174
534.296362477
557.90297008
585.833783473
554.277262349
608.406119913
621.723493165
643.507276318
667.273818432
695.482940322
706.489209755
735.316482936
726.890229419
747.886170974
779.662545989
824.27615218
833.341436055
828.212445801
..
..
SMR
San Marino
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SOM
Somalia
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SRB
Serbia
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
2550.4854996
2169.58237599
1953.61822959
1647.42299175
1507.23073614
1755.20926788
2091.29779602
2234.45072767
2235.67786705
1628.95448133
1771.19241184
1937.60082885
2056.13896796
2155.55642596
2356.53397081
2155.66106138
2302.39157188
2244.62557401
2299.23766918
1973.78540371
..
..
SSA
Sub-Saharan Africa
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
681.23135387
690.425638984
668.671521797
672.595267185
665.36113777
673.537368365
672.432494058
669.966192373
650.955795264
665.255081511
660.671854475
660.1420474
656.312717687
665.70289589
679.298627486
673.247930073
669.079477431
687.039367275
709.530396502
688.88015532
..
..
STP
Sao Tome and Principe
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
202
..
..
..
..
..
..
..
..
..
..
..
..
..
252.809175643
281.741819659
283.925921146
279.611847917
..
..
..
..
SUR
Suriname
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
1366.47589766
..
..
..
..
..
..
..
..
..
..
..
..
..
1346.21154985
1393.96828322
1414.10500423
1399.6267662
..
..
..
..
SVK
Slovak Republic
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
4036.99753928
3620.4366837
3409.76877414
3335.23588626
3260.04095525
3314.51042158
3363.45817563
3361.67782446
3256.24928464
3271.96269218
3292.63053193
3456.68669629
3482.49097983
3464.73543513
3409.80184073
3495.53657035
3457.42977392
3306.94670946
3385.48847285
3086.14565782
3177.8378255
..
SVN
Slovenia
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
2857.65176918
2775.79757206
2583.91816087
2749.63595688
2828.6942531
3049.19045226
3174.92265193
3310.23799117
3252.21527287
3238.4774616
3224.25791855
3379.34287149
3425.36308927
3463.39350863
3570.04322573
3645.45852633
3648.40188792
3626.92542869
3826.94640521
3416.62838431
3455.29785597
..
SWE
Sweden
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
5514.44374343
5650.75753708
5369.62644209
5334.06991948
5660.13620782
5699.54965463
5823.67262241
5669.87086297
5769.1487607
5661.82276966
5362.02412899
5681.53226895
5802.73296728
5651.84435016
5848.34364881
5714.62837044
5529.07795326
5472.13539173
5379.95910251
4883.39353112
5413.90777127
..
SWZ
Swaziland
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
357.842051536
..
..
..
..
..
..
..
..
..
..
..
..
..
370.611426699
361.115711792
363.277153625
373.342794881
..
..
..
..
SXM
Sint Maarten (Dutch part)
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
537
..
..
..
..
..
..
..
..
..
..
..
..
..
3103.03030303
2750.30156815
2872.34042553
2410.82873708
..
..
..
..
SYR
Syrian Arab Republic
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
849.173036021
898.502251701
835.049435359
815.813377371
828.373299856
857.274190555
887.272078085
966.589425317
1049.91058085
1016.32927034
997.578076889
958.647398354
995.05668777
956.046344836
1017.01785363
1157.22499559
1191.22677982
1283.12930375
1291.49457116
1122.97173597
..
..
TCA
Turks and Caicos Islands
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TCD
Chad
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TGO
Togo
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
344.628808714
345.229004069
342.608455888
337.611449361
373.627474513
383.370228115
417.268786986
397.952659122
411.118417003
454.815928772
440.33258343
427.463723133
431.926546436
445.386607848
440.035338569
438.560596031
428.192476258
434.839940695
443.614905527
445.045874529
..
..
THA
Thailand
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
734.97137601
789.121942883
833.390561521
870.198155391
931.515226034
1037.92915415
1148.7913503
1156.91974786
1071.88027035
1130.62071423
1145.90883966
1188.30569782
1255.51584287
1342.02998711
1432.77189295
1439.56680394
1459.39901377
1507.55012235
1557.1677657
1503.73709056
..
..
TJK
Tajikistan
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
1000.86703153
935.769365273
750.709047855
576.426883256
435.473383411
385.268112845
366.573816441
360.125284663
373.418544726
366.689339328
348.085077016
340.515102316
338.677487655
342.394271867
367.651053337
364.107332131
372.70979491
393.936429903
372.746216944
341.783385593
..
..
TKM
Turkmenistan
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
5351.81079607
4496.4748764
2917.85826434
2685.71440739
3302.99093251
3318.50735791
2856.9017431
2822.78330375
2749.23901546
3215.35154976
3222.68222532
3322.09352166
3340.98049757
3694.53530962
3761.45441198
3898.7884804
3933.70675909
4512.14064748
4570.4914773
3932.75119325
..
..
TMP
Timor-Leste
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
59.5467873482
57.404883572
56.8087720447
57.5053970229
..
..
..
..
TON
Tonga
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
266.374818707
..
..
..
..
..
..
..
..
..
..
..
..
..
568.374449076
564.770227692
561.11198614
567.214974475
..
..
..
..
TTO
Trinidad and Tobago
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
4911.78401539
4846.82736048
5288.53911601
5020.58958338
5012.0933759
4861.62989529
5718.86927622
5140.59319775
6199.5292634
7025.89692362
8248.12353625
8868.12026875
9445.70351635
10407.9751008
10760.58238
12744.2051231
14812.5866203
15211.2762433
14520.0069119
15158.1899638
..
..
TUN
Tunisia
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
606.526169921
588.829073598
641.563976019
612.499249197
650.117067859
647.984705554
667.496176823
679.072381986
730.761895578
745.558540171
763.936843206
797.738173999
799.385804394
816.425028964
852.316660626
820.652607438
841.348453283
864.158785733
889.445536311
881.261925744
..
..
TUR
Turkey
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
974.6125772
945.887386851
958.422169035
998.784796092
970.446151305
1045.53612475
1118.91321949
1159.54925518
1160.9787098
1122.55977642
1199.91793847
1090.73971343
1134.48803303
1173.25755558
1202.59684975
1238.26163631
1347.0927018
1428.79111458
1388.84019495
1359.3017959
1440.49712501
..
TUV
Tuvalu
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TZA
Tanzania
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
381.998823422
377.208053119
369.464470394
367.058825201
361.93652932
368.082108135
362.473632089
356.613874517
368.436142378
384.102534829
393.38035918
406.944161671
416.599553467
421.197473184
428.442907241
441.921335889
446.872951792
446.449264802
448.495536789
450.686388968
..
..
UGA
Uganda
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
UKR
Ukraine
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
4851.53796346
4852.6868751
4210.40080836
3727.67889958
3192.73704593
3180.07129237
2941.6424601
2837.78151515
2706.20430613
2719.0644485
2720.69408895
2754.51193455
2813.14942171
3024.62661266
3031.94604608
3033.34474044
2935.20868176
2952.98999018
2941.10920875
2507.35771378
..
..
UMC
Upper middle income
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
1375.02328078
1353.444864
1311.32309155
1298.08037557
1269.26230274
1289.45300615
1305.79288949
1290.47490247
1279.12684071
1285.47761212
1290.67623763
1286.70040167
1326.60743869
1415.36008232
1533.16951798
1602.96815288
1690.51390758
1749.0800228
1834.06633748
1847.94374431
..
..
URY
Uruguay
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
724.047818001
779.642558301
855.394838764
792.441065333
751.444689349
797.91406654
876.272311129
884.645028571
905.6392948
984.000622353
936.695526308
819.613926626
767.134210708
763.719624908
866.510970606
891.770423596
958.122062498
951.66499895
1243.15037678
1223.72851156
..
..
USA
United States
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
7671.55403949
7631.52136326
7677.39454377
7709.83552568
7757.13975814
7763.36514845
7844.01462913
7828.53525858
7803.65462165
7923.24722979
8056.54596133
7825.17624403
7838.51960014
7788.31828703
7875.27962163
7840.53281624
7691.69468139
7749.23312222
7481.0165848
7045.16557603
7231.80381766
..
UZB
Uzbekistan
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
2260.60511945
2294.66227568
2110.33302252
2141.76925531
2077.72753273
1868.41869651
1898.63134553
1895.06439346
2072.31819883
2097.69672131
2058.45918864
2044.88336604
2104.35754477
2005.72992487
1928.83360927
1794.25203199
1844.51536295
1812.60021289
1848.91805211
1757.79811359
..
..
VCT
St. Vincent and the Grenadines
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
273.933698778
..
..
..
..
..
..
..
..
..
..
..
..
..
607.925133099
616.063629258
642.685322903
641.848523748
..
..
..
..
VEN
Venezuela, RB
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
2204.57362025
2249.0032183
2444.94665763
2240.35230339
2520.73344762
2339.87501701
2456.17118478
2401.32013589
2472.43988383
2294.68739263
2321.04911357
2336.85855037
2280.16582078
2058.99489756
2159.4646917
2503.19731347
2578.08608635
2334.58388822
2357.00812601
2356.90780017
..
..
VIR
Virgin Islands (U.S.)
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VNM
Vietnam
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
368.055885859
367.582224906
374.947531121
388.510679235
398.925724855
416.447486301
439.295744614
457.202413235
473.116611867
465.71016767
475.627346843
495.125259155
528.335338646
543.551667487
609.997298548
618.408600193
629.086529113
665.05828112
694.872260266
744.529564799
..
..
VUT
Vanuatu
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
158.992634824
..
..
..
..
..
..
..
..
..
..
..
..
..
145.942080453
142.065634323
143.015316479
157.390377602
..
..
..
..
WBG
West Bank and Gaza
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
WLD
World
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
1669.28327543
1659.26164577
1630.98778077
1621.84159968
1608.86668808
1626.01291126
1646.28920945
1636.0971164
1623.01958077
1637.83541097
1648.95071909
1637.83090325
1653.5198155
1690.76176693
1750.25722091
1774.21896754
1801.2379524
1822.10240964
1840.10374777
1802.57324877
..
..
WSM
Samoa
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
268.036551194
..
..
..
..
..
..
..
..
..
..
..
..
..
311.63222945
316.250270477
315.324784528
319.952338134
..
..
..
..
YEM
Yemen, Rep.
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
210.361569671
243.922721059
253.28531988
208.533583469
207.796342464
225.592632563
222.095234749
228.478287154
236.962047276
259.823433707
267.466695886
288.235283812
270.828537594
291.538339141
308.706725323
319.065131786
322.884554589
325.32543187
320.226397299
324.079931708
..
..
ZAF
South Africa
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
2666.93940341
2723.3383943
2517.50357476
2673.19416849
2715.46710918
2783.81518405
2753.35200123
2760.78358415
2635.68711456
2663.46081267
2599.83381818
2558.94599073
2468.93734369
2618.47795715
2816.51779669
2761.95954576
2738.41792283
2876.94661295
3074.59744961
2920.53878587
..
..
ZAR
Congo, Dem. Rep.
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
324.074706343
318.105334998
310.785550456
303.726197413
293.671921759
296.809755082
297.779918017
295.954406075
296.673040823
295.731841406
336.110804373
338.191582631
339.932524856
342.074812224
344.966759415
347.799293779
350.530692015
353.058813511
356.023405303
356.99882363
..
..
ZMB
Zambia
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
686.915215457
689.750162742
684.750482865
670.234409011
659.1304856
653.402629039
630.694228105
639.859441162
628.578655488
613.08411215
612.382691984
615.758924193
620.532098511
624.276747465
625.212934251
628.278282885
628.740679339
612.264860248
614.851741719
617.465563993
..
..
ZWE
Zimbabwe
EG.USE.PCAP.KG.OE
Energy use per capita (kilograms of oil equivalent)
0
0
888.058612299
916.824514582
924.668239792
865.806570151
842.735821289
842.224866327
824.111934029
802.734269478
809.674595991
853.538538082
790.318572071
772.110570047
770.137925034
754.592262115
737.199450352
771.888503141
770.383701706
767.566296471
763.43694914
762.668999627
..
..
ABW
Aruba
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
1840.834
1928.842
1723.49
1771.161
1763.827
1785.829
1811.498
1851.835
1668.485
1686.82
2233.203
2236.87
2255.205
2255.205
2258.872
2273.54
2273.54
2357.881
2288.208
..
..
..
ADO
Andorra
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
..
..
..
407.037
425.372
458.375
484.044
513.38
524.381
524.381
531.715
535.382
564.718
575.719
546.383
539.049
539.049
..
..
..
AFG
Afghanistan
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
2676.91
2493.56
1426.463
1375.125
1320.12
1268.782
1199.109
1114.768
1056.096
832.409
781.071
645.392
359.366
583.053
704.064
700.397
696.73
715.065
814.074
..
..
..
AGO
Angola
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
4429.736
4367.397
4418.735
5801.194
3890.687
11012.001
10491.287
7381.671
7308.331
9156.499
9541.534
9732.218
12665.818
9064.824
18793.375
19156.408
22266.024
25151.953
24370.882
..
..
..
ALB
Albania
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
7488.014
3971.361
2387.217
2343.213
1928.842
2086.523
2016.85
1543.807
1752.826
2992.272
3028.942
3230.627
3751.341
4290.39
4004.364
4602.085
4231.718
4481.074
4176.713
..
..
..
ARE
United Arab Emirates
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
52009.061
57010.849
58136.618
65980.331
73130.981
70641.088
41059.399
41646.119
81495.408
78374.791
112562.232
101333.878
84300.663
106365.002
112877.594
115627.844
122752.825
137981.876
155066.429
..
..
..
ARG
Argentina
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
112613.57
117021.304
121447.373
118609.115
123350.546
122547.473
129217.746
134677.909
137673.848
145488.225
141076.824
140471.769
131406.945
142349.273
155000.423
158924.113
175528.289
183727.701
192378.154
..
..
..
ARM
Armenia
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
3681.668
2929.933
2966.603
3490.984
2607.237
3278.298
3406.643
3058.278
3465.315
3542.322
3003.273
3428.645
3644.998
4349.062
4378.398
5056.793
5548.171
..
..
..
ASM
American Samoa
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ATG
Antigua and Barbuda
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
300.694
293.36
293.36
308.028
311.695
322.696
322.696
337.364
333.697
348.365
344.698
344.698
363.033
388.702
407.037
410.704
425.372
436.373
447.374
..
..
..
AUS
Australia
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
287331.452
281530.258
294456.433
302116.796
303957.63
307433.946
329259.93
333623.66
346912.868
325523.257
329604.628
324859.53
341397.7
346476.495
349223.078
367393.063
377381.971
380814.283
399218.956
..
..
..
AUT
Austria
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
60960.208
65888.656
60531.169
58213.625
57586.568
60622.844
61055.55
61359.911
63549.11
61755.947
61788.95
63637.118
65118.586
72316.907
72118.889
74385.095
72126.223
68807.588
67725.823
..
..
..
AZE
Azerbaijan
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
44172.682
43285.268
42383.186
33586.053
31565.536
29966.724
31594.872
29299.33
30546.11
29438.676
30007.061
31162.166
32262.266
34491.802
39317.574
42236.506
47139.285
..
..
..
BDI
Burundi
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
304.361
344.698
319.029
337.364
341.031
333.697
330.03
315.362
300.694
293.36
300.694
216.353
220.02
165.015
161.348
165.015
198.018
183.35
179.683
..
..
..
BEL
Belgium
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
108469.86
117578.688
114373.73
108924.568
113306.633
112976.603
119624.874
116295.238
119184.834
115844.197
115712.185
114766.099
107531.108
114835.772
111282.449
107116.737
106816.043
102529.32
104879.867
..
..
..
BEN
Benin
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
715.065
828.742
905.749
1133.103
1265.115
1327.454
1265.115
1217.444
1213.777
1562.142
1617.147
1738.158
2053.52
2321.211
2398.218
2566.9
3729.339
3879.686
4066.703
..
..
..
BFA
Burkina Faso
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
586.72
627.057
630.724
627.057
645.392
627.057
707.731
806.74
861.745
931.418
1041.428
997.424
1004.758
1078.098
1103.767
1125.769
1360.457
1646.483
1855.502
..
..
..
BGD
Bangladesh
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
15533.412
15940.449
17748.28
17407.249
18969.391
22816.074
24029.851
25063.945
24040.852
25232.627
27865.533
32449.283
33699.73
33824.408
39735.612
37652.756
46644.24
46930.266
46526.896
..
..
..
BGR
Bulgaria
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
77729.399
59706.094
53600.539
69328.302
55848.41
59805.103
56691.82
53681.213
50993.302
43981.998
43530.957
46453.556
44634.724
47307.967
46787.253
47909.355
48943.449
52812.134
50538.594
..
..
..
BHR
Bahrain
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
11884.747
11503.379
10590.296
15141.043
15254.72
16021.123
15621.42
17319.241
18404.673
18019.638
18643.028
13927.266
15698.427
16468.497
17275.237
18595.357
20186.835
21481.286
22478.71
..
..
..
BHS
Bahamas, The
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
1950.844
1782.162
1793.163
1716.156
1719.823
1730.824
1730.824
1741.825
1793.163
1796.83
1796.83
1796.83
2082.856
1870.17
2009.516
2108.525
2137.861
2148.862
2156.196
..
..
..
BIH
Bosnia and Herzegovina
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
3938.358
3270.964
3630.33
3542.322
5368.488
12500.803
16226.475
18771.373
23252.447
20722.217
22944.419
23263.448
24634.906
25632.33
27469.497
28987.635
31275.843
..
..
..
BLR
Belarus
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
87487.286
74451.101
65914.325
62118.98
60157.135
59519.077
57597.569
55819.074
53468.527
52595.781
52390.429
53721.55
58220.959
59042.367
61807.285
60256.144
62815.71
..
..
..
BLZ
Belize
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
311.695
359.366
355.699
377.701
374.034
377.701
308.028
388.702
370.367
601.388
689.396
711.398
359.366
374.034
381.368
396.036
407.037
425.372
425.372
..
..
..
BMU
Bermuda
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
597.721
509.713
407.037
480.377
473.043
465.709
476.71
476.71
462.042
495.045
495.045
495.045
524.381
509.713
671.061
443.707
520.714
517.047
388.702
..
..
..
BOL
Bolivia
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
5504.167
5779.192
6648.271
8038.064
8907.143
9424.19
8734.794
9842.228
10326.272
9768.888
9519.532
8830.136
8346.092
11521.714
10626.966
10293.269
10465.618
13054.52
12834.5
..
..
..
BRA
Brazil
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
208886.988
219330.604
220705.729
230738.641
242154.012
275564.049
301244.05
321199.864
314012.544
322068.943
330125.342
339894.23
335185.802
324753.187
341166.679
349967.479
352541.713
368368.485
393219.744
..
..
..
BRB
Barbados
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
1074.431
1206.443
979.089
1114.768
748.068
828.742
850.744
902.082
1140.437
1210.11
1188.108
1221.111
1228.445
1268.782
1294.451
1353.123
1371.458
1349.456
1353.123
..
..
..
BRN
Brunei Darussalam
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
6420.917
5815.862
5808.528
5588.508
5408.825
5515.168
5595.842
5812.195
5984.544
4598.418
6527.26
6197.23
5320.817
5357.487
5361.154
5126.466
4822.105
9559.869
10593.963
..
..
..
BTN
Bhutan
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
128.345
187.017
216.353
187.017
212.686
249.356
304.361
396.036
385.035
385.035
399.703
414.371
513.38
465.709
469.376
682.062
421.705
579.386
733.4
..
..
..
BWA
Botswana
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
2178.198
2148.862
3296.633
3509.319
3509.319
3523.987
3138.952
3212.292
3832.015
3545.989
4275.722
4334.394
4484.741
4264.721
4378.398
4525.078
4459.072
4638.755
4840.44
..
..
..
CAF
Central African Republic
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
198.018
205.352
216.353
223.687
234.688
234.688
234.688
245.689
249.356
264.024
267.691
245.689
245.689
234.688
234.688
234.688
249.356
253.023
260.357
..
..
..
CAN
Canada
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
450076.579
449053.486
467648.843
477920.11
454491.647
459790.462
467883.531
483233.593
478880.864
477868.772
537402.517
527131.25
521832.435
553478.645
555865.862
562796.492
548704.211
544171.799
544091.125
..
..
..
CHE
Switzerland
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
42966.239
42350.183
43325.605
41022.729
41470.103
39387.247
40025.305
41580.113
41913.81
40700.033
39093.887
42999.242
40769.706
40241.658
40443.343
41374.761
41877.14
38019.456
40392.005
..
..
..
CHI
Channel Islands
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHL
Chile
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
34902.506
32991.999
34117.768
36288.632
40146.316
43611.631
49526.502
57054.853
58987.362
62225.323
60094.796
54018.577
56072.097
56409.461
62434.342
63805.8
65697.972
70098.372
73108.979
..
..
..
CHN
China
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
2460744.017
2584538.27
2695982.067
2878694.009
3058241.33
3320285.15
3463089.131
3469510.048
3324344.519
3318055.614
3405179.867
3487566.356
3694242.143
4525177.009
5288166.032
5790016.984
6414463.08
6791804.714
7031916.207
..
..
..
CIV
Cote d'Ivoire
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
5797.527
5636.179
4624.087
5892.869
5251.144
7132.315
8379.095
8173.743
6912.295
6266.903
6791.284
7726.369
7286.329
5460.163
7664.03
7825.378
7139.649
6384.247
7014.971
..
..
..
CMR
Cameroon
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
1738.158
1111.101
3795.345
3898.021
3817.347
4363.73
4602.085
3215.959
3208.625
3080.28
3432.312
3421.311
3417.644
3795.345
3956.693
3696.336
4264.721
6167.894
5302.482
..
..
..
COG
Congo, Rep.
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
1188.108
1265.115
1573.143
1543.807
2148.862
1565.809
1716.156
2343.213
777.404
821.408
1048.762
861.745
707.731
1085.432
1903.173
1606.146
1463.133
1591.478
1936.176
..
..
..
COK
Cook Islands
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
22.002
22.002
22.002
22.002
22.002
22.002
22.002
22.002
22.002
29.336
29.336
33.003
29.336
33.003
55.005
62.339
66.006
66.006
69.673
..
..
..
COL
Colombia
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
57337.212
57120.859
62049.307
64022.153
67571.809
59610.752
60523.835
64905.9
65976.664
56512.137
57923.932
56273.782
55661.393
57421.553
53772.888
59178.046
61561.596
63439.1
67700.154
..
..
..
COM
Comoros
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
77.007
77.007
77.007
77.007
77.007
80.674
66.006
66.006
73.34
80.674
84.341
88.008
91.675
99.009
102.676
110.01
121.011
121.011
124.678
..
..
..
CPV
Cape Verde
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
88.008
91.675
102.676
102.676
110.01
113.677
139.346
143.013
154.014
172.349
187.017
209.019
245.689
253.023
264.024
293.36
308.028
311.695
308.028
..
..
..
CRI
Costa Rica
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
2955.602
3336.97
3791.678
3953.026
5269.479
4866.109
4748.765
4987.12
5317.15
5522.502
5474.831
5760.857
6325.575
6626.269
6930.63
6941.631
7436.676
8118.738
8016.062
..
..
..
CUB
Cuba
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
33340.364
29633.027
31338.182
29347.001
32199.927
25657.999
26959.784
24605.57
24444.222
25276.631
26039.367
25452.647
26090.705
25485.65
23985.847
24634.906
27168.803
26838.773
31418.856
..
..
..
CUW
Curacao
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
253.023
275.025
278.692
289.693
289.693
289.693
286.026
286.026
286.026
282.359
454.708
454.708
469.376
480.377
495.045
517.047
535.382
539.049
557.384
..
..
..
CYP
Cyprus
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
4653.423
4741.431
5276.813
5665.515
5812.195
5716.853
5936.873
6109.222
6640.937
6754.614
6849.956
6846.289
7022.305
7748.371
7334
7502.682
7788.708
8195.745
8555.111
..
..
..
CZE
Czech Republic
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
139503.681
131964.329
127688.607
129470.769
132558.383
130090.492
125525.077
111931.508
124648.664
124406.642
120193.259
122378.791
122708.821
120735.975
122785.828
123944.6
116995.635
..
..
..
DEU
Germany
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
55.005
960992.355
928326.719
911425.516
903622.14
901524.616
924014.327
900318.173
895532.738
824466.278
832100.972
855756.789
830909.197
835657.962
828521.98
809596.593
811881.134
787235.227
786659.508
..
..
..
DJI
Djibouti
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
399.703
399.703
414.371
429.039
429.039
429.039
436.373
440.04
410.704
443.707
403.37
385.035
399.703
407.037
458.375
473.043
487.711
487.711
524.381
..
..
..
DMA
Dominica
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
58.672
58.672
58.672
62.339
69.673
80.674
73.34
80.674
77.007
80.674
102.676
113.677
102.676
113.677
110.01
113.677
110.01
150.347
128.345
..
..
..
DNK
Denmark
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
50421.25
61433.251
54528.29
57337.212
61194.896
55298.36
68704.912
57065.854
56068.43
50930.963
47252.962
49035.124
51899.051
55947.419
50476.255
46867.927
54418.28
49695.184
46024.517
..
..
..
DOM
Dominican Republic
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
9570.87
10135.588
11206.352
11939.752
12676.819
16105.464
17546.595
18239.658
18683.365
18870.382
20117.162
20234.506
21499.621
21521.623
19999.818
19761.463
20813.892
21363.942
21616.965
..
..
..
DZA
Algeria
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
78895.505
81458.738
82261.811
82474.497
86350.516
94692.941
96566.778
88195.017
107080.067
92118.707
87930.993
84293.329
90853.592
92533.078
89493.135
107127.738
107303.754
112741.915
111304.451
..
..
..
EAP
East Asia & Pacific
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
3093880.1647
3289803.57662
3450812.99626
3688790.23116
3894961.09794
4222032.11958
4424809.18194
4464694.63907
4048977.44598
4078685.15884
4227383.1517
4375765.61674
4615783.23364
5508464.62684
6353836.84492
6892794.56142
7491421.64003
7938274.13422
8259297.79713
..
..
..
ECA
Europe & Central Asia
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
3885852.6076
3544417.82862
3095729.97347
3001413.43267
2929376.06845
2743439.33467
2665719.98302
2654211.36226
2696711.29309
2697657.0547
2705846.23764
2813025.13642
2847614.0495
2873631.76612
2983959.15581
3050860.8156
3110254.40772
..
..
..
ECU
Ecuador
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
16835.197
16486.832
22302.694
24187.532
13637.573
22812.407
23890.505
18276.328
22229.354
21272.267
20942.237
23446.798
24689.911
26523.411
28657.605
29299.33
29842.046
30898.142
26824.105
..
..
..
EGY
Egypt, Arab Rep.
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
75943.57
78715.822
81264.387
93156.468
85312.755
95723.368
102030.608
108202.169
122243.112
125393.065
141326.18
125451.737
127193.562
158880.109
160581.597
174640.875
187504.711
199220.776
210320.785
..
..
..
EMU
Euro area
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
1649668.4264
2718904.68792
2655681.737
2587669.888
2581736.682
2647915.031
2703605.76
2661160.235
2712190.207
2589925.093
2612638.491
2677408.712
2674075.409
2735824.022
2752241.181
2735853.358
2717613.7
2684247.667
2633269.033
..
..
..
ERI
Eritrea
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
..
..
183.35
297.027
348.365
528.048
590.387
619.723
608.722
630.724
605.055
726.066
770.07
766.403
561.051
579.386
414.371
..
..
..
ESP
Spain
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
227592.355
235080.369
245098.613
226954.297
244658.573
257229.049
254328.452
264460.373
274683.969
282384.669
294441.765
297833.74
314525.924
321097.188
339428.521
353462.13
350037.152
358236.564
329285.599
..
..
..
EST
Estonia
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
23028.76
18628.36
18661.363
16754.523
18808.043
18613.692
17143.225
15474.74
15559.081
15984.453
15471.073
17553.929
17839.955
17462.254
16945.207
19952.147
18290.996
..
..
..
ETH
Ethiopia
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
3017.941
2984.938
2966.603
5163.136
3003.273
2152.529
3729.339
4275.722
5027.457
5075.128
5830.53
4308.725
4481.074
4946.783
5196.139
5489.499
5995.545
6560.263
7106.646
..
..
..
FIN
Finland
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
50941.964
54891.323
49126.799
51935.721
59412.734
52328.09
61385.58
60083.795
56988.847
55423.038
52141.073
56424.129
61077.552
68888.262
66970.421
54605.297
66075.673
63923.144
56512.137
..
..
..
FJI
Fiji
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
817.741
674.728
733.4
773.737
828.742
887.414
920.417
759.069
729.733
832.409
861.745
1122.102
858.078
1657.484
1888.505
1635.482
1565.809
1459.466
1254.114
..
..
..
FRA
France
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
399028.272
427667.542
397037.091
389105.37
369457.584
393289.417
408126.099
379486.829
409094.187
371309.419
365559.563
385808.737
380447.583
387147.192
389706.758
391826.284
382281.083
374283.356
376985.935
..
..
..
FRO
Faeroe Islands
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
623.39
594.054
660.06
597.721
520.714
634.391
652.726
656.393
663.727
671.061
656.393
660.06
667.394
674.728
674.728
682.062
689.396
696.73
707.731
..
..
..
FSM
Micronesia, Fed. Sts.
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
..
..
..
..
..
..
..
55.005
55.005
55.005
55.005
55.005
55.005
55.005
55.005
62.339
62.339
..
..
..
GAB
Gabon
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
4844.107
1477.801
2130.527
3281.965
3351.638
3857.684
3534.988
3545.989
1631.815
1437.464
1052.429
1782.162
1778.495
1334.788
1481.468
1785.829
1782.162
1976.513
2471.558
..
..
..
GBR
United Kingdom
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
570218.5
593808.311
587453.4
567523.255
563775.581
564523.649
580680.451
554215.712
554138.705
535550.682
543662.086
550552.379
531942.354
540636.811
545719.273
542473.978
543273.384
529621.143
522855.528
..
..
..
GEO
Georgia
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
15335.394
9952.238
6083.553
2302.876
4066.703
4437.07
4961.451
4345.395
4536.079
3769.676
3388.308
3773.343
3927.357
4734.097
5496.833
6028.548
5203.473
..
..
..
GHA
Ghana
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
3931.024
4044.701
4096.039
4664.424
5071.461
5427.16
5757.19
6395.248
6409.916
6560.263
6299.906
6919.629
7414.674
7601.691
7278.995
7007.637
9350.85
9636.876
8591.781
..
..
..
GIB
Gibraltar
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
95.342
106.343
91.675
333.697
399.703
348.365
194.351
121.011
311.695
322.696
333.697
344.698
344.698
355.699
366.7
377.701
392.369
407.037
421.705
..
..
..
GIN
Guinea
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
1056.096
1074.431
1074.431
1103.767
1228.445
1250.447
1272.449
1279.783
1243.113
1272.449
1279.783
1298.118
1323.787
1342.122
1342.122
1360.457
1360.457
1389.793
1393.46
..
..
..
GMB
Gambia, The
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
190.684
198.018
198.018
209.019
209.019
216.353
216.353
216.353
234.688
256.69
275.025
282.359
315.362
315.362
322.696
322.696
337.364
396.036
410.704
..
..
..
GNB
Guinea-Bissau
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
253.023
256.69
260.357
278.692
278.692
282.359
286.026
308.028
216.353
245.689
198.018
198.018
209.019
249.356
256.69
264.024
275.025
286.026
282.359
..
..
..
GNQ
Equatorial Guinea
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
121.011
201.685
216.353
102.676
36.67
132.012
117.344
293.36
168.682
473.043
454.708
3094.948
4979.786
6017.547
4679.092
4712.095
4752.432
4796.436
4814.771
..
..
..
GRC
Greece
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
72723.944
67615.813
75503.53
75646.543
78363.79
79185.198
80395.308
84572.021
87809.982
86636.542
91616.328
93805.527
93669.848
95738.036
97149.831
98675.303
97285.51
98213.261
97813.558
..
..
..
GRD
Grenada
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
121.011
121.011
128.345
143.013
165.015
172.349
176.016
205.352
190.684
205.352
205.352
220.02
216.353
227.354
216.353
234.688
245.689
245.689
245.689
..
..
..
GRL
Greenland
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
557.384
550.05
484.044
502.379
506.046
506.046
517.047
524.381
531.715
542.716
531.715
539.049
539.049
535.382
498.712
630.724
579.386
638.058
575.719
..
..
..
GTM
Guatemala
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
5086.129
5053.126
6017.547
5658.181
6838.955
7165.318
6651.938
7598.024
8753.129
8929.145
9915.568
10626.966
11173.349
10670.97
11206.352
12156.105
12288.117
12926.175
11914.083
..
..
..
GUM
Guam
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GUY
Guyana
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
1140.437
1122.102
1052.429
1056.096
1334.788
1481.468
1529.139
1602.479
1653.817
1650.15
1580.477
1518.138
1547.474
1521.805
1463.133
1514.471
1525.472
1525.472
1525.472
..
..
..
HIC
High income
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
10605543.063
11763151.946
11821713.9322
12122350.9277
12251534.4463
12327909.9119
12637718.6327
12744117.4388
12658000.4688
12631659.8016
12883981.2746
12800476.6932
12896363.4825
13132316.1911
13347825.3967
13387488.8787
13353377.1819
13422816.7509
13284694.5076
..
..
..
HKG
Hong Kong SAR, China
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
27660.181
28892.293
33428.372
35129.86
31429.857
31620.541
29365.336
30854.138
39233.233
42753.553
40582.689
37971.785
36952.359
40065.642
38415.492
40549.686
38554.838
39962.966
38573.173
..
..
..
HND
Honduras
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
2592.569
2698.912
3076.613
2849.259
3336.97
3879.686
3960.36
4158.378
4649.756
4741.431
5031.124
5713.186
6090.887
6769.282
7367.003
7620.026
7308.331
9035.488
8672.455
..
..
..
HRV
Croatia
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
16442.828
16428.16
16875.534
17612.601
18518.35
19295.754
20417.856
20491.196
19644.119
20714.883
21877.322
23542.14
23047.095
23105.767
23175.44
24367.215
23303.785
..
..
..
HTI
Haiti
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
993.757
997.424
909.416
663.727
300.694
942.419
1092.766
1422.796
1232.112
1331.121
1367.791
1569.476
1826.166
1734.491
1987.514
2075.522
2119.526
2398.218
2434.888
..
..
..
HUN
Hungary
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
62991.726
63435.433
58716.004
60124.132
58066.945
60054.459
62702.033
61807.285
60853.865
60362.487
57256.538
57021.85
56031.76
59009.364
57311.543
57879.928
57227.202
55848.41
54638.3
..
..
..
IDN
Indonesia
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
149565.929
179730.671
202576.081
218600.871
221413.46
224941.114
253290.691
278658.997
210210.775
237595.931
258120.13
289065.943
303506.589
311885.684
333733.67
336311.571
338134.07
368617.841
406028.575
..
..
..
IMY
Isle of Man
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IND
India
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
690576.774
737851.738
783634.233
814297.687
864931.623
920046.633
1002224.103
1043939.895
1071911.771
1144390.026
1186663.202
1203843.097
1226791.183
1281913.527
1346595.74
1411127.606
1504364.748
1612383.567
1742697.746
..
..
..
IRL
Ireland
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
30417.765
33109.343
31253.841
31286.844
32691.305
32892.99
35008.849
36552.656
38140.467
40098.645
40949.389
43780.313
43457.617
42694.881
43211.928
43211.928
43112.919
44411.037
43604.297
..
..
..
IRN
Iran, Islamic Rep.
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
227185.318
233745.581
247471.162
229678.878
296744.641
284918.566
286645.723
290617.084
316176.074
316671.119
339241.504
357085.126
375211.107
412317.48
442471.221
458866.378
492349.755
506346.694
538403.608
..
..
..
IRQ
Iraq
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
52555.444
47421.644
61671.606
66801.739
75045.155
77901.748
69500.651
68308.876
72371.912
72283.904
72445.252
85342.091
87259.932
91117.616
98979.664
97527.532
100853.501
100494.135
102936.357
..
..
..
ISL
Iceland
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
2071.855
2024.184
1892.172
1991.181
2009.516
1939.843
2211.201
2104.858
2101.191
2068.188
2163.53
2101.191
2170.864
2167.197
2233.203
2203.867
2233.203
2339.546
2229.536
..
..
..
ISR
Israel
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
33534.715
34315.786
41499.439
45148.104
47120.95
54234.93
54399.945
63402.43
62779.04
62155.65
62691.032
65749.31
63145.74
65122.253
63200.745
59211.049
65778.646
36816.68
37663.757
..
..
..
ITA
Italy
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
424183.892
433974.782
432959.023
422680.422
412163.466
437623.447
428294.599
432302.63
441752.489
437018.392
446156.556
447054.971
449284.507
468349.24
470490.768
471400.184
468268.566
459376.091
445118.795
..
..
..
JAM
Jamaica
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
7964.724
8173.743
8096.736
8415.765
8632.118
9702.882
10197.927
10630.633
9728.551
9772.555
10318.938
10626.966
10300.603
10722.308
10714.974
10128.254
12086.432
13894.263
12203.776
..
..
..
JOR
Jordan
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
10403.279
9798.224
12266.115
12101.1
13633.906
13556.899
14187.623
14418.644
14543.322
14568.991
15507.743
16002.788
16886.535
17469.588
19240.749
21026.578
20733.218
21495.954
21382.277
..
..
..
JPN
Japan
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
1094705.843
1100598.712
1123660.475
1108673.446
1174169.733
1184088.968
1205782.94
1201778.576
1159186.371
1197880.555
1219592.862
1202266.287
1216761.938
1237242.133
1259658.504
1238188.219
1231770.969
1251187.734
1208162.823
..
..
..
KAZ
Kazakhstan
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
261306.753
221105.432
199488.467
166731.156
140691.789
129580.779
125063.035
116493.256
127769.281
147908.445
151945.812
153815.982
172158.316
177233.444
192121.464
227401.671
236954.206
..
..
..
KEN
Kenya
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
5823.196
4840.44
5540.837
6347.577
6556.596
7554.02
9328.848
8265.418
10036.579
10172.258
10417.947
9369.185
7968.391
6754.614
7623.693
8562.445
9574.537
9831.227
10392.278
..
..
..
KGZ
Kyrgyz Republic
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
10861.654
8305.755
6061.551
4473.74
5588.508
5482.165
5823.196
4561.748
4528.745
3780.677
4847.774
5276.813
5606.843
5185.138
5170.47
6461.254
6208.231
..
..
..
KHM
Cambodia
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
451.041
462.042
476.71
476.71
539.049
1437.464
1628.148
1906.84
2233.203
2196.533
2255.205
2643.907
2860.26
3127.951
3498.318
3722.005
4074.037
4440.737
4602.085
..
..
..
KIR
Kiribati
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
22.002
22.002
22.002
22.002
22.002
22.002
36.67
29.336
33.003
29.336
33.003
25.669
25.669
25.669
25.669
25.669
29.336
33.003
29.336
..
..
..
KNA
St. Kitts and Nevis
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
66.006
73.34
73.34
84.341
88.008
95.342
102.676
102.676
102.676
102.676
102.676
183.35
198.018
220.02
227.354
234.688
234.688
249.356
249.356
..
..
..
KOR
Korea, Rep.
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
243815.163
268431.734
286568.716
317085.49
340352.605
370781.371
401030.454
423175.467
363839.74
395005.573
432460.311
440216.016
465584.322
465771.339
482276.506
462918.413
470820.798
498205.954
509170.284
..
..
..
KSV
Kosovo
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KWT
Kuwait
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
45423.129
10579.295
17612.601
29376.337
34436.797
50329.575
47674.667
49361.487
51088.644
53314.513
59112.04
55144.346
52727.793
61653.271
69529.987
77216.019
71950.207
73002.636
76742.976
..
..
..
LAC
Latin America & Caribbean
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
986228.649
1001061.664
1022689.63
1056323.354
1104848.765
1129491.005
1173293.32
1230476.518
1280047.024
1306420.088
1293515.915
1327817.033
1335657.079
1354190.097
1371285.651
1416279.741
1449594.436
1515347.413
1584103.663
..
..
..
LAO
Lao PDR
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
234.688
253.023
278.692
278.692
300.694
315.362
535.382
718.732
894.748
902.082
1059.763
1199.109
1323.787
1356.79
1397.127
1426.463
1518.138
1536.473
1532.806
..
..
..
LBN
Lebanon
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
9097.827
9497.53
11356.699
11657.393
12742.825
13619.238
13798.921
15647.089
16178.804
16600.509
15353.729
16208.14
16039.458
18221.323
16835.197
17539.261
15027.366
15504.076
17099.221
..
..
..
LBR
Liberia
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
484.044
286.026
289.693
322.696
319.029
333.697
344.698
355.699
388.702
407.037
436.373
502.379
502.379
531.715
627.057
740.734
759.069
678.395
608.722
..
..
..
LBY
Libya
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
40318.665
42489.529
40571.688
42636.209
41862.472
45841.167
41840.47
48598.751
48133.042
47230.96
49753.856
51073.976
47623.329
49167.136
50318.574
52093.402
53780.222
54201.927
58330.969
..
..
..
LCA
St. Lucia
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
165.015
172.349
205.352
227.354
264.024
311.695
330.03
311.695
308.028
319.029
330.03
363.033
326.363
359.366
355.699
366.7
366.7
385.035
396.036
..
..
..
LIC
Low income
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
329171.317562
335600.293117
343641.368283
348730.089317
342353.550233
346829.072508
351782.82787
329805.365329
161532.143103
172432.611472
179033.941
181787.858
179609.66
184387.761
196848.227
205263.992
218076.49
209811.072
219121.585
..
..
..
LIE
Liechtenstein
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LKA
Sri Lanka
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
3773.343
4063.036
5056.793
4902.779
5408.825
5797.527
6952.632
7506.349
7763.039
8536.776
10161.257
10245.598
11008.334
10659.969
11965.421
11642.725
11741.734
12313.786
11763.736
..
..
..
LMC
Lower middle income
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
1981551.5116
2133997.3541
2330010.52094
2293583.16403
2249929.08955
2321252.53241
2424633.5182
2447826.58132
2433867.57554
2559061.72024
2685574.87878
2758254.13489
2832890.25317
2989881.85806
3131920.6578
3222338.68827
3304999.46922
3528645.41497
3743902.66449
..
..
..
LMY
Low & middle income
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
9540578.44436
9929307.62144
10325599.9697
10316726.531
10267189.5946
10597246.216
10886504.4215
10865869.8906
10519935.0569
10643991.0248
10946584.6146
11171872.2388
11482963.9506
12681177.0113
13760280.0243
14498599.9362
15399030.5013
16174349.4955
16822433.2185
..
..
..
LSO
Lesotho
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LTU
Lithuania
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
22152.347
17495.257
17359.578
16204.473
15731.43
15339.061
16197.139
13692.578
12200.109
12918.841
13212.201
12915.174
13325.878
14000.606
14293.966
15137.376
15130.042
..
..
..
LUX
Luxembourg
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
9893.566
10630.633
11804.073
10821.317
10219.929
8349.759
8437.767
7917.053
7356.002
7686.032
8236.082
8580.78
9424.19
9919.235
11067.006
11327.363
11312.695
10843.319
10502.288
..
..
..
LVA
Latvia
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
14051.944
12068.097
11268.691
9636.876
9548.868
8437.767
7990.393
6743.613
6171.561
6853.623
6651.938
7088.311
7132.315
7176.319
7590.69
7928.054
7590.69
..
..
..
MAC
Macao SAR, China
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
1034.094
1092.766
1085.432
1188.108
1283.45
1243.113
1415.462
1499.803
1565.809
1532.806
1635.482
1686.82
1525.472
1536.473
1727.157
1837.167
1631.815
1558.475
1334.788
..
..
..
MAF
St. Martin (French part)
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
23542.14
24975.937
26039.367
28217.565
29640.361
30373.761
31195.169
31862.563
32038.579
33153.347
33905.082
37715.095
38254.144
37561.081
40590.023
42823.226
43992.999
46281.207
47905.688
..
..
..
MCO
Monaco
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MDA
Moldova
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
20971.573
15628.754
12090.099
11191.684
11521.714
7099.312
6270.57
4503.076
3512.986
3714.671
3986.029
4290.39
4554.414
4895.445
4994.454
4686.426
4774.434
..
..
..
MDG
Madagascar
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
986.423
1074.431
1045.095
1070.764
1316.453
1312.786
1411.795
1701.488
1738.158
1925.175
1873.837
1741.825
1235.779
1756.493
1936.176
1705.155
1697.821
1804.164
1910.507
..
..
..
MDV
Maldives
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
154.014
172.349
253.023
216.353
220.02
275.025
319.029
366.7
333.697
465.709
498.712
575.719
689.396
597.721
751.735
678.395
869.079
898.415
920.417
..
..
..
MEX
Mexico
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
325603.931
336586.596
342629.812
341441.704
362424.278
345178.377
354877.592
361595.536
372167.497
380814.283
383021.817
393604.779
390781.189
402068.215
405709.546
432665.663
441653.48
449860.226
475833.587
..
..
..
MHL
Marshall Islands
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
47.671
51.338
55.005
62.339
66.006
66.006
66.006
66.006
69.673
66.006
77.007
80.674
84.341
84.341
88.008
84.341
91.675
99.009
99.009
..
..
..
MIC
Middle income
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
9206507.18974
9591788.54176
9982401.62726
9968446.68593
9925277.49013
10250867.0678
10535179.7073
10536502.4505
10358677.6502
10471844.899
10767846.9201
10990388.532
11303680.9745
12497176.9453
13563858.7107
14293789.9021
15181436.2576
15965016.5582
16603810.2596
..
..
..
MKD
Macedonia, FYR
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
10777.313
10340.94
10469.285
10839.652
11741.734
10634.3
12625.481
11723.399
12064.43
11998.424
10934.994
11309.028
11191.684
11246.689
10909.325
11327.363
11815.074
..
..
..
MLI
Mali
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
421.705
436.373
443.707
454.708
462.042
469.376
487.711
524.381
517.047
539.049
542.716
546.383
553.717
539.049
564.718
568.385
568.385
579.386
594.054
..
..
..
MLT
Malta
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
2178.198
2200.2
2258.872
2669.576
2658.575
2695.245
2966.603
3241.628
2145.195
2346.88
2064.521
2486.226
2299.209
2581.568
2574.234
2698.912
2574.234
2724.581
2559.566
..
..
..
MMR
Myanmar
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
4275.722
4180.38
4888.111
5342.819
6244.901
6959.966
7256.993
7499.015
8078.401
8830.136
8888.808
7348.668
8173.743
9611.207
11470.376
14543.322
13028.851
13047.186
12775.828
..
..
..
MNA
Middle East & North Africa
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
566372.44857
597625.18892
637511.141062
640556.43039
717998.504888
736006.071175
739326.537249
751419.638
822695.117
816263.199
854818.037
872889.013
893655.234
987746.787
1029682.599
1082102.364
1136439.97
1175841.885
1230256.498
..
..
..
MNE
Montenegro
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2057.187
2471.558
1965.512
1950.844
..
..
..
MNG
Mongolia
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
10043.913
12207.443
11078.007
9314.18
7961.057
7924.387
8041.731
7711.701
7708.034
7554.02
7506.349
7884.05
8287.42
8034.397
8551.444
8808.134
9442.525
10560.96
10894.657
..
..
..
MNP
Northern Mariana Islands
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MOZ
Mozambique
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
1001.091
1026.76
1001.091
1078.098
1070.764
1111.101
1041.428
1125.769
1133.103
1188.108
1349.456
1580.477
1587.811
1917.841
1921.508
1822.499
1980.18
2574.234
2313.877
..
..
..
MRT
Mauritania
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
2665.909
2750.25
2944.601
2962.936
3124.284
2984.938
2999.606
2999.606
1111.101
1199.109
1195.442
1283.45
1411.795
1452.132
1613.48
1657.484
1672.152
1950.844
1998.515
..
..
..
MUS
Mauritius
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
1463.133
1521.805
1708.822
1774.828
1624.481
1829.833
1950.844
1998.515
2196.533
2467.891
2768.585
2966.603
2981.271
3146.286
3193.957
3410.31
3777.01
3887.02
3953.026
..
..
..
MWI
Malawi
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
612.389
660.06
656.393
693.063
718.732
729.733
711.398
759.069
828.742
997.424
905.749
905.749
883.747
957.087
975.422
916.75
953.42
953.42
1228.445
..
..
..
MYS
Malaysia
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
56592.811
68591.235
75298.178
91722.671
94010.879
121132.011
125374.73
124821.013
114186.713
107934.478
126603.175
136716.761
135128.95
160266.235
168040.275
183445.342
179418.976
194919.385
208267.265
..
..
..
MYT
Mayotte
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NAM
Namibia
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
7.334
14.668
14.668
18.335
29.336
1741.825
1906.84
1903.173
1994.848
1771.161
1763.827
2086.523
2214.868
2361.548
2497.227
2658.575
2852.926
2992.272
3967.694
..
..
..
NCL
New Caledonia
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
1624.481
1789.496
1771.161
1771.161
1723.49
1730.824
1763.827
1826.166
1804.164
2035.185
2299.209
2119.526
2427.554
2750.25
2552.232
2801.588
2779.586
2852.926
3149.953
..
..
..
NER
Niger
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
832.409
821.408
784.738
880.08
872.746
920.417
1015.759
1012.092
1074.431
1059.763
795.739
759.069
814.074
880.08
880.08
825.075
817.741
872.746
850.744
..
..
..
NGA
Nigeria
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
45375.458
45247.113
64883.898
60061.793
46658.908
34917.174
40421.341
40190.32
40182.986
44788.738
79181.531
83350.91
98125.253
93138.133
97047.155
104043.791
92225.05
88605.721
95756.371
..
..
..
NIC
Nicaragua
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
2643.907
2068.188
2489.893
2302.876
2555.899
2838.258
2926.266
3135.285
3421.311
3626.663
3667
3835.682
3813.68
4114.374
4136.376
3975.028
4239.052
4510.41
4330.727
..
..
..
NIU
Niue
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
3.667
3.667
3.667
3.667
3.667
3.667
3.667
3.667
3.667
3.667
3.667
3.667
3.667
3.667
3.667
3.667
3.667
3.667
3.667
..
..
..
NLD
Netherlands
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
164127.586
172704.699
168113.615
172150.982
172745.036
176309.36
186356.94
178278.539
175359.607
163027.486
165363.365
167273.872
172363.668
175040.578
176903.414
172227.989
166841.166
172495.68
173749.794
..
..
..
NOR
Norway
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
31330.848
32023.911
29677.031
31316.18
29247.992
32999.333
33179.016
34132.436
34594.478
41022.729
38807.861
41092.402
37429.069
42625.208
42665.545
42364.851
44257.023
44924.417
49992.211
..
..
..
NPL
Nepal
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
634.391
960.754
1331.121
1466.8
1697.821
2035.185
2486.226
2783.253
2251.538
3219.626
3234.294
3454.314
2709.913
2951.935
2768.585
3234.294
3325.969
3421.311
3542.322
..
..
..
NRU
Nauru
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
132.012
132.012
135.679
135.679
135.679
139.346
139.346
139.346
139.346
135.679
135.679
139.346
139.346
143.013
143.013
143.013
143.013
143.013
143.013
..
..
..
NZL
New Zealand
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
24022.517
24458.89
26171.379
25511.319
26439.07
26904.779
29702.7
31063.157
30058.399
31558.202
32698.639
34202.109
33641.058
33714.398
33545.716
33369.7
33553.05
32936.994
33094.675
..
..
..
OMN
Oman
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
10351.941
10949.662
12097.433
13468.891
15269.388
15933.115
15225.384
15595.751
16666.515
20817.559
22057.005
20443.525
25544.322
32691.305
31561.869
34653.15
38917.871
40373.67
45749.492
..
..
..
PAK
Pakistan
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
68565.566
68242.87
72789.95
78008.091
84839.712
84484.013
94447.252
94711.276
97663.211
100384.125
106449.343
108282.843
114084.037
118895.141
131619.631
136636.087
145854.925
160882.291
163177.833
..
..
..
PAN
Panama
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
3135.285
3391.975
4015.365
4129.042
4781.768
3472.649
4880.777
5958.875
5947.874
5669.182
5790.193
7007.637
5834.197
6153.226
5797.527
6032.215
6824.287
6651.938
6912.295
..
..
..
PER
Peru
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
21169.591
20417.856
20388.52
23556.808
23230.445
23883.171
24363.548
27407.158
27806.861
29358.002
30296.754
27165.136
27187.138
26380.398
31895.566
37418.068
35346.213
43512.622
40535.018
..
..
..
PHL
Philippines
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
44532.048
45830.166
50322.241
51290.329
56270.115
63105.403
65642.967
77403.036
75650.21
73020.971
79111.858
77164.681
76057.247
76244.264
78998.181
81066.369
67630.481
78580.143
83156.559
..
..
..
PLW
Palau
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
234.688
234.688
113.677
110.01
110.01
113.677
117.344
117.344
117.344
117.344
117.344
183.35
183.35
190.684
190.684
194.351
205.352
212.686
212.686
..
..
..
PNG
Papua New Guinea
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
2141.528
2064.521
2053.52
1994.848
2181.865
2038.852
2163.53
2555.899
2838.258
2464.224
2687.911
3230.627
3512.986
3967.694
4481.074
4613.086
4594.751
3113.283
2108.525
..
..
..
POL
Poland
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
366773.34
361591.869
357283.144
352519.711
336161.224
346813.859
358823.284
351049.244
326935.052
317133.161
301691.424
302806.192
296931.658
304856.045
305138.404
303766.946
319410.368
315204.319
316066.064
..
..
..
PRI
Puerto Rico
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRK
Korea, Dem. Rep.
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
244834.589
251145.496
255413.884
262139.162
259641.935
259348.575
256682.666
234688
64927.902
71396.49
76966.663
79922.265
76530.29
78209.776
79925.932
83475.588
85034.063
70710.761
78371.124
..
..
..
PRT
Portugal
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
43725.308
48239.385
52372.094
47472.982
48767.433
52394.096
50886.959
53376.852
58055.944
64689.547
62966.057
62863.381
66820.074
61275.57
63175.076
65309.27
59108.373
60234.142
56310.452
..
..
..
PRY
Paraguay
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
2262.539
2233.203
2621.905
2951.935
3498.318
3964.027
3751.341
4195.048
4503.076
4503.076
3689.002
3821.014
3898.021
4070.37
4088.705
3832.015
3986.029
4136.376
4118.041
..
..
..
PYF
French Polynesia
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
630.724
638.058
645.392
649.059
568.385
583.053
557.384
575.719
572.052
575.719
645.392
737.067
748.068
821.408
788.405
854.411
821.408
839.743
891.081
..
..
..
QAT
Qatar
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
11774.737
17674.94
26802.103
30722.126
30223.414
30824.802
31825.893
36288.632
32401.612
31407.855
34730.157
30098.736
30788.132
35947.601
44777.737
51895.384
57223.535
67934.842
68477.558
..
..
..
ROM
Romania
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
158861.774
137530.835
125063.035
122133.102
116808.618
128524.683
127835.287
115987.21
103680.758
89639.815
89984.513
95672.03
92173.712
95939.721
95378.67
94960.632
102001.272
98422.28
94659.938
..
..
..
RUS
Russian Federation
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
2220720.532
2030029.198
1752998.349
1692364.504
1668958.043
1577033.687
1511269.709
1534250.798
1553451.21
1544404.721
1537195.399
1584998.411
1602963.044
1615683.867
1669603.435
1667575.584
1708653.318
..
..
..
RWA
Rwanda
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
682.062
630.724
638.058
641.725
619.723
612.389
630.724
652.726
641.725
671.061
685.729
689.396
689.396
682.062
689.396
689.396
689.396
715.065
704.064
..
..
..
SAS
South Asia
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
782042.755
829911.773
882456.216
917861.101
977600.198
1036972.595
1131962.563
1175882.222
1205405.239
1283446.333
1336053.115
1359910.617
1389855.339
1449891.463
1534610.164
1602354.322
1713919.13
1838124.087
1970176.424
..
..
..
SAU
Saudi Arabia
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
215054.882
268475.738
286807.071
315567.352
310616.902
234856.682
258516.166
216826.043
207288.176
227229.322
297749.399
295842.559
323458.736
323671.422
346018.12
367033.697
383399.518
397121.432
433556.744
..
..
..
SDN
Sudan
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
5559.172
5386.823
4756.099
2907.931
4444.404
4602.085
4268.388
5419.826
4697.427
5093.463
5533.503
6369.579
8118.738
9072.158
10377.61
11994.757
11683.062
12676.819
14051.944
..
..
..
SEN
Senegal
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
3182.956
3424.978
3479.983
3593.66
3901.688
3494.651
3740.34
3263.63
3428.645
3700.003
3938.358
4330.727
4547.08
5012.789
5280.48
5859.866
4789.102
5372.155
4976.119
..
..
..
SGP
Singapore
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
46941.267
47425.311
50267.236
54627.299
65367.942
47109.949
55305.694
69240.294
57293.208
50263.569
47623.329
42764.554
42060.49
34653.15
40769.706
50281.904
47865.351
36013.607
32295.269
..
..
..
SID
Small island developing states
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
175300.037959
176596.642699
182115.287783
184251.68634
205721.799699
183093.509153
198735.82256
213436.828613
190483.407322
190917.100106
199274.191189
195875.087366
199906.04631
193557.043548
204421.302265
216303.797274
225348.131396
215935.204951
230301.090735
..
..
..
SLB
Solomon Islands
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
161.348
161.348
161.348
157.681
154.014
161.348
161.348
161.348
161.348
165.015
165.015
172.349
172.349
179.683
179.683
179.683
179.683
198.018
198.018
..
..
..
SLE
Sierra Leone
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
388.702
469.376
473.043
506.046
583.053
586.72
623.39
634.391
594.054
583.053
630.724
858.078
1191.775
1224.778
1067.097
1261.448
1239.446
1312.786
1334.788
..
..
..
SLV
El Salvador
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
2618.238
3230.627
3428.645
3890.687
4429.736
5280.48
4895.445
5760.857
5812.195
5698.518
5742.522
5947.874
6039.549
6552.929
6277.904
6362.245
6486.923
6901.294
6112.889
..
..
..
SMR
San Marino
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SOM
Somalia
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
18.335
3.667
11.001
11.001
11.001
11.001
..
..
..
..
517.047
502.379
572.052
575.719
575.719
579.386
575.719
630.724
649.059
..
..
..
SRB
Serbia
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
46567.233
48958.117
48811.437
49933.539
..
..
..
SSA
Sub-Saharan Africa
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
464093.668057
472215.621479
475675.86199
494622.157525
497102.735925
490805.665206
506057.189792
516327.116331
513001.123569
520580.691518
553951.485561
553342.293255
557337.117949
582613.060511
637167.154478
644584.532306
637809.575455
671237.618686
684558.623764
..
..
..
STP
Sao Tome and Principe
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
66.006
69.673
73.34
73.34
73.34
77.007
77.007
77.007
80.674
88.008
88.008
91.675
106.343
110.01
113.677
128.345
128.345
128.345
128.345
..
..
..
SUR
Suriname
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
1811.498
2101.191
2112.192
2156.196
2163.53
2181.865
2130.527
2141.528
2163.53
2152.529
2126.86
2266.206
2251.538
2240.537
2284.541
2379.883
2438.555
2438.555
2438.555
..
..
..
SVK
Slovak Republic
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
45646.816
40971.391
40351.668
43508.955
42793.89
41983.483
43230.263
39863.957
36530.654
39357.911
39251.568
39493.59
38749.189
39174.561
38928.872
36592.993
37557.414
..
..
..
SVN
Slovenia
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
12970.179
13116.859
11257.69
14513.986
15185.047
16208.14
15522.411
15144.71
14601.994
15148.377
15401.4
15485.741
15716.762
15870.776
16230.142
16193.472
17157.893
..
..
..
SWE
Sweden
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
51708.367
55401.036
57131.86
53149.498
56435.13
53560.202
60549.504
54513.622
54953.662
51106.979
49794.193
51128.981
57425.22
54781.313
54506.288
51550.686
49559.505
48045.034
49049.792
..
..
..
SWZ
Swaziland
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
425.372
326.363
264.024
132.012
484.044
454.708
341.031
1202.776
1213.777
1239.446
1188.108
1144.104
1125.769
1041.428
1030.427
1019.426
1015.759
1063.43
1092.766
..
..
..
SXM
Sint Maarten (Dutch part)
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
113.677
143.013
165.015
161.348
187.017
190.684
198.018
414.371
440.04
513.38
564.718
641.725
542.716
557.384
773.737
696.73
744.401
623.39
682.062
..
..
..
SYR
Syrian Arab Republic
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
37451.071
43193.593
44436.706
47117.283
48532.745
51558.02
51022.638
52295.087
62709.367
64913.234
63589.447
60908.87
55987.756
70091.038
67520.471
64396.187
68220.868
70897.778
71598.175
..
..
..
TCA
Turks and Caicos Islands
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
..
..
..
11.001
11.001
11.001
14.668
14.668
14.668
14.668
99.009
102.676
102.676
121.011
143.013
157.681
157.681
..
..
..
TCD
Chad
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
146.68
69.673
88.008
99.009
102.676
102.676
106.343
113.677
113.677
121.011
176.016
172.349
168.682
381.368
377.701
399.703
407.037
462.042
495.045
..
..
..
TGO
Togo
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
773.737
843.41
836.076
865.412
832.409
953.42
1059.763
986.423
1166.106
1536.473
1356.79
1162.439
1232.112
1463.133
1397.127
1338.455
1221.111
1316.453
1419.129
..
..
..
THA
Thailand
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
95833.378
116148.558
126830.529
142554.625
158278.721
181461.495
202711.76
210064.095
186503.62
196947.236
201549.321
217086.4
230635.965
245674.332
267760.673
275164.346
283987.148
282091.309
285732.64
..
..
..
TJK
Tajikistan
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
7220.323
5170.47
2354.214
2449.556
2827.257
2152.529
2497.227
2519.229
2236.87
2291.875
1881.171
2075.522
2233.203
2291.875
2420.22
3245.295
3146.286
..
..
..
TKM
Turkmenistan
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
28067.218
27663.848
33476.043
34620.147
31363.851
29930.054
26046.701
35115.192
35646.907
39680.607
41074.067
43160.59
39640.27
41759.796
43871.988
45866.836
47839.682
..
..
..
TMP
Timor-Leste
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
161.348
161.348
176.016
176.016
179.683
183.35
190.684
..
..
..
TON
Tonga
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
77.007
91.675
88.008
102.676
106.343
110.01
110.01
113.677
110.01
128.345
121.011
139.346
143.013
176.016
172.349
172.349
172.349
176.016
176.016
..
..
..
TTO
Trinidad and Tobago
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
16959.875
21048.58
20986.241
16820.529
19853.138
20967.906
21781.98
19229.748
19317.756
22816.074
24513.895
25023.608
26890.111
27696.851
31554.535
30949.48
34480.801
37036.7
49772.191
..
..
..
TUN
Tunisia
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
13267.206
15489.408
15023.699
16501.5
15940.449
15735.097
16758.19
16945.207
18001.303
18331.333
19922.811
20817.559
21015.577
21396.945
22445.707
22801.406
23127.769
23868.503
25012.607
..
..
..
TUR
Turkey
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
150790.707
151799.132
154494.377
164259.598
161659.695
176705.396
192499.165
202887.776
205421.673
196767.553
216147.648
194538.017
205678.363
218509.196
225406.823
237368.577
261570.777
284658.209
283979.814
..
..
..
TUV
Tuvalu
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TZA
Tanzania
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
2372.549
2434.888
2361.548
2636.573
2445.889
3553.323
3461.648
2882.262
2555.899
2537.564
2651.241
3127.951
3589.993
3806.346
4352.729
5086.129
5379.489
6039.549
6464.921
..
..
..
UGA
Uganda
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
817.741
850.744
861.745
821.408
744.401
957.087
1052.429
1133.103
1338.455
1393.46
1532.806
1631.815
1705.155
1719.823
1833.5
2339.546
2706.246
3204.958
3747.674
..
..
..
UKR
Ukraine
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
641680.996
546111.642
447010.967
445943.87
412335.815
341196.015
328636.54
332549.229
320774.492
321650.905
318684.302
352259.354
343121.19
339028.818
327796.797
328856.56
323532.076
..
..
..
UMC
Upper middle income
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
7223726.53344
7456999.42935
7652334.2927
7674832.16552
7675342.97968
7929610.83662
8110512.54966
8088624.71391
7924734.21505
7912614.32212
8082046.60343
8231887.87527
8470540.9884
9507163.00147
10431909.3624
11071500.1466
11876092.5939
12436188.1643
12859967.1398
..
..
..
URY
Uruguay
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
3993.363
4554.414
5170.47
4466.406
4066.703
4591.084
5441.828
5555.505
5687.517
6725.278
5306.149
5089.796
4620.42
4598.418
5610.51
5775.525
6648.271
5999.212
8327.757
..
..
..
USA
United States
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
4879376.206
4870238.042
4876006.233
5167485.062
5227176.488
5237968.469
5343512.063
5501365.412
5449077.659
5528149.18
5512399.415
5389928.949
5437816.302
5471754.387
5563799.754
5595357.956
5514775.631
5581537.033
5461013.744
..
..
..
UZB
Uzbekistan
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
114014.364
118532.108
110981.755
100912.173
103189.38
101781.252
117571.354
117421.007
119951.237
122037.76
126914.87
122683.152
119272.842
109599.296
115345.485
115840.53
124905.354
..
..
..
VCT
St. Vincent and the Grenadines
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
80.674
77.007
84.341
102.676
121.011
132.012
135.679
135.679
165.015
168.682
157.681
179.683
187.017
194.351
194.351
198.018
201.685
201.685
201.685
..
..
..
VEN
Venezuela, RB
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
122162.438
115440.827
105873.624
124355.304
129947.479
133236.778
122752.825
133962.844
167321.543
172616.691
152415.188
172525.016
193261.901
192103.129
168278.63
159584.173
153595.962
163555.534
169532.744
..
..
..
VIR
Virgin Islands (U.S.)
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VNM
Vietnam
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
21407.946
21451.95
22387.035
22970.088
26303.391
29247.992
34378.125
45283.783
47781.01
48026.699
53582.204
61631.269
71348.819
79438.221
101678.576
104084.128
83735.945
112290.874
127384.246
..
..
..
VUT
Vanuatu
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
69.673
66.006
66.006
66.006
66.006
66.006
84.341
88.008
84.341
84.341
80.674
84.341
84.341
88.008
88.008
55.005
47.671
80.674
91.675
..
..
..
WBG
West Bank and Gaza
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
..
..
..
..
..
..
..
414.371
608.722
660.06
799.406
1353.123
1166.106
1279.783
1866.503
2742.916
2266.206
2324.878
2053.52
..
..
..
WLD
World
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
22529936
22867024
22445664
22467648
22896336
23401968
23903936
24361936
24292320
24076144
24688032
25281600
25483120
26706896
28106544
29205744
30136400
30649360
..
..
..
..
WSM
Samoa
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
124.678
124.678
128.345
128.345
121.011
132.012
132.012
132.012
132.012
139.346
139.346
143.013
143.013
150.347
154.014
157.681
157.681
161.348
161.348
..
..
..
YEM
Yemen, Rep.
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
-2999.606
10109.919
14381.974
9431.524
11367.7
11250.356
14935.691
15474.74
12200.109
13894.263
14638.664
16252.144
15764.433
17304.573
18881.383
20043.822
20791.89
21976.331
23384.459
..
..
..
ZAF
South Africa
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
333513.65
346337.149
324852.196
342549.138
358929.627
353458.463
358639.934
371327.754
372218.835
371034.394
368610.507
362743.307
347686.605
380810.616
414165.648
408199.439
405709.546
433358.726
435877.955
..
..
..
ZAR
Congo, Dem. Rep.
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
4070.37
3755.008
3619.329
3410.31
2478.892
2966.603
3248.962
2926.266
2533.897
2247.871
1646.483
1565.809
1543.807
1697.821
2280.874
2368.882
2460.557
2552.232
2816.256
..
..
..
ZMB
Zambia
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
2445.889
2416.553
2456.89
2500.894
2420.22
2170.864
1870.17
2390.884
2313.877
1807.831
1818.832
1906.84
1969.179
2101.191
2108.525
2258.872
2284.541
1719.823
1888.505
..
..
..
ZWE
Zimbabwe
EN.ATM.CO2E.KT
CO2 emissions, total (KtCO2)
0
1
15504.076
15823.105
16901.203
16208.14
17645.604
15130.042
14994.363
14407.643
14253.629
15834.106
13886.929
12563.142
11932.418
10626.966
9926.569
10773.646
10344.607
9618.541
9075.825
..
..
..
ABW
Aruba
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
29.6206413825
29.8388354321
25.2392877017
24.4052333512
22.9778666528
22.2330963734
21.8071482743
21.745106328
19.2162000299
19.0726125596
24.7388751648
24.2182475667
23.8403843714
23.2795354839
22.8062920259
22.5111885619
22.1353116998
22.6229887263
21.6838314728
..
..
..
ADO
Andorra
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
..
..
..
6.29124097745
6.52140984562
7.06224481935
7.53422781185
8.02344299445
8.11308289755
7.89849374906
7.70121518474
7.41495505727
7.50037188546
7.39162643796
6.84056138418
6.62303722816
6.52783462708
..
..
..
AFG
Afghanistan
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.140714639935
0.126777368008
0.0701453384154
0.0654028805051
0.0607273743572
0.0564513714234
0.0518392191639
0.0468270266566
0.043105013658
0.0330121231686
0.0300981292861
0.0241743117341
0.0130842573168
0.0206348670687
0.0242207356798
0.0234207619117
0.022656662049
0.0226126578169
0.0250348300634
..
..
..
AGO
Angola
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.428612841038
0.409948922961
0.401596941173
0.510140831446
0.331320808382
0.909698924545
0.84248925436
0.577043014447
0.556263022553
0.677678138929
0.685141350156
0.67640067822
0.850598711633
0.587863651636
1.17771719309
1.16176745727
1.30896795519
1.43517411076
1.35108829356
..
..
..
ALB
Albania
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
2.27634980938
1.20647903284
0.73070995472
0.726599979348
0.606660539805
0.664264643428
0.647963742174
0.499306575694
0.569277342234
0.97381705164
0.986029944112
1.04979856228
1.21411344116
1.38101156178
1.28145347905
1.46479247565
1.34059070388
1.41373741389
1.31285501307
..
..
..
ARE
United Arab Emirates
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
28.7558626859
29.8515503097
28.8648837319
31.0978020497
32.7503967792
30.0787374619
16.5964758044
15.9465306841
29.5755749326
27.0534218053
37.1064994094
32.1752051158
25.9012800293
31.2750027272
30.8573805331
28.4143345778
26.3263962642
25.5260067401
24.9840257738
..
..
..
ARG
Argentina
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
3.44991254024
3.53607278318
3.62096868568
3.49034762044
3.58365149781
3.51590619581
3.66189622823
3.77091353031
3.81002385467
3.98150323025
3.82004103956
3.76578553882
3.4895440039
3.74591018069
4.04270416735
4.10856487965
4.49797467446
4.66692219526
4.84405273889
..
..
..
ARM
Armenia
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
1.06716870438
0.869320101959
0.90155506391
1.08308924156
0.821905721135
1.04576379753
1.09570033267
0.989534152327
1.12652945387
1.15542776623
0.981119655336
1.12026940221
1.19015990272
1.41850203884
1.4262607481
1.64492363982
1.80188835197
..
..
..
ASM
American Samoa
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ATG
Antigua and Barbuda
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
4.83415324266
4.67476176817
4.59797498511
4.72160397314
4.65946632783
4.70114507153
4.58049680625
4.66474931556
4.49787033293
4.58465486609
4.43878129185
4.35417166677
4.50933459202
4.75674286553
4.91365074
4.89422756089
5.00720406818
5.07794263106
5.14927314373
..
..
..
AUS
Australia
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
16.8373728838
16.2884898172
16.8308907116
17.1006280636
17.0236701204
17.0116171979
17.9815373273
18.0171550467
18.5405840415
17.1997916623
17.2090339895
16.7341230104
17.3726910042
17.4149047016
17.3506303845
18.0140556907
18.2328628025
18.071623348
18.5696190897
..
..
..
AUT
Austria
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
7.9057373722
8.44845612182
7.77783761273
7.34209735058
7.26301082164
7.62257428486
7.66551294758
7.69778171589
7.96109245006
7.71738459966
7.71247373483
7.91209676403
8.05560263184
8.9084366454
8.82220619717
9.03466350066
8.70834709742
8.28928386076
8.12359651507
..
..
..
AZE
Azerbaijan
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
5.98383662964
5.77521921281
5.57893721206
4.37033871178
4.06615174546
3.82326154631
3.9927804878
3.67021545785
3.7952386133
3.62941119069
3.6719841269
3.78455392571
3.88402518338
4.11015473346
4.63401995392
4.92192395092
5.37910913572
..
..
..
BDI
Burundi
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.0543334904279
0.0602194607645
0.0546743989919
0.0568594876403
0.0566767163133
0.0548235010764
0.0537485558424
0.0510171248273
0.0483157829619
0.0466861521196
0.0471725182203
0.033286853929
0.0330555368174
0.0241293602177
0.0229202671654
0.0227562200197
0.0264929600021
0.0237876504275
0.0226204571477
..
..
..
BEL
Belgium
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
10.8824628288
11.7525801389
11.3861353907
10.8011867718
11.201177686
11.1451940455
11.7775794034
11.4227716334
11.6813519553
11.3283979073
11.2867913578
11.156420628
10.4065719539
11.0672995421
10.6785323905
10.222411698
10.1267034814
9.64918264208
9.79272935609
..
..
..
BEN
Benin
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.149810282001
0.167962923967
0.177308066131
0.21417441096
0.231146508534
0.234900173257
0.217299597989
0.203310803623
0.197211143079
0.246804316819
0.248112019221
0.258603013061
0.295982190795
0.323966332895
0.324171784614
0.336256446203
0.473764966099
0.478231259059
0.486681753666
..
..
..
BFA
Burkina Faso
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.062925809921
0.0654545625355
0.0640658629299
0.0619705189455
0.0620508074925
0.0586465494553
0.0643850122405
0.0713827625237
0.0741531029736
0.0779318358115
0.0847101824856
0.078857259777
0.0771974198327
0.0804815073966
0.0800426491124
0.0792880891404
0.0930405010135
0.109320039596
0.11959208155
..
..
..
BGD
Bangladesh
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.147577412812
0.147913464227
0.161017832934
0.15453129669
0.164866620838
0.194200918584
0.20036784028
0.204820319175
0.192629859754
0.198346567127
0.215024645566
0.245931147883
0.250991483888
0.247771054338
0.286623654281
0.26782354746
0.327664860171
0.326002414405
0.319820179367
..
..
..
BGR
Bulgaria
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
8.91596685019
6.91683202039
6.27640971897
8.18322733711
6.62103260225
7.11965511905
6.78456438487
6.45822591923
6.17576625893
5.35843055556
5.40086315136
5.8727630847
5.67222315415
6.04729221526
6.01288843657
6.1899191204
6.35710116352
6.89474688776
6.62940776386
..
..
..
BHR
Bahrain
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
24.1123230085
22.7032160021
20.3778670607
28.4412542593
27.9734252167
28.6567901279
27.1717509054
29.2068295036
30.1105348662
28.7502301501
29.2122100995
21.6763412243
24.4497126482
25.4471772225
25.7163823389
25.655597973
24.8787111325
23.2046237954
21.3603057512
..
..
..
BHS
Bahamas, The
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
7.61667603698
6.83226437156
6.74727668845
6.33967366208
6.2442289399
6.1865076812
6.10138996112
6.06449130797
6.17116986898
6.11191613263
6.03670069981
5.95754063248
6.81114842659
6.02889739234
6.38470605804
6.60238666324
6.59699258793
6.53425611429
6.46223562238
..
..
..
BIH
Bosnia and Herzegovina
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
1.00177698778
0.889482427566
1.04861249116
1.06309058137
1.62402319407
3.71426894809
4.66239833807
5.21218829812
6.29516733637
5.52832751303
6.07657043399
6.14993085658
6.51483038633
6.77924443818
7.2640110451
7.67064678434
8.28682669857
..
..
..
BLR
Belarus
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
8.56375156617
7.2713254224
6.4451280923
6.09368059643
5.92097785433
5.88307571414
5.72028692025
5.56243886398
5.3441806097
5.27526671404
5.27863264484
5.44072535878
5.92611736323
6.03977437448
6.35060724377
6.21069305298
6.54194022079
..
..
..
BLZ
Belize
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
1.64917989418
1.85240206186
1.7874321608
1.84244390244
1.77267298578
1.74457736721
1.38751351351
1.69000869565
1.55290146751
2.47382969971
2.75979183347
2.76485814225
1.35507541478
1.36658385093
1.349497523
1.3572172721
1.35055045689
1.36556019262
1.32062092518
..
..
..
BMU
Bermuda
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
9.87968595041
8.35595081967
6.67273770492
7.87503278689
7.71685154976
7.54795786062
7.7155068702
7.70477261751
7.45731319742
7.97886231265
7.96776166487
7.9257925072
8.35666932271
8.08554885787
10.5979311434
6.97981752399
8.16166144201
8.078859375
6.0545482866
..
..
..
BOL
Bolivia
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.8266423988
0.84815567858
0.953270841769
1.12606252217
1.21944996256
1.26144888351
1.14365361365
1.26112353227
1.29544159834
1.2002857423
1.14593087867
1.04169389323
0.965238943735
1.30692267651
1.18301950246
1.12535883337
1.12452996027
1.37946046794
1.33436038553
..
..
..
BRA
Brazil
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
1.39583495127
1.44157142039
1.42775731936
1.46980558576
1.51917316592
1.70260845471
1.83302557773
1.92486046314
1.8535687148
1.87318790344
1.89264503108
1.92164029568
1.86952561294
1.78796284095
1.85544359149
1.88167746531
1.87563879824
1.9408442088
2.0529033035
..
..
..
BRB
Barbados
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
4.14037325482
4.63390960665
3.7493451688
4.25670809707
2.84829631773
3.1461338719
3.21962480652
3.40295298165
4.28830830899
4.53635879711
4.441342599
4.55312238993
4.56988687303
4.70985081054
4.7952042438
5.00224766454
5.0595730866
4.9682127105
4.97142699684
..
..
..
BRN
Brunei Darussalam
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
25.467196827
22.4241566644
21.7715840686
20.3684354396
19.1802304965
19.0431678027
18.8292999717
19.0735119419
19.1679606426
14.3856106916
19.9588424516
18.5352686423
15.576846173
15.3610449263
15.0618329339
14.1177121802
13.0215599068
25.3232842313
27.5386033091
..
..
..
BTN
Bhutan
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.229803043868
0.336514637056
0.395992722694
0.350287977973
0.406341406565
0.480840133903
0.584714780541
0.749752944785
0.712358951873
0.693285822063
0.699684207947
0.70465266559
0.847128166541
0.745813388509
0.730660024907
1.03453547967
0.625043539095
0.841420254117
1.04567820087
..
..
..
BWA
Botswana
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
1.57569711749
1.5094881179
2.25037817662
2.33016785112
2.26932697195
2.22244246319
1.93320457423
1.93448870185
2.25999314692
2.05186441914
2.43225507345
2.42898171929
2.48035703718
2.33028691451
2.36383563064
2.41250900344
2.3457626762
2.40656743829
2.47615383907
..
..
..
CAF
Central African Republic
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.0674729289483
0.0682834405208
0.0701315868806
0.0706557978236
0.0722682616793
0.0705253763098
0.0688951639111
0.0705186842697
0.0700516124827
0.0726880887992
0.0723175096654
0.0652202190138
0.0641613292253
0.0603299422248
0.0593803932463
0.0584109032624
0.0610040185598
0.0608090960216
0.0614344964477
..
..
..
CAN
Canada
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
16.1950480012
15.9398890907
16.3974560067
16.5752196505
15.6118819802
15.6636390952
15.7685733303
16.1146620225
15.8318714357
15.6682395604
17.4653154564
16.9594281559
16.6390037306
17.4731230269
17.3735228004
17.4175690765
16.8061567276
16.5020560104
16.3334811806
..
..
..
CHE
Switzerland
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
6.40140628725
6.22796808824
6.30190618182
5.9127600173
5.92938275665
5.59398480329
5.65808665536
5.86626876411
5.89505063291
5.70028473389
5.44163110649
5.94749434323
5.59662507278
5.48329356928
5.47302242885
5.56328105724
5.59560519908
5.03494463137
5.28160584753
..
..
..
CHI
Channel Islands
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHL
Chile
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
2.64657110526
2.4567149553
2.49428554112
2.60518457736
2.83221358332
3.0266064218
3.3850921985
3.8446567994
3.92225058816
4.08528970479
3.89724367729
3.46179727253
3.55246635658
3.5344732228
3.87016694366
3.9140518004
3.98926835471
4.21435108248
4.35286679071
..
..
..
CHN
China
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
2.16770307659
2.24590127566
2.31420729032
2.44280065935
2.56599389177
2.75575496637
2.84430958154
2.82056789058
2.67674598026
2.64864924665
2.69686243323
2.74212081299
2.88522504139
3.51224542766
4.08013890554
4.44115069493
4.89272709798
5.15356401659
5.30848878161
..
..
..
CIV
Cote d'Ivoire
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.463145234799
0.435364687453
0.34555047494
0.426394454101
0.368399163965
0.485945207533
0.555277923423
0.527606247999
0.435322672624
0.385824405991
0.409566163277
0.457374723434
0.424100917259
0.312804714113
0.432218540208
0.434237914036
0.389591682933
0.34237846437
0.369461653435
..
..
..
CMR
Cameroon
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.142696316233
0.0886759387781
0.294612321547
0.294488686762
0.280900040538
0.313029017878
0.322106250405
0.219790816071
0.214248273928
0.201009511127
0.218921616921
0.213302188184
0.20829024228
0.226137295701
0.230505764926
0.210574373138
0.237610159571
0.336124610641
0.282666706755
..
..
..
COG
Congo, Rep.
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.49734480527
0.515544810016
0.624214545218
0.596462888339
0.808162476288
0.572988459059
0.610706027291
0.810564468956
0.261459125445
0.268834867156
0.334450867458
0.268178182757
0.215186247899
0.322548839271
0.552322343514
0.454589736093
0.403226788801
0.426599710718
0.504693667583
..
..
..
COK
Cook Islands
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
1.24912001817
1.24094754653
1.22854430733
1.21524440762
1.20545693623
1.20183536352
1.20585333772
1.21591599889
1.22785869747
1.64734950584
1.64531688166
1.8327872494
1.6020971001
1.7655272027
2.88361730013
3.21301927636
3.35754616206
3.32339761341
3.48034367351
..
..
..
COL
Colombia
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
1.72685172065
1.68747143092
1.79867041262
1.82159427102
1.88758799557
1.63526186917
1.63081543069
1.71822123669
1.71639465327
1.445225136
1.45668670632
1.39213672986
1.35501262764
1.37596260263
1.2686560037
1.37493677475
1.40884372081
1.43034434247
1.50425458667
..
..
..
COM
Comoros
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.175864856717
0.171669906549
0.167583212735
0.163578430852
0.159632753663
0.16314718718
0.130173430468
0.126897766226
0.137404122498
0.147251872728
0.149947819346
0.15237659916
0.154550971897
0.162504041715
0.164051665186
0.171095565295
0.183194839522
0.178323966036
0.178869323448
..
..
..
CPV
Cape Verde
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.252776700702
0.257763844175
0.281514667135
0.273934155061
0.285665318968
0.287829222223
0.344774176947
0.3463681874
0.365652666292
0.401485750493
0.427723573889
0.469604310081
0.542671290365
0.550012933911
0.565623500377
0.620364868266
0.644050289901
0.645300534343
0.632019549789
..
..
..
CRI
Costa Rica
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.962661550889
1.06021348704
1.17576916004
1.19664940371
1.55694552043
1.40277429446
1.33501213771
1.36698478152
1.42147817797
1.44134052842
1.39693277675
1.43915431285
1.54917213154
1.5926854336
1.6362786426
1.61080662262
1.69716601777
1.8233668897
1.77263206405
..
..
..
CUB
Cuba
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
3.15414658845
2.78136760414
2.92140625676
2.71966036265
2.96832558955
2.3537731881
2.4622592725
2.2384389422
2.21587085408
2.28367895145
2.34497775774
2.2847632998
2.33464803246
2.27387438059
2.1349275521
2.18894404439
2.41176244487
2.38171252782
2.78859686844
..
..
..
CUW
Curacao
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
9.7137208231
10.0509812521
9.70714036921
9.63267274057
9.21503324109
8.8342583557
8.38884326607
8.08874183422
7.79277462947
7.3753787483
11.3125513124
10.6987600292
10.4035286034
10.0465753425
9.84713464484
9.89222851458
9.9676422401
9.85842828142
10.0801880821
..
..
..
CYP
Cyprus
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
6.06971120297
6.05400612113
6.59019216767
6.91880032924
6.9423797039
6.68306360355
6.79838470497
6.85845313766
7.31333206322
7.29830881336
7.26174024217
7.12055867921
7.16653875906
7.76285649021
7.21988253663
7.26608377996
7.43004487385
7.70981828307
7.94345687701
..
..
..
CZE
Czech Republic
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
13.5204187827
12.7736258833
12.3537738971
12.532259123
12.8510308289
12.6251193214
12.1929379596
10.885102402
12.133264287
12.1680987872
11.7780490322
11.9892672563
12.0114162899
11.7954282741
11.9567850609
11.9936792153
11.223317725
..
..
..
DEU
Germany
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.000692470383846
12.0103026345
11.5142726607
11.2305376805
11.0852119829
11.0424121898
11.2805733836
10.9699915074
10.9148748644
10.0438105668
10.1216515266
10.3938492342
10.0706500824
10.1241560194
10.0407129505
9.81693322614
9.85574304482
9.56934416653
9.58054534998
..
..
..
DJI
Djibouti
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.710848494549
0.687198804761
0.697081440085
0.710877928998
0.699650532681
0.684778392976
0.677141491603
0.66096386809
0.596138996139
0.623557948376
0.551104613829
0.513651207838
0.52229436692
0.522083269201
0.577489045504
0.585183462462
0.592110790329
0.580986666317
0.612855232833
..
..
..
DMA
Dominica
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.827228378874
0.828209254397
0.826808714523
0.875781458535
0.97649614576
1.13045793397
1.0302877051
1.13872342828
1.09355429643
1.15243632416
1.47370536227
1.6368885625
1.48159478218
1.64273121387
1.59234009293
1.6492854552
1.60131004367
2.19696349768
1.88302351854
..
..
..
DNK
Denmark
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
9.80958171206
11.9195287156
10.5470580271
11.0497614184
11.7569444765
10.577345065
13.0568057773
10.7992956387
10.576953405
9.57508933354
8.85327271392
9.15674568569
9.65697589712
10.3853001592
9.3454176747
8.65364057978
10.0083792019
9.09928557277
8.37781073722
..
..
..
DOM
Dominican Republic
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
1.33027301059
1.38090303503
1.4970508117
1.56462234159
1.63047329546
2.03446631505
2.17841097348
2.22689588822
2.24433431675
2.23102578763
2.34139190712
2.31880728688
2.42638565992
2.39251481702
2.19056896713
2.13308435519
2.21464788523
2.24129721986
2.23663541697
..
..
..
DZA
Algeria
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
3.11850023451
3.14141838819
3.09744359593
3.03550943851
3.11160853309
3.34703484862
3.35454421819
3.01594457899
3.60858567187
3.06052282118
2.8797894545
2.7207006252
2.88957544735
2.89949984116
2.76247074952
3.25730587052
3.21346136258
3.32507235685
3.23296039494
..
..
..
EAP
East Asia & Pacific
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
1.9283663814
2.02008789765
2.0900292114
2.20520532944
2.29884393805
2.46112263867
2.5483266542
2.54101727918
2.27846837618
2.27103634137
2.33069395629
2.39008180245
2.49903917076
2.95739332228
3.38372029834
3.6417517902
3.92818880717
4.13267558429
4.26968999312
..
..
..
ECA
Europe & Central Asia
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
9.82977310061
8.94072201792
7.79826933242
7.55530522302
7.37045131528
6.8985403366
6.7010075028
6.67171856178
6.76859004898
6.76975365149
6.79299393438
7.05938845606
7.14203842504
7.19971006697
7.46550050502
7.61526333736
7.73792616468
..
..
..
ECU
Ecuador
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
1.64076353526
1.57114739051
2.07945078549
2.20826532418
1.22051224636
2.0038117596
2.06235776809
1.55226093415
1.85870597862
1.7510650148
1.69641133921
1.86796771456
1.93382223418
2.04214870166
2.1695729589
2.18221754421
2.18788012177
2.2309577211
1.90827353995
..
..
..
EGY
Egypt, Arab Rep.
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
1.33601679354
1.35828440265
1.37726043419
1.55207949801
1.39783460767
1.54233792608
1.61644174607
1.68540285648
1.87175941718
1.88682619426
2.08912761139
1.8210962537
1.81252909171
2.22214812736
2.20442860057
2.35354862993
2.48125644441
2.58924753968
2.68529020573
..
..
..
EMU
Euro area
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
5.41391667336
8.88084650973
8.63564264129
8.37793197825
8.33087799874
8.52326699788
8.6782617575
8.5195878695
8.66430880994
8.25349863761
8.29370712552
8.46102543354
8.40293325562
8.54414125413
8.54046193665
8.4387263409
8.3368322022
8.18840275045
7.99114161232
..
..
..
ERI
Eritrea
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
..
..
0.0575475124001
0.0924596801933
0.106761658539
0.158327778872
0.172211649978
0.17506868161
0.165973929375
0.165436974898
0.152254431522
0.175145579544
0.178325343772
0.170837387473
0.120764245495
0.120741613996
0.0837532574394
..
..
..
ESP
Spain
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
5.86034491194
6.03713673035
6.27368131003
5.79121642587
6.22620904213
6.53081090207
6.44225861648
6.68126169712
6.91531626768
7.07265693623
7.31292507799
7.31410728516
7.61306832196
7.64435210513
7.95070045313
8.14463588886
7.93439235046
7.98228576897
7.2281950085
..
..
..
EST
Estonia
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
15.0220221787
12.4687817938
12.7555454545
11.6593757829
13.2825162429
13.2954942857
12.3670646371
11.2490440832
11.3610351828
11.7179695306
11.3871676389
12.9690932248
13.2245919989
12.9725079248
12.6122919407
14.8711063509
13.6431245455
..
..
..
ETH
Ethiopia
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.0624402520658
0.0597001390732
0.0573475059717
0.0965032267545
0.0543273469424
0.0377357309712
0.063451781659
0.0706944289416
0.0808608610157
0.079461764167
0.0889099874612
0.0640191106196
0.0649048461567
0.0698855978946
0.0716445768464
0.0739188472843
0.0788955983456
0.0844106409964
0.0894520620243
..
..
..
FIN
Finland
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
10.2170004011
10.9476112884
9.74351428005
10.2518201737
11.6747364905
10.2443402506
11.9776741463
11.6898295373
11.0593531923
10.7295731336
10.073238353
10.8759018704
11.7443350163
13.2147168419
12.8095996619
10.4087490965
12.5469636183
12.0866947012
10.6357789054
..
..
..
FJI
Fiji
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
1.12266917448
0.917670163833
0.985228292468
1.02484300929
1.08229716935
1.14408928758
1.17293456334
0.95701272749
0.911385875844
1.03157906477
1.06163100978
1.37718402514
1.05113335685
2.02790274293
2.30557976906
1.98829984208
1.89096861769
1.74730475405
1.48653175306
..
..
..
FRA
France
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
6.85813860894
7.31619737434
6.76255835398
6.59996485834
6.24140488175
6.61730308955
6.83960720608
6.33437272953
6.80001648583
6.1524188898
6.01623623739
6.30389169408
6.17168257017
6.23644709859
6.2320618719
6.21934112961
6.02611999083
5.86410416115
5.87313280962
..
..
..
FRO
Faeroe Islands
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
13.1079944489
12.6407915736
14.3335504886
13.2965764243
11.8284948435
14.5894027551
15.0342270131
15.0046404243
14.9629604581
14.8893055247
14.3495835428
14.2383191682
14.2168115201
14.2131782946
14.0817698007
14.1336565958
14.221681279
14.3442724203
14.5632652221
..
..
..
FSM
Micronesia, Fed. Sts.
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
..
..
..
..
..
..
..
0.512929306116
0.51357104843
0.512675925063
0.510591489678
0.507777521348
0.504975855168
0.502700627862
0.501006476059
0.566244595429
0.56483369123
..
..
..
GAB
Gabon
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
5.21407705125
1.53996796685
2.14924910899
3.20651255311
3.17478050254
3.54786002739
3.16127757184
3.08772169667
1.3853171989
1.1910756988
0.85198020844
1.41087031385
1.37810995775
1.01313412535
1.10214251014
1.30283155897
1.27553120831
1.38835461568
1.7041584213
..
..
..
GBR
United Kingdom
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
9.96056846834
10.3406073327
10.2023148397
9.83258632995
9.74282074827
9.72997392407
9.98299637509
9.50350909097
9.47453911279
9.12624704626
9.23142941393
9.31435256774
8.96645765083
9.07622570355
9.11539544436
9.007558659
8.96555355673
8.68421452374
8.51646101223
..
..
..
GEO
Georgia
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
3.14669005848
2.0264783857
1.25134791015
0.486454583861
0.880982431057
0.979139818166
1.10566509928
0.975944974733
1.0266570853
0.859400875433
0.777669956392
0.871663240084
0.909468309288
1.08550330184
1.24984834015
1.37374624009
1.18700481329
..
..
..
GHA
Ghana
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.265727960718
0.265816617139
0.261629983993
0.289616803003
0.306342822091
0.319302912925
0.33031849007
0.358171854217
0.350630511392
0.350522364247
0.328710927819
0.35246208219
0.368625878794
0.368819028109
0.344650836834
0.323830860591
0.421768854151
0.424300150011
0.369313789579
..
..
..
GIB
Gibraltar
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
3.55355944838
3.9501875859
3.39135099142
12.2931294898
14.6771563911
12.7685738372
7.12456468346
4.44386911975
11.464432838
11.857720291
12.2018794793
12.4822741264
12.3154810819
12.5202041535
12.7357343799
12.9905760963
13.4202893594
13.8939445658
14.3990507734
..
..
..
GIN
Guinea
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.183369928746
0.176605391865
0.166155076174
0.160629117991
0.169451020324
0.165288586541
0.163014629628
0.160330512249
0.153231434858
0.154683643771
0.153368703597
0.153218373344
0.153840423682
0.153491429621
0.150981385417
0.150468929313
0.14784456888
0.1482664273
0.145772985142
..
..
..
GMB
Gambia, The
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.197364594147
0.19777039147
0.191553454033
0.196350098918
0.190889464042
0.192111761588
0.186783653398
0.18163295289
0.191575159749
0.203676475839
0.212033299308
0.211398140564
0.229181670524
0.222427702286
0.220950049059
0.214604456539
0.218039772268
0.248866847602
0.251025146888
..
..
..
GNB
Guinea-Bissau
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.248868146298
0.247428503679
0.245889129509
0.257865016234
0.252666583862
0.25089835364
0.249171536395
0.263132581993
0.18126316936
0.201897112504
0.159607626617
0.156553913294
0.162089791133
0.189653900418
0.191443406766
0.193043039567
0.197081029486
0.200834017347
0.194227095725
..
..
..
GNQ
Equatorial Guinea
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.323656612827
0.521775462053
0.54109487974
0.248171512822
0.085676569199
0.29831400118
0.25659001008
0.620886121494
0.345632213819
0.938575518699
0.873799915446
5.7613120003
8.98182815112
10.5202054549
7.93343438557
7.75348463732
7.59444978003
7.44862222333
7.26947716158
..
..
..
GRC
Greece
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
7.15716405866
6.59023518519
7.28095756991
7.22783709153
7.42573580972
7.44641696445
7.50726566439
7.84745485757
8.10428998616
7.9607224111
8.39170863758
8.56674843563
8.52509500987
8.68489267578
8.78253995475
8.88649261773
8.72636310307
8.77471103426
8.70452431919
..
..
..
GRD
Grenada
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
1.25791060291
1.25571766562
1.32160472851
1.4561662526
1.66156495121
1.72068528299
1.74780303256
2.03240332941
1.88387555696
2.02608678493
2.02273398869
2.16276257974
2.12206485278
2.22470766672
2.11168805817
2.28442385189
2.38447353863
2.37683809303
2.36870318059
..
..
..
GRL
Greenland
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
10.0248920863
9.91081081081
8.75305605787
9.10106884058
9.11794594595
9.06892473118
9.24949910555
9.36394642857
9.47798573975
9.67408199643
9.46112099644
9.56608695652
9.52383392226
9.43155113186
8.76286196233
11.0779661017
10.2051291084
11.2820793917
10.220831558
..
..
..
GTM
Guatemala
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.569993761158
0.553398017848
0.643923305508
0.591577081711
0.698687839462
0.715410394207
0.649195734436
0.724897498119
0.816283063733
0.813640378797
0.88239555736
0.923069666837
0.946865817805
0.882002146368
0.903390987527
0.955882503271
0.942708668971
0.96761193822
0.870222556006
..
..
..
GUM
Guam
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GUY
Guyana
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
1.57316627376
1.55104720726
1.45440462124
1.45686699986
1.83715411973
2.03504221962
2.09761313598
2.19594980699
2.26408226072
2.25585649135
2.15587893073
2.06457535219
2.09681698511
2.05392583595
1.96725616241
2.02948266967
2.03852624743
2.03377827077
2.02969219429
..
..
..
HIC
High income
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
10.8343183848
11.9218735547
11.9091507129
12.1162466461
12.1577401209
12.1276863699
12.3504840674
12.3724422128
12.2124911223
12.1125392615
12.2757605311
12.1150633308
12.1216332794
12.2589957865
12.3708853968
12.3185065039
12.1950511618
12.1601049034
11.9406893352
..
..
..
HKG
Hong Kong SAR, China
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
4.84883530546
5.02299947844
5.7630156021
5.9532045416
5.20758474998
5.13645668524
4.56302323052
4.75461729308
5.99557329951
6.47143767502
6.0889255814
5.65536020136
5.4792127934
5.95258245677
5.66307835188
5.95163594199
5.62261568301
5.77007551365
5.52806411855
..
..
..
HND
Honduras
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.530252422069
0.536899998667
0.595621812916
0.537211070256
0.613335695778
0.695895445085
0.693995817128
0.712587053926
0.779766855922
0.778539132936
0.809102898916
0.900101019777
0.940310844034
1.02419985545
1.09252011826
1.10768379602
1.04140375666
1.26214784869
1.18756146664
..
..
..
HRV
Croatia
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
3.67848501119
3.54055172414
3.62914709677
3.77224266438
4.12068313307
4.22041863517
4.53629326816
4.49960386473
4.43834591053
4.66551418919
4.92732477477
5.30228378378
5.19195652174
5.20165848717
5.21969369369
5.49306018936
5.25570252594
..
..
..
HTI
Haiti
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.139477074481
0.137130664203
0.12251523364
0.087642014694
0.0389263517371
0.119633226951
0.136053186897
0.173782893403
0.147695706893
0.156688040692
0.158210792805
0.178513229915
0.204377671721
0.191120081883
0.215737866065
0.222045985231
0.223599070633
0.249594601753
0.250082680007
..
..
..
HUN
Hungary
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
6.07208394689
6.11520166966
5.66246244578
5.8048761084
5.61393716062
5.8141797363
6.08094129919
6.00625519533
5.92738032274
5.89619634814
5.6073548735
5.59719505405
5.5156927012
5.82546631875
5.6703982509
5.73803460174
5.68216657714
5.55386156022
5.44304410318
..
..
..
IDN
Indonesia
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.811332920114
0.958810056772
1.06332205885
1.12957054147
1.12685231375
1.12808792166
1.2523207709
1.35889146769
1.01141020081
1.12812808306
1.20958613304
1.33700862538
1.38570801282
1.4059085806
1.4858591534
1.47957269405
1.47066895826
1.58571398238
1.72814037338
..
..
..
IMY
Isle of Man
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IND
India
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.812907098756
0.851501665263
0.887647929762
0.905450271258
0.944560944286
0.986983879723
1.05635283396
1.08132320276
1.09135706686
1.1455172029
1.16806411706
1.16597974007
1.16988703463
1.20435475309
1.24716986899
1.2891919626
1.35551418046
1.4335012506
1.52872925967
..
..
..
IRL
Ireland
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
8.67641194592
9.39085656749
8.8061314136
8.78030028345
9.15543310835
9.11455783172
9.62439938309
9.94854512759
10.2729841064
10.6793423114
10.7615023649
11.3237354714
11.0524422125
10.6830117995
10.616497906
10.387697438
10.1195934786
10.1931926395
9.85255767302
..
..
..
IRN
Iran, Islamic Rep.
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
4.14038462103
4.16870234269
4.33645302868
3.96405105215
5.04593483731
4.76794388029
4.71335179874
4.69072164915
5.00809265742
4.92656284491
5.19175794786
5.38479857956
5.58243114226
6.05799605784
6.42255594203
6.58042694799
6.97556253863
7.08816636233
7.44790273292
..
..
..
IRQ
Iraq
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
2.88858031091
2.53502740066
3.20649542702
3.37809959733
3.69102218256
3.72658055732
3.22574121541
3.07606231723
3.16202556076
3.0641799739
2.97961352188
3.42220788767
3.4115447949
3.47321490159
3.67847985464
3.533806298
3.54707003445
3.43070029149
3.41094043686
..
..
..
ISL
Iceland
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
8.13129905808
7.8456744186
7.24692454998
7.54807050796
7.55457142857
7.23822014925
8.18963333333
7.73844852941
7.66858029197
7.45292972973
7.69939501779
7.3726
7.53772222222
7.48545701348
7.64601779001
7.42707947185
7.35133418043
7.50899006952
7.02406321082
..
..
..
ISR
Israel
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
7.19629077253
6.93388280461
8.10061272692
8.58165823988
8.72771809594
9.780871055
9.55726370344
10.8640215901
10.5139909563
10.1478612245
9.96836253776
10.2111057618
9.61122374429
9.73470454579
9.28194228227
8.54403962425
9.32541021024
5.12759989415
5.15320668236
..
..
..
ITA
Italy
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
7.47869130274
7.6459673019
7.62283339187
7.43726851155
7.25069933582
7.6983899863
7.53207015835
7.59841371116
7.76217035562
7.67755607498
7.83437267993
7.84572620203
7.86047838075
8.13040683348
8.08746612394
8.04340406146
7.94463279599
7.73682282203
7.43945486257
..
..
..
JAM
Jamaica
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
3.33252050209
3.39717388222
3.34155603789
3.44763763961
3.50898812611
3.91245241935
4.06304307849
4.19508480751
3.80500113633
3.79621465107
3.98508674742
4.07978057115
3.93529008336
4.08359980196
4.06162541223
3.82140582554
4.53848221997
5.19256409298
4.54144685918
..
..
..
JOR
Jordan
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
3.28179148265
2.76395599436
3.28585989821
3.09813488675
3.35741048713
3.23168033373
3.2803411294
3.23351681256
3.16337973637
3.11269971157
3.23246336634
3.25425277072
3.35183306868
3.38295662277
3.6371926276
3.88553598817
3.74448582265
3.79653020134
3.69488111284
..
..
..
JPN
Japan
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
8.86136010264
8.88145441047
9.04507381529
8.90243340078
9.39628950633
9.43956000925
9.58789243088
9.53104167625
9.17005277272
9.45819624951
9.61293341215
9.45557013425
9.5473493507
9.68729648914
9.85949158194
9.69053101203
9.6415899762
9.79244258956
9.46064684406
..
..
..
KAZ
Kazakhstan
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
15.8954462078
13.5394830925
12.3942840208
10.5421784741
9.03150237635
8.45071661175
8.29809200017
7.80345209461
8.58455332054
9.95457734665
10.2258795172
10.3169753825
11.4672949761
11.7008717683
12.5503264451
14.6860534279
15.1176611661
..
..
..
KEN
Kenya
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.248353821016
0.199687229116
0.221258844524
0.245588095782
0.246091799286
0.275435612994
0.330908816553
0.285558155909
0.337972805467
0.333931014859
0.33333482649
0.29209161588
0.241995381176
0.19980931393
0.219689191825
0.240419680976
0.262022129256
0.262269240543
0.270242232187
..
..
..
KGZ
Kyrgyz Republic
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
2.38927716674
1.82825335681
1.33514339207
0.974692259091
1.2000231909
1.16024656085
1.21392453617
0.937743699379
0.92135678392
0.763033220312
0.970875190259
1.0472776168
1.10093480956
1.00809526587
0.995834055584
1.23428860701
1.17626916008
..
..
..
KHM
Cambodia
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.0473189684186
0.0468211814363
0.0467099200402
0.0452319185474
0.0496267331758
0.128698541789
0.142086410356
0.162544506366
0.186315630869
0.179684114102
0.181185365185
0.208943656251
0.222671122383
0.240165074614
0.265145394927
0.278643786664
0.301425863081
0.324856141509
0.332938112274
..
..
..
KIR
Kiribati
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.306242605609
0.30072577669
0.296271359897
0.292474776344
0.288785635533
0.284822908036
0.467544720837
0.368020272728
0.407017327496
0.355484465125
0.392846089751
0.300046756283
0.294548291966
0.289143462197
0.283955397243
0.279047267035
0.313639959801
0.347242826931
0.303899225127
..
..
..
KNA
St. Kitts and Nevis
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
1.57063652588
1.75454545455
1.76361072228
2.03819317965
2.13688026965
2.32541463415
2.51225838023
2.52027491409
2.55858460005
2.42962612399
2.31847536468
3.97627464163
4.23930635838
4.7103403982
4.68355890654
4.7727004657
4.71156973359
4.94214646715
4.87957418496
..
..
..
KOR
Korea, Rep.
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
5.68744694301
6.20393209762
6.56319345899
7.19732817323
7.656459744
8.22259266405
8.80901601318
9.20867534926
7.86051677577
8.47342327906
9.19971730344
9.29569052094
9.77666460879
9.73215777597
10.0392703012
9.61648620632
9.74844810237
10.2816153624
10.4752460345
..
..
..
KSV
Kosovo
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KWT
Kuwait
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
21.7576336874
5.20889914545
..
..
..
30.9166625202
29.282035108
29.4026293593
28.9668576107
28.7066686338
30.457783599
27.440622655
25.4746281795
28.9889396488
31.7563203219
34.1058045577
30.5983467159
29.8235555094
30.1147589166
..
..
..
LAC
Latin America & Caribbean
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
2.25907106073
2.25221451613
2.26086395955
2.29551746349
2.36091509907
2.37397743917
2.42622561588
2.50408821199
2.56455969041
2.57796532994
2.51533670026
2.54565378317
2.52579979623
2.52709831346
2.52623992411
2.57665948332
2.6053615808
2.69153159731
2.78135096399
..
..
..
LAO
Lao PDR
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.0559792043438
0.0586740680483
0.0628453266044
0.0611540027947
0.0642785851418
0.0657673897919
0.109084426116
0.143271426567
0.17472663203
0.172782191644
0.199313718484
0.221691349388
0.240833045282
0.243063990363
0.246534928636
0.247936459876
0.259885181592
0.259041185153
0.254534331695
..
..
..
LBN
Lebanon
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
3.08571204719
3.13857850189
3.6274285842
3.58711200293
3.78699488334
3.93281555103
3.89895078942
4.34961541134
4.4396390839
4.49874269417
4.10272025789
4.26204402268
4.14616554616
4.63008227074
4.2108604662
4.32809555772
3.66748595531
3.7495903138
4.10356846732
..
..
..
LBR
Liberia
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.227560742382
0.136765876668
0.141026171526
0.158917280733
0.156392744428
0.159313679854
0.15641010632
0.150687287625
0.15298199214
0.150144800943
0.153259063882
0.170918138221
0.16767865499
0.175055277322
0.202752527629
0.232749386575
0.22906867754
0.195098235734
0.166387496378
..
..
..
LBY
Libya
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
9.30189096263
9.60891769008
8.99599952993
9.27150439838
8.93141140823
9.60022630324
8.60443193187
9.81579579873
9.54787092761
9.19906106432
9.51100333022
9.58000311743
8.76348202057
8.87323332603
8.90153564687
9.02877458811
9.12497671257
8.9990785404
9.48529648986
..
..
..
LCA
St. Lucia
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
1.23053691275
1.26727205882
1.49726943296
1.62502501644
1.85034585707
2.14316164387
2.24415552624
2.08260393142
2.02714014952
2.07561986428
2.11563117003
2.29917604514
2.05088196666
2.23736770016
2.18980632134
2.22524288341
2.19794051715
2.28727322411
2.32682367475
..
..
..
LIC
Low income
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.651662226681
0.647484683912
0.646449889189
0.639954419611
0.613028681854
0.606057835214
0.600088494742
0.549339433087
0.26278444193
0.274070208348
0.27812846438
0.276120661565
0.266819550891
0.267982655818
0.279984912425
0.285819522107
0.297389915124
0.280293507476
0.286804777781
..
..
..
LIE
Liechtenstein
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LKA
Sri Lanka
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.217646222125
0.23160616971
0.285035299152
0.273506740965
0.298999929242
0.318029986344
0.379084300205
0.407328213406
0.419394876147
0.458717116664
0.542075831722
0.541470750606
0.575325534062
0.550338146603
0.610150559361
0.586755896525
0.585270313582
0.60742021527
0.574575143577
..
..
..
LMC
Lower middle income
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
1.13089153675
1.19312592483
1.27721907831
1.2330600893
1.18709543065
1.20240925452
1.23333281667
1.22296919265
1.1947183466
1.23453057564
1.27354138571
1.28626735308
1.29964945304
1.34987530723
1.39199666937
1.41037477941
1.42448878079
1.49801583153
1.56550021275
..
..
..
LMY
Low & middle income
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
2.22211423602
2.27141726888
2.32244668662
2.28257641271
2.23542522423
2.27116414373
2.2971332164
2.25772821815
2.15310290312
2.14674596788
2.17617022068
2.19040289844
2.2215028067
2.4214616837
2.59411826539
2.69912843094
2.8312271524
2.93748495376
3.01789944764
..
..
..
LSO
Lesotho
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LTU
Lithuania
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
5.98712081081
4.75027341841
4.74564734828
4.46158397577
4.36378085992
4.28465391061
4.55615724332
3.87781874823
3.48620760009
3.71093289503
3.80857146152
3.73897148548
3.87877311356
4.10057393835
4.21143802654
4.48432731429
4.50551633878
..
..
..
LUX
Luxembourg
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
25.9095613461
27.4693359173
30.0989940715
27.2251512674
25.3643457219
20.4337938207
20.3700090531
18.8748432471
17.3204662114
17.8547697311
18.8771074948
19.4344148123
21.1221829999
21.9631888936
24.158757463
24.3516461073
23.9352716778
22.5905773626
21.4924547222
..
..
..
LVA
Latvia
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
5.33888449848
4.66670417633
4.42256318681
3.83175984095
3.8333472501
3.44398653061
3.31551576763
2.82159539749
2.60183853288
2.90530860534
2.84514029085
3.04828752072
3.08381892401
3.11944428023
3.31768466766
3.4831747287
3.34968011036
..
..
..
MAC
Macao SAR, China
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
2.87480713577
2.95747416054
2.8723795007
3.08444857513
3.2748924487
3.12005993585
3.49662556076
3.64871183554
3.75102471043
3.61262055377
3.78700386925
3.83137428594
3.39391997722
3.34411347332
3.67380941746
3.8163796506
3.30817792392
3.0817624365
2.57450965643
..
..
..
MAF
St. Martin (French part)
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.950003641888
0.989618253875
1.01400186029
1.08081091715
1.11750897314
1.12793687752
1.14169055073
1.14991406834
1.14086598703
1.16554860297
1.17753634916
1.29475199528
1.29877889644
1.26169574418
1.34930582759
1.40900761843
1.43289944096
1.49240301866
1.529484855
..
..
..
MCO
Monaco
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MDA
Moldova
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
5.65423914802
4.21828717949
3.27290173254
3.04527415452
3.14135922097
1.93988559031
1.71666113206
1.23473464073
0.965215293599
1.02291392443
1.10018329815
1.18752991044
1.26373401955
1.36166819927
1.39295109217
1.31019060059
1.33733638796
..
..
..
MDG
Madagascar
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.0874440024378
0.0924582284847
0.087275080411
0.086747222991
0.103428731838
0.0999895881151
0.104212501544
0.121694224422
0.120448301366
0.129274292561
0.121960676041
0.109919204423
0.075633846642
0.104289439051
0.111544285307
0.0953347951497
0.0921383284302
0.0950541008349
0.0977427318403
..
..
..
MDV
Maldives
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.701741436343
0.763589400511
1.09176461451
0.910553605549
0.904479231756
1.10579706649
1.25621751457
1.41581918286
1.26464089863
1.73383842144
1.82520604898
2.07248974949
2.44236287757
2.0850853784
2.58338831842
2.29777469178
2.9025512743
2.95980088226
2.99194167057
..
..
..
MEX
Mexico
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
3.86214036951
3.9172685556
3.91472559179
3.83170061738
3.99623948622
3.74084852506
3.78099023728
3.78866764713
3.83670186243
3.86559759359
3.83176643355
3.88440298206
3.80751609067
3.86966577313
3.85743585319
4.06320809098
4.09563146688
4.11881637549
4.30123665475
..
..
..
MHL
Marshall Islands
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
1.00809930638
1.05919247354
1.11416070814
1.2457833733
1.30536932661
1.29403230866
1.28443830392
1.276785887
1.34167148084
1.26739631336
1.47678588551
1.54752450557
1.61988629816
1.62219187567
1.69350369458
1.62078905394
1.75588967631
1.88635281117
1.87233358548
..
..
..
MIC
Middle income
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
2.4302198979
2.48936846209
2.55016209045
2.50788431078
2.46011046799
2.50404271802
2.53679329546
2.50131949974
2.42521149405
2.41897464132
2.45477155795
2.4741930135
2.51424395349
2.74727589756
2.94780122803
3.07166996058
3.2261846772
3.3556523674
3.45178510257
..
..
..
MKD
Macedonia, FYR
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
5.57178721633
5.31847518673
5.35821910727
5.52062150748
5.95035481479
5.36274945865
6.33680769563
5.85824899134
6.00491963779
5.95137780093
5.40732696915
5.57694153176
5.50490374262
5.51819799628
5.33961776543
5.53114962386
5.75636338479
..
..
..
MLI
Mali
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.0486234772627
0.0492444615173
0.0488865403937
0.0488248630254
0.0483093727034
0.0477760213995
0.048322890692
0.0505605930498
0.0484920211616
0.0491397004027
0.048047847056
0.0469409348856
0.0461358284743
0.0435415566784
0.0442144008298
0.0431358004566
0.0418151644445
0.0413233609015
0.0410826010253
..
..
..
MLT
Malta
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
6.05055
6.05792905836
6.16193307176
7.21156934941
7.10881741706
7.13027777778
7.80685
8.46378067885
5.57193506494
6.04865979381
5.29364358974
6.32582411431
5.80653788554
6.47688054152
6.41524866174
6.6831716757
6.33411251747
6.66075296419
6.21329287535
..
..
..
MMR
Myanmar
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.108884814582
0.104887396178
0.120917757804
0.130357288421
0.150288841925
0.165189593128
0.169810066894
0.172978915875
0.183798332774
0.198444796576
0.197715094602
0.162136698598
0.179212231578
0.209651756758
0.248975781507
0.313967123709
0.279557414077
0.27809775746
0.270386091606
..
..
..
MNA
Middle East & North Africa
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
2.51264956477
2.5861026818
2.6965374962
2.65133264444
2.91047506336
2.92348442008
2.87821316775
2.86810473083
3.079975134
2.99849872718
3.0813829825
3.08924877925
3.10551054304
3.37135048276
3.45212861625
3.5643187422
3.67771034614
3.73880674805
3.84418980508
..
..
..
MNE
Montenegro
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.28236634388
3.94141361307
3.12998557238
3.10058885701
..
..
..
MNG
Mongolia
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
4.580921419
5.48287130879
4.91948970207
4.10093006627
3.4789203669
3.43622586922
3.4582601729
3.28770541495
3.2566015814
3.16218349993
3.11289935302
3.23844790441
3.37044142126
3.23292747358
3.40090405025
3.45777848963
3.65402572536
4.02397553219
4.08425986533
..
..
..
MNP
Northern Mariana Islands
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MOZ
Mozambique
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.0738972011377
0.0740411592003
0.0699175390258
0.0725767591027
0.0694878009701
0.0697338530282
0.0634518241239
0.0667621454498
0.0655142449886
0.0669885281861
0.0741432616495
0.0845560975678
0.082698399132
0.0972486245506
0.0949066858531
0.0877466470531
0.0930057049586
0.118022810718
0.103608443149
..
..
..
MRT
Mauritania
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
1.33592827634
1.34128701128
1.3971412846
1.36733138036
1.40199681124
1.30229885609
1.27227127708
1.23676018626
0.445274666615
0.466989856064
0.452348941989
0.471792960288
0.504152541858
0.503862070928
0.544262387984
0.543927982255
0.534240863858
0.607234102952
0.606482838652
..
..
..
MUS
Mauritius
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
1.38423178808
1.42670664822
1.58077890842
1.61789243391
1.45955166217
1.630203206
1.72032705583
1.74043616388
1.89287594761
2.09985560728
2.33267165063
2.47241434776
2.46346129057
2.57299451837
2.58958428262
2.74305390777
3.01440477834
3.08324317121
3.11543014405
..
..
..
MWI
Malawi
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.0652804658661
0.0688732196848
0.0677970915936
0.0712908959618
0.0735489089213
0.0738345803801
0.0706410389445
0.0735594345451
0.0780922006646
0.0913202527132
0.0806633432947
0.0785603716849
0.074684305096
0.0788053795221
0.0782039693753
0.0714949331208
0.072254356068
0.0701590739373
0.0877140370092
..
..
..
MYS
Malaysia
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
3.10803296823
3.66645625503
3.92094547374
4.65567466411
4.6527495112
5.84591099479
5.90079202331
5.73059792625
5.11533112318
4.71995379684
5.40694712928
5.70494150523
5.51201997216
6.395253722
6.56652209322
7.02849226565
6.74855334256
7.20558803026
7.57280213867
..
..
..
MYT
Mayotte
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NAM
Namibia
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.00518366164133
0.0100109131785
0.00969769735885
0.0117678772572
0.018290816247
1.05478722889
1.12102764591
1.08636532806
1.10666328632
0.956849523023
0.930367504836
1.07752741041
1.12235685677
1.17586944853
1.22213054222
1.27819116893
1.34657539484
1.38596302705
1.80315139551
..
..
..
NCL
New Caledonia
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
9.6695297619
10.3939549254
10.0221990641
9.74795283334
9.21106927735
8.968
8.95343654822
9.05648778795
8.8008
9.72776678425
10.7827650893
9.75283907898
10.9601065511
12.1835337896
11.0933810873
11.9525241795
11.6564524719
11.7694966997
12.7680954987
..
..
..
NER
Niger
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.106880821469
0.102211690619
0.0945482506469
0.102590859845
0.0983749211391
0.100278855923
0.106923215548
0.102897281349
0.105483097469
0.100468429789
0.072853719885
0.0671259289994
0.0695422299089
0.0726239160834
0.0701429710579
0.0634971806736
0.0607527946593
0.0625818982276
0.0588749887803
..
..
..
NGA
Nigeria
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.46514096571
0.452533869296
0.633354890639
0.572390171007
0.434227708551
0.317386474795
0.358923361891
0.348666331537
0.340581784375
0.370815560896
0.640168713776
0.657835861871
0.755783744875
0.699933605676
0.711492337674
0.744108894838
0.643405418258
0.602959036608
0.635555086084
..
..
..
NIC
Nicaragua
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.641600884489
0.490187657495
0.575929107251
0.519815213009
0.563494394156
0.612084001863
0.618247328848
0.649827070516
0.696537134616
0.726097907194
0.722746143646
0.744990079895
0.730628669255
0.778018751308
0.772286544541
0.732813749001
0.771644883151
0.810692038002
0.768462040355
..
..
..
NIU
Niue
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
1.57179597085
1.59991273997
1.62256637168
1.64218540081
1.66379310345
1.69142066421
1.72727272727
1.7723537941
1.82347091
1.87762416795
1.93
1.98002159827
2.02708678828
2.07409502262
2.12210648148
2.17497034401
2.23189287888
2.29474342929
2.35819935691
..
..
..
NLD
Netherlands
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
10.9769653558
11.4601658261
11.0761375016
11.2670914065
11.2309695261
11.4042276843
12.0098562867
11.4229857756
11.1708247547
10.3149310978
10.3835502819
10.4245292026
10.6733807548
10.7881244984
10.8651157837
10.5532709578
10.2067866826
10.5297815318
10.5651279343
..
..
..
NOR
Norway
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
7.38673771072
7.5143513152
6.92353280142
7.26256493506
6.74445233593
7.5686543578
7.57338872404
7.75015008742
7.80561326715
9.19792130045
8.64125161434
9.10534057168
8.24792177171
9.33769155866
9.29145932738
9.16335376683
9.49583569082
9.53980832647
10.48447741
..
..
..
NPL
Nepal
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.0332471501589
0.0491329470901
0.0664139043206
0.0713894927107
0.080602397913
0.0942439019782
0.112306904792
0.122654636118
0.096819331168
0.135134343338
0.132549740773
0.138282167978
0.106010963763
0.112912640336
0.103622949056
0.118550711835
0.119494468299
0.120579774932
0.122548975176
..
..
..
NRU
Nauru
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
14.4165119581
14.1128928801
14.2161567477
13.9601810886
13.7563621616
13.9765295888
13.8887670687
13.8542453768
13.8570007955
13.5057734422
13.5124987551
13.870794346
13.8556229492
14.1948387097
14.1681196751
14.1401028278
14.1135892628
14.0844002364
14.0484282908
..
..
..
NZL
New Zealand
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
6.96708729698
6.9980515579
7.41041962794
7.14162672863
7.30340874561
7.3242170741
7.95892282958
8.21472391178
7.87900366972
8.22878203958
8.47598086993
8.81384074217
8.51995897176
8.37167212952
8.20690299694
8.07220784247
8.01822157434
7.78965399806
7.7525065005
..
..
..
OMN
Oman
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
5.54156114247
5.62374206617
5.95528698021
6.37309725854
6.99590171258
7.13843481549
6.74068348143
6.88107845287
7.36488878107
9.21376357773
9.74179199996
8.96971969194
11.0923663214
13.9947631966
13.2705677415
14.2634317208
15.6257763127
15.76365568
17.34931131
..
..
..
PAK
Pakistan
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.613042717928
0.593570578897
0.616810127163
0.644535617496
0.683519739322
0.663417303908
0.722420056598
0.70545308859
0.708689289961
0.710628382686
0.736560534593
0.733832874168
0.758500957022
0.77638254225
0.844473086519
0.861266905565
0.903051967403
0.978331405117
0.974531966715
..
..
..
PAN
Panama
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
1.29775705051
1.37545046132
1.59507236958
1.60683620322
1.82308228707
1.29725252024
1.78670667569
2.13792161962
2.09190877002
1.95513574807
1.95870981142
2.32608231664
1.90093293752
1.96867638331
1.82199355179
1.86276005374
2.07136593614
1.98525430563
2.02915643007
..
..
..
PER
Peru
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.976207829209
0.922963385199
0.904015935601
1.0250923165
0.992562206886
1.00235059457
1.00473745551
1.1110699501
1.10876471183
1.15226223191
1.17148273055
1.03571954449
1.02287069629
0.980088527631
1.17082179586
1.35775542079
1.26841750242
1.54485910321
1.42411329269
..
..
..
PHL
Philippines
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.722586572859
0.725770915413
0.778268545594
0.775084272684
0.831131130822
0.911198487869
0.926749286217
1.06870223906
1.02173627478
0.964997615224
1.02330738347
0.977208612353
0.943282334051
0.926486417781
0.941163792266
0.947630097982
0.776324297613
0.886382525974
0.922187692723
..
..
..
PLW
Palau
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
15.5535820797
15.169543016
7.15219579716
6.73049862343
6.5466555582
6.58844325953
6.6318526054
6.47522348527
6.33538494763
6.21657130748
6.12059253077
9.45005669519
9.36749604046
9.68037364199
9.62904610413
9.76343815935
10.2619559242
10.5719256387
10.514435436
..
..
..
PNG
Papua New Guinea
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.515080860505
0.48445455243
0.470040502974
0.44528264656
0.474786762509
0.432361661263
0.446946335989
0.514215936576
0.556068362371
0.470221503045
0.499720942719
0.585408472388
0.620674826226
0.683728101307
0.753357817198
0.756809725045
0.735758655521
0.486731327937
0.321948193294
..
..
..
POL
Poland
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
9.62184906136
9.45476642332
9.31280953585
9.16611744975
8.72158345354
8.98770224113
9.29160712621
9.08277474774
8.45533093615
8.20355840964
7.84556432288
7.91689997688
7.7669063784
7.97957011426
7.9916355837
7.95921404821
8.37440371344
8.26861722388
8.2900923756
..
..
..
PRI
Puerto Rico
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRK
Korea, Dem. Rep.
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
12.1546945442
12.2712443651
12.2770057213
12.3971869164
12.0924509046
11.9126264337
11.6468039479
10.5341764876
2.8862342006
3.1454035597
3.36185653986
3.46232354055
3.2895630679
3.33708570587
3.38706762525
3.51536239394
3.56052287735
2.94522559952
3.2483650538
..
..
..
PRT
Portugal
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
4.41848302344
4.85549924509
5.25665903844
4.75967335071
4.87771884377
5.22530128653
5.0608611636
5.29059887006
5.73165603712
6.35831993316
6.15754614097
6.10739212158
6.44458688575
5.86870317472
6.01554527389
6.19079013224
5.58450981941
5.67800149599
5.30109797087
..
..
..
PRY
Paraguay
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.53313233707
0.512869370748
0.587241700599
0.645214629296
0.746655084391
0.82663717986
0.764776000734
0.836558483643
0.878811877324
0.860414073255
0.690366814952
0.700599440293
0.700489639261
0.717150531894
0.706552769078
0.649734579716
0.663387642739
0.675956298887
0.660976090495
..
..
..
PYF
French Polynesia
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
3.22814164999
3.19886295271
3.17175559389
3.12808563139
2.6863453113
2.70184617096
2.53158439765
2.56254367575
2.4961797086
2.46526814312
2.71586194127
3.05269457606
3.05333877551
3.30736802264
3.13329120665
3.35234040884
3.18228414026
3.21315885133
3.36840414151
..
..
..
QAT
Qatar
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
24.855795171
36.5996860803
54.8993924671
62.5170444833
61.0418640912
61.4810230348
62.1087560643
68.6261802957
59.0378260584
55.1140698756
58.7693470083
49.4998593882
49.3262797333
55.0078056618
62.6134201967
63.2110462298
58.4906770271
57.6602472263
49.0505837858
..
..
..
ROM
Romania
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
6.84542482872
5.9318885055
5.48786848918
5.36730837179
5.13873643922
5.66662329703
5.65442706122
5.14264476368
4.60741936631
3.99144353676
4.00946901038
4.32279188505
4.22754513813
4.41264205849
4.39839307462
4.38934101666
4.72497916171
4.56782197584
4.40000005578
..
..
..
RUS
Russian Federation
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
14.9353384043
13.668389429
11.8177539437
11.4240116106
11.2966653558
10.7059800616
10.2878148183
10.4863733468
10.61804071
10.5817688373
10.5794815933
10.9613034257
11.1433283888
11.2866494377
11.7165153333
11.7352257847
12.0370082282
..
..
..
RWA
Rwanda
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.0959361916344
0.0917925157673
0.0988825122182
0.107232094383
0.109718382821
0.109940099163
0.108673755089
0.103644597191
0.0924127707544
0.0884970725429
0.0846752126114
0.0815181043608
0.0792739230056
0.0770007741148
0.0765174693149
0.0749202839858
0.0730183618838
0.0736380945594
0.0703776014855
..
..
..
SAS
South Asia
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.69648917993
0.723665925547
0.754265393743
0.769195984635
0.803592759841
0.83621360219
0.895675332289
0.913116589293
0.91884917838
0.960687417544
0.982407548341
0.982991290218
0.988260844569
1.01480891372
1.05795406526
1.0887035798
1.14773973054
1.21372388499
1.28284124713
..
..
..
SAU
Saudi Arabia
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
13.325123971
16.1055512244
16.6854278662
17.849114805
17.1441347537
12.7005543254
13.7607654489
11.3995141278
10.7644988492
11.6058131492
14.8538438184
14.304642886
15.0704771433
14.492076898
14.9057290012
15.2669159368
15.4600095744
15.5708395362
16.5690650603
..
..
..
SDN
Sudan
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.209826245164
0.19833741613
0.170677620908
0.101655776982
0.151339683937
0.152684468179
0.138005536338
0.170790593611
0.144317181867
0.152642023819
0.161856407602
0.181976356138
0.226678385788
0.247579368451
0.276709355759
0.312279538416
0.296759971354
0.313987556483
0.339294766787
..
..
..
SEN
Senegal
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.439539310037
0.459015914486
0.452718051804
0.454026996569
0.479138022925
0.417564679701
0.435335255075
0.37033279831
0.379469367431
0.39934690644
0.414308349942
0.443774726937
0.453655790759
0.486775142562
0.499038115864
0.538991499928
0.428764133628
0.46817548684
0.422165697261
..
..
..
SGP
Singapore
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
15.4057325238
15.1272083825
15.5592397932
16.4862830844
19.1190236911
13.3664204852
15.0667976135
18.2403303477
14.5888184966
12.6969886579
11.8233642841
10.3345949734
10.0719564176
8.42158792651
9.78465116279
11.7872155282
10.8750286273
7.84849561958
6.6734035211
..
..
..
SID
Small island developing states
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
3.6360728289
3.6057462421
3.6599985894
3.6456773983
4.0070545704
3.5129257159
3.7540769297
3.9735223452
3.4969463701
3.463274723
3.5698109941
3.4616165035
3.4899488328
3.3444232402
3.4895807652
3.646406918
3.750768596
3.5471617312
3.730938081
..
..
..
SLB
Solomon Islands
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.521272780727
0.50679239001
0.492622027362
0.46795168566
0.444357889088
0.452710968452
0.440404735194
0.428534624486
0.417021188609
0.414999484441
0.403724200699
0.410128214891
0.398857227492
0.40437813946
0.393249131684
0.38246293675
0.372014492754
0.398835827509
0.388102410524
..
..
..
SLE
Sierra Leone
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.0976253821674
0.11748233545
0.118868375418
0.128215646208
0.148925458728
0.150504198814
0.159918341317
0.162095735447
0.150252484695
0.144740657256
0.152234248868
0.199374513517
0.264514711415
0.258937171513
0.215482254721
0.244778094611
0.232656525817
0.239634309179
0.237839864337
..
..
..
SLV
El Salvador
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.490964855137
0.596797794457
0.623561309298
0.696750403426
0.782111013415
0.92100308351
0.845295172862
0.986599654091
0.988788548403
0.964037790636
0.96670490825
0.996957271564
1.00856947283
1.09060562804
1.04132038392
1.05152158172
1.06789643307
1.13119870812
0.997269165437
..
..
..
SMR
San Marino
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SOM
Somalia
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.00277834644518
0.000556864997368
0.00168124119339
0.00169287564189
0.00169657822026
0.00168605530648
..
..
..
..
0.0698803478779
0.0661292997689
0.0734223271376
0.072127567745
0.0704596887074
0.0693057143667
0.0673552737135
0.0722189850041
0.0727460307142
..
..
..
SRB
Serbia
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
6.25838982503
6.60563465037
6.61260104376
6.79347450913
..
..
..
SSA
Sub-Saharan Africa
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.905651451357
0.896865828147
0.879439764278
0.890355623621
0.871420185222
0.838080573604
0.841891403722
0.837019226947
0.81047018217
0.80156518612
0.831310395513
0.809589453929
0.795377530206
0.811076210078
0.865363394101
0.854105617875
0.824569359577
0.846712675175
0.842532043053
..
..
..
STP
Sao Tome and Principe
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.568443897104
0.587898271905
0.606943352505
0.595596774325
0.584438352671
0.601922851448
0.590096475835
0.578339041096
0.593898614526
0.6355515436
0.624125948514
0.639161960538
0.729571010078
0.743120009727
0.756278648935
0.840933810329
0.828192553397
0.815608695928
0.802898931512
..
..
..
SUR
Suriname
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
4.45205829585
5.08749403769
5.04310122532
5.07991659893
5.03027188899
5.00519590751
4.82133126346
4.78065528611
4.7641833508
4.67515241552
4.55580641154
4.78677146194
4.68941457766
4.60258216927
4.63174018117
4.76649629277
4.82965382155
4.78020567064
4.73445150719
..
..
..
SVK
Slovak Republic
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
8.60205709978
7.69473594261
7.54617620107
8.11177912312
7.96344220926
7.79893476652
8.01947944379
7.38889847575
6.77909670571
7.31713779129
7.29711086852
7.34135225863
7.19918910353
7.2720537828
7.22053771101
6.77984750945
6.94655298887
..
..
..
SVN
Slovenia
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
6.49613292597
6.66913717714
5.66025943989
7.29346030151
7.62684429935
8.16137920478
7.82932058913
7.62765550239
7.34137456008
7.60460692771
7.72387161484
7.75955401743
7.87018663464
7.93350775866
8.0872992145
8.0240302618
8.48847631939
..
..
..
SWE
Sweden
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
6.0414028508
6.42897347228
6.59112367328
6.09610464983
6.42717892651
6.0650211754
6.84716770327
6.16012318072
6.20819065049
5.76997527491
5.61440895253
5.74870485721
6.43491931869
6.1167165029
6.06164639345
5.71259502396
5.45779171973
5.25191854214
5.32014351541
..
..
..
SWZ
Swaziland
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.492929461485
0.367746631706
0.29072474173
0.142496923642
0.512539125205
0.47188900685
0.346353764655
1.1946238866
1.17990430715
1.18248115294
1.11681919702
1.06420062451
1.03970531328
0.956558319648
0.940610888126
0.922633447641
0.90887201549
0.938590847188
0.949947146245
..
..
..
SXM
Sint Maarten (Dutch part)
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
1.62395714286
2.02124271249
2.30284585311
2.21901904637
2.52983404501
2.53218952512
2.59128204457
5.35923899688
5.58100601172
6.3845292874
6.96056994244
7.90282259058
6.48406212664
6.73169082126
9.37863030303
8.40446320869
8.79906619385
7.33115378735
7.84376006256
..
..
..
SYR
Syrian Arab Republic
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
3.0388444088
3.4037013493
3.40161273198
3.50606352547
3.5144846437
3.63824338638
3.51423581066
3.52002246295
4.12552831111
4.16836384234
3.97719059171
3.70155842694
3.30059698455
4.00746833752
3.75013786604
3.48386507079
3.61704509382
3.68387440458
3.64594113225
..
..
..
TCA
Turks and Caicos Islands
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
..
..
..
0.717472118959
0.69367551548
0.675944700461
0.875022370697
0.834689580607
0.777194934563
0.707641837129
4.29651970144
4.00686829268
3.64215529779
3.96354524909
4.38824792881
4.58321706778
4.38489988877
..
..
..
TCD
Chad
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.024401020491
0.0112416312587
0.0137773926025
0.0150399228082
0.0151309152202
0.0146719656227
0.0147308223858
0.0152615563896
0.0147827599964
0.015227290058
0.0214070785557
0.02023363854
0.019100690631
0.0416618372096
0.0398637774845
0.0408447785396
0.0403642888047
0.0445477412443
0.046466684726
..
..
..
TGO
Togo
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.211085827371
0.225044359949
0.218719711316
0.222042278275
0.209000744199
0.233367241938
0.251800658535
0.226797849517
0.259124704761
0.330370731284
0.283047641141
0.235973506245
0.243938182339
0.282990655001
0.264193433282
0.247493363589
0.220819406037
0.2328846657
0.245658480584
..
..
..
THA
Thailand
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
1.67916457472
2.01257149374
2.17824677164
2.42972158203
2.6769420206
3.04209584897
3.36405755023
3.44741769717
3.02469123489
3.1557688031
3.191342387
3.39734285479
3.56784510591
3.75819628239
4.05327158034
4.12549631751
4.22120119032
4.1608565764
4.18545607515
..
..
..
TJK
Tajikistan
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
1.30826155581
0.921993922169
0.413611755064
0.424135869976
0.482439567438
0.362062820291
0.414293502172
0.412699606243
0.362374848266
0.367724509903
0.29927269505
0.327538646152
0.349422792875
0.355151055904
0.37093574904
0.491381839996
0.470197339397
..
..
..
TKM
Turkmenistan
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
7.23014250743
6.92996572825
8.17383589646
8.26649100647
7.34913993284
6.90270205819
5.92604429329
7.89207059696
7.91903775232
8.71768447957
8.92896447963
9.28601703302
8.43989838977
8.79553750664
9.13648185792
9.43986788624
9.72668365866
..
..
..
TMP
Timor-Leste
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
0.181677943563
0.173245830667
0.180710126239
0.17420996529
0.173009670971
0.172846140068
0.176600302478
..
..
..
TON
Tonga
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.809322122964
0.961911756991
0.922264372393
1.07467998032
1.11131663375
1.14704870343
1.1436026446
1.1773777589
1.13452137863
1.31729121122
1.23562567009
1.41502498071
1.44380281264
1.76618268295
1.71857487586
1.7076769118
1.69661560876
1.72136053357
1.71038771742
..
..
..
TTO
Trinidad and Tobago
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
13.9530717552
17.1932793839
17.0100830555
13.5257834174
15.8444836393
16.6221589085
17.1666964837
15.0767158515
15.0755550977
17.7298843474
18.9727512232
19.2940178664
20.6596549107
21.2063342942
24.0759997925
23.5288196773
26.1135496487
27.938057076
37.3934600012
..
..
..
TUN
Tunisia
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
1.62699965663
1.86211055276
1.76959669725
1.90605724582
1.8082502212
1.7566393525
1.84372723972
1.83887216495
1.92871792399
1.93861324676
2.08321336331
2.15199708485
2.14841462293
2.17453047826
2.25984726753
2.27354731279
2.2835700392
2.33430509237
2.42161382141
..
..
..
TUR
Turkey
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
2.78570035899
2.7565320377
2.75823174235
2.88377163984
2.79150649995
3.00189330951
3.21786693513
3.3378913788
3.32706149073
3.13860810977
3.39705973462
3.01399451861
3.1427106997
3.29380560126
3.35247587201
3.4833794974
3.7873932407
4.06696683202
4.00401690661
..
..
..
TUV
Tuvalu
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TZA
Tanzania
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.093117899269
0.0924705004586
0.086724365199
0.0936538944147
0.084154632312
0.118666671209
0.112452670949
0.091232620452
0.0789133644909
0.0764388555035
0.0778902538242
0.089582279706
0.100188197897
0.103466264162
0.115191341475
0.130981068127
0.134744556786
0.147061502718
0.152951924221
..
..
..
UGA
Uganda
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.0462007951879
0.0464514271896
0.0455089495908
0.0419900514095
0.0368635207725
0.045945156455
0.049010384476
0.051217896519
0.0587329071511
0.0593402764514
0.0633047703063
0.0653139280411
0.0661056352664
0.0645539778783
0.0666203225158
0.0822879678258
0.0921424198928
0.105635105197
0.119583494153
..
..
..
UKR
Ukraine
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
12.3044626327
10.4660772964
8.60943763582
8.65703690324
8.07595998192
6.74378991127
6.55386365135
6.6947211947
6.52300890331
6.60693040269
6.61136459727
7.36744655998
7.23097197987
7.19727711301
7.00603890976
7.07076233059
6.9940481039
..
..
..
UMC
Upper middle income
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
3.54775481219
3.61196968308
3.66116864571
3.62915864286
3.58801451636
3.66564194327
3.70845681876
3.65863092923
3.54723790495
3.50714655956
3.54825750947
3.58278437071
3.65720726338
4.07333079549
4.4364684586
4.67410846882
4.97831799658
5.17720857396
5.31688332321
..
..
..
URY
Uruguay
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
1.28440215598
1.45455457118
1.6394116791
1.40584098066
1.27070888049
1.42429812487
1.68188706152
1.70614094091
1.73729523409
2.04489145835
1.60751114617
1.53846664219
1.39651888978
1.39196698113
1.69926269001
1.74712914542
2.00583472571
1.80486812804
2.49778857678
..
..
..
USA
United States
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
19.5469816724
19.2513984924
19.0087333752
19.8811362848
19.8656783746
19.6710523175
19.8353046579
20.1768720847
19.7534843033
19.8113144352
19.5356003253
18.9065916087
18.8941651332
18.8469320247
18.9860969063
18.919023496
18.4692060129
18.5076498209
17.9417289331
..
..
..
UZB
Uzbekistan
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
5.31560277868
5.40206489837
4.95963511641
4.42888624095
4.44303035522
4.30055571048
4.8884185273
4.81233635246
4.8661759432
4.88796251051
5.02199566315
4.79836481185
4.61147007317
4.18839570765
4.35499343044
4.31150038336
4.57299282045
..
..
..
VCT
St. Vincent and the Grenadines
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.750812013141
0.714648972205
0.781296896711
0.950254972189
1.1195496304
1.22134946848
1.25571731344
1.25653136258
1.52923350663
1.56376716202
1.4614842758
1.66393176956
1.7292371706
1.79366705429
1.79016450823
1.82077145878
1.85171413357
1.84930313589
1.84730440199
..
..
..
VEN
Venezuela, RB
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
6.18543989873
5.71574129821
5.12481843264
5.88775645093
6.02082560348
6.04440312117
5.45519620478
5.8348727732
7.14652300004
7.23244190724
6.26939196249
6.96648560468
7.66304127676
7.48239966503
6.44079419757
6.00459694473
5.68221530835
5.95115285813
6.06882921067
..
..
..
VIR
Virgin Islands (U.S.)
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VNM
Vietnam
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.324280765322
0.319024157377
0.327056278954
0.329819124267
0.371388304894
0.40624750158
0.469924490853
0.609415585901
0.633227576756
0.627007416769
0.690217477834
0.783903397311
0.89703275261
0.98719771985
1.24854429828
1.2632565433
1.00507657869
1.33328671794
1.49648501039
..
..
..
VUT
Vanuatu
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.475142529802
0.437731694862
0.425104656405
0.412906535216
0.401853227319
0.392278754093
0.490974077761
0.503129984393
0.473969631236
0.465357897583
0.43590131515
0.444967923015
0.433507234458
0.440110417667
0.428135687217
0.260477340531
0.219925262964
0.362780323505
0.402011041874
..
..
..
WBG
West Bank and Gaza
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
..
..
..
..
..
..
..
0.15310114324
0.2172223579
0.227491610855
0.266100579138
0.435022918433
0.362084001997
0.383799221117
0.54062097288
0.767314050173
0.612289022373
0.606671650768
0.521554188406
..
..
..
WLD
World
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
4.27322211313
4.26774739504
4.12705861878
4.07002221812
4.08814830391
4.11824701504
4.14824117422
4.16957566966
4.10175472088
4.01198465189
4.06069685612
4.10618994074
4.08847204714
4.2336580057
4.40307763134
4.52215798844
4.61225893315
4.63679570822
..
..
..
..
WSM
Samoa
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.77291888809
0.767230345099
0.78359484706
0.777038481098
0.726086330417
0.784585485299
0.776682806865
0.768557223199
0.760687552941
0.795494636608
0.789276631417
0.805049396268
0.801247142665
0.839266276285
0.857066539046
0.874853664897
0.872293462266
0.890063273333
0.88745881667
..
..
..
YEM
Yemen, Rep.
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
-0.251050680483
0.806198592466
1.09035365065
0.680109457575
0.782345826215
0.742687368482
0.950699580037
0.953645105441
0.729809084846
0.807407260624
0.825961201333
0.889747995293
0.837116849944
0.891082977037
0.942837945069
0.970708922615
0.976692109712
1.00133690315
1.03349439012
..
..
..
ZAF
South Africa
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
9.47481960227
9.63838561572
8.85379272642
9.14103109195
9.37563773228
9.03523678425
8.96594299567
9.07313644247
8.88357167234
8.64408838255
8.37751152273
8.07716373228
7.63587673389
8.25757951157
8.87533870037
8.6485737281
8.49992677706
8.98017269186
8.93320268214
..
..
..
ZAR
Congo, Dem. Rep.
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.111804228211
0.0991913295498
0.0917590915829
0.0830127248156
0.0581213984529
0.0673197213112
0.0717288707931
0.0631077844873
0.0534875444314
0.0464149630937
0.0331776964587
0.0307085053559
0.0294107051471
0.0313840310346
0.0409089535383
0.0412549715239
0.0416419529954
0.0419967197159
0.0450781986833
..
..
..
ZMB
Zambia
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
0.31117970833
0.299524217486
0.296994934299
0.294969930309
0.278423058512
0.243385246813
0.204123999624
0.253860006031
0.238986070937
0.181780803942
0.178289559971
0.182475783087
0.18414778513
0.192095525971
0.188388625804
0.197068580524
0.194427283841
0.142660159145
0.152549611409
..
..
..
ZWE
Zimbabwe
EN.ATM.CO2E.PC
CO2 emissions per capita (metric tons)
0
1
1.4809224237
1.47216119142
1.53567863532
1.44142158798
1.53843076889
1.29486003612
1.26095343735
1.19204239037
1.16244730969
1.27640505993
1.11011267697
0.999055826176
0.946432091078
0.842543651147
0.78795570079
0.857045192283
0.825609883113
0.770639547577
0.72889159199
..
..
..
ABW
Aruba
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ADO
Andorra
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AFG
Afghanistan
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
23.0133016632
32.6613350884
36.038514724
31.3064576152
28.0091535394
25.8667465997
28.4799769138
..
..
..
AGO
Angola
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
130.24439795
129.971142081
141.244823292
246.261769463
159.575256295
409.106543128
350.504956641
228.559162648
211.871013001
257.119866271
260.09753906
257.213917022
292.379043377
202.552333946
377.698289281
319.197390009
312.923013921
288.085886032
245.289667081
..
..
..
ALB
Albania
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
581.597640591
438.081413958
283.765363301
254.137468394
193.163527926
184.425827642
163.398254181
139.280553274
140.317671123
217.564138414
205.247311837
204.592430278
230.873406925
249.809616384
220.165856429
239.838332916
210.03485956
210.020079096
181.7597148
..
..
..
ARE
United Arab Emirates
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
547.419169714
598.807980275
594.636181918
680.992756645
703.211548157
629.269867551
344.50662382
327.61859775
614.855335915
569.222294148
778.709427897
689.312964799
558.914546879
630.206805857
609.656842692
577.182129141
563.705665371
597.210679586
638.587759557
..
..
..
ARG
Argentina
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
462.560559701
426.614517117
395.521880024
364.733889353
358.397430502
366.491538632
366.200925767
353.039719449
347.513280895
380.106500751
371.512382998
386.980372555
406.268939078
404.36525296
403.837967128
379.249612508
386.178946396
372.025788739
364.88158165
..
..
..
ARM
Armenia
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
688.366617226
600.672878531
577.030996843
635.199095743
448.113964177
545.340133171
528.136196071
458.982310892
491.095264064
458.036945396
343.094234259
343.586647208
330.558837878
346.27676659
307.961597993
312.685790193
320.921963367
..
..
..
ASM
American Samoa
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ATG
Antigua and Barbuda
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
381.95873649
365.205482756
362.133921761
360.793480473
343.361982659
370.975635458
347.552144978
346.424218058
328.193066013
329.056715511
320.842492474
313.900147818
322.460720003
328.597878281
321.485089203
311.342449947
284.666637151
267.730113318
274.006431695
..
..
..
AUS
Australia
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
702.166333843
689.948873377
717.443032623
707.788328023
685.756101347
666.399654158
685.073940482
668.097500448
665.239585821
593.593241461
578.196738459
558.808573251
565.594693495
556.425610788
538.541116192
550.914913119
549.038355569
533.903510765
539.580710787
..
..
..
AUT
Austria
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
308.038114425
322.186648315
290.505121029
278.340705237
269.381297851
276.562308042
272.46067748
268.119701034
268.048714106
252.066217097
243.317370814
249.298644202
250.967820951
276.495212985
268.895829866
270.686982388
253.350108511
233.003361946
224.449846836
..
..
..
AZE
Azerbaijan
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
1688.72422793
2151.88340516
2623.95679841
2357.50956888
2187.24895702
1962.6309808
1881.14943828
1624.27703816
1524.20810981
1336.6230247
1231.85332024
1150.42520107
1080.79673268
914.151057379
774.758786191
665.560529062
670.413582844
..
..
..
BDI
Burundi
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
110.689070897
119.392841756
109.396977768
123.383276876
129.691587242
137.8176812
148.155653464
143.858304801
130.947227548
129.056867088
133.426573113
94.0681860541
91.589995166
69.5435198703
64.862859667
65.7453077983
75.048151589
67.0741592365
62.9021320072
..
..
..
BEL
Belgium
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
434.018824592
461.997091532
442.628862096
425.634549042
428.916916238
417.706321472
436.150674645
408.710401535
410.940505492
385.754542377
371.63265788
365.718841702
338.042654644
358.192203039
336.233267742
318.18991338
308.979874516
288.158603856
291.834305671
..
..
..
BEN
Benin
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
134.117095412
148.428714737
155.966536414
188.482679297
201.625826744
202.248942016
182.620374759
165.56026543
157.892106611
194.091647121
189.911020839
194.401952009
219.782959088
239.108024719
239.61253
249.23810564
347.84569778
345.955043657
345.034743592
..
..
..
BFA
Burkina Faso
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
92.4657436605
90.6049120898
90.9231773581
87.3703307689
88.7578466623
81.5732830885
82.933210697
88.9184354654
88.512789563
89.0739482242
97.7883221175
87.8178122039
84.4927742228
83.9100582982
82.1026919256
78.7372028891
90.1868352978
105.358002416
113.079117908
..
..
..
BGD
Bangladesh
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
197.509809353
196.135681929
207.903213578
194.988856524
204.148470083
234.020802404
235.581802472
233.158243973
212.530771967
212.709238376
221.724046429
245.261490614
243.941717808
232.617842077
257.146127768
229.971191594
267.176328326
252.579275656
235.810637205
..
..
..
BGR
Bulgaria
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
1183.12167143
992.618529606
961.000908788
1261.65829853
998.199595751
1039.19607826
1082.88346471
1042.53235617
944.419319862
798.875707872
747.86084756
766.260271356
703.542172753
706.768207095
654.800984109
630.421019759
604.661053998
612.932411655
552.214105212
..
..
..
BHR
Bahrain
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
1346.33595951
1171.56664089
1010.94136371
1280.54577296
1293.39344217
1307.0086862
1224.09058981
1316.41472398
1334.9719211
1253.15784104
1231.25447346
879.357668832
941.656388517
921.500338363
915.380443975
914.036156526
929.956573854
913.410251616
899.173966117
..
..
..
BHS
Bahamas, The
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
322.587564927
307.555980304
321.763814982
307.000768861
298.264649191
287.580108597
281.077902248
262.154230156
257.765884575
241.16994694
231.671418771
225.80060309
254.863069681
231.852400818
246.90552799
250.551819513
261.58749092
259.303320712
263.615314064
..
..
..
BIH
Bosnia and Herzegovina
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
803.604508315
649.108592137
520.61514368
902.06356203
1012.89772215
1069.12108534
1255.29864155
1071.55412948
1126.74746793
1098.47523644
1096.35628883
1086.42459617
1096.32090098
1082.86426389
1108.27426797
..
..
..
BLR
Belarus
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
1472.00467273
1355.69938108
1359.28767367
1429.70974022
1346.84491202
1196.19351103
1067.87427854
1000.87089679
906.166464498
851.155747574
807.111605066
773.163098606
751.835566942
707.165969933
669.926472483
594.56943911
556.916147534
..
..
..
BLZ
Belize
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
394.44529129
411.569574204
363.607025367
363.295689198
359.201231977
360.401941012
289.779878793
353.154628323
324.36214871
484.1747299
491.008156967
482.747974555
232.031669878
220.910494517
215.294311662
217.004003997
213.115525699
220.033675724
212.042509392
..
..
..
BMU
Bermuda
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BOL
Bolivia
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
268.903114089
268.213774682
303.550001823
351.978832977
372.642711
376.653210918
334.511197336
359.129892242
358.749246242
337.942314061
321.259575951
293.059708031
270.27705902
363.265967585
321.632932216
298.342340399
289.452671248
345.294615245
319.811443479
..
..
..
BRA
Brazil
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
194.54802187
201.231976666
203.44353794
203.211611297
202.46492526
220.653171239
236.139001687
243.561888255
238.021670444
243.517542085
239.299495676
243.193974662
233.614852947
223.77217611
222.379004047
221.128592976
214.279604255
211.043520748
214.218661935
..
..
..
BRB
Barbados
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
257.22212543
297.489254599
254.07744596
286.455302038
184.87802258
201.808631466
203.43534691
202.746530484
246.193400594
254.632411675
244.353822473
264.509881404
275.879748226
279.329573636
274.850186718
278.44659655
272.888908951
267.234480672
267.479198741
..
..
..
BRN
Brunei Darussalam
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
505.369588698
443.786408869
423.09353445
405.831207982
380.805001295
371.647032847
366.5333623
386.389152601
400.081236206
298.310460814
411.707799041
380.451369472
314.471258848
307.702975433
306.368515246
291.826187771
262.937075057
520.475041745
588.174169411
..
..
..
BTN
Bhutan
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
136.856166735
190.111072313
215.444787464
180.470637751
198.280457916
219.23163877
251.98369873
311.093699656
286.49541156
268.087903872
258.843153969
250.81724604
285.308316784
238.366796892
219.140008458
297.264950756
172.01117152
200.404272892
242.35964009
..
..
..
BWA
Botswana
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
226.779136985
208.196129546
310.346828985
324.157989973
312.809523394
300.867242539
253.897339108
235.844906575
254.44176312
224.098061966
255.195704256
249.959103778
237.343746152
212.372915943
205.562253724
209.016103101
195.905697615
194.470292344
197.268728949
..
..
..
CAF
Central African Republic
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
82.2786090277
85.7999469236
96.6021884162
99.543223936
99.5603367338
92.8734464383
96.7431747346
96.1804449312
93.2339825059
95.2879648848
94.4393051147
86.4515472079
86.9581558641
89.8966526992
89.0065868309
86.9204949521
88.9720865959
87.0593053367
87.8262386886
..
..
..
CAN
Canada
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
601.126815971
612.576462406
632.408534109
631.529924923
573.041144942
563.88576982
564.670206941
559.549497625
532.68302556
503.694064071
538.275651414
518.734503799
498.928775327
519.415416914
505.872606366
497.17006276
471.412910084
457.454836227
455.029040257
..
..
..
CHE
Switzerland
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
191.559974332
190.616973139
194.812857247
184.800434953
184.6173169
174.732845265
176.454560489
179.581535197
176.369100825
169.045238829
156.758935659
170.45487958
160.903663718
159.134403387
155.981422539
155.468338002
151.843549885
133.008333055
138.677597558
..
..
..
CHI
Channel Islands
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHL
Chile
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
401.934231514
351.887597985
324.10187409
322.213263086
337.21755084
331.133712848
350.090149713
378.316158417
378.888697767
402.751179555
372.250800128
323.681460302
328.804774243
318.314945502
332.241936329
321.65769043
316.661885665
323.012175663
324.983064426
..
..
..
CHN
China
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
1969.45727887
1894.26378182
1730.24811006
1620.62314538
1522.28399537
1490.27962929
1413.06899125
1295.23235487
1151.24246242
1067.90387833
1011.01890741
956.1218506
928.306457893
1033.73423682
1097.21337102
1079.37084362
1061.02896204
983.752875965
929.31716268
..
..
..
CIV
Cote d'Ivoire
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
242.41739792
235.574394451
193.745987337
247.383235069
218.669691674
277.249854042
302.345825366
278.980952915
225.222381042
201.004823891
226.193455765
257.392448705
246.256633015
187.453137259
258.477496882
260.645504374
236.189964231
207.639826908
222.958422504
..
..
..
CMR
Cameroon
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
68.5464634371
45.5525917162
160.578371731
170.374500424
171.126571271
189.37095764
190.204515266
126.466058091
120.124285439
110.46566188
118.128899506
112.664308916
108.205545482
115.507773053
116.119667799
106.043350624
118.530396688
165.628727329
138.376579618
..
..
..
COG
Congo, Rep.
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
139.874382786
145.44952637
176.280042978
174.740171161
257.380990839
180.3322445
189.499059024
260.300905253
83.2783141354
90.3410482272
107.199033262
84.8584987826
66.6274369027
101.374091841
171.736367886
134.446736685
115.393248046
127.543402893
146.981160266
..
..
..
COK
Cook Islands
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
COL
Colombia
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
283.245332078
275.893809402
285.338073444
287.606576972
286.814722276
240.510860438
239.275705734
248.08961533
250.753638826
224.208109018
220.080941649
210.282179111
202.913640274
201.436810496
179.087608029
188.230033824
183.520195784
176.909335547
182.325197343
..
..
..
COM
Comoros
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
145.571003959
153.873395188
141.778389349
137.640987326
145.30845233
146.923764315
121.783390209
117.065261356
128.425250167
138.600922041
142.87520407
144.28366531
144.307565509
152.088560262
158.100807663
162.519340311
176.57791101
175.715165468
179.291901899
..
..
..
CPV
Cape Verde
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
154.988896133
159.197697264
172.670304216
161.28655038
161.607908251
155.350615157
183.100554155
178.29096035
178.776210063
184.216473925
187.518267705
201.906782496
226.891993346
220.023435659
231.23713325
229.628119232
218.908921277
203.880146027
189.723219152
..
..
..
CRI
Costa Rica
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
154.299159802
169.840572309
176.802673656
171.604008236
218.421812332
194.091864003
187.746876398
186.753031402
183.686018534
176.285565547
171.672315849
178.717414817
190.701977981
187.743193698
188.344270252
178.156277882
175.457065597
177.696966373
170.988991622
..
..
..
CUB
Cuba
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CUW
Curacao
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYP
Cyprus
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
442.953640382
448.017921665
455.764331689
485.935416959
470.742463813
436.400099356
444.96874011
447.379515677
462.968405755
449.125024702
433.598927392
416.757324528
418.665605954
453.311272773
411.774746922
405.245965006
403.960092665
406.980187546
410.18280428
..
..
..
CZE
Czech Republic
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
938.069957997
886.816151932
839.454569823
803.407723733
790.721528331
781.713548674
760.048716443
668.781899386
718.553796871
699.964929296
663.669891935
652.242044806
625.93031385
579.277708949
551.563094786
524.60477526
483.286227506
..
..
..
DEU
Germany
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
0.0269740610917
448.360399617
423.689169999
419.339387286
404.988112379
396.550791151
402.442843559
385.171998942
375.500935222
338.887587663
331.388742136
336.635519598
326.861034427
329.444993831
322.734144256
313.004806022
303.65897969
286.817962617
283.804177652
..
..
..
DJI
Djibouti
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
259.772306169
271.380942623
281.390433766
312.008895668
314.961160352
326.344923875
346.170095645
351.702338009
327.929623759
346.725931832
313.898901514
293.618161517
297.025809139
293.096844182
317.899659272
317.993328164
312.837795539
297.657100681
302.492860955
..
..
..
DMA
Dominica
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
140.411236742
139.562807283
136.762777396
142.908236137
157.467115566
178.799556515
158.361481343
171.638801299
156.067849842
162.390045438
205.289824521
236.14196944
222.201638296
240.748936624
219.215202698
219.127650829
199.583272481
260.129915311
214.456002258
..
..
..
DNK
Denmark
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
385.493655854
463.656073529
403.569857102
424.73962082
429.580297758
376.642441578
455.056866099
366.252659525
352.241332706
311.977968844
279.582671801
288.096471984
303.509127012
325.933455345
287.458578999
260.538772587
292.578971572
263.020903687
246.355791162
..
..
..
DOM
Dominican Republic
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
347.020654516
364.058980197
364.227703659
361.924181954
375.615172656
452.355468859
460.026455237
442.757272043
423.81597288
401.121558751
404.729979012
399.856459962
401.610498473
403.042637366
369.693067197
334.319900708
318.172023911
301.066149029
289.420867799
..
..
..
DZA
Algeria
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
502.065631714
524.673305424
520.477271761
533.016299973
563.134431773
594.932122362
582.809780581
526.492250575
608.210394707
507.006274152
473.539901094
442.446197403
455.473026166
433.950164042
398.948505296
454.387464973
446.209848355
455.168729638
438.83331038
..
..
..
EAP
East Asia & Pacific
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
1383.45370664
1358.92681189
1284.61354877
1234.96695547
1175.12116929
1159.36217064
1114.74115831
1048.88011951
933.19114008
885.464113268
853.865543613
828.781231356
810.686229175
889.592331055
941.640431946
931.077108122
912.949111491
862.158361536
827.140455044
..
..
..
ECA
Europe & Central Asia
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
1316.92570344
1287.77363686
1258.95328822
1239.68177829
1214.57009838
1109.18517112
1095.60029138
1067.39675435
1005.5027197
974.480675618
927.521338281
902.239410657
842.987644452
796.339655659
764.7371162
725.580892079
707.995607741
..
..
..
ECU
Ecuador
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
297.927138328
277.357311189
369.606816236
399.663120245
215.220644015
353.808531846
361.842022184
266.027927595
316.872884449
323.615923658
309.908756401
329.393151804
332.72899115
345.097841379
345.243967317
332.985400735
320.393135774
325.100025055
263.185415985
..
..
..
EGY
Egypt, Arab Rep.
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
412.691874918
423.191273979
418.351522353
466.053089906
410.501785214
440.160552689
446.869730133
449.231787307
487.835871387
471.612294205
504.458516969
432.505249431
428.356198384
518.509882111
503.460763002
524.103317785
526.664096788
522.535798536
514.808812791
..
..
..
EMU
Euro area
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
233.253345989
375.170222252
361.663597184
354.841483364
345.383927855
345.573245533
347.120597683
332.737195103
329.644651516
305.723965196
296.936186847
298.455074922
295.142377616
299.380297212
294.634998511
287.88290444
277.187868882
266.120156487
259.975677108
..
..
..
ERI
Eritrea
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
83.5269279932
131.553330817
141.215981882
198.365590258
217.920921892
228.718457781
258.585767562
246.086051121
229.182989893
282.52200307
295.342287177
286.582735541
211.826796963
215.672639075
170.99318805
..
..
..
ESP
Spain
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
296.432054796
298.583037289
308.441441485
288.584669428
303.855152592
310.894239016
300.134215178
300.466802134
298.734412935
293.194532496
291.017343344
284.009210349
292.029487628
289.176727798
296.015397085
297.501427012
283.23646769
279.8678709
255.057140626
..
..
..
EST
Estonia
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
1994.39465537
1711.55165931
1743.21492297
1490.90039562
1594.29253797
1424.00288081
1244.81080276
1125.18964443
1032.62605913
977.632816615
876.609205888
924.685805332
876.446930802
783.933938516
688.051906174
757.71681495
731.680553923
..
..
..
ETH
Ethiopia
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
114.518472821
121.9716155
132.734139209
204.1783579
115.09394894
77.7282202656
119.78298672
133.159025026
162.178806068
155.679784762
168.612194889
115.052358086
117.869070133
132.993054923
123.002576151
116.212048762
114.517442615
112.424434532
109.928233605
..
..
..
FIN
Finland
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
441.536211464
506.205484489
469.416787154
500.268264434
552.323563864
467.915786474
529.911983301
488.374828713
441.082147871
412.852615628
368.706804018
390.076661848
414.694690986
458.551647372
428.175816754
339.22235239
393.143556458
361.078405514
316.299755103
..
..
..
FJI
Fiji
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
326.960872982
277.265544724
284.048625911
293.421332123
299.030131808
312.390640611
309.168391558
260.707098202
247.415065702
259.400032859
273.186047037
348.748145154
258.420308197
494.228566069
534.771515698
459.903194149
432.100986858
406.412260153
348.531562434
..
..
..
FRA
France
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
282.162418599
299.303064351
273.819461973
270.152096669
250.872743897
261.697538093
268.70127584
244.506192043
254.968918819
224.043999886
212.745334365
220.482461334
215.41774874
217.25699159
213.266424567
210.580077298
200.50402714
191.923410807
193.465292498
..
..
..
FRO
Faeroe Islands
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FSM
Micronesia, Fed. Sts.
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
181.061156234
172.762715981
170.982863856
168.409818761
167.311357689
168.535626412
165.762518615
166.241205756
192.132032163
196.767703771
..
..
..
GAB
Gabon
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
348.902992734
100.309106586
149.225659779
221.146622094
217.756586647
238.758987245
211.133075094
200.296385741
89.0757159836
86.1633447023
64.2945216078
106.602616944
106.668238735
78.1224811328
85.5557750896
100.10796963
98.7361498699
103.74248506
126.780540963
..
..
..
GBR
United Kingdom
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
420.336181249
443.906515176
438.512764925
414.426583426
394.791826442
383.606612038
383.519580891
354.321881843
341.939718146
319.3790504
311.999781802
308.364304866
291.821132666
288.489268263
282.854031483
275.192502072
268.123235377
254.550821793
251.463151253
..
..
..
GEO
Georgia
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
1196.75595817
1098.53021935
749.446297261
276.507188802
439.110207659
433.501150906
470.13583653
400.274855211
410.297000402
325.340314922
277.250274025
278.013025767
273.349512554
300.63943412
319.132039144
311.544941965
262.8246067
..
..
..
GHA
Ghana
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
292.942031137
286.291864047
279.098276272
303.125629373
319.049012633
327.940008262
332.57564199
354.555908899
339.415266579
332.736007027
308.129914285
325.423764359
333.689257161
325.195581538
294.877697631
268.068711606
336.189381713
325.449635711
267.595767918
..
..
..
GIB
Gibraltar
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GIN
Guinea
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
212.717467534
210.898801332
204.218908456
199.720652934
213.792679644
208.036175172
201.189695951
193.356768287
179.157807234
175.200027686
172.954408222
170.514652129
167.570722585
161.159896539
157.476767923
154.981522045
151.207059669
151.799411517
145.039398186
..
..
..
GMB
Gambia, The
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
175.561590521
176.820089543
171.041141179
175.264290034
174.994193063
179.550972474
175.645417324
167.44081896
175.488619877
180.395374051
183.204509869
177.778793446
205.228045185
192.035225212
183.560168783
185.190346739
190.729652939
212.883362069
209.373236853
..
..
..
GNB
Guinea-Bissau
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
206.044978969
198.887857359
199.534235869
209.192891891
202.706290592
196.717891404
178.55973944
180.55878311
176.385277187
185.808835752
139.308255892
139.030195501
157.969962595
188.337088391
192.53730044
189.873335601
193.647692498
195.144763596
186.630474907
..
..
..
GNQ
Equatorial Guinea
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
161.904910492
272.944254698
264.504764886
118.092338681
40.1232797135
126.413913095
87.0112413435
127.069725648
59.9331916278
118.824835549
100.649276008
423.147310484
569.922883145
604.352838835
340.531726346
312.471591597
311.225787534
258.647151638
234.588238322
..
..
..
GRC
Greece
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
409.528132772
369.314131806
409.529733058
416.977065648
423.485303568
419.123843615
415.724449981
421.972541231
423.870696077
404.379039021
409.296496667
402.195892237
388.26030825
374.569305922
364.186637471
361.658106439
339.048823002
328.235955216
323.591024108
..
..
..
GRD
Grenada
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
247.946366068
242.379139331
257.833071289
295.089070446
331.363597126
337.636655586
331.375175452
369.571368757
322.101808896
315.136732028
279.831440297
312.025920814
300.391854495
291.086346442
296.168797117
286.74576444
306.091878564
292.814680886
290.198509039
..
..
..
GRL
Greenland
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GTM
Guatemala
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
171.089834898
163.980836032
186.26545987
168.523601412
195.794020233
195.464869939
176.247217347
192.896188704
211.652687074
207.910354027
222.836797288
233.380641715
236.245109421
220.053791005
224.032711073
235.347078909
225.757591155
223.397033602
199.364192026
..
..
..
GUM
Guam
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GUY
Guyana
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
1006.02940052
933.961350676
812.35141837
753.306532566
877.319133088
927.480730829
887.369897499
875.417790718
919.167811311
890.677678115
864.97970068
812.579146832
819.666458526
814.255441304
757.897874449
800.148986916
766.635786217
795.59716235
780.181388039
..
..
..
HIC
High income
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
443.706773376
486.547766921
478.932558762
483.945385232
473.071835629
462.796390481
460.449067635
448.586291469
434.36321895
418.477334401
409.76972435
401.447298057
397.66315037
396.522379243
389.935783731
380.629129591
368.111071162
359.854360096
354.415391794
..
..
..
HKG
Hong Kong SAR, China
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
204.617284967
202.216591871
220.527608396
218.545294302
184.436567772
181.395636844
161.679276523
161.700295587
218.799118263
232.489220873
204.429097203
190.330550066
181.872512674
191.44076632
169.228164973
166.815671747
148.205458874
144.392601165
136.229181686
..
..
..
HND
Honduras
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
199.485702158
201.127548154
217.066038069
189.235941424
224.554197647
250.881831205
247.210809739
247.225599497
268.644263751
279.216776171
280.171737955
309.719854566
318.247438277
338.310327715
346.582652555
338.032262744
304.226852972
353.807902564
326.622518302
..
..
..
HRV
Croatia
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
368.487592337
400.283999637
388.384572909
379.710407454
376.922557548
368.624379494
382.499791398
387.919218643
358.440287174
364.646716957
367.196459388
374.997941399
352.557361284
338.948542621
323.981349969
324.235686639
303.501560426
..
..
..
HTI
Haiti
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
99.5573632078
95.8631593091
73.9789615179
38.064247927
108.554514613
120.87223354
153.230423822
129.858635014
136.588442161
139.14404775
161.343721285
188.209438757
178.115628222
211.542898675
217.004480571
216.722540232
237.285803144
238.897861479
..
..
..
HUN
Hungary
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
494.395991354
565.077739697
539.570870002
555.712372148
521.333792634
531.264670567
549.078527972
518.869038795
485.780239157
462.288533947
412.816327998
394.932027944
371.719049105
375.33337045
348.170254012
338.424657337
332.096377301
321.609483075
312.058517661
..
..
..
IDN
Indonesia
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
403.97691673
445.663796979
468.484784994
471.352061022
443.943027686
416.080508724
435.254057322
457.351929866
397.142367391
445.356640456
461.139727151
498.270725021
500.636456532
490.986849752
500.215868764
476.930159756
454.51218581
465.924753567
484.098826165
..
..
..
IMY
Isle of Man
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IND
India
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
653.64816448
691.044948548
695.791894607
690.115942983
687.2945142
679.646031318
688.33246468
689.045728183
666.244273994
662.36220667
660.219957681
636.569139208
625.155108894
602.786061684
584.791141094
560.575983454
546.906546841
533.775637076
549.797739113
..
..
..
IRL
Ireland
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
492.33918484
525.759557871
480.239407688
468.141308465
462.533464556
424.489862111
417.783488878
391.351961915
376.604693411
357.036460691
332.337654184
336.147080515
313.168134198
294.67271416
285.130240387
268.949541
254.774519922
248.465401372
252.924781956
..
..
..
IRN
Iran, Islamic Rep.
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
667.731875812
610.166881951
619.654054635
584.310670851
757.583926612
708.595353562
665.626439914
652.753965581
691.218487315
679.166866115
691.983880293
702.598201904
686.656418481
704.444114997
719.387717447
713.075270326
722.523160008
689.139924668
716.294736985
..
..
..
IRQ
Iraq
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
980.139971627
770.355372629
616.521298498
645.660879949
814.349716382
903.091218186
1606.50098448
1191.20634545
1182.00416509
1150.95471051
1129.90499886
1056.95351807
..
..
..
ISL
Iceland
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
317.190613181
310.58666252
300.4684997
312.09152417
303.994563238
293.112883874
318.857893065
289.308811692
271.645499639
256.862454769
257.570052825
240.708898013
248.345417902
242.092225845
231.620194899
212.673536785
206.029362832
203.716189331
191.518864622
..
..
..
ISR
Israel
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
402.849095868
382.761744299
438.226449094
451.657643148
440.835846956
475.644948923
451.664565505
511.743211435
485.924417781
465.727256839
430.177677654
451.354829538
436.383314353
443.341039614
409.777619217
365.284257766
383.923434449
204.039626299
200.20225436
..
..
..
ITA
Italy
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
314.561999853
316.961285077
313.79395536
309.089759556
295.049963701
304.662950085
294.937738326
292.226585845
294.487739751
287.127475616
282.691071345
278.202010183
278.325710538
290.185166374
287.113966674
285.794488552
278.231024091
268.960763539
264.107999532
..
..
..
JAM
Jamaica
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
561.69320183
549.831603621
534.204890609
507.465205692
513.408708429
563.843979396
593.28628103
625.594535511
586.193558078
582.739805144
609.96100586
619.83248677
595.022759206
589.705560173
581.207290466
543.783142705
631.793419169
716.063316513
618.428057765
..
..
..
JOR
Jordan
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
996.695896222
921.913264558
972.585232261
917.034065192
984.123116181
921.549419706
944.703166141
929.346738749
909.971308344
881.679634705
900.277751287
882.514509755
880.317610399
874.188684209
886.908573718
896.425471708
818.869991742
782.577492581
723.39672161
..
..
..
JPN
Japan
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
339.142870802
329.99823198
334.175959367
329.155763004
345.616388385
342.098984818
339.415303741
333.080186527
327.995698446
339.422971494
335.966117991
330.583535867
333.694224755
334.581428924
331.544918627
319.710396939
311.696456738
309.301515826
302.18683469
..
..
..
KAZ
Kazakhstan
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
2675.181562
2492.9650661
2573.49388632
2343.03851712
1967.27628651
1781.62475533
1752.81309249
1589.77983886
1588.0358844
1619.68653087
1515.38991847
1403.51468114
1433.28629793
1345.06723107
1317.12375376
1431.58278292
1444.06557646
..
..
..
KEN
Kenya
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
174.765651499
143.211321013
165.25476709
188.649381733
189.862729871
209.514009828
248.437334616
219.076641786
257.54776456
255.147275178
259.752087201
225.09478928
190.399477854
156.798980584
168.378879482
178.565154512
187.80477019
180.211956016
187.582571191
..
..
..
KGZ
Kyrgyz Republic
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
1235.26715946
1117.32195954
1020.36497108
796.270741538
928.879271529
829.006369709
862.28049412
651.665726972
613.553857408
486.300037167
623.666565698
634.404199725
629.825090845
583.478621312
564.317834356
649.694585581
575.870119475
..
..
..
KHM
Cambodia
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
61.1238955916
63.3523003178
158.713698214
170.537488495
189.101478615
210.902736833
185.363315542
174.97491412
189.870224111
192.531197567
194.044881734
196.682841894
184.77601798
182.585885541
180.57854509
175.402426036
..
..
..
KIR
Kiribati
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
157.577494088
164.688172432
159.607877841
155.528997445
148.21239488
150.064631896
235.884170234
178.91103418
181.370924762
159.001719275
166.798472497
133.846180581
126.042868133
120.613274551
119.525331021
119.167784857
133.653412347
149.750194205
134.589813542
..
..
..
KNA
St. Kitts and Nevis
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
184.547287017
204.249483303
197.706902276
213.170685602
211.636380301
221.160936815
223.545825383
209.371050307
207.003699375
196.751705092
191.419490318
334.961452353
358.089397487
396.017393809
380.189498243
371.600098171
352.207545782
366.786582683
350.542381533
..
..
..
KOR
Korea, Rep.
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
499.65963774
502.871639493
507.055851259
528.627484252
522.789162316
521.694537573
527.348310812
531.737741517
490.823184093
486.696573328
491.164362609
480.865761977
474.63976266
461.884820525
457.137012317
422.085424265
408.153760475
410.913391836
410.521296743
..
..
..
KSV
Kosovo
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KWT
Kuwait
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
396.064178302
493.02144059
532.987179678
742.872873388
699.453410008
706.721866993
705.610209844
749.766159352
794.021254634
735.36428675
682.659145645
680.375063469
696.278233108
699.138068716
619.258321577
601.991250331
..
..
..
..
LAC
Latin America & Caribbean
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
324.1817585
315.895410287
312.061779685
311.180287349
310.735710306
314.275979224
315.776955382
314.522186415
320.063261213
325.770182385
309.544134691
315.854599929
316.717653509
315.102394413
301.20119635
297.356441016
288.237483544
284.971193554
285.550668763
..
..
..
LAO
Lao PDR
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
59.2801645106
61.2785552392
63.9402341863
60.3707778049
60.2232645294
59.0117205923
93.6914420403
117.689801734
140.920616224
132.401920967
147.036657196
157.298757589
163.957634774
158.362364781
153.26168711
146.106237421
143.319232934
135.104402133
125.282260841
..
..
..
LBN
Lebanon
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
538.423028419
406.711408559
465.384342508
446.463097312
451.869922298
453.323712079
436.864971829
506.970104992
506.018385616
521.570998735
476.000681628
483.378911698
462.736125813
509.197902775
437.725738426
451.516679619
384.535770257
369.069200854
372.484660359
..
..
..
LBR
Liberia
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
461.330081229
317.813829096
495.866506469
824.111680487
1041.37429095
1137.79428031
1048.24409193
524.38418219
441.818353965
376.451449972
321.068493053
359.216201677
346.399401008
533.663913913
613.406809949
688.137902821
654.147536681
534.391761957
447.720152849
..
..
..
LBY
Libya
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
741.742071034
753.484162074
808.230273316
763.55098762
697.613313927
683.860745751
644.205425991
628.012500908
597.110295918
619.072724929
..
..
..
LCA
St. Lucia
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
172.580173413
175.549295042
195.441749543
210.954170185
241.546222092
276.081601521
277.299719004
260.841287393
242.374171476
245.246051545
253.715066877
294.14677151
256.469961866
276.783439168
259.363614658
256.267861703
242.027658462
248.772592145
253.735905055
..
..
..
LIC
Low income
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
825.500307755
839.668691757
876.16305969
881.843775192
858.519350227
832.584828859
804.614327883
724.37037928
342.349296573
350.154094812
349.88516592
337.058115073
321.73502719
314.433392556
313.898903542
306.162174469
304.620210078
274.550322941
270.214717756
..
..
..
LIE
Liechtenstein
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LKA
Sri Lanka
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
109.286427724
112.50166019
134.116724589
121.638869271
127.077619058
129.108982718
149.164531627
151.349623394
149.50107893
157.623059164
176.997624061
181.268015784
187.335353429
171.235188507
182.279913864
166.943787715
156.373573658
153.553972246
138.456575111
..
..
..
LMC
Lower middle income
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
620.181525953
660.652840531
705.356287434
682.09598156
651.898699215
640.77686575
633.308817247
616.065479872
598.8693879
600.239651977
605.086343758
596.543778689
591.478793392
590.642282029
574.546910394
551.829868605
525.548411195
519.207294145
523.861385579
..
..
..
LMY
Low & middle income
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
793.95177021
812.719410626
838.21932164
818.192656528
793.923011231
788.382872874
771.212223756
733.869915793
694.824362768
678.272132936
660.212242487
649.436641713
639.368749276
666.378185343
671.493221756
659.122874159
646.539755604
623.769835339
612.459326067
..
..
..
LSO
Lesotho
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LTU
Lithuania
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
644.665505537
607.757367023
668.311769844
603.971218135
557.449259351
505.76893154
496.207262024
424.029640571
365.916172713
363.020949077
347.419204913
308.044442942
296.076360113
288.553919481
273.170353985
263.373259207
255.758459645
..
..
..
LUX
Luxembourg
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
606.991046043
600.318940689
654.67113917
575.971519319
523.94281608
422.021042188
420.092880885
372.070745151
324.635240969
312.863581019
309.151796588
314.181874779
331.456110428
343.550170431
367.153157479
356.436993828
339.114123026
304.808535381
291.032599618
..
..
..
LVA
Latvia
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
878.911488904
794.412587692
725.893271396
626.697727112
598.293719366
488.236949379
441.499385165
355.88665469
304.63505115
313.116834317
285.428185145
283.735118833
262.699966227
238.986037299
225.23225244
213.900421975
213.874138048
..
..
..
MAC
Macao SAR, China
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
136.277064573
138.944289618
121.796295901
126.744554078
131.301414023
122.410522752
139.968727774
148.724133929
162.706438296
163.124520103
164.592543704
164.993430907
135.507461042
119.550691153
105.550653308
105.009810534
80.0665835381
61.0440086168
46.0262121241
..
..
..
MAF
St. Martin (French part)
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
350.45713111
347.809121806
377.849057686
413.643365355
393.718718869
431.875658289
395.265833648
412.920940822
385.674497986
396.992125047
399.62934839
413.322916204
405.774762919
374.750350927
386.415239539
395.883786487
377.411315121
386.58158557
378.977028909
..
..
..
MCO
Monaco
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MDA
Moldova
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
2078.82593958
1568.03059241
1755.42381506
1648.05102296
1789.71536757
1085.39903605
1025.34160055
762.243462203
582.418428626
580.448456471
577.783317965
583.396892508
576.573760585
576.50153226
561.304626101
511.009244605
483.09414403
..
..
..
MDG
Madagascar
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
84.3630941662
98.0781901284
94.2819596874
94.6140174744
116.406755034
114.128381056
120.153825188
139.650774882
137.262852683
145.263639576
134.965497007
118.335916858
96.1409147559
124.471889742
130.352297314
109.747358904
104.04935169
104.071678043
102.87285809
..
..
..
MDV
Maldives
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
432.504654781
459.929814202
478.836332349
396.882174093
516.558410928
527.987766502
589.162210328
662.272938183
529.031848138
607.53058145
574.959122502
624.332455315
601.817349112
580.771490052
..
..
..
MEX
Mexico
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
386.589343183
383.439286438
376.656148993
368.168827114
374.114853761
379.937096979
371.517635967
354.529275343
347.828352681
342.638392853
323.281623665
332.736296722
327.640801028
332.608824699
322.54685559
333.293972633
323.55400608
319.160813226
332.596669105
..
..
..
MHL
Marshall Islands
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MIC
Middle income
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
792.004299895
811.277002314
836.772510756
816.013132176
791.823638149
786.903879431
770.082817328
734.138993484
706.068925626
688.785440263
670.043568492
659.439206133
649.484320035
677.519675128
682.755270638
670.205494552
657.164008443
634.456814529
622.94698593
..
..
..
MKD
Macedonia, FYR
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
771.051251746
799.554592377
823.963737479
862.728306139
923.582329451
824.598209092
947.000209912
842.768192482
829.547684304
864.113166216
780.861542522
785.449036907
746.791975272
720.888563422
672.666556123
659.530393145
655.168702065
..
..
..
MLI
Mali
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
73.1115890628
74.4514191213
69.879465804
73.1775781593
73.6857284264
70.4792812221
70.9489525349
71.4524903077
66.4444832686
64.9009504225
63.3163308978
56.8636431262
55.3289267114
50.1326884113
51.3966745626
48.7655726702
46.3110851569
45.2611972585
44.197190813
..
..
..
MLT
Malta
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
448.251419813
426.11911178
417.879814361
472.678438479
445.551974929
424.757309551
450.504907133
467.683845563
294.406551011
307.568643601
257.597468728
315.312025796
284.148835526
320.025489646
316.262129039
318.781939459
293.388944415
299.454452935
274.258818799
..
..
..
MMR
Myanmar
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNA
Middle East & North Africa
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
581.239291745
574.448093595
589.063374694
590.860603584
648.63300101
644.89970424
610.029834932
601.426722307
621.384048287
590.184817613
597.744815674
594.932597743
587.303412463
630.839211304
617.492370418
620.544390735
617.911016954
602.775874658
604.580394849
..
..
..
MNE
Montenegro
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
398.044865966
440.351253289
316.341747234
293.714675329
..
..
..
MNG
Mongolia
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
1881.43328254
2504.43118263
2504.55366891
2174.69312687
1819.91925698
1702.94909163
1690.38461009
1560.21468317
1509.07077644
1434.86250411
1409.65205809
1438.11879362
1443.38200497
1307.7135891
1258.18333298
1208.30407876
1193.23422097
1210.51498597
1146.70310166
..
..
..
MNP
Northern Mariana Islands
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MOZ
Mozambique
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
184.766443003
180.652093276
185.610700374
183.966709202
171.136979661
172.913893121
150.904197154
147.97482024
134.442991495
130.384991929
146.493379371
153.328022438
141.55837821
161.267291256
149.768278694
131.058375797
131.021313573
158.766805087
133.5840582
..
..
..
MRT
Mauritania
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
862.262810946
873.915727237
918.459354347
872.906894524
949.50317718
826.039056926
784.452297869
817.518438516
294.636801291
298.090620777
291.780136873
304.454965282
331.266496599
322.679921855
340.880396858
332.094576841
280.59809677
347.181125699
343.581114032
..
..
..
MUS
Mauritius
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
226.383546402
225.461365668
237.688716241
234.93050914
206.488703128
223.028248661
225.194116164
218.282227426
226.179664935
247.655975519
254.828603261
266.203812721
261.983492472
266.73047336
256.05927366
270.051885595
287.731097387
279.679781797
269.552448962
..
..
..
MWI
Malawi
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
114.645919441
113.648660564
121.960625077
117.396214249
135.63332072
117.973730724
107.168396403
110.17161442
115.774282881
135.225038211
120.890931139
127.220084336
122.054786543
125.292715139
121.035979834
110.872924117
107.063919296
101.194630715
120.060211395
..
..
..
MYS
Malaysia
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
470.389063566
520.439402484
524.707771936
581.6101796
545.836896275
640.363174217
602.523628572
558.933334034
551.933294144
491.543449892
529.642102233
569.006500901
533.630190841
598.267716878
587.439329302
608.829125587
562.562687178
573.969420297
585.697905938
..
..
..
MYT
Mayotte
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NAM
Namibia
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
1.30012735262
2.40379277327
2.24253990393
2.86063405906
4.26497941916
243.228191356
258.026050491
247.108038634
250.753595504
215.372983908
207.251308344
242.308254145
245.462491028
251.074404755
236.479240362
245.55042344
246.094743682
244.950527846
311.409009562
..
..
..
NCL
New Caledonia
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NER
Niger
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
152.323809176
146.6385908
149.857613499
165.663424839
157.957394954
162.354751451
173.248836102
167.996814525
161.511311518
160.217630055
122.021726754
108.677766971
113.159185413
116.176879867
116.060819048
104.121548189
97.538774401
100.676671672
90.2839046171
..
..
..
NGA
Nigeria
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
328.250906119
312.462974707
435.363795901
394.33467816
306.032232918
223.433260122
247.990557098
240.090760551
235.618640599
259.766707139
435.710421212
444.862433377
515.728172491
443.804889027
418.111618073
425.289817082
354.97126554
320.376829282
326.633818861
..
..
..
NIC
Nicaragua
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
340.179941707
266.613162215
319.743269915
296.888452246
318.866334805
334.327756104
324.131075069
334.032949172
351.461342389
348.067436256
338.071374189
343.453897922
338.928584165
356.661708608
340.481624693
313.763342664
321.26488736
329.813993326
308.171981018
..
..
..
NIU
Niue
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NLD
Netherlands
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
417.774564075
429.139099784
410.72453204
415.364512513
404.81112769
400.677591008
409.560657016
375.731165932
355.626295229
315.822312577
308.201446204
305.87179183
314.938569291
318.759827291
315.104822314
300.624555442
281.661495587
280.221003051
277.045815496
..
..
..
NOR
Norway
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
229.991885298
228.000784376
204.100966441
209.53512783
186.286955137
201.734664335
192.991044088
188.378335447
185.93993178
216.112761224
198.002573764
205.567471836
184.470452116
207.971875415
200.424111924
193.705593729
197.844601353
195.48920176
215.919693149
..
..
..
NPL
Nepal
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
46.8755412791
66.7405646014
88.8214285075
94.2465033402
100.807944192
116.788155383
135.45358389
144.348495488
113.352873042
155.240802054
146.843737706
149.649911849
117.260021206
122.884375443
110.09642669
124.291627327
123.654146923
123.002503692
120.025924966
..
..
..
NRU
Nauru
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NZL
New Zealand
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
368.579944884
380.195988503
402.305274376
368.662307051
362.88212008
354.238020402
378.159438425
388.880878096
374.373411064
373.377713861
376.864666841
380.959837642
357.250216747
344.645374647
331.101165464
318.997304282
313.766316899
299.440932497
304.117340814
..
..
..
OMN
Oman
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
377.964796568
376.895550792
384.086127512
403.260227793
440.109666917
437.38493892
405.602388636
391.827933694
407.950399531
510.193283227
512.867533174
442.26272466
538.77281772
687.452381582
641.878069179
677.67936216
721.403352201
700.738627361
703.93896546
..
..
..
PAK
Pakistan
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
378.390102296
358.46528905
354.994611622
373.871623871
391.964392377
371.866749048
396.50426639
393.619816507
395.794367001
392.456825933
399.164350554
398.146429862
406.373672262
403.935100421
416.476960795
401.561334902
403.715016854
421.363038461
420.661560849
..
..
..
PAN
Panama
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
213.708787546
211.302789599
231.176462083
225.422699969
253.823558344
181.160175676
247.658354634
284.012719561
264.099517667
242.236054718
240.866263176
289.846212973
236.049719973
238.909559226
209.351357855
203.212473488
211.831230493
184.17311638
173.79780722
..
..
..
PER
Peru
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
218.054646616
205.852929574
206.442320627
227.673916414
199.004069673
188.378335588
187.446977089
197.31960461
201.523216265
210.837389769
211.343250887
189.091449876
180.198316135
168.073973456
193.578175164
212.58257899
186.384687583
210.684369236
178.744117386
..
..
..
PHL
Philippines
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
283.191191484
293.141610192
320.791084757
320.186266834
336.508476695
360.517592484
354.302477334
397.181192011
390.438594178
365.601255566
379.362606024
359.618050278
341.988418754
326.596308853
317.151221227
310.614201695
246.223804688
268.333730576
272.639133401
..
..
..
PLW
Palau
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
1041.08061868
538.753658837
594.497729249
554.051937791
516.249175579
482.701426441
471.848910055
462.596962546
489.003131655
487.540510125
752.005969467
779.280797375
821.126676059
782.770901868
756.231458239
775.764089785
786.94412354
827.491191946
..
..
..
PNG
Papua New Guinea
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
304.970047376
268.381543576
234.478343392
192.702671978
198.946904895
192.275722593
189.386975976
232.823775931
268.671143669
229.015365497
256.195638357
308.29802005
335.777027866
371.205506356
408.129863987
405.568658089
393.779467621
248.894271666
157.9831018
..
..
..
POL
Poland
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
1177.50037008
1248.24259871
1202.11359914
1142.6652884
1035.77996405
998.694264515
972.595732063
888.557140098
788.252586136
731.523897103
667.515293289
662.002761548
639.922749042
632.54004405
601.003953995
577.417237115
571.559304282
528.193786909
503.809563879
..
..
..
PRI
Puerto Rico
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRK
Korea, Dem. Rep.
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRT
Portugal
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
271.086910806
286.555806657
307.752395673
284.782808244
289.752370637
298.515476182
279.692633725
281.059774367
291.003202778
311.551437523
291.794489079
285.699854013
301.539797219
279.11883377
283.356369063
290.72771367
259.390155326
258.170226401
241.373153653
..
..
..
PRY
Paraguay
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
133.140679459
128.247273015
145.58621449
157.741227966
180.221098449
193.654259909
182.52914512
198.188877279
211.515721459
214.697003261
181.971731789
184.671502991
188.484833687
189.540967372
182.834059455
166.564982798
166.080484485
161.430015035
151.8654918
..
..
..
PYF
French Polynesia
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
QAT
Qatar
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
906.534156849
760.341730577
725.970182399
819.042930447
844.261152869
909.350110267
845.458681242
791.885346447
636.126504905
..
..
..
ROM
Romania
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
871.095393465
865.821276161
863.683807902
830.892160879
764.323445115
784.795523137
750.499167822
725.198347555
680.860311445
595.804638559
585.794041139
589.23314838
540.140251201
534.419360643
490.123747117
468.431225739
466.322514523
424.490868897
373.096700086
..
..
..
RUS
Russian Federation
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
1461.52506811
1462.8313081
1444.8134597
1455.13316999
1488.59726858
1387.18637454
1403.73730824
1339.36391748
1232.84128523
1166.27530639
1108.258956
1065.02073384
1004.9753348
952.234390492
909.830513879
837.264282543
815.112083286
..
..
..
RWA
Rwanda
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
132.129452865
125.335639038
119.759862527
131.076747133
254.427677224
185.925984433
169.844737207
154.387295348
139.43332487
135.532565222
128.117507552
118.712099459
106.947837351
103.532381996
97.4354128635
89.1449340014
81.6345549463
80.2598478095
71.0657202519
..
..
..
SAS
South Asia
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
568.743018255
592.476911545
595.934204496
593.828430463
596.147410603
591.125919073
603.511227816
603.914202012
586.149282845
584.964873651
584.207936187
568.131595891
559.844061292
542.08263916
531.355805756
509.633993842
501.350668545
492.81495816
504.637678637
..
..
..
SAU
Saudi Arabia
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
690.260869057
789.821897244
806.4245952
887.0595728
867.37101104
654.502123459
696.856365579
569.705891064
529.632564733
584.961778106
730.945870292
722.310555011
788.726497085
733.096657614
744.498490736
748.165271
757.602150485
769.200711354
805.703044258
..
..
..
SDN
Sudan
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
203.83453399
183.716353866
152.194512392
88.9877642385
134.651616512
131.540268824
115.184381839
132.278894735
109.912109057
115.590655886
115.86808962
125.629392071
151.981615205
158.504622834
178.097037098
193.603100672
169.435515699
166.887730059
173.15148755
..
..
..
SEN
Senegal
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
297.427877387
312.067461609
313.187436656
319.265068772
346.690722931
294.71579786
309.21381758
261.630780615
259.549337782
263.374524474
271.651083003
285.630522224
297.948974704
307.95127143
306.321762063
321.822811263
256.53154472
274.435524964
246.018383867
..
..
..
SGP
Singapore
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
612.504509291
581.131573619
575.491202426
561.007682992
607.110034547
407.852555478
444.408707409
512.53689341
433.231531109
357.841982863
310.840710018
282.57442104
266.619788268
210.00734503
226.184243341
259.77771011
227.493472577
157.357179178
139.042772633
..
..
..
SID
Small island developing states
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
648.742831
627.1008659
614.0317595
576.5553031
608.0448994
513.4722941
524.9389793
530.901667
469.9610218
447.5376106
439.1370499
431.1778225
423.7341123
394.9658532
393.3769335
391.5450535
377.9144247
337.7806549
351.5243459
..
..
..
SLB
Solomon Islands
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
222.793193767
210.17397003
186.505579577
175.296232941
156.803358177
151.787777191
149.389804918
151.571946587
148.915491338
153.038499599
178.506948922
202.605611612
208.441987256
204.048693947
194.520364908
184.517324215
172.532121594
171.75920517
160.073816561
..
..
..
SLE
Sierra Leone
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
138.606972559
163.531467933
203.493094859
214.727054176
252.323212897
275.983295301
279.268810722
341.336809311
322.332640013
344.329152835
358.8205364
413.102378972
450.137754878
423.287901992
343.018533207
378.334757063
346.507044293
344.79843827
332.193379051
..
..
..
SLV
El Salvador
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
133.274994257
158.770698219
156.681054734
165.591474402
177.77795361
199.182545975
181.561007583
204.95483078
199.308321375
188.895421343
186.342346637
189.762428543
188.281118476
199.692579386
187.835561508
184.661643465
180.718679571
183.795687092
158.931251361
..
..
..
SMR
San Marino
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SOM
Somalia
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SRB
Serbia
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
734.109585831
733.431417565
684.034931395
663.166656551
..
..
..
SSA
Sub-Saharan Africa
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
560.185445303
564.865166921
572.95976466
592.789568762
586.862853194
557.39680876
547.130018243
538.408627026
522.228058441
517.087448986
529.841293223
510.575015566
496.854255573
495.418757011
509.097115168
485.42624723
450.325386369
443.511419366
428.608630137
..
..
..
STP
Sao Tome and Principe
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
561.924369051
584.154376505
573.208664288
555.637243052
593.674421134
556.526191974
525.024709409
496.242649155
..
..
..
SUR
Suriname
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
836.419263527
943.924725449
950.772572989
1046.51366378
1017.03474742
1014.48214684
978.181764353
929.891830648
925.106254864
928.462432684
917.96467585
935.541621806
886.673657003
832.373721361
785.714539629
777.915693584
767.971192758
730.258894333
697.743377014
..
..
..
SVK
Slovak Republic
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
871.47719757
812.269152109
753.240292642
767.340723834
698.635799006
648.229762191
639.609833274
589.634456143
533.027513619
554.942728442
529.157342565
508.136686508
474.680009275
449.903151976
412.044042961
350.264076342
338.602073905
..
..
..
SVN
Slovenia
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
459.456132083
451.805413744
368.153675831
457.960946261
462.60680764
470.679174439
435.241178149
403.024828725
372.245353383
375.476244387
367.158102662
358.990519402
349.370177439
337.626023976
326.313557318
304.857018321
312.112538759
..
..
..
SWE
Sweden
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
245.947479812
266.44229249
278.103596225
264.180924966
269.690577297
246.253184419
273.970821704
240.155601648
232.325007619
206.442673392
192.566351476
195.263472696
213.994662688
199.482838377
190.417436362
174.57414266
160.916236644
150.994526494
155.10368152
..
..
..
SWZ
Swaziland
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
140.844215429
105.312182881
83.8133204663
40.7652422866
143.997776332
131.406125649
95.1402264859
323.317836846
317.53160215
313.360783386
272.892500766
260.18323273
251.409680744
223.875463618
216.084366325
209.157868916
202.587922378
204.902331343
205.619931103
..
..
..
SXM
Sint Maarten (Dutch part)
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
119.507897129
146.309869161
157.537113204
145.048160936
169.477618502
174.239300207
172.46004724
322.332616388
315.765122544
361.623040847
381.556982877
443.663809315
370.716649397
404.552544191
578.060145762
484.345024415
477.822520062
364.769708697
404.357624517
..
..
..
SYR
Syrian Arab Republic
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
1008.31882441
1077.77078196
977.162067911
985.090195774
942.550721001
946.859773271
897.53593557
903.653736634
1019.03263756
1093.7124552
1042.80551646
949.465485641
839.542431542
1034.06903377
941.312793193
842.845999666
850.013302703
835.92984579
808.01637987
..
..
..
TCA
Turks and Caicos Islands
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TCD
Chad
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
29.7761900498
13.0314390734
15.2412455204
20.3421142026
19.1539149988
18.9199603591
19.1711336436
19.396708748
18.13597215
19.4387725709
28.5255117983
25.0149533577
22.5665474164
44.4728721047
32.9607538556
29.7281552344
30.2131995735
34.2276091624
36.8197172574
..
..
..
TGO
Togo
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
230.244052359
252.746069433
260.935294382
318.112656572
266.111338372
282.623000902
288.641373044
234.89451955
284.218675786
365.420557394
325.234557496
279.147894907
284.129783769
328.53371017
304.575392846
288.38075864
252.851477008
266.489726544
280.598255031
..
..
..
THA
Thailand
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
426.901999275
476.609105683
481.518929486
499.964046299
509.336219157
534.558005717
563.881469322
592.458207933
587.78502702
594.268249088
580.576767701
612.067283481
617.437119622
613.866516963
629.1405256
618.075937349
606.980852365
573.975629367
567.29147843
..
..
..
TJK
Tajikistan
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
697.173702372
597.183934929
345.500992389
410.380416002
568.616609645
425.679084438
468.989318266
456.240484806
374.057586372
347.781958796
261.649341687
261.961288521
254.848952245
236.722940465
234.28249778
293.599561789
264.046648444
..
..
..
TKM
Turkmenistan
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
2261.55380608
2476.72414033
3624.04561151
4038.6895374
3921.56393562
4219.0415123
3441.07868404
3983.5980895
3409.91447399
3151.93837035
2817.46518327
2528.25764131
1981.26673519
1847.08239506
1741.92729366
1628.91974889
1537.54173214
..
..
..
TMP
Timor-Leste
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
252.582740938
252.315834202
264.269555742
248.788626656
269.501750704
255.174071424
234.505678492
..
..
..
TON
Tonga
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
269.749257587
301.771592912
288.972564264
324.986542184
320.709963514
319.003948196
319.335091986
332.390926172
312.026818243
349.449600928
319.408883431
355.202383797
351.750380632
422.140682663
409.28609446
412.589314491
412.033434466
424.631849251
413.890305
..
..
..
TTO
Trinidad and Tobago
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
1289.53282285
1558.61552104
1580.02588405
1285.01449984
1464.52572032
1487.91547161
1486.99662545
1278.19436739
1191.47642816
1348.08309371
1364.68901348
1338.26740773
1331.39548142
1198.37167463
1265.32322778
1173.02531526
1154.47612092
1183.2552145
1552.86278547
..
..
..
TUN
Tunisia
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
404.871149202
454.922724333
409.29632547
439.923054563
411.874602873
397.227176706
394.839279175
378.643787604
383.878607167
368.601424497
382.636615429
381.055585196
378.421938259
364.993986992
361.079782793
352.771586137
338.651021825
328.683374092
329.169359447
..
..
..
TUR
Turkey
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
344.412011455
344.235835926
333.55142756
329.428936046
340.09066402
344.594868549
349.595474236
342.508004219
338.961676872
335.988893124
345.664346296
329.902224225
328.54340077
331.580340875
312.763782286
303.834343669
313.22152953
325.664010972
322.761413099
..
..
..
TUV
Tuvalu
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TZA
Tanzania
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
111.543037704
112.150106953
108.140204534
119.295703891
108.959798914
152.837747861
142.422370584
114.54664032
97.9440789168
92.7519196354
92.3505563692
102.790571419
110.08796268
109.202542808
115.811947513
126.036588267
124.89175137
130.861768353
130.382214739
..
..
..
UGA
Uganda
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
82.1102212168
80.9292015123
79.2661015625
69.748323925
59.405318358
68.4864104123
69.044972437
70.7303683058
79.6421576609
76.7349312913
81.8371761771
82.8296986751
79.601070417
75.4046713791
75.2652914418
90.3190022497
94.3050293192
103.017465862
110.811643795
..
..
..
UKR
Ukraine
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
1854.41024063
1839.97936323
1954.28155887
2220.51973926
2281.30309168
1946.09549013
1910.76394671
1937.38794299
1764.67410612
1620.41713355
1526.11401348
1541.95436742
1339.8337518
1289.04935647
1161.55001446
1079.98636055
1040.646825
..
..
..
UMC
Upper middle income
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
857.244612972
868.080758333
887.334353133
867.126538523
845.237432386
843.418309064
823.43708124
779.553978564
747.347273668
723.517530808
695.020512951
683.782545489
671.689322954
710.579290818
723.885202868
715.046544555
706.57318998
677.276840913
659.426458244
..
..
..
URY
Uruguay
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
175.909908667
193.767464442
203.812025285
171.501175615
145.555010207
166.737287614
187.192759891
176.054536687
172.445393045
207.942735027
167.292499188
166.886652069
164.191854586
162.104586444
188.357401449
180.436522174
199.091143569
167.378163389
213.952508147
..
..
..
USA
United States
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
612.256252574
612.716458402
593.238625182
611.14613866
593.774662575
580.210736742
570.315288267
561.845399197
533.047459838
515.671126628
493.602032111
477.415804573
473.01400482
464.345489979
455.817515077
444.792638616
426.969103017
423.906692691
414.838253978
..
..
..
UZB
Uzbekistan
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
3142.05302265
3343.45424976
3302.19433265
3029.8487091
3046.43162512
2856.33065616
3163.42763054
3029.12974753
2981.11996382
2910.7253653
2910.62444795
2700.16852248
2437.42807422
2093.21687961
2053.08694392
1883.01230673
1862.71829118
..
..
..
VCT
St. Vincent and the Grenadines
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
168.23564871
159.605635848
162.574731426
197.605922298
240.10361683
259.333319004
263.012259378
232.189670934
268.497558408
262.884194026
241.400151345
269.096895175
269.719284453
271.939128529
255.160197088
254.558669077
236.714588896
218.045456043
215.240227068
..
..
..
VEN
Venezuela, RB
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
646.069312077
556.385643181
481.117001444
563.550561917
603.062044743
594.821720283
549.103535937
563.357578703
701.578791096
769.73823174
655.487541371
717.615718663
881.975150207
950.392757489
703.820761618
605.029963221
530.004118708
521.831771763
516.218292906
..
..
..
VIR
Virgin Islands (U.S.)
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VNM
Vietnam
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
358.375514166
338.910243782
325.53715729
309.065495588
325.173494019
330.084257044
354.839373458
432.172795194
431.15190804
413.624173277
432.139609786
464.994312739
502.717744471
521.435510851
619.189625675
584.496679279
434.476560873
537.209806265
573.242319131
..
..
..
VUT
Vanuatu
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
324.317914303
297.896617176
290.370174094
288.206492923
264.272913851
261.625887592
326.692848365
324.932188031
123.652382499
123.122181366
111.300970547
120.362938981
125.653552948
126.469786258
121.142246869
72.0165360026
58.228522812
92.3178381561
98.6544730348
..
..
..
WBG
West Bank and Gaza
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
49.6920647754
65.14452093
64.9427060381
83.2784940821
165.428289707
158.552458401
163.983561439
225.116491661
311.271290029
..
..
..
..
..
..
WLD
World
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
627.860409695
628.940372737
607.186384931
597.208367866
590.219634384
584.465653877
575.736058482
564.345145121
549.180192147
525.362592801
514.662764941
515.609682036
506.3102132
512.755363055
514.2704934
511.548433669
502.197547626
485.440180411
..
..
..
..
WSM
Samoa
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
294.916481212
301.859235222
311.360174796
299.097191388
289.361798981
296.243609414
276.155179059
273.95403607
267.547340754
276.111430097
257.986886562
247.242672726
236.803802759
237.627352568
232.291588769
228.355348101
223.54526469
223.672218227
213.041296001
..
..
..
YEM
Yemen, Rep.
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
-137.121067297
453.232874724
595.219998123
375.078466789
442.50286066
392.251391023
491.072975864
471.313722672
348.995023989
386.85686413
390.405327786
414.374737224
386.852507472
411.878652392
432.237099441
434.552119811
436.792950315
446.926923215
458.830121299
..
..
..
ZAF
South Africa
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
1188.10872099
1246.48419049
1194.68982289
1244.42147598
1263.07969435
1206.24368867
1173.3920069
1183.57729793
1180.31082231
1149.44944815
1096.38985772
1050.21083116
971.003967856
1033.04596499
1074.58744853
1006.0188292
946.825017861
958.010371499
930.310880947
..
..
..
ZAR
Congo, Dem. Rep.
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
177.188966126
178.491689051
192.226032156
209.317976815
158.324043748
188.156503413
208.195292484
198.676505149
174.87719873
162.057149284
127.498435364
123.852037203
118.018395734
122.686889625
154.556711464
150.77514331
149.032937752
145.483249079
151.16502022
..
..
..
ZMB
Zambia
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
249.227745957
246.327514092
254.850465493
242.904094564
257.258128651
237.451974546
191.276268128
236.724470622
233.438850406
178.416969584
173.30067573
173.199420684
173.147831014
175.790206314
167.396915691
170.239885822
162.084371665
114.902108304
119.388623666
..
..
..
ZWE
Zimbabwe
EN.ATM.CO2E.PP.GD.KD
CO2 emissions per units of GDP (kg/$1,000 of 2005 PPP $)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ABW
Aruba
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ADO
Andorra
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AFG
Afghanistan
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AGO
Angola
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0
..
..
..
..
0.7
..
..
..
..
19.5
..
..
..
..
..
..
ALB
Albania
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
2.7
..
..
..
..
15.5
..
..
..
..
62.3
..
..
..
..
..
..
ARE
United Arab Emirates
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
843.4
..
..
..
..
596.9
..
..
..
..
878.1
..
..
..
..
1074.5
..
..
..
..
..
..
ARG
Argentina
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
2296.4
..
..
..
..
514.1
..
..
..
..
624.8
..
..
..
..
785.1
..
..
..
..
..
..
ARM
Armenia
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
6.8
..
..
..
..
42
..
..
..
..
335.1
..
..
..
..
..
..
ASM
American Samoa
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ATG
Antigua and Barbuda
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AUS
Australia
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
4872.8
..
..
..
..
3302.1
..
..
..
..
4198.9
..
..
..
..
6505.3
..
..
..
..
..
..
AUT
Austria
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
1592.6
..
..
..
..
1426.1
..
..
..
..
1501.3
..
..
..
..
2328.6
..
..
..
..
..
..
AZE
Azerbaijan
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
175.6
..
..
..
..
25.2
..
..
..
..
41.3
..
..
..
..
88.7
..
..
..
..
..
..
BDI
Burundi
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BEL
Belgium
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
308
..
..
..
..
687
..
..
..
..
1276.7
..
..
..
..
2106.1
..
..
..
..
..
..
BEN
Benin
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
..
..
BFA
Burkina Faso
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BGD
Bangladesh
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
..
..
BGR
Bulgaria
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
2.2
..
..
..
..
31
..
..
..
..
122.2
..
..
..
..
383.2
..
..
..
..
..
..
BHR
Bahrain
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
2535.7
..
..
..
..
312.3
..
..
..
..
236
..
..
..
..
278.6
..
..
..
..
..
..
BHS
Bahamas, The
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BIH
Bosnia and Herzegovina
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
616.7
..
..
..
..
96.3
..
..
..
..
409.7
..
..
..
..
571.2
..
..
..
..
..
..
BLR
Belarus
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
2.6
..
..
..
..
22
..
..
..
..
131.6
..
..
..
..
467.4
..
..
..
..
..
..
BLZ
Belize
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BMU
Bermuda
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BOL
Bolivia
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
..
..
BRA
Brazil
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
8407.9
..
..
..
..
7556.8
..
..
..
..
7621.1
..
..
..
..
11816.4
..
..
..
..
..
..
BRB
Barbados
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BRN
Brunei Darussalam
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
5
..
..
..
..
100.7
..
..
..
..
259.1
..
..
..
..
..
..
BTN
Bhutan
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BWA
Botswana
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
..
..
CAF
Central African Republic
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CAN
Canada
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
12932.1
..
..
..
..
13708.9
..
..
..
..
17760.9
..
..
..
..
21942.5
..
..
..
..
..
..
CHE
Switzerland
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
1068.8
..
..
..
..
874.1
..
..
..
..
1349.1
..
..
..
..
2109.3
..
..
..
..
..
..
CHI
Channel Islands
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHL
Chile
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
19
..
..
..
..
24.5
..
..
..
..
8.1
..
..
..
..
13.4
..
..
..
..
..
..
CHN
China
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
12054.3
..
..
..
..
39493
..
..
..
..
81189.9
..
..
..
..
141394
..
..
..
..
..
..
CIV
Cote d'Ivoire
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
..
..
CMR
Cameroon
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
932.3
..
..
..
..
661
..
..
..
..
572
..
..
..
..
419.3
..
..
..
..
..
..
COG
Congo, Rep.
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0.1
..
..
..
..
0.8
..
..
..
..
4.8
..
..
..
..
..
..
COK
Cook Islands
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
COL
Colombia
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
41.9
..
..
..
..
102.5
..
..
..
..
28.4
..
..
..
..
83.1
..
..
..
..
..
..
COM
Comoros
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CPV
Cape Verde
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CRI
Costa Rica
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
2.7
..
..
..
..
25.2
..
..
..
..
61.9
..
..
..
..
..
..
CUB
Cuba
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
5.5
..
..
..
..
34.2
..
..
..
..
128.8
..
..
..
..
..
..
CUW
Curacao
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYP
Cyprus
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
15
..
..
..
..
78.4
..
..
..
..
189.9
..
..
..
..
..
..
CZE
Czech Republic
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
6.2
..
..
..
..
91.1
..
..
..
..
441.3
..
..
..
..
1120.9
..
..
..
..
..
..
DEU
Germany
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
29189.4
..
..
..
..
42265.3
..
..
..
..
28472.1
..
..
..
..
31542.7
..
..
..
..
..
..
DJI
Djibouti
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DMA
Dominica
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DNK
Denmark
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
254.6
..
..
..
..
543.9
..
..
..
..
889.2
..
..
..
..
1421.5
..
..
..
..
..
..
DOM
Dominican Republic
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
..
..
DZA
Algeria
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
326
..
..
..
..
109.9
..
..
..
..
371.9
..
..
..
..
488.9
..
..
..
..
..
..
EAP
East Asia & Pacific
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ECA
Europe & Central Asia
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
35277
..
..
..
..
46923.2
..
..
..
..
55657.9
..
..
..
..
75691.5
..
..
..
..
..
..
ECU
Ecuador
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
4
..
..
..
..
19.7
..
..
..
..
62.6
..
..
..
..
..
..
EGY
Egypt, Arab Rep.
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
2059.4
..
..
..
..
1900.2
..
..
..
..
2570.3
..
..
..
..
3181.2
..
..
..
..
..
..
EMU
Euro area
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
61378
..
..
..
..
71917
..
..
..
..
70700.9
..
..
..
..
84229.6
..
..
..
..
..
..
ERI
Eritrea
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
..
..
ESP
Spain
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
6146
..
..
..
..
6599
..
..
..
..
5582.4
..
..
..
..
9079.8
..
..
..
..
..
..
EST
Estonia
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
2.1
..
..
..
..
4.2
..
..
..
..
13.3
..
..
..
..
39.7
..
..
..
..
..
..
ETH
Ethiopia
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0.1
..
..
..
..
3.6
..
..
..
..
10.4
..
..
..
..
..
..
FIN
Finland
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
100.2
..
..
..
..
227.8
..
..
..
..
521.8
..
..
..
..
826
..
..
..
..
..
..
FJI
Fiji
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FRA
France
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
9891.8
..
..
..
..
6711.6
..
..
..
..
10966.1
..
..
..
..
15538.7
..
..
..
..
..
..
FRO
Faeroe Islands
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FSM
Micronesia, Fed. Sts.
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GAB
Gabon
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0.6
..
..
..
..
2.9
..
..
..
..
8.5
..
..
..
..
..
..
GBR
United Kingdom
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
5288.8
..
..
..
..
6346.1
..
..
..
..
8482.3
..
..
..
..
10403.1
..
..
..
..
..
..
GEO
Georgia
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0.4
..
..
..
..
2.5
..
..
..
..
11.9
..
..
..
..
..
..
GHA
Ghana
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
596.2
..
..
..
..
324.2
..
..
..
..
168.2
..
..
..
..
15
..
..
..
..
..
..
GIB
Gibraltar
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
..
..
GIN
Guinea
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GMB
Gambia, The
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GNB
Guinea-Bissau
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GNQ
Equatorial Guinea
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRC
Greece
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
2327.4
..
..
..
..
1570.1
..
..
..
..
1477.8
..
..
..
..
1842
..
..
..
..
..
..
GRD
Grenada
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRL
Greenland
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GTM
Guatemala
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0.1
..
..
..
..
24
..
..
..
..
157.6
..
..
..
..
481.2
..
..
..
..
..
..
GUM
Guam
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GUY
Guyana
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HIC
High income
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
237937.8
..
..
..
..
275967.1
..
..
..
..
347477.4
..
..
..
..
459891.4
..
..
..
..
..
..
HKG
Hong Kong SAR, China
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
379
..
..
..
..
159.9
..
..
..
..
155.3
..
..
..
..
119
..
..
..
..
..
..
HND
Honduras
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
..
..
HRV
Croatia
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
890.4
..
..
..
..
296.8
..
..
..
..
75.7
..
..
..
..
58.9
..
..
..
..
..
..
HTI
Haiti
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
..
..
HUN
Hungary
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
702
..
..
..
..
419.5
..
..
..
..
763.2
..
..
..
..
1551.9
..
..
..
..
..
..
IDN
Indonesia
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
1727.4
..
..
..
..
1512.4
..
..
..
..
1001
..
..
..
..
1026.7
..
..
..
..
..
..
IMY
Isle of Man
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IND
India
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
9568.1
..
..
..
..
7046.9
..
..
..
..
7750
..
..
..
..
8433.1
..
..
..
..
..
..
IRL
Ireland
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
36.4
..
..
..
..
241.5
..
..
..
..
908.4
..
..
..
..
1151.3
..
..
..
..
..
..
IRN
Iran, Islamic Rep.
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
2646.6
..
..
..
..
2122.6
..
..
..
..
1862.9
..
..
..
..
2569
..
..
..
..
..
..
IRQ
Iraq
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
252.9
..
..
..
..
188.6
..
..
..
..
156.1
..
..
..
..
86
..
..
..
..
..
..
ISL
Iceland
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
1036.9
..
..
..
..
85.8
..
..
..
..
144.8
..
..
..
..
151.9
..
..
..
..
..
..
ISR
Israel
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
1049.4
..
..
..
..
896.5
..
..
..
..
1787.6
..
..
..
..
1980.7
..
..
..
..
..
..
ITA
Italy
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
4489.4
..
..
..
..
5402.5
..
..
..
..
9573.5
..
..
..
..
13968.3
..
..
..
..
..
..
JAM
Jamaica
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
3.5
..
..
..
..
17.8
..
..
..
..
50.7
..
..
..
..
..
..
JOR
Jordan
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0
..
..
..
..
19.7
..
..
..
..
111.5
..
..
..
..
..
..
JPN
Japan
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
29697.4
..
..
..
..
48123.9
..
..
..
..
42157.5
..
..
..
..
53786.4
..
..
..
..
..
..
KAZ
Kazakhstan
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
11.4
..
..
..
..
57.5
..
..
..
..
339
..
..
..
..
..
..
KEN
Kenya
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
..
..
KGZ
Kyrgyz Republic
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
1.1
..
..
..
..
7.9
..
..
..
..
24.2
..
..
..
..
..
..
KHM
Cambodia
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
..
..
KIR
Kiribati
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KNA
St. Kitts and Nevis
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KOR
Korea, Rep.
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
6157.2
..
..
..
..
7105.8
..
..
..
..
8852.8
..
..
..
..
10220.6
..
..
..
..
..
..
KSV
Kosovo
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KWT
Kuwait
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
263.1
..
..
..
..
488
..
..
..
..
498.2
..
..
..
..
931.1
..
..
..
..
..
..
LAC
Latin America & Caribbean
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
16988
..
..
..
..
13443
..
..
..
..
14973.6
..
..
..
..
20972.2
..
..
..
..
..
..
LAO
Lao PDR
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LBN
Lebanon
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
..
..
LBR
Liberia
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LBY
Libya
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
282.3
..
..
..
..
116.7
..
..
..
..
178.2
..
..
..
..
280.3
..
..
..
..
..
..
LCA
St. Lucia
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LIC
Low income
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LIE
Liechtenstein
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LKA
Sri Lanka
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
..
..
LMC
Lower middle income
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
16773.3
..
..
..
..
12718.2
..
..
..
..
13961.2
..
..
..
..
17326.9
..
..
..
..
..
..
LMY
Low & middle income
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
87641.9
..
..
..
..
117425.9
..
..
..
..
171830.5
..
..
..
..
264291.2
..
..
..
..
..
..
LSO
Lesotho
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LTU
Lithuania
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
1
..
..
..
..
31.6
..
..
..
..
172.9
..
..
..
..
655.9
..
..
..
..
..
..
LUX
Luxembourg
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0.2
..
..
..
..
9.9
..
..
..
..
457.2
..
..
..
..
101.5
..
..
..
..
..
..
LVA
Latvia
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0.8
..
..
..
..
31.7
..
..
..
..
195.7
..
..
..
..
889.8
..
..
..
..
..
..
MAC
Macao SAR, China
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAF
St. Martin (French part)
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
..
..
MCO
Monaco
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MDA
Moldova
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0.6
..
..
..
..
1.9
..
..
..
..
8.1
..
..
..
..
..
..
MDG
Madagascar
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MDV
Maldives
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MEX
Mexico
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
2974.6
..
..
..
..
2906.4
..
..
..
..
4161.8
..
..
..
..
4554.7
..
..
..
..
..
..
MHL
Marshall Islands
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MIC
Middle income
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
84835.6
..
..
..
..
115516.2
..
..
..
..
169126
..
..
..
..
260797.9
..
..
..
..
..
..
MKD
Macedonia, FYR
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
9.8
..
..
..
..
51.8
..
..
..
..
120.3
..
..
..
..
..
..
MLI
Mali
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MLT
Malta
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
8.9
..
..
..
..
50
..
..
..
..
114.7
..
..
..
..
..
..
MMR
Myanmar
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
..
..
MNA
Middle East & North Africa
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
5567.2
..
..
..
..
4438
..
..
..
..
5159.1
..
..
..
..
6716.9
..
..
..
..
..
..
MNE
Montenegro
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNG
Mongolia
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
..
..
MNP
Northern Mariana Islands
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MOZ
Mozambique
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
1.5
..
..
..
..
43.8
..
..
..
..
281.8
..
..
..
..
..
..
MRT
Mauritania
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MUS
Mauritius
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MWI
Malawi
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MYS
Malaysia
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
597.8
..
..
..
..
725.1
..
..
..
..
525.7
..
..
..
..
994
..
..
..
..
..
..
MYT
Mayotte
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NAM
Namibia
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
..
..
NCL
New Caledonia
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NER
Niger
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NGA
Nigeria
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
241.9
..
..
..
..
36.9
..
..
..
..
270.9
..
..
..
..
669
..
..
..
..
..
..
NIC
Nicaragua
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
..
..
NIU
Niue
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NLD
Netherlands
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
6346.4
..
..
..
..
6185.9
..
..
..
..
6330.3
..
..
..
..
3750
..
..
..
..
..
..
NOR
Norway
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
8579.3
..
..
..
..
4779.9
..
..
..
..
5755.5
..
..
..
..
5201.6
..
..
..
..
..
..
NPL
Nepal
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
..
..
NRU
Nauru
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NZL
New Zealand
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
941.4
..
..
..
..
792.9
..
..
..
..
757.9
..
..
..
..
973.1
..
..
..
..
..
..
OMN
Oman
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
6.3
..
..
..
..
8.6
..
..
..
..
175.4
..
..
..
..
..
..
PAK
Pakistan
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
1009
..
..
..
..
337.8
..
..
..
..
347.2
..
..
..
..
819.4
..
..
..
..
..
..
PAN
Panama
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
..
..
PER
Peru
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
20.8
..
..
..
..
103.1
..
..
..
..
329.9
..
..
..
..
..
..
PHL
Philippines
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
161.9
..
..
..
..
353.3
..
..
..
..
221.4
..
..
..
..
365.3
..
..
..
..
..
..
PLW
Palau
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PNG
Papua New Guinea
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
POL
Poland
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
532.2
..
..
..
..
851.6
..
..
..
..
1376.8
..
..
..
..
2451.4
..
..
..
..
..
..
PRI
Puerto Rico
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRK
Korea, Dem. Rep.
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0.2
..
..
..
..
73.1
..
..
..
..
1760.1
..
..
..
..
2793.8
..
..
..
..
..
..
PRT
Portugal
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
110.8
..
..
..
..
186.7
..
..
..
..
505.3
..
..
..
..
782.9
..
..
..
..
..
..
PRY
Paraguay
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
..
..
PYF
French Polynesia
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
QAT
Qatar
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
..
..
ROM
Romania
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
2007.7
..
..
..
..
1376.1
..
..
..
..
795
..
..
..
..
746.3
..
..
..
..
..
..
RUS
Russian Federation
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
25877.3
..
..
..
..
40415.4
..
..
..
..
47535.2
..
..
..
..
59672.6
..
..
..
..
..
..
RWA
Rwanda
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SAS
South Asia
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
10577.1
..
..
..
..
7384.7
..
..
..
..
8097.2
..
..
..
..
9252.5
..
..
..
..
..
..
SAU
Saudi Arabia
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
2452.6
..
..
..
..
1252
..
..
..
..
1346
..
..
..
..
2193.3
..
..
..
..
..
..
SDN
Sudan
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
..
..
SEN
Senegal
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
..
..
SGP
Singapore
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
510.4
..
..
..
..
715.1
..
..
..
..
1414.3
..
..
..
..
2531.7
..
..
..
..
..
..
SID
Small island developing states
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLB
Solomon Islands
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLE
Sierra Leone
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLV
El Salvador
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0.1
..
..
..
..
41.4
..
..
..
..
76.9
..
..
..
..
..
..
SMR
San Marino
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SOM
Somalia
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SRB
Serbia
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
990.2
..
..
..
..
421.8
..
..
..
..
1990.5
..
..
..
..
4492.9
..
..
..
..
..
..
SSA
Sub-Saharan Africa
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
STP
Sao Tome and Principe
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SUR
Suriname
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SVK
Slovak Republic
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
68.3
..
..
..
..
40.3
..
..
..
..
2629.7
..
..
..
..
394.8
..
..
..
..
..
..
SVN
Slovenia
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
769
..
..
..
..
335.2
..
..
..
..
356.6
..
..
..
..
472.6
..
..
..
..
..
..
SWE
Sweden
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
888.6
..
..
..
..
1004.9
..
..
..
..
1487.8
..
..
..
..
2077.8
..
..
..
..
..
..
SWZ
Swaziland
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SXM
Sint Maarten (Dutch part)
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYR
Syrian Arab Republic
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
..
..
TCA
Turks and Caicos Islands
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TCD
Chad
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TGO
Togo
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
..
..
THA
Thailand
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
1429.5
..
..
..
..
919.5
..
..
..
..
453.1
..
..
..
..
1103.9
..
..
..
..
..
..
TJK
Tajikistan
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
2806.1
..
..
..
..
1833.9
..
..
..
..
889.1
..
..
..
..
383.1
..
..
..
..
..
..
TKM
Turkmenistan
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
1.9
..
..
..
..
10.9
..
..
..
..
73.4
..
..
..
..
..
..
TMP
Timor-Leste
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TON
Tonga
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TTO
Trinidad and Tobago
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
..
..
TUN
Tunisia
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
..
..
TUR
Turkey
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
2572.7
..
..
..
..
2280.5
..
..
..
..
2538.5
..
..
..
..
5065.5
..
..
..
..
..
..
TUV
Tuvalu
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TZA
Tanzania
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
..
..
UGA
Uganda
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
UKR
Ukraine
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
224.1
..
..
..
..
289.1
..
..
..
..
454.2
..
..
..
..
693.1
..
..
..
..
..
..
UMC
Upper middle income
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
68062.3
..
..
..
..
102798
..
..
..
..
155164.8
..
..
..
..
243471
..
..
..
..
..
..
URY
Uruguay
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
2.4
..
..
..
..
29.3
..
..
..
..
59.1
..
..
..
..
..
..
USA
United States
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
92595.5
..
..
..
..
109280.9
..
..
..
..
170020.3
..
..
..
..
239517.2
..
..
..
..
..
..
UZB
Uzbekistan
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
33.9
..
..
..
..
192
..
..
..
..
607.5
..
..
..
..
..
..
VCT
St. Vincent and the Grenadines
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VEN
Venezuela, RB
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
3248.1
..
..
..
..
2275.7
..
..
..
..
2101.1
..
..
..
..
2468.4
..
..
..
..
..
..
VIR
Virgin Islands (U.S.)
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VNM
Vietnam
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
..
..
VUT
Vanuatu
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
WBG
West Bank and Gaza
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
WLD
World
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
325579.7
..
..
..
..
393393
..
..
..
..
519307.9
..
..
..
..
724182.6
..
..
..
..
..
..
WSM
Samoa
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
YEM
Yemen, Rep.
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
..
..
ZAF
South Africa
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
1491.1
..
..
..
..
1136.2
..
..
..
..
1728.5
..
..
..
..
2551.7
..
..
..
..
..
..
ZAR
Congo, Dem. Rep.
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
..
..
ZMB
Zambia
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0
..
..
..
..
0.1
..
..
..
..
0.4
..
..
..
..
..
..
ZWE
Zimbabwe
EN.ATM.GHGO.KT.CE
Other GHG emissions, total (KtCO2e)
0
1
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
0
..
..
..
..
..
..
ABW
Aruba
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ADO
Andorra
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AFG
Afghanistan
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AGO
Angola
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
49530
..
..
..
..
42370.6
..
..
..
..
43131.4
..
..
..
..
45408.8
..
..
..
..
..
..
ALB
Albania
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
2537.2
..
..
..
..
2763.8
..
..
..
..
2578.1
..
..
..
..
2406.7
..
..
..
..
..
..
ARE
United Arab Emirates
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
14735.3
..
..
..
..
16378.3
..
..
..
..
24126.9
..
..
..
..
23282.9
..
..
..
..
..
..
ARG
Argentina
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
111048.3
..
..
..
..
107973.7
..
..
..
..
100260.4
..
..
..
..
101820.7
..
..
..
..
..
..
ARM
Armenia
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
2890.5
..
..
..
..
2427.5
..
..
..
..
2565.1
..
..
..
..
2961.8
..
..
..
..
..
..
ASM
American Samoa
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ATG
Antigua and Barbuda
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AUS
Australia
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
115277.8
..
..
..
..
113112.9
..
..
..
..
130753.8
..
..
..
..
126487.8
..
..
..
..
..
..
AUT
Austria
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
10020.5
..
..
..
..
9550.8
..
..
..
..
8972.7
..
..
..
..
8514.9
..
..
..
..
..
..
AZE
Azerbaijan
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
17373
..
..
..
..
9110.5
..
..
..
..
34496.7
..
..
..
..
36607.2
..
..
..
..
..
..
BDI
Burundi
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BEL
Belgium
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
12865.5
..
..
..
..
12673.3
..
..
..
..
11667.5
..
..
..
..
10063.2
..
..
..
..
..
..
BEN
Benin
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
4847.3
..
..
..
..
4638
..
..
..
..
4216.1
..
..
..
..
4080.4
..
..
..
..
..
..
BFA
Burkina Faso
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BGD
Bangladesh
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
86756.7
..
..
..
..
85075.8
..
..
..
..
88869.6
..
..
..
..
92413.9
..
..
..
..
..
..
BGR
Bulgaria
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
14451
..
..
..
..
11846
..
..
..
..
11722
..
..
..
..
10866.5
..
..
..
..
..
..
BHR
Bahrain
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
1785.7
..
..
..
..
1930.9
..
..
..
..
2368.5
..
..
..
..
2765.5
..
..
..
..
..
..
BHS
Bahamas, The
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BIH
Bosnia and Herzegovina
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
5891
..
..
..
..
1635.1
..
..
..
..
2763.3
..
..
..
..
2740.7
..
..
..
..
..
..
BLR
Belarus
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
17112.2
..
..
..
..
12998.6
..
..
..
..
11282.8
..
..
..
..
11497.9
..
..
..
..
..
..
BLZ
Belize
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BMU
Bermuda
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BOL
Bolivia
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
23192.8
..
..
..
..
23477.4
..
..
..
..
20248.9
..
..
..
..
30349.8
..
..
..
..
..
..
BRA
Brazil
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
314736.9
..
..
..
..
352060.1
..
..
..
..
345192.9
..
..
..
..
492159.7
..
..
..
..
..
..
BRB
Barbados
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BRN
Brunei Darussalam
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
3700.8
..
..
..
..
5990.6
..
..
..
..
4994.9
..
..
..
..
5770.8
..
..
..
..
..
..
BTN
Bhutan
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BWA
Botswana
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
5812.4
..
..
..
..
5172
..
..
..
..
3825.5
..
..
..
..
4500.5
..
..
..
..
..
..
CAF
Central African Republic
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CAN
Canada
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
68318.8
..
..
..
..
93803.1
..
..
..
..
83575.2
..
..
..
..
89337.8
..
..
..
..
..
..
CHE
Switzerland
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
5729
..
..
..
..
5301.4
..
..
..
..
4918.8
..
..
..
..
4747.8
..
..
..
..
..
..
CHI
Channel Islands
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHL
Chile
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
12115
..
..
..
..
14358.9
..
..
..
..
16849.1
..
..
..
..
18149.1
..
..
..
..
..
..
CHN
China
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
1037310.8
..
..
..
..
1093619.5
..
..
..
..
1059439.3
..
..
..
..
1333098.1
..
..
..
..
..
..
CIV
Cote d'Ivoire
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
11243
..
..
..
..
11186.5
..
..
..
..
13195.9
..
..
..
..
10996.6
..
..
..
..
..
..
CMR
Cameroon
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
13502.6
..
..
..
..
21567.2
..
..
..
..
21264
..
..
..
..
18518
..
..
..
..
..
..
COG
Congo, Rep.
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
6230.8
..
..
..
..
5439.3
..
..
..
..
5458.7
..
..
..
..
5583.9
..
..
..
..
..
..
COK
Cook Islands
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
COL
Colombia
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
51184.7
..
..
..
..
53065.1
..
..
..
..
55555.2
..
..
..
..
58107.6
..
..
..
..
..
..
COM
Comoros
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CPV
Cape Verde
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CRI
Costa Rica
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
3752.3
..
..
..
..
3044.1
..
..
..
..
2912.8
..
..
..
..
2579.6
..
..
..
..
..
..
CUB
Cuba
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
11966.8
..
..
..
..
10337.3
..
..
..
..
10717.6
..
..
..
..
9454.7
..
..
..
..
..
..
CUW
Curacao
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYP
Cyprus
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
440.3
..
..
..
..
519.2
..
..
..
..
565.2
..
..
..
..
615.7
..
..
..
..
..
..
CZE
Czech Republic
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
19273.3
..
..
..
..
12821.9
..
..
..
..
12429.1
..
..
..
..
11497.4
..
..
..
..
..
..
DEU
Germany
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
122515.9
..
..
..
..
100574.8
..
..
..
..
82251.2
..
..
..
..
67581.5
..
..
..
..
..
..
DJI
Djibouti
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DMA
Dominica
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DNK
Denmark
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
7975.2
..
..
..
..
8189.7
..
..
..
..
8117.5
..
..
..
..
7934.8
..
..
..
..
..
..
DOM
Dominican Republic
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
5857.1
..
..
..
..
6349
..
..
..
..
5770.6
..
..
..
..
6081.1
..
..
..
..
..
..
DZA
Algeria
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
40726
..
..
..
..
57734.1
..
..
..
..
58824.1
..
..
..
..
54218.6
..
..
..
..
..
..
EAP
East Asia & Pacific
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
1548297.1
..
..
..
..
1634458.9
..
..
..
..
1584777.9
..
..
..
..
1928354.7
..
..
..
..
..
..
ECA
Europe & Central Asia
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
1132573.9
..
..
..
..
857334.3
..
..
..
..
834171.2
..
..
..
..
936607.8
..
..
..
..
..
..
ECU
Ecuador
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
13054.8
..
..
..
..
15499.6
..
..
..
..
14365.1
..
..
..
..
17125.3
..
..
..
..
..
..
EGY
Egypt, Arab Rep.
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
27838.6
..
..
..
..
31906.3
..
..
..
..
35513
..
..
..
..
46996.2
..
..
..
..
..
..
EMU
Euro area
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
388338.9
..
..
..
..
358799.4
..
..
..
..
346982.4
..
..
..
..
317704.4
..
..
..
..
..
..
ERI
Eritrea
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
1884
..
..
..
..
1861.9
..
..
..
..
2579.5
..
..
..
..
2466.9
..
..
..
..
..
..
ESP
Spain
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
32468.1
..
..
..
..
32163.2
..
..
..
..
34396.3
..
..
..
..
36338.2
..
..
..
..
..
..
EST
Estonia
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
3332.7
..
..
..
..
2006.3
..
..
..
..
1956.7
..
..
..
..
2107.8
..
..
..
..
..
..
ETH
Ethiopia
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
39324.9
..
..
..
..
41255.1
..
..
..
..
45510.2
..
..
..
..
52242.6
..
..
..
..
..
..
FIN
Finland
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
10022.6
..
..
..
..
10159.2
..
..
..
..
10256.9
..
..
..
..
9742.2
..
..
..
..
..
..
FJI
Fiji
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FRA
France
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
77468.6
..
..
..
..
74927.3
..
..
..
..
82899.3
..
..
..
..
77252.4
..
..
..
..
..
..
FRO
Faeroe Islands
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FSM
Micronesia, Fed. Sts.
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GAB
Gabon
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
8103.4
..
..
..
..
8086.5
..
..
..
..
7563.2
..
..
..
..
8217.7
..
..
..
..
..
..
GBR
United Kingdom
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
117613.9
..
..
..
..
104301.6
..
..
..
..
86830.2
..
..
..
..
65788.4
..
..
..
..
..
..
GEO
Georgia
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
5035.4
..
..
..
..
4112.4
..
..
..
..
4133
..
..
..
..
4410.3
..
..
..
..
..
..
GHA
Ghana
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
7237.6
..
..
..
..
8151.5
..
..
..
..
8704.9
..
..
..
..
8989.5
..
..
..
..
..
..
GIB
Gibraltar
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
4.9
..
..
..
..
5.6
..
..
..
..
5.9
..
..
..
..
6.1
..
..
..
..
..
..
GIN
Guinea
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GMB
Gambia, The
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GNB
Guinea-Bissau
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GNQ
Equatorial Guinea
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRC
Greece
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
7142.6
..
..
..
..
7069.9
..
..
..
..
7226
..
..
..
..
7289.1
..
..
..
..
..
..
GRD
Grenada
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRL
Greenland
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GTM
Guatemala
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
4754.4
..
..
..
..
5308.6
..
..
..
..
18953.5
..
..
..
..
8306.4
..
..
..
..
..
..
GUM
Guam
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GUY
Guyana
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HIC
High income
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
1724675
..
..
..
..
1669357.7
..
..
..
..
1587185.1
..
..
..
..
1539204.2
..
..
..
..
..
..
HKG
Hong Kong SAR, China
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
1532.2
..
..
..
..
2101.9
..
..
..
..
2693.9
..
..
..
..
2819.9
..
..
..
..
..
..
HND
Honduras
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
3947.4
..
..
..
..
3998.3
..
..
..
..
3433.4
..
..
..
..
5190.8
..
..
..
..
..
..
HRV
Croatia
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
9771.5
..
..
..
..
3450.9
..
..
..
..
3394
..
..
..
..
3864.1
..
..
..
..
..
..
HTI
Haiti
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
2970.7
..
..
..
..
3374.7
..
..
..
..
3831.5
..
..
..
..
4006.2
..
..
..
..
..
..
HUN
Hungary
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
10073
..
..
..
..
7436.2
..
..
..
..
8189.4
..
..
..
..
7767.2
..
..
..
..
..
..
IDN
Indonesia
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
176479.2
..
..
..
..
182546.8
..
..
..
..
177166.6
..
..
..
..
208944.4
..
..
..
..
..
..
IMY
Isle of Man
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IND
India
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
528441.2
..
..
..
..
544388.1
..
..
..
..
564238.7
..
..
..
..
583977.6
..
..
..
..
..
..
IRL
Ireland
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
13416.6
..
..
..
..
14025.8
..
..
..
..
14733.5
..
..
..
..
15330.6
..
..
..
..
..
..
IRN
Iran, Islamic Rep.
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
86459.5
..
..
..
..
101900.4
..
..
..
..
115861.6
..
..
..
..
114585.1
..
..
..
..
..
..
IRQ
Iraq
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
29402.3
..
..
..
..
10291.5
..
..
..
..
18399.2
..
..
..
..
15937.1
..
..
..
..
..
..
ISL
Iceland
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
338
..
..
..
..
328.2
..
..
..
..
331.5
..
..
..
..
401.8
..
..
..
..
..
..
ISR
Israel
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
1913.1
..
..
..
..
2421.7
..
..
..
..
2702.8
..
..
..
..
3516.5
..
..
..
..
..
..
ITA
Italy
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
47091.9
..
..
..
..
46378.7
..
..
..
..
46652.6
..
..
..
..
40790.2
..
..
..
..
..
..
JAM
Jamaica
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
1138.4
..
..
..
..
1298.2
..
..
..
..
1262
..
..
..
..
1302.1
..
..
..
..
..
..
JOR
Jordan
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
849
..
..
..
..
1202.4
..
..
..
..
1365
..
..
..
..
1796
..
..
..
..
..
..
JPN
Japan
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
67362.3
..
..
..
..
60263.9
..
..
..
..
47775.4
..
..
..
..
42771.3
..
..
..
..
..
..
KAZ
Kazakhstan
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
64823.2
..
..
..
..
41703.3
..
..
..
..
34558.4
..
..
..
..
47119.2
..
..
..
..
..
..
KEN
Kenya
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
17952.2
..
..
..
..
18992.9
..
..
..
..
19217.8
..
..
..
..
22130
..
..
..
..
..
..
KGZ
Kyrgyz Republic
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
5805.8
..
..
..
..
3693.2
..
..
..
..
3482.7
..
..
..
..
3591.3
..
..
..
..
..
..
KHM
Cambodia
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
14976.7
..
..
..
..
15740.3
..
..
..
..
14811.1
..
..
..
..
20215.1
..
..
..
..
..
..
KIR
Kiribati
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KNA
St. Kitts and Nevis
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KOR
Korea, Rep.
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
31304.2
..
..
..
..
30079.7
..
..
..
..
30924.2
..
..
..
..
32068.9
..
..
..
..
..
..
KSV
Kosovo
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KWT
Kuwait
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
6553.4
..
..
..
..
10081.9
..
..
..
..
10142.7
..
..
..
..
14380.3
..
..
..
..
..
..
LAC
Latin America & Caribbean
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
774067.6
..
..
..
..
833551.4
..
..
..
..
837839.9
..
..
..
..
1008556.9
..
..
..
..
..
..
LAO
Lao PDR
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LBN
Lebanon
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
683.9
..
..
..
..
790.9
..
..
..
..
887.5
..
..
..
..
1002.6
..
..
..
..
..
..
LBR
Liberia
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LBY
Libya
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
22473.2
..
..
..
..
15340
..
..
..
..
11943.2
..
..
..
..
14681.5
..
..
..
..
..
..
LCA
St. Lucia
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LIC
Low income
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
449913.8
..
..
..
..
432705.4
..
..
..
..
405498.9
..
..
..
..
436332.7
..
..
..
..
..
..
LIE
Liechtenstein
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LKA
Sri Lanka
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
11502.7
..
..
..
..
11577.7
..
..
..
..
9515.2
..
..
..
..
10210.4
..
..
..
..
..
..
LMC
Lower middle income
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
1530017.9
..
..
..
..
1554282.5
..
..
..
..
1581771.7
..
..
..
..
1704858.6
..
..
..
..
..
..
LMY
Low & middle income
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
4991833.7
..
..
..
..
4911065.5
..
..
..
..
4880873.2
..
..
..
..
5596645.4
..
..
..
..
..
..
LSO
Lesotho
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LTU
Lithuania
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
8373.7
..
..
..
..
5996.1
..
..
..
..
5698.9
..
..
..
..
5516
..
..
..
..
..
..
LUX
Luxembourg
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
970.2
..
..
..
..
1243
..
..
..
..
1026.8
..
..
..
..
1069
..
..
..
..
..
..
LVA
Latvia
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
5364.9
..
..
..
..
3058.4
..
..
..
..
2765.6
..
..
..
..
3107.7
..
..
..
..
..
..
MAC
Macao SAR, China
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAF
St. Martin (French part)
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
9132.1
..
..
..
..
8173.6
..
..
..
..
9480.8
..
..
..
..
10573
..
..
..
..
..
..
MCO
Monaco
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MDA
Moldova
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
4086.1
..
..
..
..
3863.2
..
..
..
..
3086.3
..
..
..
..
3371.5
..
..
..
..
..
..
MDG
Madagascar
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MDV
Maldives
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MEX
Mexico
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
101535.2
..
..
..
..
103199.3
..
..
..
..
117345.4
..
..
..
..
128208.7
..
..
..
..
..
..
MHL
Marshall Islands
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MIC
Middle income
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
4541919.9
..
..
..
..
4478360.1
..
..
..
..
4475374.3
..
..
..
..
5160312.7
..
..
..
..
..
..
MKD
Macedonia, FYR
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
2210
..
..
..
..
1463.9
..
..
..
..
1486.1
..
..
..
..
1403
..
..
..
..
..
..
MLI
Mali
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MLT
Malta
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
125.2
..
..
..
..
137.6
..
..
..
..
155.1
..
..
..
..
168.8
..
..
..
..
..
..
MMR
Myanmar
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
83360.8
..
..
..
..
89506.7
..
..
..
..
67110
..
..
..
..
77211.2
..
..
..
..
..
..
MNA
Middle East & North Africa
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
239331.3
..
..
..
..
251932.3
..
..
..
..
275678.5
..
..
..
..
287084.3
..
..
..
..
..
..
MNE
Montenegro
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNG
Mongolia
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
8191.9
..
..
..
..
8875.8
..
..
..
..
9041.7
..
..
..
..
6066.7
..
..
..
..
..
..
MNP
Northern Mariana Islands
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MOZ
Mozambique
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
10863.1
..
..
..
..
9876.6
..
..
..
..
12108.1
..
..
..
..
12843
..
..
..
..
..
..
MRT
Mauritania
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MUS
Mauritius
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MWI
Malawi
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MYS
Malaysia
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
28230
..
..
..
..
37010.6
..
..
..
..
40141
..
..
..
..
46500.9
..
..
..
..
..
..
MYT
Mayotte
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NAM
Namibia
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
3434.6
..
..
..
..
3191.5
..
..
..
..
4391.8
..
..
..
..
5056.7
..
..
..
..
..
..
NCL
New Caledonia
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NER
Niger
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NGA
Nigeria
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
117467.1
..
..
..
..
140492.1
..
..
..
..
114503.1
..
..
..
..
130317
..
..
..
..
..
..
NIC
Nicaragua
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
4764.4
..
..
..
..
4579.5
..
..
..
..
5522.5
..
..
..
..
6018.2
..
..
..
..
..
..
NIU
Niue
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NLD
Netherlands
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
30552.1
..
..
..
..
29044.9
..
..
..
..
24429.8
..
..
..
..
21258.5
..
..
..
..
..
..
NOR
Norway
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
11461.7
..
..
..
..
14617.7
..
..
..
..
16540.5
..
..
..
..
16869.6
..
..
..
..
..
..
NPL
Nepal
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
20192.6
..
..
..
..
20643.9
..
..
..
..
21082.9
..
..
..
..
22141.7
..
..
..
..
..
..
NRU
Nauru
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NZL
New Zealand
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
26666.7
..
..
..
..
27166.2
..
..
..
..
26688.5
..
..
..
..
27635.2
..
..
..
..
..
..
OMN
Oman
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
6051.8
..
..
..
..
6112.7
..
..
..
..
11430
..
..
..
..
17849.4
..
..
..
..
..
..
PAK
Pakistan
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
91196
..
..
..
..
101535.9
..
..
..
..
116519.3
..
..
..
..
137401.1
..
..
..
..
..
..
PAN
Panama
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
2762.8
..
..
..
..
2930.1
..
..
..
..
2780.4
..
..
..
..
3219
..
..
..
..
..
..
PER
Peru
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
14009.5
..
..
..
..
14940.9
..
..
..
..
16523.9
..
..
..
..
17187
..
..
..
..
..
..
PHL
Philippines
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
40342.3
..
..
..
..
43379.1
..
..
..
..
48501.1
..
..
..
..
51888.6
..
..
..
..
..
..
PLW
Palau
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PNG
Papua New Guinea
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
POL
Poland
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
110440.2
..
..
..
..
88183.5
..
..
..
..
69288.9
..
..
..
..
70022.6
..
..
..
..
..
..
PRI
Puerto Rico
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRK
Korea, Dem. Rep.
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
21407.5
..
..
..
..
17526.5
..
..
..
..
17130.4
..
..
..
..
18195.1
..
..
..
..
..
..
PRT
Portugal
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
9941.7
..
..
..
..
10730.3
..
..
..
..
11989.7
..
..
..
..
12173.2
..
..
..
..
..
..
PRY
Paraguay
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
15085.8
..
..
..
..
16075.4
..
..
..
..
14917.4
..
..
..
..
15387.6
..
..
..
..
..
..
PYF
French Polynesia
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
QAT
Qatar
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
3223.7
..
..
..
..
3901.1
..
..
..
..
9955
..
..
..
..
15706.4
..
..
..
..
..
..
ROM
Romania
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
37485.7
..
..
..
..
26490
..
..
..
..
23304.8
..
..
..
..
24330.8
..
..
..
..
..
..
RUS
Russian Federation
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
688867.9
..
..
..
..
512128.1
..
..
..
..
482121.8
..
..
..
..
562800.6
..
..
..
..
..
..
RWA
Rwanda
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SAS
South Asia
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
738089.2
..
..
..
..
763221.4
..
..
..
..
800225.7
..
..
..
..
846144.7
..
..
..
..
..
..
SAU
Saudi Arabia
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
28760.5
..
..
..
..
35834.9
..
..
..
..
40604.5
..
..
..
..
48152.1
..
..
..
..
..
..
SDN
Sudan
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
43369.6
..
..
..
..
50947.9
..
..
..
..
60178.1
..
..
..
..
67441.1
..
..
..
..
..
..
SEN
Senegal
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
5276.8
..
..
..
..
5708.1
..
..
..
..
6583.9
..
..
..
..
7128.9
..
..
..
..
..
..
SGP
Singapore
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
945.4
..
..
..
..
1509.9
..
..
..
..
1652.8
..
..
..
..
2237.2
..
..
..
..
..
..
SID
Small island developing states
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
30619
..
..
..
..
29788.7
..
..
..
..
37301.5
..
..
..
..
33275
..
..
..
..
..
..
SLB
Solomon Islands
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLE
Sierra Leone
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLV
El Salvador
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
2653.2
..
..
..
..
2675.1
..
..
..
..
2778.8
..
..
..
..
3131.3
..
..
..
..
..
..
SMR
San Marino
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SOM
Somalia
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SRB
Serbia
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
18858.5
..
..
..
..
9654.6
..
..
..
..
8637
..
..
..
..
7781.7
..
..
..
..
..
..
SSA
Sub-Saharan Africa
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
559474.6
..
..
..
..
570567.2
..
..
..
..
548180
..
..
..
..
589897
..
..
..
..
..
..
STP
Sao Tome and Principe
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SUR
Suriname
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SVK
Slovak Republic
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
6486.3
..
..
..
..
4463.9
..
..
..
..
4420
..
..
..
..
3911
..
..
..
..
..
..
SVN
Slovenia
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
3478.1
..
..
..
..
3131.2
..
..
..
..
3383.1
..
..
..
..
3498.1
..
..
..
..
..
..
SWE
Sweden
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
11171.1
..
..
..
..
11170.4
..
..
..
..
11071.2
..
..
..
..
11311
..
..
..
..
..
..
SWZ
Swaziland
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SXM
Sint Maarten (Dutch part)
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYR
Syrian Arab Republic
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
13960.7
..
..
..
..
14921.1
..
..
..
..
11082.7
..
..
..
..
12457.9
..
..
..
..
..
..
TCA
Turks and Caicos Islands
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TCD
Chad
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TGO
Togo
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
2751.8
..
..
..
..
2561.5
..
..
..
..
2682.2
..
..
..
..
2889.1
..
..
..
..
..
..
THA
Thailand
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
78755.5
..
..
..
..
80570.2
..
..
..
..
79199.1
..
..
..
..
83256.8
..
..
..
..
..
..
TJK
Tajikistan
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
4298.8
..
..
..
..
3595.7
..
..
..
..
3303.8
..
..
..
..
3898.3
..
..
..
..
..
..
TKM
Turkmenistan
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
29455.8
..
..
..
..
16166.8
..
..
..
..
20053.5
..
..
..
..
27983.9
..
..
..
..
..
..
TMP
Timor-Leste
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TON
Tonga
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TTO
Trinidad and Tobago
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
7627.2
..
..
..
..
6792.5
..
..
..
..
13941.8
..
..
..
..
10070.4
..
..
..
..
..
..
TUN
Tunisia
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
3957.9
..
..
..
..
5210.6
..
..
..
..
6948.2
..
..
..
..
8159.6
..
..
..
..
..
..
TUR
Turkey
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
43880
..
..
..
..
48779.3
..
..
..
..
56580.9
..
..
..
..
64250.9
..
..
..
..
..
..
TUV
Tuvalu
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TZA
Tanzania
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
25816.7
..
..
..
..
26362.6
..
..
..
..
27507.9
..
..
..
..
32023.6
..
..
..
..
..
..
UGA
Uganda
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
UKR
Ukraine
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
121829.1
..
..
..
..
102323.5
..
..
..
..
83847.1
..
..
..
..
70359.6
..
..
..
..
..
..
UMC
Upper middle income
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
3011902
..
..
..
..
2924077.6
..
..
..
..
2893602.6
..
..
..
..
3455454.1
..
..
..
..
..
..
URY
Uruguay
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
15784.7
..
..
..
..
18552.4
..
..
..
..
18251
..
..
..
..
19589.3
..
..
..
..
..
..
USA
United States
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
640428.4
..
..
..
..
630123.7
..
..
..
..
567074.5
..
..
..
..
548073.7
..
..
..
..
..
..
UZB
Uzbekistan
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
31944.1
..
..
..
..
33524.3
..
..
..
..
35703.3
..
..
..
..
39602.2
..
..
..
..
..
..
VCT
St. Vincent and the Grenadines
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VEN
Venezuela, RB
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
57752.4
..
..
..
..
70453.7
..
..
..
..
60367.5
..
..
..
..
61182.7
..
..
..
..
..
..
VIR
Virgin Islands (U.S.)
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VNM
Vietnam
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
59242.4
..
..
..
..
65683.4
..
..
..
..
72237.6
..
..
..
..
82977.8
..
..
..
..
..
..
VUT
Vanuatu
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
WBG
West Bank and Gaza
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
WLD
World
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
6716508.7
..
..
..
..
6580423.2
..
..
..
..
6468058.3
..
..
..
..
7135849.6
..
..
..
..
..
..
WSM
Samoa
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
YEM
Yemen, Rep.
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
3848.1
..
..
..
..
4461.4
..
..
..
..
5373.2
..
..
..
..
6676.7
..
..
..
..
..
..
ZAF
South Africa
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
51178.6
..
..
..
..
52558.8
..
..
..
..
57062.8
..
..
..
..
63784.5
..
..
..
..
..
..
ZAR
Congo, Dem. Rep.
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
96592.6
..
..
..
..
79913.6
..
..
..
..
62481.7
..
..
..
..
56445.4
..
..
..
..
..
..
ZMB
Zambia
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
26943.9
..
..
..
..
22146.6
..
..
..
..
16439.8
..
..
..
..
19293.9
..
..
..
..
..
..
ZWE
Zimbabwe
EN.ATM.METH.KT.CE
Methane (CH4) emissions, total (KtCO2e)
0
1
10111.6
..
..
..
..
8086.4
..
..
..
..
9573.4
..
..
..
..
9538.9
..
..
..
..
..
..
ABW
Aruba
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ADO
Andorra
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AFG
Afghanistan
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AGO
Angola
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
41666.7
..
..
..
..
36059.5
..
..
..
..
36804.2
..
..
..
..
38880.5
..
..
..
..
..
..
ALB
Albania
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
1274
..
..
..
..
973.9
..
..
..
..
1234.4
..
..
..
..
1035.8
..
..
..
..
..
..
ARE
United Arab Emirates
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
654.2
..
..
..
..
901
..
..
..
..
1010.8
..
..
..
..
1169.3
..
..
..
..
..
..
ARG
Argentina
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
38443.4
..
..
..
..
38339.2
..
..
..
..
41822.9
..
..
..
..
49821
..
..
..
..
..
..
ARM
Armenia
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
800.9
..
..
..
..
465.5
..
..
..
..
456.6
..
..
..
..
580.2
..
..
..
..
..
..
ASM
American Samoa
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ATG
Antigua and Barbuda
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AUS
Australia
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
63028.4
..
..
..
..
57651.2
..
..
..
..
75356.4
..
..
..
..
62965.6
..
..
..
..
..
..
AUT
Austria
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
5144.3
..
..
..
..
4799.6
..
..
..
..
4600.3
..
..
..
..
4448.2
..
..
..
..
..
..
AZE
Azerbaijan
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
2623.2
..
..
..
..
1832
..
..
..
..
2083.9
..
..
..
..
2633.1
..
..
..
..
..
..
BDI
Burundi
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BEL
Belgium
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
9074.9
..
..
..
..
6285.2
..
..
..
..
6148.1
..
..
..
..
6570.8
..
..
..
..
..
..
BEN
Benin
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
3695.4
..
..
..
..
3569
..
..
..
..
3332.7
..
..
..
..
2902.1
..
..
..
..
..
..
BFA
Burkina Faso
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BGD
Bangladesh
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
15045.4
..
..
..
..
18233.4
..
..
..
..
19485.5
..
..
..
..
21385.5
..
..
..
..
..
..
BGR
Bulgaria
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
9442.7
..
..
..
..
5080.1
..
..
..
..
4561.2
..
..
..
..
4227.2
..
..
..
..
..
..
BHR
Bahrain
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
47.6
..
..
..
..
53.1
..
..
..
..
62.9
..
..
..
..
81.9
..
..
..
..
..
..
BHS
Bahamas, The
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BIH
Bosnia and Herzegovina
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
2021.1
..
..
..
..
789.7
..
..
..
..
1707.5
..
..
..
..
1196.2
..
..
..
..
..
..
BLR
Belarus
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
16280
..
..
..
..
10910.8
..
..
..
..
10665.9
..
..
..
..
11680.2
..
..
..
..
..
..
BLZ
Belize
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BMU
Bermuda
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BOL
Bolivia
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
14623.9
..
..
..
..
12939.4
..
..
..
..
11274.7
..
..
..
..
15091.8
..
..
..
..
..
..
BRA
Brazil
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
154607
..
..
..
..
169925.1
..
..
..
..
166811.2
..
..
..
..
235987.3
..
..
..
..
..
..
BRB
Barbados
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BRN
Brunei Darussalam
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
522.8
..
..
..
..
569.9
..
..
..
..
395.5
..
..
..
..
608.8
..
..
..
..
..
..
BTN
Bhutan
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BWA
Botswana
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
5511.3
..
..
..
..
4635.6
..
..
..
..
2519.7
..
..
..
..
3080.9
..
..
..
..
..
..
CAF
Central African Republic
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CAN
Canada
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
42491.8
..
..
..
..
65337.2
..
..
..
..
40737.5
..
..
..
..
40170.7
..
..
..
..
..
..
CHE
Switzerland
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
2857.3
..
..
..
..
2694.9
..
..
..
..
2468.6
..
..
..
..
2414.6
..
..
..
..
..
..
CHI
Channel Islands
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHL
Chile
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
5164.4
..
..
..
..
6314.1
..
..
..
..
7300.2
..
..
..
..
8135.2
..
..
..
..
..
..
CHN
China
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
314524.3
..
..
..
..
380630.2
..
..
..
..
392194.5
..
..
..
..
467213.4
..
..
..
..
..
..
CIV
Cote d'Ivoire
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
7485.1
..
..
..
..
7455.6
..
..
..
..
8301.1
..
..
..
..
7363.9
..
..
..
..
..
..
CMR
Cameroon
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
10530
..
..
..
..
9972
..
..
..
..
10847.5
..
..
..
..
9127.3
..
..
..
..
..
..
COG
Congo, Rep.
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
4307
..
..
..
..
3798.2
..
..
..
..
3349.3
..
..
..
..
3565.9
..
..
..
..
..
..
COK
Cook Islands
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
COL
Colombia
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
20229
..
..
..
..
20458.3
..
..
..
..
20912
..
..
..
..
21287.6
..
..
..
..
..
..
COM
Comoros
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CPV
Cape Verde
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CRI
Costa Rica
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
1806.5
..
..
..
..
1791.6
..
..
..
..
1607.2
..
..
..
..
1333.9
..
..
..
..
..
..
CUB
Cuba
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
9315.3
..
..
..
..
7350.6
..
..
..
..
7164.6
..
..
..
..
6355.7
..
..
..
..
..
..
CUW
Curacao
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYP
Cyprus
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
244.8
..
..
..
..
275.7
..
..
..
..
262
..
..
..
..
292.3
..
..
..
..
..
..
CZE
Czech Republic
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
9885.7
..
..
..
..
7997.3
..
..
..
..
8907.6
..
..
..
..
8877.5
..
..
..
..
..
..
DEU
Germany
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
74326.8
..
..
..
..
73964.7
..
..
..
..
50186.2
..
..
..
..
56560
..
..
..
..
..
..
DJI
Djibouti
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DMA
Dominica
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DNK
Denmark
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
8016.7
..
..
..
..
7389.1
..
..
..
..
6989.7
..
..
..
..
6289.5
..
..
..
..
..
..
DOM
Dominican Republic
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
2032.2
..
..
..
..
2275.5
..
..
..
..
2081.4
..
..
..
..
2255.3
..
..
..
..
..
..
DZA
Algeria
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
3842.8
..
..
..
..
3561.9
..
..
..
..
4482.8
..
..
..
..
4897.7
..
..
..
..
..
..
EAP
East Asia & Pacific
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
512640
..
..
..
..
591175.5
..
..
..
..
589466.1
..
..
..
..
707495.9
..
..
..
..
..
..
ECA
Europe & Central Asia
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
351155.8
..
..
..
..
220766.8
..
..
..
..
223075.7
..
..
..
..
214402.4
..
..
..
..
..
..
ECU
Ecuador
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
3213.6
..
..
..
..
4079.5
..
..
..
..
4089.8
..
..
..
..
4571.4
..
..
..
..
..
..
EGY
Egypt, Arab Rep.
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
11818.3
..
..
..
..
12708.7
..
..
..
..
14853
..
..
..
..
18995.8
..
..
..
..
..
..
EMU
Euro area
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
267569.8
..
..
..
..
255979.7
..
..
..
..
218073.9
..
..
..
..
219189.2
..
..
..
..
..
..
ERI
Eritrea
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
1028.1
..
..
..
..
923
..
..
..
..
1360.6
..
..
..
..
1188.6
..
..
..
..
..
..
ESP
Spain
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
24903.8
..
..
..
..
24527.6
..
..
..
..
27475.4
..
..
..
..
26529.4
..
..
..
..
..
..
EST
Estonia
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
1889.7
..
..
..
..
942.9
..
..
..
..
835.2
..
..
..
..
931.5
..
..
..
..
..
..
ETH
Ethiopia
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
25544.5
..
..
..
..
24478.4
..
..
..
..
26891
..
..
..
..
30510
..
..
..
..
..
..
FIN
Finland
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
7429.4
..
..
..
..
6630.7
..
..
..
..
6956.6
..
..
..
..
7124.4
..
..
..
..
..
..
FJI
Fiji
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FRA
France
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
70649.4
..
..
..
..
67011.1
..
..
..
..
50606.9
..
..
..
..
49057.6
..
..
..
..
..
..
FRO
Faeroe Islands
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FSM
Micronesia, Fed. Sts.
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GAB
Gabon
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
305.4
..
..
..
..
314.1
..
..
..
..
252.9
..
..
..
..
482.2
..
..
..
..
..
..
GBR
United Kingdom
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
55295.5
..
..
..
..
50563
..
..
..
..
33194.2
..
..
..
..
30564.7
..
..
..
..
..
..
GEO
Georgia
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
2760.4
..
..
..
..
1712
..
..
..
..
1988.5
..
..
..
..
2018.8
..
..
..
..
..
..
GHA
Ghana
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
5186.5
..
..
..
..
4996.1
..
..
..
..
5355.8
..
..
..
..
4898.7
..
..
..
..
..
..
GIB
Gibraltar
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
4.6
..
..
..
..
7.3
..
..
..
..
8.4
..
..
..
..
9.4
..
..
..
..
..
..
GIN
Guinea
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GMB
Gambia, The
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GNB
Guinea-Bissau
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GNQ
Equatorial Guinea
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRC
Greece
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
7211.9
..
..
..
..
6475.1
..
..
..
..
6472.2
..
..
..
..
5977.4
..
..
..
..
..
..
GRD
Grenada
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRL
Greenland
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GTM
Guatemala
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
2430.9
..
..
..
..
2919.8
..
..
..
..
14371.4
..
..
..
..
5376.1
..
..
..
..
..
..
GUM
Guam
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GUY
Guyana
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HIC
High income
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
885771.6
..
..
..
..
909118.5
..
..
..
..
843667.2
..
..
..
..
813030.7
..
..
..
..
..
..
HKG
Hong Kong SAR, China
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
425.9
..
..
..
..
492.1
..
..
..
..
491.5
..
..
..
..
421.7
..
..
..
..
..
..
HND
Honduras
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
2272.6
..
..
..
..
2752.5
..
..
..
..
2926.9
..
..
..
..
2865.1
..
..
..
..
..
..
HRV
Croatia
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
3773.8
..
..
..
..
2750.7
..
..
..
..
2907.3
..
..
..
..
2850.6
..
..
..
..
..
..
HTI
Haiti
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
901.1
..
..
..
..
1032.3
..
..
..
..
1392.9
..
..
..
..
1438.1
..
..
..
..
..
..
HUN
Hungary
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
10119
..
..
..
..
6050.8
..
..
..
..
6854.8
..
..
..
..
6961.1
..
..
..
..
..
..
IDN
Indonesia
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
85895.2
..
..
..
..
89567.9
..
..
..
..
90387
..
..
..
..
123275.1
..
..
..
..
..
..
IMY
Isle of Man
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IND
India
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
159723.8
..
..
..
..
187399.5
..
..
..
..
201964.1
..
..
..
..
212927.3
..
..
..
..
..
..
IRL
Ireland
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
8161.1
..
..
..
..
8399.7
..
..
..
..
8269.9
..
..
..
..
7485.9
..
..
..
..
..
..
IRN
Iran, Islamic Rep.
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
18881
..
..
..
..
21424.1
..
..
..
..
24082.9
..
..
..
..
26643.5
..
..
..
..
..
..
IRQ
Iraq
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
3817.2
..
..
..
..
4098
..
..
..
..
4350.8
..
..
..
..
3439.8
..
..
..
..
..
..
ISL
Iceland
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
408
..
..
..
..
386.2
..
..
..
..
400.6
..
..
..
..
417.5
..
..
..
..
..
..
ISR
Israel
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
1266.6
..
..
..
..
1612.1
..
..
..
..
1741.6
..
..
..
..
1793.3
..
..
..
..
..
..
ITA
Italy
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
30256
..
..
..
..
29689
..
..
..
..
30344
..
..
..
..
28619.8
..
..
..
..
..
..
JAM
Jamaica
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
462.9
..
..
..
..
570.9
..
..
..
..
596.7
..
..
..
..
599.4
..
..
..
..
..
..
JOR
Jordan
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
477.5
..
..
..
..
629.1
..
..
..
..
628.8
..
..
..
..
666.6
..
..
..
..
..
..
JPN
Japan
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
35895
..
..
..
..
37302.9
..
..
..
..
31551.9
..
..
..
..
29785.1
..
..
..
..
..
..
KAZ
Kazakhstan
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
32732.4
..
..
..
..
20257.1
..
..
..
..
15783.3
..
..
..
..
17594.2
..
..
..
..
..
..
KEN
Kenya
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
9222.2
..
..
..
..
9313.7
..
..
..
..
9176.5
..
..
..
..
10541.5
..
..
..
..
..
..
KGZ
Kyrgyz Republic
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
3568.5
..
..
..
..
1528.6
..
..
..
..
1554.4
..
..
..
..
1509.7
..
..
..
..
..
..
KHM
Cambodia
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
3944.9
..
..
..
..
4331.1
..
..
..
..
3294.6
..
..
..
..
5794
..
..
..
..
..
..
KIR
Kiribati
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KNA
St. Kitts and Nevis
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KOR
Korea, Rep.
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
10058.1
..
..
..
..
15263.7
..
..
..
..
18717.7
..
..
..
..
13547.5
..
..
..
..
..
..
KSV
Kosovo
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KWT
Kuwait
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
252.7
..
..
..
..
362.8
..
..
..
..
473.1
..
..
..
..
649.6
..
..
..
..
..
..
LAC
Latin America & Caribbean
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
332629
..
..
..
..
347443.5
..
..
..
..
365109.8
..
..
..
..
442131.5
..
..
..
..
..
..
LAO
Lao PDR
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LBN
Lebanon
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
375.1
..
..
..
..
591.4
..
..
..
..
613.7
..
..
..
..
671.7
..
..
..
..
..
..
LBR
Liberia
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LBY
Libya
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
1176.3
..
..
..
..
1225.2
..
..
..
..
1238
..
..
..
..
1285.1
..
..
..
..
..
..
LCA
St. Lucia
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LIC
Low income
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
246200
..
..
..
..
228597.7
..
..
..
..
199839.4
..
..
..
..
209159.2
..
..
..
..
..
..
LIE
Liechtenstein
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LKA
Sri Lanka
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
1742.8
..
..
..
..
1938.2
..
..
..
..
2034.1
..
..
..
..
2055.7
..
..
..
..
..
..
LMC
Lower middle income
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
585594
..
..
..
..
586492.7
..
..
..
..
624585.8
..
..
..
..
686537.3
..
..
..
..
..
..
LMY
Low & middle income
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
1810441.6
..
..
..
..
1783601.8
..
..
..
..
1813971
..
..
..
..
2039506.2
..
..
..
..
..
..
LSO
Lesotho
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LTU
Lithuania
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
4515.6
..
..
..
..
2224
..
..
..
..
2333.6
..
..
..
..
2451.2
..
..
..
..
..
..
LUX
Luxembourg
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
409.7
..
..
..
..
479.2
..
..
..
..
421.9
..
..
..
..
456.3
..
..
..
..
..
..
LVA
Latvia
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
3034.9
..
..
..
..
1304.5
..
..
..
..
1140.7
..
..
..
..
1252.8
..
..
..
..
..
..
MAC
Macao SAR, China
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAF
St. Martin (French part)
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
5179.5
..
..
..
..
4368.8
..
..
..
..
5364.2
..
..
..
..
5813.7
..
..
..
..
..
..
MCO
Monaco
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MDA
Moldova
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
1734.2
..
..
..
..
1453.9
..
..
..
..
772.4
..
..
..
..
849.1
..
..
..
..
..
..
MDG
Madagascar
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MDV
Maldives
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MEX
Mexico
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
39051.4
..
..
..
..
38071.7
..
..
..
..
42080.1
..
..
..
..
42514
..
..
..
..
..
..
MHL
Marshall Islands
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MIC
Middle income
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
1564241.6
..
..
..
..
1555004.1
..
..
..
..
1614131.6
..
..
..
..
1830347
..
..
..
..
..
..
MKD
Macedonia, FYR
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
906.3
..
..
..
..
784.4
..
..
..
..
664
..
..
..
..
599.3
..
..
..
..
..
..
MLI
Mali
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MLT
Malta
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
74.9
..
..
..
..
78.7
..
..
..
..
68.3
..
..
..
..
72.2
..
..
..
..
..
..
MMR
Myanmar
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
40659
..
..
..
..
44219.2
..
..
..
..
30075.2
..
..
..
..
30932
..
..
..
..
..
..
MNA
Middle East & North Africa
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
53768.2
..
..
..
..
57405.7
..
..
..
..
65500.1
..
..
..
..
73538.6
..
..
..
..
..
..
MNE
Montenegro
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNG
Mongolia
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
4984.9
..
..
..
..
5263.9
..
..
..
..
5014
..
..
..
..
3488.5
..
..
..
..
..
..
MNP
Northern Mariana Islands
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MOZ
Mozambique
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
10880.6
..
..
..
..
9032.3
..
..
..
..
9755.1
..
..
..
..
9500.6
..
..
..
..
..
..
MRT
Mauritania
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MUS
Mauritius
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MWI
Malawi
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MYS
Malaysia
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
13291
..
..
..
..
14396.9
..
..
..
..
13019.4
..
..
..
..
15087.3
..
..
..
..
..
..
MYT
Mayotte
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NAM
Namibia
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
2580.4
..
..
..
..
2358.2
..
..
..
..
3498.5
..
..
..
..
3797
..
..
..
..
..
..
NCL
New Caledonia
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NER
Niger
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NGA
Nigeria
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
19152.8
..
..
..
..
20106.3
..
..
..
..
20919.7
..
..
..
..
21564.7
..
..
..
..
..
..
NIC
Nicaragua
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
3033.3
..
..
..
..
2931.8
..
..
..
..
3154.2
..
..
..
..
3339.7
..
..
..
..
..
..
NIU
Niue
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NLD
Netherlands
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
16351.1
..
..
..
..
16821.7
..
..
..
..
15321
..
..
..
..
14596
..
..
..
..
..
..
NOR
Norway
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
4890.1
..
..
..
..
4663
..
..
..
..
4564.8
..
..
..
..
4737.1
..
..
..
..
..
..
NPL
Nepal
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
3583.3
..
..
..
..
3948.9
..
..
..
..
4227.4
..
..
..
..
4515.7
..
..
..
..
..
..
NRU
Nauru
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NZL
New Zealand
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
10467.2
..
..
..
..
11181.2
..
..
..
..
11459.6
..
..
..
..
12929.9
..
..
..
..
..
..
OMN
Oman
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
307.2
..
..
..
..
415
..
..
..
..
480.7
..
..
..
..
561
..
..
..
..
..
..
PAK
Pakistan
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
18384.8
..
..
..
..
21241.3
..
..
..
..
24639.6
..
..
..
..
26837.7
..
..
..
..
..
..
PAN
Panama
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
1019.6
..
..
..
..
1080
..
..
..
..
1042
..
..
..
..
1204.1
..
..
..
..
..
..
PER
Peru
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
5583.2
..
..
..
..
6372.1
..
..
..
..
7746.8
..
..
..
..
7560
..
..
..
..
..
..
PHL
Philippines
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
9661.1
..
..
..
..
10614
..
..
..
..
12471.6
..
..
..
..
12950.4
..
..
..
..
..
..
PLW
Palau
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PNG
Papua New Guinea
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
POL
Poland
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
28844
..
..
..
..
28907.1
..
..
..
..
29094.9
..
..
..
..
30198.4
..
..
..
..
..
..
PRI
Puerto Rico
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRK
Korea, Dem. Rep.
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
8693.5
..
..
..
..
4231.4
..
..
..
..
3361.2
..
..
..
..
3421.7
..
..
..
..
..
..
PRT
Portugal
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
4794.7
..
..
..
..
5056.4
..
..
..
..
5874.4
..
..
..
..
5958
..
..
..
..
..
..
PRY
Paraguay
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
9012.1
..
..
..
..
8842
..
..
..
..
7833.7
..
..
..
..
9067.4
..
..
..
..
..
..
PYF
French Polynesia
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
QAT
Qatar
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
97.5
..
..
..
..
136.3
..
..
..
..
159.1
..
..
..
..
200
..
..
..
..
..
..
ROM
Romania
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
20586.4
..
..
..
..
12724.5
..
..
..
..
11450.5
..
..
..
..
11537.1
..
..
..
..
..
..
RUS
Russian Federation
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
148437.3
..
..
..
..
83287
..
..
..
..
91644.7
..
..
..
..
76121.4
..
..
..
..
..
..
RWA
Rwanda
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SAS
South Asia
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
198480.1
..
..
..
..
232761.3
..
..
..
..
252350.7
..
..
..
..
267721.9
..
..
..
..
..
..
SAU
Saudi Arabia
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
5531.7
..
..
..
..
5414.4
..
..
..
..
6060
..
..
..
..
6501.4
..
..
..
..
..
..
SDN
Sudan
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
36668.5
..
..
..
..
38853.5
..
..
..
..
44406.3
..
..
..
..
49471.5
..
..
..
..
..
..
SEN
Senegal
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
2975.9
..
..
..
..
3120.6
..
..
..
..
3833.4
..
..
..
..
4082.9
..
..
..
..
..
..
SGP
Singapore
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
406.3
..
..
..
..
1390.1
..
..
..
..
5995.2
..
..
..
..
1067.6
..
..
..
..
..
..
SID
Small island developing states
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
13364.5
..
..
..
..
12844.3
..
..
..
..
17504.1
..
..
..
..
12001.3
..
..
..
..
..
..
SLB
Solomon Islands
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLE
Sierra Leone
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLV
El Salvador
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
1278.7
..
..
..
..
1234
..
..
..
..
1323
..
..
..
..
1377.3
..
..
..
..
..
..
SMR
San Marino
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SOM
Somalia
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SRB
Serbia
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
5023.1
..
..
..
..
4106.9
..
..
..
..
4210.8
..
..
..
..
4581.1
..
..
..
..
..
..
SSA
Sub-Saharan Africa
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
361768.5
..
..
..
..
334049
..
..
..
..
318468.6
..
..
..
..
334215.9
..
..
..
..
..
..
STP
Sao Tome and Principe
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SUR
Suriname
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SVK
Slovak Republic
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
5331.4
..
..
..
..
3539.1
..
..
..
..
3068.5
..
..
..
..
3353.7
..
..
..
..
..
..
SVN
Slovenia
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
1315.9
..
..
..
..
1003.3
..
..
..
..
1163
..
..
..
..
1155.7
..
..
..
..
..
..
SWE
Sweden
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
6753.2
..
..
..
..
6637.4
..
..
..
..
6469.8
..
..
..
..
5865.4
..
..
..
..
..
..
SWZ
Swaziland
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SXM
Sint Maarten (Dutch part)
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYR
Syrian Arab Republic
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
4129.5
..
..
..
..
4566.7
..
..
..
..
4712.6
..
..
..
..
5508.8
..
..
..
..
..
..
TCA
Turks and Caicos Islands
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TCD
Chad
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TGO
Togo
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
2209.1
..
..
..
..
1897.8
..
..
..
..
1815.8
..
..
..
..
1738.2
..
..
..
..
..
..
THA
Thailand
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
19374.8
..
..
..
..
22506.3
..
..
..
..
19913.1
..
..
..
..
22303.9
..
..
..
..
..
..
TJK
Tajikistan
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
1374.8
..
..
..
..
1349.2
..
..
..
..
1088.8
..
..
..
..
1378.1
..
..
..
..
..
..
TKM
Turkmenistan
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
2206.8
..
..
..
..
2373.4
..
..
..
..
2872.8
..
..
..
..
4276
..
..
..
..
..
..
TMP
Timor-Leste
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TON
Tonga
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TTO
Trinidad and Tobago
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
204.7
..
..
..
..
180.5
..
..
..
..
226.8
..
..
..
..
230.1
..
..
..
..
..
..
TUN
Tunisia
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
2005.6
..
..
..
..
2068.4
..
..
..
..
2426.2
..
..
..
..
2365.7
..
..
..
..
..
..
TUR
Turkey
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
29048.5
..
..
..
..
32358
..
..
..
..
33308.1
..
..
..
..
32781
..
..
..
..
..
..
TUV
Tuvalu
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TZA
Tanzania
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
21467.5
..
..
..
..
20129.4
..
..
..
..
18720.5
..
..
..
..
21646.8
..
..
..
..
..
..
UGA
Uganda
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
UKR
Ukraine
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
53641.7
..
..
..
..
28291.2
..
..
..
..
24446.7
..
..
..
..
26096.5
..
..
..
..
..
..
UMC
Upper middle income
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
978647.6
..
..
..
..
968511.4
..
..
..
..
989545.8
..
..
..
..
1143809.7
..
..
..
..
..
..
URY
Uruguay
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
6044.7
..
..
..
..
6742.2
..
..
..
..
6324.9
..
..
..
..
7016.5
..
..
..
..
..
..
USA
United States
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
311677.5
..
..
..
..
332178
..
..
..
..
324015.7
..
..
..
..
317153.3
..
..
..
..
..
..
UZB
Uzbekistan
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
9143
..
..
..
..
6960.1
..
..
..
..
9106.9
..
..
..
..
10003.4
..
..
..
..
..
..
VCT
St. Vincent and the Grenadines
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VEN
Venezuela, RB
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
12103.2
..
..
..
..
11420.9
..
..
..
..
13253.2
..
..
..
..
14934.6
..
..
..
..
..
..
VIR
Virgin Islands (U.S.)
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VNM
Vietnam
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
11611.3
..
..
..
..
15414.6
..
..
..
..
19735.5
..
..
..
..
23029.6
..
..
..
..
..
..
VUT
Vanuatu
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
WBG
West Bank and Gaza
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
WLD
World
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
2696213.2
..
..
..
..
2692720.3
..
..
..
..
2657638.2
..
..
..
..
2852536.9
..
..
..
..
..
..
WSM
Samoa
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
YEM
Yemen, Rep.
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
2065.4
..
..
..
..
2163.4
..
..
..
..
2747.1
..
..
..
..
3250.2
..
..
..
..
..
..
ZAF
South Africa
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
21300.2
..
..
..
..
22745.4
..
..
..
..
21053.7
..
..
..
..
24048.1
..
..
..
..
..
..
ZAR
Congo, Dem. Rep.
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
87098
..
..
..
..
74827.1
..
..
..
..
58354.8
..
..
..
..
54642.8
..
..
..
..
..
..
ZMB
Zambia
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
35669.2
..
..
..
..
29910.3
..
..
..
..
21967.1
..
..
..
..
25067.9
..
..
..
..
..
..
ZWE
Zimbabwe
EN.ATM.NOXE.KT.CE
Nitrous oxide (N2O) emissions, total (KtCO2e)
0
1
7284.1
..
..
..
..
5552.9
..
..
..
..
5952.4
..
..
..
..
6113.8
..
..
..
..
..
..
ABW
Aruba
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ADO
Andorra
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
AFG
Afghanistan
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
AGO
Angola
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ALB
Albania
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ARE
United Arab Emirates
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ARG
Argentina
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ARM
Armenia
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ASM
American Samoa
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ATG
Antigua and Barbuda
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
AUS
Australia
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5% / 25%; BY: 2000
AUT
Austria
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20% / 30% (EU)
AZE
Azerbaijan
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BDI
Burundi
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BEL
Belgium
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20% / 30% (EU)
BEN
Benin
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BFA
Burkina Faso
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BGD
Bangladesh
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BGR
Bulgaria
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20% / 30% (EU)
BHR
Bahrain
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BHS
Bahamas, The
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BIH
Bosnia and Herzegovina
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BLR
Belarus
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5% to 10%
BLZ
Belize
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BMU
Bermuda
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BOL
Bolivia
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BRA
Brazil
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BRB
Barbados
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BRN
Brunei Darussalam
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BTN
Bhutan
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BWA
Botswana
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CAF
Central African Republic
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CAN
Canada
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
17%; BY: 2005
CHE
Switzerland
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20% / 30%
CHI
Channel Islands
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CHL
Chile
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CHN
China
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CIV
Cote d'Ivoire
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CMR
Cameroon
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
COG
Congo, Rep.
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
COK
Cook Islands
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
COL
Colombia
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
COM
Comoros
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CPV
Cape Verde
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CRI
Costa Rica
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CUB
Cuba
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CUW
Curacao
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CYM
Cayman Islands
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CYP
Cyprus
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20% / 30% (EU)
CZE
Czech Republic
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20% / 30% (EU)
DEU
Germany
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20% / 30% (EU)
DJI
Djibouti
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
DMA
Dominica
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
DNK
Denmark
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20% / 30% (EU)
DOM
Dominican Republic
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
DZA
Algeria
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
EAP
East Asia & Pacific
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ECA
Europe & Central Asia
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ECU
Ecuador
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
EGY
Egypt, Arab Rep.
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
EMU
Euro area
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ERI
Eritrea
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ESP
Spain
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20% / 30% (EU)
EST
Estonia
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20% / 30% (EU)
ETH
Ethiopia
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
FIN
Finland
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20% / 30% (EU)
FJI
Fiji
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
FRA
France
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20% / 30% (EU)
FRO
Faeroe Islands
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
FSM
Micronesia, Fed. Sts.
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GAB
Gabon
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GBR
United Kingdom
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20% / 30% (EU)
GEO
Georgia
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GHA
Ghana
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GIB
Gibraltar
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GIN
Guinea
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GMB
Gambia, The
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GNB
Guinea-Bissau
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GNQ
Equatorial Guinea
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GRC
Greece
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20% / 30% (EU)
GRD
Grenada
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GRL
Greenland
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GTM
Guatemala
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GUM
Guam
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GUY
Guyana
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
HIC
High income
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
HKG
Hong Kong SAR, China
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
HND
Honduras
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
HRV
Croatia
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5%
HTI
Haiti
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
HUN
Hungary
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20% / 30% (EU)
IDN
Indonesia
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
IMY
Isle of Man
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
IND
India
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
IRL
Ireland
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20% / 30% (EU)
IRN
Iran, Islamic Rep.
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
IRQ
Iraq
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ISL
Iceland
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
30%
ISR
Israel
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ITA
Italy
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20% / 30% (EU)
JAM
Jamaica
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
JOR
Jordan
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
JPN
Japan
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
25%
KAZ
Kazakhstan
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
15%; BY: 1992
KEN
Kenya
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
KGZ
Kyrgyz Republic
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
KHM
Cambodia
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
KIR
Kiribati
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
KNA
St. Kitts and Nevis
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
KOR
Korea, Rep.
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
KSV
Kosovo
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
KWT
Kuwait
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LAC
Latin America & Caribbean
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LAO
Lao PDR
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LBN
Lebanon
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LBR
Liberia
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LBY
Libya
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LCA
St. Lucia
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LIC
Low income
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LIE
Liechtenstein
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20% / 30%
LKA
Sri Lanka
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LMC
Lower middle income
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LMY
Low & middle income
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LSO
Lesotho
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LTU
Lithuania
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20% / 30% (EU)
LUX
Luxembourg
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20% / 30% (EU)
LVA
Latvia
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20% / 30% (EU)
MAC
Macao SAR, China
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MAF
St. Martin (French part)
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MAR
Morocco
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MCO
Monaco
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
30%
MDA
Moldova
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MDG
Madagascar
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MDV
Maldives
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MEX
Mexico
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MHL
Marshall Islands
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MIC
Middle income
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MKD
Macedonia, FYR
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MLI
Mali
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MLT
Malta
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20% / 30% (EU)
MMR
Myanmar
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MNA
Middle East & North Africa
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MNE
Montenegro
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MNG
Mongolia
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MNP
Northern Mariana Islands
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MOZ
Mozambique
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MRT
Mauritania
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MUS
Mauritius
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MWI
Malawi
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MYS
Malaysia
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MYT
Mayotte
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NAM
Namibia
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NCL
New Caledonia
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NER
Niger
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NGA
Nigeria
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NIC
Nicaragua
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NIU
Niue
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NLD
Netherlands
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20% / 30% (EU)
NOR
Norway
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
30% / 40%
NPL
Nepal
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NRU
Nauru
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NZL
New Zealand
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10% / 20%
OMN
Oman
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PAK
Pakistan
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PAN
Panama
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PER
Peru
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PHL
Philippines
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PLW
Palau
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PNG
Papua New Guinea
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
POL
Poland
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20% / 30% (EU)
PRI
Puerto Rico
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PRK
Korea, Dem. Rep.
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PRT
Portugal
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20% / 30% (EU)
PRY
Paraguay
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PYF
French Polynesia
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
QAT
Qatar
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ROM
Romania
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20% / 30% (EU)
RUS
Russian Federation
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
15% / 25%
RWA
Rwanda
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SAS
South Asia
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SAU
Saudi Arabia
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SDN
Sudan
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SEN
Senegal
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SGP
Singapore
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SID
Small island developing states
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SLB
Solomon Islands
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SLE
Sierra Leone
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SLV
El Salvador
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SMR
San Marino
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SOM
Somalia
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SRB
Serbia
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SSA
Sub-Saharan Africa
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
STP
Sao Tome and Principe
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SUR
Suriname
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SVK
Slovak Republic
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20% / 30% (EU)
SVN
Slovenia
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20% / 30% (EU)
SWE
Sweden
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20% / 30% (EU)
SWZ
Swaziland
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SXM
Sint Maarten (Dutch part)
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SYC
Seychelles
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SYR
Syrian Arab Republic
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TCA
Turks and Caicos Islands
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TCD
Chad
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TGO
Togo
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
THA
Thailand
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TJK
Tajikistan
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TKM
Turkmenistan
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TMP
Timor-Leste
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TON
Tonga
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TTO
Trinidad and Tobago
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TUN
Tunisia
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TUR
Turkey
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
TUV
Tuvalu
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TZA
Tanzania
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
UGA
Uganda
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
UKR
Ukraine
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20%
UMC
Upper middle income
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
URY
Uruguay
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
USA
United States
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
17%; BY: 2005
UZB
Uzbekistan
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
VCT
St. Vincent and the Grenadines
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
VEN
Venezuela, RB
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
VIR
Virgin Islands (U.S.)
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
VNM
Vietnam
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
VUT
Vanuatu
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
WBG
West Bank and Gaza
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
WLD
World
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
WSM
Samoa
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
YEM
Yemen, Rep.
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ZAF
South Africa
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ZAR
Congo, Dem. Rep.
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ZMB
Zambia
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ZWE
Zimbabwe
EN.CLC.AERT
Annex-I emissions reduction target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ABW
Aruba
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ADO
Andorra
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AFG
Afghanistan
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AGO
Angola
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ALB
Albania
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ARE
United Arab Emirates
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ARG
Argentina
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.25
ARM
Armenia
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3
ASM
American Samoa
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ATG
Antigua and Barbuda
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.75
AUS
Australia
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4
AUT
Austria
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AZE
Azerbaijan
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BDI
Burundi
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.25
BEL
Belgium
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BEN
Benin
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BFA
Burkina Faso
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BGD
Bangladesh
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4
BGR
Bulgaria
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.5
BHR
Bahrain
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BHS
Bahamas, The
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BIH
Bosnia and Herzegovina
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BLR
Belarus
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BLZ
Belize
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BMU
Bermuda
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BOL
Bolivia
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.25
BRA
Brazil
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4.5
BRB
Barbados
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4
BRN
Brunei Darussalam
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.75
BTN
Bhutan
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BWA
Botswana
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3
CAF
Central African Republic
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CAN
Canada
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4.25
CHE
Switzerland
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4.75
CHI
Channel Islands
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHL
Chile
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.75
CHN
China
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CIV
Cote d'Ivoire
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.5
CMR
Cameroon
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
COG
Congo, Rep.
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
COK
Cook Islands
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.5
COL
Colombia
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.75
COM
Comoros
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.75
CPV
Cape Verde
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.5
CRI
Costa Rica
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4.5
CUB
Cuba
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4.5
CUW
Curacao
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3
CYP
Cyprus
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CZE
Czech Republic
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.75
DEU
Germany
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4.25
DJI
Djibouti
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DMA
Dominica
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DNK
Denmark
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DOM
Dominican Republic
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3
DZA
Algeria
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.5
EAP
East Asia & Pacific
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ECA
Europe & Central Asia
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ECU
Ecuador
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4.75
EGY
Egypt, Arab Rep.
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
EMU
Euro area
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ERI
Eritrea
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ESP
Spain
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
EST
Estonia
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ETH
Ethiopia
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FIN
Finland
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.5
FJI
Fiji
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.75
FRA
France
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FRO
Faeroe Islands
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FSM
Micronesia, Fed. Sts.
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GAB
Gabon
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GBR
United Kingdom
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GEO
Georgia
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.75
GHA
Ghana
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.25
GIB
Gibraltar
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GIN
Guinea
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GMB
Gambia, The
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GNB
Guinea-Bissau
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1
GNQ
Equatorial Guinea
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRC
Greece
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRD
Grenada
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRL
Greenland
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GTM
Guatemala
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.25
GUM
Guam
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GUY
Guyana
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HIC
High income
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HKG
Hong Kong SAR, China
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HND
Honduras
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.75
HRV
Croatia
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HTI
Haiti
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HUN
Hungary
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IDN
Indonesia
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.25
IMY
Isle of Man
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IND
India
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.25
IRL
Ireland
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IRN
Iran, Islamic Rep.
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IRQ
Iraq
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ISL
Iceland
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ISR
Israel
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ITA
Italy
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.5
JAM
Jamaica
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.75
JOR
Jordan
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
JPN
Japan
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4.5
KAZ
Kazakhstan
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KEN
Kenya
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4
KGZ
Kyrgyz Republic
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KHM
Cambodia
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KIR
Kiribati
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KNA
St. Kitts and Nevis
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.5
KOR
Korea, Rep.
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KSV
Kosovo
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KWT
Kuwait
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LAC
Latin America & Caribbean
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LAO
Lao PDR
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.25
LBN
Lebanon
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3
LBR
Liberia
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LBY
Libya
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LCA
St. Lucia
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.25
LIC
Low income
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LIE
Liechtenstein
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LKA
Sri Lanka
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.5
LMC
Lower middle income
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LMY
Low & middle income
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LSO
Lesotho
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.5
LTU
Lithuania
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LUX
Luxembourg
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LVA
Latvia
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAC
Macao SAR, China
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAF
St. Martin (French part)
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3
MCO
Monaco
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MDA
Moldova
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MDG
Madagascar
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.75
MDV
Maldives
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.25
MEX
Mexico
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4.25
MHL
Marshall Islands
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.75
MIC
Middle income
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MKD
Macedonia, FYR
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.25
MLI
Mali
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MLT
Malta
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MMR
Myanmar
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNA
Middle East & North Africa
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNE
Montenegro
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNG
Mongolia
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.75
MNP
Northern Mariana Islands
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MOZ
Mozambique
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4
MRT
Mauritania
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MUS
Mauritius
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.5
MWI
Malawi
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.75
MYS
Malaysia
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.75
MYT
Mayotte
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NAM
Namibia
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NCL
New Caledonia
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NER
Niger
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NGA
Nigeria
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4
NIC
Nicaragua
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.75
NIU
Niue
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NLD
Netherlands
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NOR
Norway
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.75
NPL
Nepal
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.75
NRU
Nauru
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NZL
New Zealand
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.75
OMN
Oman
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PAK
Pakistan
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.5
PAN
Panama
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3
PER
Peru
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3
PHL
Philippines
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PLW
Palau
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PNG
Papua New Guinea
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
POL
Poland
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.25
PRI
Puerto Rico
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRK
Korea, Dem. Rep.
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRT
Portugal
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRY
Paraguay
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.75
PYF
French Polynesia
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
QAT
Qatar
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ROM
Romania
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.25
RUS
Russian Federation
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
RWA
Rwanda
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SAS
South Asia
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SAU
Saudi Arabia
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SDN
Sudan
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SEN
Senegal
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.75
SGP
Singapore
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SID
Small island developing states
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLB
Solomon Islands
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2
SLE
Sierra Leone
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3
SLV
El Salvador
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.25
SMR
San Marino
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SOM
Somalia
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SRB
Serbia
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SSA
Sub-Saharan Africa
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
STP
Sao Tome and Principe
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SUR
Suriname
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SVK
Slovak Republic
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SVN
Slovenia
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SWE
Sweden
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.75
SWZ
Swaziland
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SXM
Sint Maarten (Dutch part)
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYR
Syrian Arab Republic
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.5
TCA
Turks and Caicos Islands
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.25
TCD
Chad
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TGO
Togo
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
THA
Thailand
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.75
TJK
Tajikistan
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TKM
Turkmenistan
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TMP
Timor-Leste
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TON
Tonga
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TTO
Trinidad and Tobago
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TUN
Tunisia
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TUR
Turkey
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TUV
Tuvalu
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TZA
Tanzania
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.5
UGA
Uganda
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
UKR
Ukraine
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
UMC
Upper middle income
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
URY
Uruguay
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
USA
United States
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.5
UZB
Uzbekistan
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VCT
St. Vincent and the Grenadines
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VEN
Venezuela, RB
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.75
VIR
Virgin Islands (U.S.)
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VNM
Vietnam
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VUT
Vanuatu
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2
WBG
West Bank and Gaza
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
WLD
World
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
WSM
Samoa
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.5
YEM
Yemen, Rep.
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.25
ZAF
South Africa
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ZAR
Congo, Dem. Rep.
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ZMB
Zambia
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.75
ZWE
Zimbabwe
EN.CLC.DRSK.XQ
Disaster risk reduction progress score (1-5 scale; 5=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ABW
Aruba
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ADO
Andorra
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AFG
Afghanistan
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AGO
Angola
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ALB
Albania
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
1.5255
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ARE
United Arab Emirates
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
-9.665
..
..
..
..
..
..
..
..
..
..
..
ARG
Argentina
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
-43.2979
..
..
..
..
..
..
..
..
..
..
..
ARM
Armenia
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ASM
American Samoa
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ATG
Antigua and Barbuda
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-0.0968
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AUS
Australia
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
43.1481702792
166.442813272
124.568670528
-22.8922792307
-19.6826972624
104.745973381
-1.69569443461
-9.34151875013
127.285895004
10.473530157
-13.5049919096
-42.5267996559
332.982072038
167.053798513
-195.331801528
44.8364475361
48.2131900635
342.467534251
69.4877985866
53.9709139226
..
..
AUT
Austria
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-13.7352359848
-19.6115147846
-14.5251857495
-18.3637386376
-17.1395600946
-16.4459753167
-11.6074602183
-20.4070166945
-18.4124175777
-22.7722677197
-17.4711006945
-20.1112857808
-16.3567653222
-17.7873027008
-17.7430787177
-17.6788897706
-17.6678702107
-17.6133959839
-17.5865078116
-17.5244679474
..
..
AZE
Azerbaijan
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
-1.075
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BDI
Burundi
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
-15.346
..
..
..
..
..
..
BEL
Belgium
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-1.55662483863
-0.940399896857
-1.25405754847
-1.20223286871
-1.24490184058
-1.09917854698
-1.16628100399
-1.20499459424
-1.12215003358
-1.17271190437
-1.15943332221
-1.80351566375
-1.62791696813
-1.70336468529
-1.61155523328
-1.64972616918
-1.63713357604
-1.61180995107
-1.55599469147
-1.600254275
..
..
BEN
Benin
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
-47.5234
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BFA
Burkina Faso
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
-1.3887
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BGD
Bangladesh
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
7.838
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BGR
Bulgaria
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-13.8057539291
-13.6720378564
-13.3388694897
-12.6214415239
-12.4001779806
-12.8856435123
-11.8710570087
-11.9367377939
-11.931260016
-11.9438398926
-10.2763097748
-10.6051939803
-11.109274141
-11.1209530898
-11.4410071597
-11.3361455099
-11.4056001676
-10.2547135368
-11.5658077086
-11.7818769092
..
..
BHR
Bahrain
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BHS
Bahamas, The
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BIH
Bosnia and Herzegovina
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-7.4235
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BLR
Belarus
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-28.5744362924
-30.5872463392
-28.7828927402
-22.4877233674
-31.7340802563
-31.2217950474
-29.2883507737
-26.4278747709
-24.4643309552
-31.3684498009
-30.902778334
-28.9512155429
-25.6321170988
-22.2766069399
-22.8885910969
-26.2099792134
-28.4205776787
-27.55948078
-27.1384557933
-30.0435378
..
..
BLZ
Belize
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
-4.0247
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BMU
Bermuda
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BOL
Bolivia
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
48.0473
..
..
..
..
..
..
..
BRA
Brazil
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1329.05
..
..
..
..
..
..
BRB
Barbados
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
-0.011
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BRN
Brunei Darussalam
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BTN
Bhutan
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
-3.5495
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BWA
Botswana
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
-38.7336
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CAF
Central African Republic
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
-139.315
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CAN
Canada
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-67.4849780247
-41.230634983
-89.6410634073
-20.3262005847
-23.6873972037
185.971676371
-29.714114204
-71.7140285937
116.24135702
7.763377981
-62.106768707
-57.7124067533
87.3771556793
42.9897341117
96.81801785
53.532782033
64.6209327633
51.4291536727
-16.9484282117
-12.1001595707
..
..
CHE
Switzerland
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-2.72500292429
-2.58938862523
-2.00857549539
-3.70319708704
-4.53868071432
-3.46072719999
-3.29564036501
-1.98988563404
-1.88762145725
-0.70440226315
1.44188387265
1.89435754352
1.63384327741
-1.16759956664
-0.454208509436
-0.373288965086
0.95218502739
0.568848872103
0.574134454286
0.0885596709664
..
..
CHI
Channel Islands
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHL
Chile
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
-9.1953
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHN
China
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
-407.479
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CIV
Cote d'Ivoire
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
-18.3767
..
..
..
..
..
..
..
..
..
..
..
CMR
Cameroon
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
22.1864
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
COG
Congo, Rep.
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
-82.0665
..
..
..
..
..
..
..
..
..
..
..
COK
Cook Islands
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
-0.1544
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
COL
Colombia
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
26.0145
..
..
..
..
..
..
..
COM
Comoros
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
-0.8951
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CPV
Cape Verde
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
-0.0703
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CRI
Costa Rica
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
-3.5073
..
..
..
..
..
..
CUB
Cuba
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
-21.6543
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CUW
Curacao
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYP
Cyprus
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CZE
Czech Republic
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-3.62975666462
-9.04259815444
-10.7940412626
-9.43898197571
-7.14318505952
-7.21116664604
-7.62076051216
-6.66086046011
-6.99840606096
-7.15547353077
-7.5447726092
-7.89014967476
-7.64539000551
-5.7455291183
-6.18969469498
-6.6866352407
-3.47207032829
-0.729981896422
-4.77828353355
-6.86314683419
..
..
DEU
Germany
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-31.1748426963
-31.3769339316
-31.6077668405
-31.8564347096
-31.8716590095
-31.8491501541
-32.0520255364
-32.1842620954
-32.2135218043
-32.3664721286
-32.3839938655
-32.9233761801
16.6194716123
16.2690121824
16.0559126355
15.7606612894
14.0744097602
15.1880782492
15.2164359944
17.5633395512
..
..
DJI
Djibouti
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
-0.6039
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DMA
Dominica
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
-0.3719
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DNK
Denmark
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
3.15452023358
1.94670660593
3.71624551101
0.467561093257
2.34445205778
1.67591371862
0.511165196038
1.71268347414
0.684832309627
2.79376073629
2.91436294013
2.78219584724
3.64613080871
2.90165079094
2.29988841294
3.58931785004
2.91378484438
-0.0874920180644
-2.11521175654
-1.11891159403
..
..
DOM
Dominican Republic
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
-18.7941
..
..
..
..
..
..
..
..
..
..
..
DZA
Algeria
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
-7.8798
..
..
..
..
..
..
..
..
..
..
..
EAP
East Asia & Pacific
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ECA
Europe & Central Asia
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ECU
Ecuador
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
46.9474
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
EGY
Egypt, Arab Rep.
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-9.9
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
EMU
Euro area
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ERI
Eritrea
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
1.6763
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ESP
Spain
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-19.0581447488
-18.8767080369
-17.7012676646
-16.9243749741
-19.0227551488
-19.2313890979
-19.8705744736
-21.470956673
-22.3321337808
-22.7202035602
-23.2808819041
-23.2033663351
-23.3822039674
-22.5533135016
-24.2587573995
-24.5955603182
-27.6548165931
-29.660013554
-29.1183666055
-28.6279561582
..
..
EST
Estonia
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-10.4163074438
-8.48158689231
-9.17879556101
-9.29955354423
-9.38283443133
-9.46144671829
-9.14920710665
-9.47141111668
-8.81301391764
-4.52239437637
4.0064730596
4.24232474549
2.64332485147
1.05691517909
-5.71394337691
-8.66524221594
-1.57858599553
-13.7115871408
-0.326317026973
-7.03459256035
..
..
ETH
Ethiopia
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
-9.876
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FIN
Finland
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-15.0381818462
-29.0650308624
-23.1031254195
-20.8617676247
-13.442149326
-13.2917154517
-22.6839902483
-18.8141355901
-16.9098635835
-19.7470965558
-20.9368915165
-24.3462307745
-24.6360608549
-24.9919347226
-24.9401286059
-27.6634557037
-31.2243135653
-23.3395376609
-27.0104851772
-40.5584185028
..
..
FJI
Fiji
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
-7.7016
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FRA
France
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-39.6986302782
-35.6173393832
-40.222763501
-47.4660457179
-48.8540506884
-47.8223446136
-49.4637134274
-54.1469454748
-55.0776981924
-58.130150258
-49.0511731882
-54.6707852641
-60.2645011099
-62.4429411486
-63.8771679013
-64.8813345343
-69.3892716245
-68.5188924215
-68.9030912352
-63.920452054
..
..
FRO
Faeroe Islands
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FSM
Micronesia, Fed. Sts.
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GAB
Gabon
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
-500.8757
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GBR
United Kingdom
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
3.921699275
3.89180309432
3.31005796042
2.25975111735
2.07769739182
2.45311693496
2.21738339104
1.92599213512
1.3534069546
1.10227061543
0.422457399395
-0.0901564667984
-0.98227515591
-1.3448783109
-2.42809365918
-2.95822914324
-3.15812658782
-3.5244162325
-3.96217138308
-4.07913785249
..
..
GEO
Georgia
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
1.0382
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GHA
Ghana
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
-19.0227
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GIB
Gibraltar
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GIN
Guinea
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
-17.5966
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GMB
Gambia, The
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
-49.9831
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GNB
Guinea-Bissau
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GNQ
Equatorial Guinea
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRC
Greece
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-2.49610676934
-2.58862168289
-2.85588844096
-3.2156566982
-2.83898096912
-3.19871034388
-2.78528090692
-2.83271085872
-3.10943860953
-3.32684751406
-2.83647799604
-3.10303842239
-3.21920126876
-2.90401142339
-3.07116932613
-3.05140276577
-3.13871014652
-2.93365852337
-3.07926945583
-3.01856281002
..
..
GRD
Grenada
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
-0.092
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRL
Greenland
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GTM
Guatemala
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-39.5458
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GUM
Guam
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GUY
Guyana
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
-30.866
..
..
..
..
..
..
..
..
..
..
..
..
..
HIC
High income
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HKG
Hong Kong SAR, China
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HND
Honduras
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
4.6293
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HRV
Croatia
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-6.93357778267
-6.83374115576
-6.83151123881
-6.83458103081
-6.8719034705
-6.8627669353
-6.47180568622
-6.68434373345
-6.86018455659
-7.02877546038
-7.21789478448
-7.38812246979
-7.55679098903
-7.74991547747
-7.93452955624
-8.10000907299
-8.21543550216
-8.50575069749
-8.64311052493
-8.71205832992
..
..
HTI
Haiti
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
0.9551
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HUN
Hungary
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-1.94967903935
-2.25199852671
-3.32016090541
-5.28070097551
-5.74894781238
-5.781384223
-1.86458260773
-2.03357088971
-3.0638647319
-1.43255656617
-0.363773303163
-1.7074845328
-0.90600648033
-3.06824874871
-2.12889903832
-4.2210977611
-2.28915705899
-2.6883266671
-3.93338925738
-3.0185981574
..
..
IDN
Indonesia
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
164.1183
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IMY
Isle of Man
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IND
India
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
14.2921
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IRL
Ireland
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-0.565011826368
-0.569518740147
-0.584384320158
-0.757481979263
-0.982249712077
-0.784601830693
-0.725012814146
-0.791243482587
-1.1315343662
-1.08414730437
-0.788148081603
-0.890545578947
-1.08505761169
-1.16185936723
-1.13408053311
-1.36422835867
-1.40607268447
-1.87012149881
-2.35743210991
-2.17305787985
..
..
IRN
Iran, Islamic Rep.
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
31.5782
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IRQ
Iraq
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ISL
Iceland
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
1.10473483954
1.10781530117
1.09510458915
1.08448766454
1.07415227668
1.05614561848
1.0469299154
1.03120953901
1.01218211266
0.993672107444
0.931444893261
0.914874216437
0.893662282602
0.869526896959
0.840238870412
0.808687799242
0.779028568654
0.746748711355
0.71825563522
0.681105928831
..
..
ISR
Israel
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
-0.401
..
..
..
..
ITA
Italy
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-61.7950766086
-76.2563210463
-75.4848415216
-58.6488999074
-75.4245981569
-79.9237860397
-88.1646904653
-75.0753005129
-73.0717216997
-79.4227934492
-78.8912145918
-86.9098207464
-92.8319068654
-83.6187561259
-87.9712532535
-90.5423954731
-96.9645028823
-73.310290875
-92.8278184478
-94.6709724715
..
..
JAM
Jamaica
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
-0.167
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
JOR
Jordan
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
0.739
..
..
..
..
..
..
..
..
..
..
..
JPN
Japan
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-69.5766610736
-76.8368084977
-76.5424643209
-79.3888533146
-81.1155413591
-81.5125114575
-86.2012783776
-86.5246793796
-86.3605465077
-86.5967239717
-87.2893424523
-87.423691599
-88.5996925305
-97.7179111486
-97.2271147489
-90.2734770152
-84.538653875
-83.7475190636
-78.3182951223
-71.5234733539
..
..
KAZ
Kazakhstan
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KEN
Kenya
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
-28.0002
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KGZ
Kyrgyz Republic
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
-0.6881
..
..
..
..
..
..
KHM
Cambodia
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
-17.9077
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KIR
Kiribati
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KNA
St. Kitts and Nevis
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
-0.0898
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KOR
Korea, Rep.
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
-34.642
..
..
..
..
..
..
..
..
..
..
KSV
Kosovo
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KWT
Kuwait
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LAC
Latin America & Caribbean
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LAO
Lao PDR
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-104.3038
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LBN
Lebanon
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
-0.0768
..
..
..
..
..
..
..
..
..
..
..
LBR
Liberia
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LBY
Libya
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LCA
St. Lucia
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
-0.3452
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LIC
Low income
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LIE
Liechtenstein
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-0.00821505129221
-0.00825032830748
-0.00828560532275
-0.00832088233801
-0.00835615935328
-0.00835893019886
-0.00839317328432
-0.00337530354895
-0.00336594613566
-0.0032402126656
-0.00324673894187
-0.00342459560185
-0.00337050068722
-0.00600022973757
-0.00602742236181
-0.00604846274194
-0.00607699538448
-0.00609747427987
-0.00612001640859
-0.00614395480398
..
..
LKA
Sri Lanka
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
379.079
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LMC
Lower middle income
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LMY
Low & middle income
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LSO
Lesotho
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
1.2606
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LTU
Lithuania
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-4.33058353328
-4.67069375105
-4.6776663445
-4.70186753992
-4.70154527017
-4.7135911272
-4.72538660071
-4.74464259231
-4.13324143352
-4.12858078824
-4.12179755601
-4.31624924574
-4.5199760781
-3.67176243613
-3.79766386237
-3.27018329664
-3.43203098781
-3.96030258595
-3.95824382007
-3.74993190201
..
..
LUX
Luxembourg
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
0.347749785541
0.172428372268
-0.195752275468
-0.305826732783
-0.135956415609
-0.238099171191
-0.410637746313
-0.451081094698
-0.195498515026
-0.318811327678
-0.385406570978
-0.451557163095
-0.451258727202
-0.459735280839
-0.414493403084
-0.385654053768
-0.275587012199
-0.273175511351
-0.272338871179
-0.296432331062
..
..
LVA
Latvia
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-15.1964217673
-16.8570021276
-17.9802643518
-17.6153247989
-16.9465814266
-16.2498990973
-17.7135755662
-15.119342277
-14.075306386
-13.5613743925
-14.3000988981
-14.5186647958
-13.5309271213
-15.0239449737
-16.180633397
-17.1405245338
-20.2515518369
-21.6829172081
-22.7433987864
-20.483741672
..
..
MAC
Macao SAR, China
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAF
St. Martin (French part)
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
3.6445
..
..
..
..
..
..
..
..
..
..
..
MCO
Monaco
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-1.25731883954e-05
-1.27532253178e-05
-1.30523812755e-05
-1.32771345538e-05
-1.36168524483e-05
-1.38038858567e-05
-1.38434150257e-05
-1.38953495224e-05
-1.38953495224e-05
-1.39644770351e-05
-1.3404773344e-05
-1.50285346901e-05
5.85835604174e-06
7.07700774713e-06
8.63862163837e-06
-1.08582149628e-05
-2.18494080216e-05
-1.5487853453e-05
-1.55917097024e-05
-2.48411059166e-05
..
..
MDA
Moldova
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
-1.381
..
..
..
..
..
..
MDG
Madagascar
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
-233.2561
..
..
..
..
..
..
..
..
..
..
..
MDV
Maldives
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MEX
Mexico
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
70.2028
..
..
..
..
..
MHL
Marshall Islands
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MIC
Middle income
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MKD
Macedonia, FYR
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
-2.618
..
..
..
..
..
..
..
..
..
MLI
Mali
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
-9.7481
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MLT
Malta
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-0.0569693502764
-0.0569693502764
-0.0569693502764
-0.0569693502764
-0.0569693502764
-0.0569693502764
-0.0584629448635
-0.0584629448635
-0.0584629448635
-0.0578311598635
-0.0578311598635
-0.0578311598635
-0.0578311598635
-0.0589272163635
-0.0600933659635
-0.0590007821635
-0.0607871821635
-0.0607794821635
-0.0607794821635
-0.0607618
..
..
MMR
Myanmar
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNA
Middle East & North Africa
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNE
Montenegro
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
-0.8533
..
..
..
..
..
..
..
..
MNG
Mongolia
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
-2.0826
..
..
..
..
..
MNP
Northern Mariana Islands
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MOZ
Mozambique
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
7.7454
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MRT
Mauritania
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
-1.3195
..
..
..
..
..
..
..
..
..
..
..
MUS
Mauritius
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
-0.2214
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MWI
Malawi
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
17.5155
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MYS
Malaysia
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
-220.1942
..
..
..
..
..
..
..
..
..
..
..
MYT
Mayotte
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NAM
Namibia
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
-5.7077
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NCL
New Caledonia
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NER
Niger
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
-16.79
..
..
..
..
..
..
..
..
..
..
..
NGA
Nigeria
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
105.01
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NIC
Nicaragua
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
-13.0567
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NIU
Niue
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
0.0853
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NLD
Netherlands
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
2.69186354469
2.3320143166
2.61260325516
2.41639229841
2.38863207164
2.53954319712
2.37145533131
2.64482090084
2.55283248235
2.58930863484
2.5758277656
2.27357633276
2.24162436196
2.59432491917
2.55781008241
2.6873779674
2.67530344627
2.50658652526
2.66803363912
2.47502937951
..
..
NOR
Norway
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-8.55634203797
-9.10841790605
-9.58404435636
-10.1013747951
-10.8504223899
-11.210580936
-12.0064670392
-12.5637542516
-13.2790518044
-13.8487391757
-18.5299181126
-20.396702757
-25.0604775111
-27.8488460748
-27.1817174973
-29.6128553779
-24.2379367562
-28.2797158798
-34.3031908366
-25.3284987397
..
..
NPL
Nepal
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
8.1169
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NRU
Nauru
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
-0.0091
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NZL
New Zealand
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-23.4510749847
-24.116412378
-23.2877936528
-23.5177220232
-22.8171997431
-21.9673446101
-22.1741667892
-23.6741115963
-25.9563931243
-26.8585076748
-26.7148666177
-26.0481040932
-23.5797221301
-25.2892743201
-26.5116166742
-25.5427578796
-23.7280629227
-21.4599998729
-29.3601361229
-26.6827477851
..
..
OMN
Oman
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PAK
Pakistan
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
6.5271
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PAN
Panama
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
23.7117
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PER
Peru
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
56.827
..
..
..
..
..
..
..
..
..
..
..
PHL
Philippines
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
-0.1265
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PLW
Palau
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PNG
Papua New Guinea
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
-0.413
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
POL
Poland
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-20.1297556925
-21.1405854073
-14.1731465892
-13.2553304586
-11.2984435299
-9.8877921438
-12.3324690767
-11.0708133542
-11.1665470144
-13.2419599379
-12.7234832386
-15.9425519874
-16.6510799036
-18.0535433203
-21.3249675658
-26.6603316767
-29.7508856552
-26.9601130825
-34.8578216079
-37.1753001427
..
..
PRI
Puerto Rico
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRK
Korea, Dem. Rep.
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-14.6217
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRT
Portugal
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-9.3258967198
-8.0239621989
-10.8317038617
-11.2320512194
-12.3784443814
-10.815432506
-13.5701275052
-14.1025951244
-13.0445350476
-13.8348569979
-13.5612128716
-13.7791547119
-13.5611475457
-7.80626529352
-11.6157295081
-6.2157581894
-11.9007098676
-12.5562812453
-13.45436079
-14.0945612574
..
..
PRY
Paraguay
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
19.5043
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PYF
French Polynesia
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
QAT
Qatar
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ROM
Romania
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-35.5832924477
-37.0414365708
-37.8458190316
-39.1310344733
-39.7343970998
-38.9872611625
-38.0026786257
-38.3897059369
-40.4808022211
-39.2078244132
-37.9992195602
-39.0071879316
-36.5360774548
-36.173729931
-35.4919839308
-37.1810838297
-37.199815717
-36.1144424178
-36.414555225
-36.5333925516
..
..
RUS
Russian Federation
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
77.8849913029
74.4790781926
-26.8583882556
-114.609578812
-185.326720712
-226.061739536
-293.944522405
-392.296587047
-388.349212915
-421.492233459
-461.832824804
-537.624089694
-566.868545069
-557.222860838
-542.479579976
-537.923219799
-532.218294805
-561.681585111
-592.803679671
-656.4776136
..
..
RWA
Rwanda
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
-7.0098
..
..
..
..
..
..
..
..
..
SAS
South Asia
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SAU
Saudi Arabia
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-15.24
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SDN
Sudan
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
17.776
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SEN
Senegal
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
-10.5216
..
..
..
..
..
..
..
..
..
..
..
SGP
Singapore
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SID
Small island developing states
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLB
Solomon Islands
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLE
Sierra Leone
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLV
El Salvador
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
3.9428
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SMR
San Marino
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
-0.004
..
..
..
..
SOM
Somalia
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SRB
Serbia
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
-8.661
..
..
..
..
..
..
..
..
..
..
..
..
..
SSA
Sub-Saharan Africa
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
STP
Sao Tome and Principe
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
-1.5447
..
..
..
..
..
..
..
..
..
..
..
..
..
SUR
Suriname
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
1.5407
..
..
..
..
..
..
..
..
SVK
Slovak Republic
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-2.95462497263
-3.80942599193
-5.68275545092
-4.78402757183
-3.79224673382
-3.34572139133
-3.11791776221
-2.44032262785
-2.88349286991
-2.68075468747
-3.07135716247
-6.29431958598
-6.5054282815
-5.8099917504
-5.10200209128
-1.429592468
-4.13104135029
-3.95939664301
-3.17615896202
-3.44900752453
..
..
SVN
Slovenia
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-7.27387440154
-7.25730236579
-7.29460616276
-7.34956693926
-7.34444587715
-7.29587349314
-7.2835233157
-7.24666347811
-7.11231294371
-7.23123712116
-7.25180203323
-8.48134682552
-8.485142059
-8.15466523793
-8.49130775438
-8.45890414102
-8.24730835478
-8.47868172361
-8.4827191462
-8.45819778536
..
..
SWE
Sweden
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-44.7227186
-45.7632679223
-42.0552620116
-38.9545977752
-39.8864818598
-39.266490773
-40.0630833779
-41.844032331
-41.1345498592
-39.2685411353
-40.975497039
-38.7233710979
-41.0289477876
-39.7658346735
-36.4108484667
-36.243936432
-34.9882593248
-34.1963819021
-33.8787047495
-41.6383306778
..
..
SWZ
Swaziland
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
-3.2531
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SXM
Sint Maarten (Dutch part)
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
-0.8328
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYR
Syrian Arab Republic
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TCA
Turks and Caicos Islands
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TCD
Chad
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
-46.1981
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TGO
Togo
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
28.1293
..
..
..
..
..
..
..
..
..
..
..
..
..
THA
Thailand
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
-7.8905
..
..
..
..
..
..
..
..
..
..
..
TJK
Tajikistan
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
-1.93
..
..
..
..
..
..
..
..
TKM
Turkmenistan
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
-0.83
..
..
..
..
..
..
..
TMP
Timor-Leste
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TON
Tonga
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
-0.3096
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TTO
Trinidad and Tobago
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-1.4962
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TUN
Tunisia
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
-1.7727
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TUR
Turkey
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-44.8705319546
-56.3137202794
-60.6511036513
-60.2588116251
-62.197644497
-61.8362097008
-62.4291530899
-64.3372096835
-65.639801428
-66.4468736328
-67.5575687251
-72.1238083746
-68.801704912
-67.5632369957
-75.1037475736
-69.5326037305
-75.9354202233
-76.2740006401
-80.5797115606
-82.5282777566
..
..
TUV
Tuvalu
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TZA
Tanzania
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
913.5629
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
UGA
Uganda
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
8.2527
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
UKR
Ukraine
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-69.9220818544
-77.7391506678
-64.4258086877
-49.0338107001
-61.6515201389
-48.3229352502
-53.793709131
-33.8304809431
-48.5111333914
-61.8107833746
-48.7819931506
-37.6608152074
-37.6362830556
-57.2636176215
-38.1737945904
-36.2392271975
-39.1087834069
-50.9845300242
-17.2459242477
-19.2446503581
..
..
UMC
Upper middle income
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
URY
Uruguay
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
-10.3488
..
..
..
..
..
..
..
USA
United States
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
-846.554877931
-818.679731084
-804.464712484
-758.572583619
-850.05034435
-795.375723499
-679.822703099
-727.705738044
-601.993296371
-503.702131639
-540.259926455
-635.81048758
-830.615927423
-980.170627395
-1033.64040215
-1027.88174906
-1014.52889851
-1013.38397692
-1007.25150888
-990.061776172
..
..
UZB
Uzbekistan
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.4175
..
..
..
..
..
..
VCT
St. Vincent and the Grenadines
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
-0.1322
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VEN
Venezuela, RB
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
-14.2908
..
..
..
..
..
..
..
..
..
..
..
..
VIR
Virgin Islands (U.S.)
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VNM
Vietnam
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
15.1047
..
..
..
..
..
..
..
..
..
..
..
VUT
Vanuatu
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
-0.0012
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
WBG
West Bank and Gaza
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
WLD
World
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
WSM
Samoa
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
-0.082
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
YEM
Yemen, Rep.
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
-9.6702
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ZAF
South Africa
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
-18.616
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ZAR
Congo, Dem. Rep.
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
-178.7794
..
..
..
..
..
..
..
..
ZMB
Zambia
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
3.4579
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ZWE
Zimbabwe
EN.CLC.GHGR.MT.CE
GHG net emissions/removals by LUCF (MtCO2e)
0
1
..
..
..
..
-62.2395
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ABW
Aruba
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ADO
Andorra
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
AFG
Afghanistan
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
AGO
Angola
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ALB
Albania
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1
ARE
United Arab Emirates
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5
ARG
Argentina
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
24
ARM
Armenia
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5
ASM
American Samoa
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ATG
Antigua and Barbuda
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
AUS
Australia
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
AUT
Austria
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
AZE
Azerbaijan
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1
BDI
Burundi
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BEL
Belgium
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BEN
Benin
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BFA
Burkina Faso
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BGD
Bangladesh
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2
BGR
Bulgaria
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BHR
Bahrain
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BHS
Bahamas, The
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
BIH
Bosnia and Herzegovina
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BLR
Belarus
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BLZ
Belize
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BMU
Bermuda
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BOL
Bolivia
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
4
BRA
Brazil
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
196
BRB
Barbados
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BRN
Brunei Darussalam
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BTN
Bhutan
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2
BWA
Botswana
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
CAF
Central African Republic
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
CAN
Canada
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CHE
Switzerland
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CHI
Channel Islands
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CHL
Chile
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
51
CHN
China
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1,604
CIV
Cote d'Ivoire
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3
CMR
Cameroon
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2
COG
Congo, Rep.
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
COK
Cook Islands
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
COL
Colombia
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
34
COM
Comoros
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
CPV
Cape Verde
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
CRI
Costa Rica
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
8
CUB
Cuba
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2
CUW
Curacao
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CYM
Cayman Islands
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CYP
Cyprus
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
8
CZE
Czech Republic
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
DEU
Germany
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
DJI
Djibouti
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
DMA
Dominica
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
DNK
Denmark
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
DOM
Dominican Republic
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2
DZA
Algeria
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
EAP
East Asia & Pacific
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ECA
Europe & Central Asia
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ECU
Ecuador
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
17
EGY
Egypt, Arab Rep.
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
9
EMU
Euro area
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ERI
Eritrea
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ESP
Spain
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
EST
Estonia
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ETH
Ethiopia
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1
FIN
Finland
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
FJI
Fiji
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2
FRA
France
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
FRO
Faeroe Islands
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
FSM
Micronesia, Fed. Sts.
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GAB
Gabon
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GBR
United Kingdom
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GEO
Georgia
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2
GHA
Ghana
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
GIB
Gibraltar
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GIN
Guinea
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GMB
Gambia, The
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GNB
Guinea-Bissau
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GNQ
Equatorial Guinea
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
GRC
Greece
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GRD
Grenada
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GRL
Greenland
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GTM
Guatemala
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11
GUM
Guam
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GUY
Guyana
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1
HIC
High income
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
HKG
Hong Kong SAR, China
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
HND
Honduras
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
19
HRV
Croatia
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
HTI
Haiti
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
HUN
Hungary
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
IDN
Indonesia
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
70
IMY
Isle of Man
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
IND
India
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
727
IRL
Ireland
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
IRN
Iran, Islamic Rep.
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
7
IRQ
Iraq
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ISL
Iceland
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ISR
Israel
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
22
ITA
Italy
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
JAM
Jamaica
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1
JOR
Jordan
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2
JPN
Japan
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
KAZ
Kazakhstan
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
KEN
Kenya
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5
KGZ
Kyrgyz Republic
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
KHM
Cambodia
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5
KIR
Kiribati
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
KNA
St. Kitts and Nevis
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
KOR
Korea, Rep.
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
64
KSV
Kosovo
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
KWT
Kuwait
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
LAC
Latin America & Caribbean
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LAO
Lao PDR
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1
LBN
Lebanon
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
LBR
Liberia
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1
LBY
Libya
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
LCA
St. Lucia
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
LIC
Low income
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LIE
Liechtenstein
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LKA
Sri Lanka
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
7
LMC
Lower middle income
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LMY
Low & middle income
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LSO
Lesotho
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
LTU
Lithuania
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LUX
Luxembourg
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LVA
Latvia
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MAC
Macao SAR, China
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MAF
St. Martin (French part)
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MAR
Morocco
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
6
MCO
Monaco
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MDA
Moldova
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
4
MDG
Madagascar
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1
MDV
Maldives
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MEX
Mexico
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
132
MHL
Marshall Islands
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MIC
Middle income
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MKD
Macedonia, FYR
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1
MLI
Mali
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1
MLT
Malta
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MMR
Myanmar
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
MNA
Middle East & North Africa
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MNE
Montenegro
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MNG
Mongolia
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3
MNP
Northern Mariana Islands
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MOZ
Mozambique
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
MRT
Mauritania
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MUS
Mauritius
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
MWI
Malawi
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MYS
Malaysia
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
101
MYT
Mayotte
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NAM
Namibia
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
NCL
New Caledonia
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NER
Niger
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
NGA
Nigeria
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5
NIC
Nicaragua
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5
NIU
Niue
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
NLD
Netherlands
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NOR
Norway
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NPL
Nepal
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
4
NRU
Nauru
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
NZL
New Zealand
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
OMN
Oman
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
PAK
Pakistan
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12
PAN
Panama
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
7
PER
Peru
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
25
PHL
Philippines
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
57
PLW
Palau
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
PNG
Papua New Guinea
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1
POL
Poland
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PRI
Puerto Rico
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PRK
Korea, Dem. Rep.
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
PRT
Portugal
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PRY
Paraguay
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2
PYF
French Polynesia
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
QAT
Qatar
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1
ROM
Romania
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
RUS
Russian Federation
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
RWA
Rwanda
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3
SAS
South Asia
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SAU
Saudi Arabia
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
SDN
Sudan
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
SEN
Senegal
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1
SGP
Singapore
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2
SID
Small island developing states
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SLB
Solomon Islands
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SLE
Sierra Leone
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
SLV
El Salvador
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
6
SMR
San Marino
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SOM
Somalia
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SRB
Serbia
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
SSA
Sub-Saharan Africa
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
STP
Sao Tome and Principe
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SUR
Suriname
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SVK
Slovak Republic
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SVN
Slovenia
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SWE
Sweden
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SWZ
Swaziland
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
SXM
Sint Maarten (Dutch part)
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SYC
Seychelles
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SYR
Syrian Arab Republic
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3
TCA
Turks and Caicos Islands
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TCD
Chad
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
TGO
Togo
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
THA
Thailand
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
55
TJK
Tajikistan
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
TKM
Turkmenistan
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
TMP
Timor-Leste
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
TON
Tonga
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
TTO
Trinidad and Tobago
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
TUN
Tunisia
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2
TUR
Turkey
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TUV
Tuvalu
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
TZA
Tanzania
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1
UGA
Uganda
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5
UKR
Ukraine
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
UMC
Upper middle income
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
URY
Uruguay
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
6
USA
United States
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
UZB
Uzbekistan
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11
VCT
St. Vincent and the Grenadines
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
VEN
Venezuela, RB
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
VIR
Virgin Islands (U.S.)
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
VNM
Vietnam
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
78
VUT
Vanuatu
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
WBG
West Bank and Gaza
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
WLD
World
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
WSM
Samoa
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
YEM
Yemen, Rep.
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
ZAF
South Africa
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20
ZAR
Congo, Dem. Rep.
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2
ZMB
Zambia
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1
ZWE
Zimbabwe
EN.CLC.HCDM
Hosted Clean Development Mechanism (CDM) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
ABW
Aruba
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ADO
Andorra
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
AFG
Afghanistan
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
AGO
Angola
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ALB
Albania
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ARE
United Arab Emirates
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ARG
Argentina
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ARM
Armenia
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ASM
American Samoa
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ATG
Antigua and Barbuda
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
AUS
Australia
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
AUT
Austria
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
AZE
Azerbaijan
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BDI
Burundi
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BEL
Belgium
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BEN
Benin
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BFA
Burkina Faso
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BGD
Bangladesh
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BGR
Bulgaria
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
28
BHR
Bahrain
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BHS
Bahamas, The
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BIH
Bosnia and Herzegovina
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BLR
Belarus
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BLZ
Belize
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BMU
Bermuda
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BOL
Bolivia
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BRA
Brazil
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BRB
Barbados
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BRN
Brunei Darussalam
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BTN
Bhutan
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BWA
Botswana
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CAF
Central African Republic
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CAN
Canada
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
CHE
Switzerland
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
CHI
Channel Islands
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CHL
Chile
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CHN
China
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CIV
Cote d'Ivoire
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CMR
Cameroon
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
COG
Congo, Rep.
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
COK
Cook Islands
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
COL
Colombia
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
COM
Comoros
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CPV
Cape Verde
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CRI
Costa Rica
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CUB
Cuba
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CUW
Curacao
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CYM
Cayman Islands
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CYP
Cyprus
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CZE
Czech Republic
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
58
DEU
Germany
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11
DJI
Djibouti
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
DMA
Dominica
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
DNK
Denmark
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
DOM
Dominican Republic
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
DZA
Algeria
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
EAP
East Asia & Pacific
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ECA
Europe & Central Asia
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ECU
Ecuador
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
EGY
Egypt, Arab Rep.
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
EMU
Euro area
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ERI
Eritrea
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ESP
Spain
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3
EST
Estonia
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12
ETH
Ethiopia
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
FIN
Finland
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3
FJI
Fiji
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
FRA
France
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
17
FRO
Faeroe Islands
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
FSM
Micronesia, Fed. Sts.
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GAB
Gabon
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GBR
United Kingdom
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GEO
Georgia
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GHA
Ghana
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GIB
Gibraltar
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GIN
Guinea
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GMB
Gambia, The
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GNB
Guinea-Bissau
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GNQ
Equatorial Guinea
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GRC
Greece
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GRD
Grenada
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GRL
Greenland
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GTM
Guatemala
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GUM
Guam
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GUY
Guyana
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
HIC
High income
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
HKG
Hong Kong SAR, China
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
HND
Honduras
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
HRV
Croatia
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
HTI
Haiti
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
HUN
Hungary
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11
IDN
Indonesia
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
IMY
Isle of Man
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
IND
India
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
IRL
Ireland
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
IRN
Iran, Islamic Rep.
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
IRQ
Iraq
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ISL
Iceland
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ISR
Israel
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ITA
Italy
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
JAM
Jamaica
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
JOR
Jordan
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
JPN
Japan
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
KAZ
Kazakhstan
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
KEN
Kenya
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
KGZ
Kyrgyz Republic
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
KHM
Cambodia
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
KIR
Kiribati
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
KNA
St. Kitts and Nevis
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
KOR
Korea, Rep.
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
KSV
Kosovo
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
KWT
Kuwait
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LAC
Latin America & Caribbean
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LAO
Lao PDR
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LBN
Lebanon
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LBR
Liberia
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LBY
Libya
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LCA
St. Lucia
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LIC
Low income
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LIE
Liechtenstein
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
LKA
Sri Lanka
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LMC
Lower middle income
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LMY
Low & middle income
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LSO
Lesotho
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LTU
Lithuania
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12
LUX
Luxembourg
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
LVA
Latvia
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
MAC
Macao SAR, China
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MAF
St. Martin (French part)
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MAR
Morocco
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MCO
Monaco
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MDA
Moldova
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MDG
Madagascar
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MDV
Maldives
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MEX
Mexico
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MHL
Marshall Islands
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MIC
Middle income
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MKD
Macedonia, FYR
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MLI
Mali
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MLT
Malta
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MMR
Myanmar
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MNA
Middle East & North Africa
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MNE
Montenegro
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MNG
Mongolia
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MNP
Northern Mariana Islands
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MOZ
Mozambique
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MRT
Mauritania
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MUS
Mauritius
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MWI
Malawi
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MYS
Malaysia
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MYT
Mayotte
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NAM
Namibia
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NCL
New Caledonia
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NER
Niger
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NGA
Nigeria
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NIC
Nicaragua
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NIU
Niue
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NLD
Netherlands
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
NOR
Norway
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
NPL
Nepal
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NRU
Nauru
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NZL
New Zealand
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
7
OMN
Oman
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PAK
Pakistan
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PAN
Panama
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PER
Peru
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PHL
Philippines
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PLW
Palau
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PNG
Papua New Guinea
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
POL
Poland
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
17
PRI
Puerto Rico
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PRK
Korea, Dem. Rep.
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PRT
Portugal
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
PRY
Paraguay
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PYF
French Polynesia
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
QAT
Qatar
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ROM
Romania
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
15
RUS
Russian Federation
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
25
RWA
Rwanda
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SAS
South Asia
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SAU
Saudi Arabia
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SDN
Sudan
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SEN
Senegal
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SGP
Singapore
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SID
Small island developing states
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SLB
Solomon Islands
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SLE
Sierra Leone
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SLV
El Salvador
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SMR
San Marino
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SOM
Somalia
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SRB
Serbia
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SSA
Sub-Saharan Africa
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
STP
Sao Tome and Principe
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SUR
Suriname
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SVK
Slovak Republic
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
SVN
Slovenia
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SWE
Sweden
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
SWZ
Swaziland
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SXM
Sint Maarten (Dutch part)
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SYC
Seychelles
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SYR
Syrian Arab Republic
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TCA
Turks and Caicos Islands
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TCD
Chad
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TGO
Togo
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
THA
Thailand
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TJK
Tajikistan
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TKM
Turkmenistan
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TMP
Timor-Leste
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TON
Tonga
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TTO
Trinidad and Tobago
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TUN
Tunisia
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TUR
Turkey
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
TUV
Tuvalu
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TZA
Tanzania
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
UGA
Uganda
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
UKR
Ukraine
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
80
UMC
Upper middle income
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
URY
Uruguay
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
USA
United States
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
UZB
Uzbekistan
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
VCT
St. Vincent and the Grenadines
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
VEN
Venezuela, RB
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
VIR
Virgin Islands (U.S.)
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
VNM
Vietnam
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
VUT
Vanuatu
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
WBG
West Bank and Gaza
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
WLD
World
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
WSM
Samoa
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
YEM
Yemen, Rep.
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ZAF
South Africa
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ZAR
Congo, Dem. Rep.
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ZMB
Zambia
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ZWE
Zimbabwe
EN.CLC.HJIP
Hosted Joint Implementation (JI) projects
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ABW
Aruba
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ADO
Andorra
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
973
AFG
Afghanistan
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
327
AGO
Angola
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1010
ALB
Albania
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
996
ARE
United Arab Emirates
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
78
ARG
Argentina
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
591
ARM
Armenia
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
562
ASM
American Samoa
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ATG
Antigua and Barbuda
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2420
AUS
Australia
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
535
AUT
Austria
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1110
AZE
Azerbaijan
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
447
BDI
Burundi
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1218
BEL
Belgium
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
847
BEN
Benin
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1039
BFA
Burkina Faso
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
748
BGD
Bangladesh
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2665
BGR
Bulgaria
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
608
BHR
Bahrain
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
83
BHS
Bahamas, The
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1292
BIH
Bosnia and Herzegovina
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1028
BLR
Belarus
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
618
BLZ
Belize
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2191
BMU
Bermuda
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1506
BOL
Bolivia
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1146
BRA
Brazil
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1782
BRB
Barbados
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2066
BRN
Brunei Darussalam
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2722
BTN
Bhutan
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1667
BWA
Botswana
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
416
CAF
Central African Republic
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1343
CAN
Canada
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
537
CHE
Switzerland
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1537
CHI
Channel Islands
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
CHL
Chile
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
716
CHN
China
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
627
CIV
Cote d'Ivoire
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1348
CMR
Cameroon
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1604
COG
Congo, Rep.
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1646
COK
Cook Islands
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1925
COL
Colombia
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2612
COM
Comoros
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1754
CPV
Cape Verde
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
424
CRI
Costa Rica
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2926
CUB
Cuba
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1335
CUW
Curacao
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
CYM
Cayman Islands
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
CYP
Cyprus
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
498
CZE
Czech Republic
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
677
DEU
Germany
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
700
DJI
Djibouti
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
220
DMA
Dominica
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3436
DNK
Denmark
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
703
DOM
Dominican Republic
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1410
DZA
Algeria
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
89
EAP
East Asia & Pacific
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ECA
Europe & Central Asia
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ECU
Ecuador
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2087
EGY
Egypt, Arab Rep.
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
51
EMU
Euro area
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ERI
Eritrea
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
384
ESP
Spain
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
636
EST
Estonia
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
626
ETH
Ethiopia
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
848
FIN
Finland
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
536
FJI
Fiji
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2593
FRA
France
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
867
FRO
Faeroe Islands
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1578
FSM
Micronesia, Fed. Sts.
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GAB
Gabon
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1831
GBR
United Kingdom
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1220
GEO
Georgia
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1026
GHA
Ghana
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1187
GIB
Gibraltar
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
618
GIN
Guinea
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1651
GMB
Gambia, The
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
837
GNB
Guinea-Bissau
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1577
GNQ
Equatorial Guinea
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2156
GRC
Greece
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
652
GRD
Grenada
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1535
GRL
Greenland
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
585
GTM
Guatemala
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2712
GUM
Guam
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GUY
Guyana
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2387
HIC
High income
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
HKG
Hong Kong SAR, China
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2240
HND
Honduras
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1976
HRV
Croatia
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1113
HTI
Haiti
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1440
HUN
Hungary
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
589
IDN
Indonesia
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2702
IMY
Isle of Man
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
IND
India
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1083
IRL
Ireland
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1118
IRN
Iran, Islamic Rep.
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
228
IRQ
Iraq
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
216
ISL
Iceland
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
978
ISR
Israel
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
435
ITA
Italy
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
832
JAM
Jamaica
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2051
JOR
Jordan
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
111
JPN
Japan
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1668
KAZ
Kazakhstan
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
250
KEN
Kenya
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
692
KGZ
Kyrgyz Republic
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
381
KHM
Cambodia
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1903
KIR
Kiribati
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1942
KNA
St. Kitts and Nevis
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2133
KOR
Korea, Rep.
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1404
KSV
Kosovo
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
KWT
Kuwait
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
121
LAC
Latin America & Caribbean
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
LAO
Lao PDR
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1834
LBN
Lebanon
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
661
LBR
Liberia
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2391
LBY
Libya
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
57
LCA
St. Lucia
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2301
LIC
Low income
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
LIE
Liechtenstein
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1539
LKA
Sri Lanka
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1712
LMC
Lower middle income
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
LMY
Low & middle income
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
LSO
Lesotho
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
789
LTU
Lithuania
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
656
LUX
Luxembourg
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
934
LVA
Latvia
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
641
MAC
Macao SAR, China
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2219
MAF
St. Martin (French part)
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MAR
Morocco
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
346
MCO
Monaco
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
894
MDA
Moldova
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
553
MDG
Madagascar
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1513
MDV
Maldives
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1972
MEX
Mexico
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
752
MHL
Marshall Islands
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2705
MIC
Middle income
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MKD
Macedonia, FYR
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
619
MLI
Mali
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
282
MLT
Malta
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
383
MMR
Myanmar
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2091
MNA
Middle East & North Africa
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MNE
Montenegro
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MNG
Mongolia
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
241
MNP
Northern Mariana Islands
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
7369
MOZ
Mozambique
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1031
MRT
Mauritania
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
92
MUS
Mauritius
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2041
MWI
Malawi
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1181
MYS
Malaysia
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2875
MYT
Mayotte
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
NAM
Namibia
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
285
NCL
New Caledonia
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1498
NER
Niger
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
151
NGA
Nigeria
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1150
NIC
Nicaragua
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2391
NIU
Niue
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2210
NLD
Netherlands
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
778
NOR
Norway
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1119
NPL
Nepal
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1321
NRU
Nauru
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2445
NZL
New Zealand
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1732
OMN
Oman
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
125
PAK
Pakistan
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
305
PAN
Panama
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2692
PER
Peru
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1493
PHL
Philippines
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2348
PLW
Palau
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3259
PNG
Papua New Guinea
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3142
POL
Poland
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
600
PRI
Puerto Rico
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2054
PRK
Korea, Dem. Rep.
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1062
PRT
Portugal
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
855
PRY
Paraguay
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1130
PYF
French Polynesia
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
QAT
Qatar
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
74
ROM
Romania
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
637
RUS
Russian Federation
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
460
RWA
Rwanda
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1212
SAS
South Asia
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SAU
Saudi Arabia
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SDN
Sudan
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
417
SEN
Senegal
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
687
SGP
Singapore
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2497
SID
Small island developing states
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SLB
Solomon Islands
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3028
SLE
Sierra Leone
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2526
SLV
El Salvador
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1724
SMR
San Marino
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
840
SOM
Somalia
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
282
SRB
Serbia
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SSA
Sub-Saharan Africa
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
STP
Sao Tome and Principe
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2169
SUR
Suriname
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2331
SVK
Slovak Republic
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
824
SVN
Slovenia
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1161
SWE
Sweden
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
624
SWZ
Swaziland
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
788
SXM
Sint Maarten (Dutch part)
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SYC
Seychelles
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1970
SYR
Syrian Arab Republic
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
318
TCA
Turks and Caicos Islands
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3035
TCD
Chad
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
322
TGO
Togo
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1168
THA
Thailand
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1622
TJK
Tajikistan
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
491
TKM
Turkmenistan
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
162
TMP
Timor-Leste
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
TON
Tonga
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1966
TTO
Trinidad and Tobago
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1787
TUN
Tunisia
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
313
TUR
Turkey
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
593
TUV
Tuvalu
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3035
TZA
Tanzania
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1071
UGA
Uganda
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1180
UKR
Ukraine
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
565
UMC
Upper middle income
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
URY
Uruguay
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1265
USA
United States
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
736
UZB
Uzbekistan
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
206
VCT
St. Vincent and the Grenadines
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1583
VEN
Venezuela, RB
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1875
VIR
Virgin Islands (U.S.)
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2263
VNM
Vietnam
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1821
VUT
Vanuatu
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2876
WBG
West Bank and Gaza
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
WLD
World
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
WSM
Samoa
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2991
YEM
Yemen, Rep.
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
167
ZAF
South Africa
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
495
ZAR
Congo, Dem. Rep.
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1543
ZMB
Zambia
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1020
ZWE
Zimbabwe
EN.CLC.HPPT.MM
Average annual precipitation (1961-1990, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
692
ABW
Aruba
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ADO
Andorra
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
AFG
Afghanistan
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
AGO
Angola
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ALB
Albania
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
ARE
United Arab Emirates
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
80
ARG
Argentina
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
7,697
ARM
Armenia
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12
ASM
American Samoa
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ATG
Antigua and Barbuda
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
AUS
Australia
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
AUT
Austria
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
AZE
Azerbaijan
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
BDI
Burundi
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BEL
Belgium
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BEN
Benin
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BFA
Burkina Faso
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BGD
Bangladesh
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
BGR
Bulgaria
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BHR
Bahrain
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BHS
Bahamas, The
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
BIH
Bosnia and Herzegovina
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BLR
Belarus
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BLZ
Belize
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BMU
Bermuda
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BOL
Bolivia
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1,118
BRA
Brazil
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
57,990
BRB
Barbados
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BRN
Brunei Darussalam
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BTN
Bhutan
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
BWA
Botswana
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
CAF
Central African Republic
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
CAN
Canada
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CHE
Switzerland
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CHI
Channel Islands
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CHL
Chile
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
7,307
CHN
China
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
430,696
CIV
Cote d'Ivoire
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
CMR
Cameroon
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
COG
Congo, Rep.
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
COK
Cook Islands
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
COL
Colombia
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1,094
COM
Comoros
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
CPV
Cape Verde
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
CRI
Costa Rica
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
320
CUB
Cuba
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
171
CUW
Curacao
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CYM
Cayman Islands
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CYP
Cyprus
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
CZE
Czech Republic
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
DEU
Germany
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
DJI
Djibouti
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
DMA
Dominica
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
DNK
Denmark
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
DOM
Dominican Republic
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12
DZA
Algeria
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
EAP
East Asia & Pacific
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ECA
Europe & Central Asia
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ECU
Ecuador
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1,184
EGY
Egypt, Arab Rep.
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
7,012
EMU
Euro area
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ERI
Eritrea
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ESP
Spain
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
EST
Estonia
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ETH
Ethiopia
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
FIN
Finland
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
FJI
Fiji
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
36
FRA
France
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
FRO
Faeroe Islands
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
FSM
Micronesia, Fed. Sts.
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GAB
Gabon
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GBR
United Kingdom
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GEO
Georgia
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
53
GHA
Ghana
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
GIB
Gibraltar
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GIN
Guinea
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GMB
Gambia, The
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GNB
Guinea-Bissau
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GNQ
Equatorial Guinea
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
GRC
Greece
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GRD
Grenada
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GRL
Greenland
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GTM
Guatemala
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1,023
GUM
Guam
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GUY
Guyana
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
HIC
High income
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
HKG
Hong Kong SAR, China
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
HND
Honduras
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
568
HRV
Croatia
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
HTI
Haiti
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
HUN
Hungary
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
IDN
Indonesia
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3,007
IMY
Isle of Man
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
IND
India
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
118,184
IRL
Ireland
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
IRN
Iran, Islamic Rep.
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
IRQ
Iraq
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ISL
Iceland
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ISR
Israel
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1,160
ITA
Italy
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
JAM
Jamaica
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
211
JOR
Jordan
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
986
JPN
Japan
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
KAZ
Kazakhstan
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
KEN
Kenya
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
KGZ
Kyrgyz Republic
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
KHM
Cambodia
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11
KIR
Kiribati
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
KNA
St. Kitts and Nevis
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
KOR
Korea, Rep.
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
77,317
KSV
Kosovo
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
KWT
Kuwait
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
LAC
Latin America & Caribbean
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LAO
Lao PDR
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2
LBN
Lebanon
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
LBR
Liberia
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
LBY
Libya
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
LCA
St. Lucia
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
LIC
Low income
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LIE
Liechtenstein
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LKA
Sri Lanka
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
238
LMC
Lower middle income
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LMY
Low & middle income
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LSO
Lesotho
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
LTU
Lithuania
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LUX
Luxembourg
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LVA
Latvia
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MAC
Macao SAR, China
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MAF
St. Martin (French part)
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MAR
Morocco
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
330
MCO
Monaco
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MDA
Moldova
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
MDG
Madagascar
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
MDV
Maldives
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MEX
Mexico
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10,122
MHL
Marshall Islands
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MIC
Middle income
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MKD
Macedonia, FYR
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
MLI
Mali
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
MLT
Malta
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MMR
Myanmar
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
MNA
Middle East & North Africa
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MNE
Montenegro
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MNG
Mongolia
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
15
MNP
Northern Mariana Islands
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MOZ
Mozambique
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
MRT
Mauritania
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MUS
Mauritius
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
MWI
Malawi
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MYS
Malaysia
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1,475
MYT
Mayotte
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NAM
Namibia
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
NCL
New Caledonia
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NER
Niger
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
NGA
Nigeria
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
312
NIC
Nicaragua
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
602
NIU
Niue
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
NLD
Netherlands
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NOR
Norway
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NPL
Nepal
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
92
NRU
Nauru
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
NZL
New Zealand
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
OMN
Oman
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
PAK
Pakistan
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2,983
PAN
Panama
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
138
PER
Peru
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
620
PHL
Philippines
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
245
PLW
Palau
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
PNG
Papua New Guinea
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
215
POL
Poland
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PRI
Puerto Rico
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PRK
Korea, Dem. Rep.
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
PRT
Portugal
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PRY
Paraguay
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
PYF
French Polynesia
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
QAT
Qatar
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
ROM
Romania
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
RUS
Russian Federation
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
RWA
Rwanda
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
SAS
South Asia
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SAU
Saudi Arabia
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
SDN
Sudan
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
SEN
Senegal
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
SGP
Singapore
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
SID
Small island developing states
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SLB
Solomon Islands
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SLE
Sierra Leone
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
SLV
El Salvador
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
790
SMR
San Marino
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SOM
Somalia
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SRB
Serbia
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
SSA
Sub-Saharan Africa
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
STP
Sao Tome and Principe
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SUR
Suriname
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SVK
Slovak Republic
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SVN
Slovenia
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SWE
Sweden
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SWZ
Swaziland
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
SXM
Sint Maarten (Dutch part)
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SYC
Seychelles
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SYR
Syrian Arab Republic
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
TCA
Turks and Caicos Islands
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TCD
Chad
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
TGO
Togo
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
THA
Thailand
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
902
TJK
Tajikistan
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
TKM
Turkmenistan
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
TMP
Timor-Leste
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
TON
Tonga
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
TTO
Trinidad and Tobago
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
TUN
Tunisia
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
TUR
Turkey
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TUV
Tuvalu
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
TZA
Tanzania
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
56
UGA
Uganda
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
UKR
Ukraine
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
UMC
Upper middle income
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
URY
Uruguay
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
41
USA
United States
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
UZB
Uzbekistan
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
VCT
St. Vincent and the Grenadines
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
VEN
Venezuela, RB
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
VIR
Virgin Islands (U.S.)
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
VNM
Vietnam
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
6,646
VUT
Vanuatu
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
WBG
West Bank and Gaza
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
WLD
World
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
WSM
Samoa
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
YEM
Yemen, Rep.
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
ZAF
South Africa
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1,900
ZAR
Congo, Dem. Rep.
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
ZMB
Zambia
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
ZWE
Zimbabwe
EN.CLC.ICER
Issued Certified Emission Reductions (CERs) from CDM (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
ABW
Aruba
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ADO
Andorra
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
AFG
Afghanistan
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
AGO
Angola
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ALB
Albania
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ARE
United Arab Emirates
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ARG
Argentina
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ARM
Armenia
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ASM
American Samoa
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ATG
Antigua and Barbuda
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
AUS
Australia
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
AUT
Austria
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
AZE
Azerbaijan
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BDI
Burundi
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BEL
Belgium
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BEN
Benin
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BFA
Burkina Faso
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BGD
Bangladesh
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BGR
Bulgaria
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2,556
BHR
Bahrain
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BHS
Bahamas, The
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BIH
Bosnia and Herzegovina
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BLR
Belarus
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BLZ
Belize
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BMU
Bermuda
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BOL
Bolivia
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BRA
Brazil
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BRB
Barbados
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BRN
Brunei Darussalam
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BTN
Bhutan
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BWA
Botswana
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CAF
Central African Republic
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CAN
Canada
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
CHE
Switzerland
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
CHI
Channel Islands
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CHL
Chile
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CHN
China
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CIV
Cote d'Ivoire
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CMR
Cameroon
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
COG
Congo, Rep.
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
COK
Cook Islands
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
COL
Colombia
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
COM
Comoros
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CPV
Cape Verde
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CRI
Costa Rica
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CUB
Cuba
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CUW
Curacao
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CYM
Cayman Islands
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CYP
Cyprus
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CZE
Czech Republic
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
607
DEU
Germany
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2,087
DJI
Djibouti
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
DMA
Dominica
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
DNK
Denmark
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
DOM
Dominican Republic
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
DZA
Algeria
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
EAP
East Asia & Pacific
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ECA
Europe & Central Asia
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ECU
Ecuador
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
EGY
Egypt, Arab Rep.
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
EMU
Euro area
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ERI
Eritrea
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ESP
Spain
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
EST
Estonia
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
ETH
Ethiopia
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
FIN
Finland
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
245
FJI
Fiji
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
FRA
France
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3,535
FRO
Faeroe Islands
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
FSM
Micronesia, Fed. Sts.
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GAB
Gabon
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GBR
United Kingdom
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GEO
Georgia
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GHA
Ghana
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GIB
Gibraltar
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GIN
Guinea
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GMB
Gambia, The
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GNB
Guinea-Bissau
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GNQ
Equatorial Guinea
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GRC
Greece
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GRD
Grenada
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GRL
Greenland
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GTM
Guatemala
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GUM
Guam
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GUY
Guyana
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
HIC
High income
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
HKG
Hong Kong SAR, China
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
HND
Honduras
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
HRV
Croatia
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
HTI
Haiti
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
HUN
Hungary
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1,321
IDN
Indonesia
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
IMY
Isle of Man
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
IND
India
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
IRL
Ireland
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
IRN
Iran, Islamic Rep.
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
IRQ
Iraq
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ISL
Iceland
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ISR
Israel
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ITA
Italy
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
JAM
Jamaica
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
JOR
Jordan
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
JPN
Japan
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
KAZ
Kazakhstan
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
KEN
Kenya
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
KGZ
Kyrgyz Republic
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
KHM
Cambodia
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
KIR
Kiribati
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
KNA
St. Kitts and Nevis
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
KOR
Korea, Rep.
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
KSV
Kosovo
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
KWT
Kuwait
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LAC
Latin America & Caribbean
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LAO
Lao PDR
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LBN
Lebanon
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LBR
Liberia
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LBY
Libya
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LCA
St. Lucia
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LIC
Low income
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LIE
Liechtenstein
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
LKA
Sri Lanka
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LMC
Lower middle income
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LMY
Low & middle income
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LSO
Lesotho
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LTU
Lithuania
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2,408
LUX
Luxembourg
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
LVA
Latvia
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
MAC
Macao SAR, China
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MAF
St. Martin (French part)
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MAR
Morocco
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MCO
Monaco
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MDA
Moldova
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MDG
Madagascar
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MDV
Maldives
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MEX
Mexico
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MHL
Marshall Islands
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MIC
Middle income
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MKD
Macedonia, FYR
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MLI
Mali
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MLT
Malta
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MMR
Myanmar
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MNA
Middle East & North Africa
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MNE
Montenegro
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MNG
Mongolia
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MNP
Northern Mariana Islands
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MOZ
Mozambique
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MRT
Mauritania
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MUS
Mauritius
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MWI
Malawi
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MYS
Malaysia
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MYT
Mayotte
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NAM
Namibia
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NCL
New Caledonia
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NER
Niger
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NGA
Nigeria
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NIC
Nicaragua
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NIU
Niue
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NLD
Netherlands
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
NOR
Norway
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
NPL
Nepal
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NRU
Nauru
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NZL
New Zealand
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1,898
OMN
Oman
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PAK
Pakistan
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PAN
Panama
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PER
Peru
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PHL
Philippines
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PLW
Palau
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PNG
Papua New Guinea
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
POL
Poland
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
PRI
Puerto Rico
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PRK
Korea, Dem. Rep.
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PRT
Portugal
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
PRY
Paraguay
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PYF
French Polynesia
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
QAT
Qatar
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ROM
Romania
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2,405
RUS
Russian Federation
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
7,211
RWA
Rwanda
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SAS
South Asia
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SAU
Saudi Arabia
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SDN
Sudan
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SEN
Senegal
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SGP
Singapore
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SID
Small island developing states
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SLB
Solomon Islands
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SLE
Sierra Leone
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SLV
El Salvador
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SMR
San Marino
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SOM
Somalia
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SRB
Serbia
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SSA
Sub-Saharan Africa
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
STP
Sao Tome and Principe
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SUR
Suriname
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SVK
Slovak Republic
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
SVN
Slovenia
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SWE
Sweden
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0
SWZ
Swaziland
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SXM
Sint Maarten (Dutch part)
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SYC
Seychelles
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SYR
Syrian Arab Republic
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TCA
Turks and Caicos Islands
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TCD
Chad
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TGO
Togo
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
THA
Thailand
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TJK
Tajikistan
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TKM
Turkmenistan
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TMP
Timor-Leste
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TON
Tonga
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TTO
Trinidad and Tobago
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TUN
Tunisia
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TUR
Turkey
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
TUV
Tuvalu
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TZA
Tanzania
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
UGA
Uganda
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
UKR
Ukraine
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
39,780
UMC
Upper middle income
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
URY
Uruguay
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
USA
United States
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
UZB
Uzbekistan
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
VCT
St. Vincent and the Grenadines
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
VEN
Venezuela, RB
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
VIR
Virgin Islands (U.S.)
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
VNM
Vietnam
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
VUT
Vanuatu
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
WBG
West Bank and Gaza
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
WLD
World
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
WSM
Samoa
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
YEM
Yemen, Rep.
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ZAF
South Africa
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ZAR
Congo, Dem. Rep.
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ZMB
Zambia
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ZWE
Zimbabwe
EN.CLC.IERU
Issued Emission Reduction Units (ERUs) from JI (thousands)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ABW
Aruba
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ADO
Andorra
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AFG
Afghanistan
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.05929016895
..
..
AGO
Angola
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.01176467636
..
..
ALB
Albania
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
5.2695769934
..
..
ARE
United Arab Emirates
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ARG
Argentina
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.167189950513
..
..
ARM
Armenia
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.478231100922
..
..
ASM
American Samoa
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.000261754979888
..
..
ATG
Antigua and Barbuda
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AUS
Australia
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.04709860649
..
..
AUT
Austria
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.0381529782796
..
..
AZE
Azerbaijan
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.10556506666
..
..
BDI
Burundi
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.37741128892
..
..
BEL
Belgium
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.00169216806015
..
..
BEN
Benin
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.858274799265
..
..
BFA
Burkina Faso
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.25003682736
..
..
BGD
Bangladesh
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4.58469425909
..
..
BGR
Bulgaria
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.00855316044646
..
..
BHR
Bahrain
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BHS
Bahamas, The
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BIH
Bosnia and Herzegovina
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.49322849858
..
..
BLR
Belarus
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.0219585515265
..
..
BLZ
Belize
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.806085588818
..
..
BMU
Bermuda
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BOL
Bolivia
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.29742916357
..
..
BRA
Brazil
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.482451027993
..
..
BRB
Barbados
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BRN
Brunei Darussalam
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BTN
Bhutan
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.0135011025338
..
..
BWA
Botswana
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.740418784028
..
..
CAF
Central African Republic
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.182498508031
..
..
CAN
Canada
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.010743237667
..
..
CHE
Switzerland
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.00388788412429
..
..
CHI
Channel Islands
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHL
Chile
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.260470805127
..
..
CHN
China
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
7.95097147464
..
..
CIV
Cote d'Ivoire
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.000757403639121
..
..
CMR
Cameroon
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.0723722046655
..
..
COG
Congo, Rep.
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.262896436973
..
..
COK
Cook Islands
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
COL
Colombia
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.657133753962
..
..
COM
Comoros
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.0221911585454
..
..
CPV
Cape Verde
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.0098412235898
..
..
CRI
Costa Rica
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.70104562568
..
..
CUB
Cuba
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.727438085826
..
..
CUW
Curacao
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYP
Cyprus
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.00267815502329
..
..
CZE
Czech Republic
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.155745987792
..
..
DEU
Germany
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.0328245736855
..
..
DJI
Djibouti
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
6.79684704554
..
..
DMA
Dominica
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DNK
Denmark
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
DOM
Dominican Republic
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.0787054349702
..
..
DZA
Algeria
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.0392229403643
..
..
EAP
East Asia & Pacific
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ECA
Europe & Central Asia
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ECU
Ecuador
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.336468818221
..
..
EGY
Egypt, Arab Rep.
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.0122134765201
..
..
EMU
Euro area
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ERI
Eritrea
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
7.32348285595
..
..
ESP
Spain
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.729193518338
..
..
EST
Estonia
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
ETH
Ethiopia
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.2630181687
..
..
FIN
Finland
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.000387043470111
..
..
FJI
Fiji
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.72863661925
..
..
FRA
France
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.00571764592927
..
..
FRO
Faeroe Islands
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FSM
Micronesia, Fed. Sts.
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.349813557
..
..
GAB
Gabon
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GBR
United Kingdom
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.0324070189451
..
..
GEO
Georgia
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.770433848504
..
..
GHA
Ghana
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.974438236974
..
..
GIB
Gibraltar
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GIN
Guinea
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.180212227284
..
..
GMB
Gambia, The
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.197190026716
..
..
GNB
Guinea-Bissau
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.540905804297
..
..
GNQ
Equatorial Guinea
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRC
Greece
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.00658313866181
..
..
GRD
Grenada
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRL
Greenland
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GTM
Guatemala
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.3068236629
..
..
GUM
Guam
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GUY
Guyana
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
7.17062421244
..
..
HIC
High income
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HKG
Hong Kong SAR, China
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.00435437265408
..
..
HND
Honduras
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.25529122609
..
..
HRV
Croatia
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.00249428868862
..
..
HTI
Haiti
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.840315026319
..
..
HUN
Hungary
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.0881053512869
..
..
IDN
Indonesia
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.160589721908
..
..
IMY
Isle of Man
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IND
India
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4.35610899206
..
..
IRL
Ireland
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.00490736939921
..
..
IRN
Iran, Islamic Rep.
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.05679191703
..
..
IRQ
Iraq
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.0148379593241
..
..
ISL
Iceland
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ISR
Israel
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.000810924778618
..
..
ITA
Italy
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.00710221906896
..
..
JAM
Jamaica
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.14346077633
..
..
JOR
Jordan
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.369473469446
..
..
JPN
Japan
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.0209515501455
..
..
KAZ
Kazakhstan
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.21716121877
..
..
KEN
Kenya
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
6.47785323086
..
..
KGZ
Kyrgyz Republic
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.06546402645
..
..
KHM
Cambodia
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
6.64379105435
..
..
KIR
Kiribati
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
5.00299876479
..
..
KNA
St. Kitts and Nevis
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KOR
Korea, Rep.
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.0802554113254
..
..
KSV
Kosovo
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KWT
Kuwait
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.000567073206174
..
..
LAC
Latin America & Caribbean
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LAO
Lao PDR
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.69310157959
..
..
LBN
Lebanon
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.0230823251766
..
..
LBR
Liberia
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.87230419871
..
..
LBY
Libya
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
LCA
St. Lucia
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LIC
Low income
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LIE
Liechtenstein
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LKA
Sri Lanka
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.16003002858
..
..
LMC
Lower middle income
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LMY
Low & middle income
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LSO
Lesotho
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.4026509633
..
..
LTU
Lithuania
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
LUX
Luxembourg
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
LVA
Latvia
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
MAC
Macao SAR, China
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAF
St. Martin (French part)
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.0757125863581
..
..
MCO
Monaco
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MDA
Moldova
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.343810821553
..
..
MDG
Madagascar
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.864615090391
..
..
MDV
Maldives
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.0306479542537
..
..
MEX
Mexico
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.149843277332
..
..
MHL
Marshall Islands
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.0584142289273
..
..
MIC
Middle income
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MKD
Macedonia, FYR
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.304578780736
..
..
MLI
Mali
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.652855128388
..
..
MLT
Malta
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MMR
Myanmar
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.092410935443
..
..
MNA
Middle East & North Africa
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNE
Montenegro
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.0121742824624
..
..
MNG
Mongolia
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.56134223793
..
..
MNP
Northern Mariana Islands
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MOZ
Mozambique
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.66244795624
..
..
MRT
Mauritania
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.08197364995
..
..
MUS
Mauritius
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
MWI
Malawi
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
8.82049278721
..
..
MYS
Malaysia
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.0969269043603
..
..
MYT
Mayotte
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NAM
Namibia
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.40143396341
..
..
NCL
New Caledonia
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NER
Niger
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
7.52506573922
..
..
NGA
Nigeria
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.0550332644275
..
..
NIC
Nicaragua
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.833598367171
..
..
NIU
Niue
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NLD
Netherlands
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.00473786081085
..
..
NOR
Norway
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.00679558795672
..
..
NPL
Nepal
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.703796514299
..
..
NRU
Nauru
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NZL
New Zealand
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.0108539845294
..
..
OMN
Oman
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PAK
Pakistan
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.0553423911
..
..
PAN
Panama
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.196361451622
..
..
PER
Peru
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.95238081346
..
..
PHL
Philippines
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.806384865171
..
..
PLW
Palau
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PNG
Papua New Guinea
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.73079789849
..
..
POL
Poland
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.0320171021578
..
..
PRI
Puerto Rico
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.0164973212565
..
..
PRK
Korea, Dem. Rep.
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.49688110167
..
..
PRT
Portugal
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.00180233530282
..
..
PRY
Paraguay
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.714773454856
..
..
PYF
French Polynesia
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
QAT
Qatar
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ROM
Romania
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.0849709878995
..
..
RUS
Russian Federation
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.132700497361
..
..
RWA
Rwanda
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.29597316566
..
..
SAS
South Asia
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SAU
Saudi Arabia
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.00566049114063
..
..
SDN
Sudan
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.76541558192
..
..
SEN
Senegal
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.597670115012
..
..
SGP
Singapore
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SID
Small island developing states
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLB
Solomon Islands
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.0903440566097
..
..
SLE
Sierra Leone
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.247016283747
..
..
SLV
El Salvador
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.36063700416
..
..
SMR
San Marino
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SOM
Somalia
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4.60368934053
..
..
SRB
Serbia
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.0106605743397
..
..
SSA
Sub-Saharan Africa
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
STP
Sao Tome and Principe
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SUR
Suriname
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.339835427359
..
..
SVK
Slovak Republic
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.0449271354962
..
..
SVN
Slovenia
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
SWE
Sweden
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
SWZ
Swaziland
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
9.22658630792
..
..
SXM
Sint Maarten (Dutch part)
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.0780213239542
..
..
SYR
Syrian Arab Republic
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.50777223443
..
..
TCA
Turks and Caicos Islands
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TCD
Chad
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.714641025
..
..
TGO
Togo
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.508477884983
..
..
THA
Thailand
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.75109895494
..
..
TJK
Tajikistan
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
5.37808586975
..
..
TKM
Turkmenistan
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.000475378280003
..
..
TMP
Timor-Leste
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.0251203812722
..
..
TON
Tonga
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TTO
Trinidad and Tobago
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.000817749398672
..
..
TUN
Tunisia
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.098450336468
..
..
TUR
Turkey
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.136563067438
..
..
TUV
Tuvalu
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TZA
Tanzania
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.49586357405
..
..
UGA
Uganda
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.851203469914
..
..
UKR
Ukraine
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.269239353924
..
..
UMC
Upper middle income
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
URY
Uruguay
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.264742966822
..
..
USA
United States
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.214155722535
..
..
UZB
Uzbekistan
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.123694001358
..
..
VCT
St. Vincent and the Grenadines
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.00923653993672
..
..
VEN
Venezuela, RB
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.15520420431
..
..
VIR
Virgin Islands (U.S.)
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VNM
Vietnam
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.59936168054
..
..
VUT
Vanuatu
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.105703889989
..
..
WBG
West Bank and Gaza
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
WLD
World
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
WSM
Samoa
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
YEM
Yemen, Rep.
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.0994106985454
..
..
ZAF
South Africa
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.80565056199
..
..
ZAR
Congo, Dem. Rep.
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.017890962277
..
..
ZMB
Zambia
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4.19967674422
..
..
ZWE
Zimbabwe
EN.CLC.MDAT.ZS
Droughts, floods, extreme temps (% pop. avg. 1990-2009)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ABW
Aruba
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ADO
Andorra
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.9 / 12.3
AFG
Afghanistan
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5.5 / 19.7
AGO
Angola
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
14.8 / 28.3
ALB
Albania
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
6.3 / 16.5
ARE
United Arab Emirates
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
21.0 / 33.0
ARG
Argentina
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
8.2 / 21.4
ARM
Armenia
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.3 / 13.0
ASM
American Samoa
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ATG
Antigua and Barbuda
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
22.5 / 29.5
AUS
Australia
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
14.9 / 28.4
AUT
Austria
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.3 / 10.4
AZE
Azerbaijan
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
6.7 / 17.2
BDI
Burundi
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
13.8 / 25.8
BEL
Belgium
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5.5 / 13.6
BEN
Benin
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
21.7 / 33.4
BFA
Burkina Faso
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
21.5 / 35.0
BGD
Bangladesh
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20.4 / 29.6
BGR
Bulgaria
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5.6 / 15.5
BHR
Bahrain
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20.5 / 33.8
BHS
Bahamas, The
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
19.8 / 29.9
BIH
Bosnia and Herzegovina
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5.0 / 14.7
BLR
Belarus
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.0 / 10.3
BLZ
Belize
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
21.0 / 29.6
BMU
Bermuda
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
16.6 / 26.0
BOL
Bolivia
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
15.2 / 27.9
BRA
Brazil
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
19.6 / 30.3
BRB
Barbados
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
22.4 / 29.6
BRN
Brunei Darussalam
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
22.9 / 30.8
BTN
Bhutan
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.2 / 13.6
BWA
Botswana
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
13.6 / 29.4
CAF
Central African Republic
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
18.3 / 31.5
CAN
Canada
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-10.1 / -0.6
CHE
Switzerland
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.0 / 9.0
CHI
Channel Islands
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
CHL
Chile
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.5 / 13.4
CHN
China
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0.9 / 13.0
CIV
Cote d'Ivoire
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
21.1 / 31.6
CMR
Cameroon
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
19.1 / 30.1
COG
Congo, Rep.
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
19.8 / 29.3
COK
Cook Islands
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
21.6 / 27.6
COL
Colombia
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
19.6 / 29.4
COM
Comoros
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
21.6 / 29.5
CPV
Cape Verde
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
19.6 / 27.0
CRI
Costa Rica
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
19.6 / 30.0
CUB
Cuba
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20.4 / 30.0
CUW
Curacao
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
CYM
Cayman Islands
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
CYP
Cyprus
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
13.1 / 23.8
CZE
Czech Republic
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.3 / 11.8
DEU
Germany
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
4.6 / 12.4
DJI
Djibouti
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
22.8 / 33.2
DMA
Dominica
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
18.9 / 25.8
DNK
Denmark
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
4.3 / 10.7
DOM
Dominican Republic
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
19.9 / 29.2
DZA
Algeria
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
15.4 / 29.6
EAP
East Asia & Pacific
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ECA
Europe & Central Asia
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ECU
Ecuador
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
15.6 / 28.1
EGY
Egypt, Arab Rep.
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
14.8 / 29.4
EMU
Euro area
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ERI
Eritrea
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
18.9 / 32.1
ESP
Spain
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
7.9 / 18.7
EST
Estonia
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.5 / 8.7
ETH
Ethiopia
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
15.5 / 28.9
FIN
Finland
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.4 / 5.8
FJI
Fiji
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20.9 / 27.9
FRA
France
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
6.5 / 14.9
FRO
Faeroe Islands
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.8 / 8.4
FSM
Micronesia, Fed. Sts.
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GAB
Gabon
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20.9 / 29.2
GBR
United Kingdom
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5.1 / 11.8
GEO
Georgia
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0.4 / 11.2
GHA
Ghana
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
22.1 / 32.3
GIB
Gibraltar
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
13.3 / 21.7
GIN
Guinea
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
19.6 / 31.8
GMB
Gambia, The
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20.4 / 34.6
GNB
Guinea-Bissau
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20.9 / 32.6
GNQ
Equatorial Guinea
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20.6 / 28.5
GRC
Greece
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10.5 / 20.3
GRD
Grenada
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
22.8 / 30.5
GRL
Greenland
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-22.6 / -9.5
GTM
Guatemala
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
18.2 / 28.7
GUM
Guam
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GUY
Guyana
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
21.6 / 30.4
HIC
High income
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
HKG
Hong Kong SAR, China
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
19.3 / 26.0
HND
Honduras
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
18.9 / 28.1
HRV
Croatia
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
6.2 / 15.6
HTI
Haiti
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20.1 / 29.7
HUN
Hungary
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
4.8 / 14.7
IDN
Indonesia
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
21.1 / 30.6
IMY
Isle of Man
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
IND
India
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
17.7 / 29.6
IRL
Ireland
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5.9 / 12.7
IRN
Iran, Islamic Rep.
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10.1 / 24.4
IRQ
Iraq
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
14.1 / 28.7
ISL
Iceland
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.1 / 4.6
ISR
Israel
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
13.4 / 25.0
ITA
Italy
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
9.5 / 17.4
JAM
Jamaica
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20.6 / 29.3
JOR
Jordan
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11.2 / 25.4
JPN
Japan
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
7.0 / 15.3
KAZ
Kazakhstan
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0.6 / 12.2
KEN
Kenya
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
18.9 / 30.6
KGZ
Kyrgyz Republic
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-4.6 / 7.7
KHM
Cambodia
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
22.3 / 31.3
KIR
Kiribati
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
25.3 / 31.1
KNA
St. Kitts and Nevis
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20.8 / 28.2
KOR
Korea, Rep.
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
6.5 / 16.5
KSV
Kosovo
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
KWT
Kuwait
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
18.5 / 32.2
LAC
Latin America & Caribbean
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LAO
Lao PDR
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
18.2 / 27.4
LBN
Lebanon
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10.7 / 22.1
LBR
Liberia
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20.0 / 30.6
LBY
Libya
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
14.4 / 29.2
LCA
St. Lucia
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
22.2 / 28.8
LIC
Low income
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LIE
Liechtenstein
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.2 / 9.1
LKA
Sri Lanka
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
23.3 / 30.6
LMC
Lower middle income
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LMY
Low & middle income
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LSO
Lesotho
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5.2 / 18.5
LTU
Lithuania
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.3 / 10.1
LUX
Luxembourg
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
4.4 / 12.9
LVA
Latvia
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.9 / 9.3
MAC
Macao SAR, China
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
19.5 / 26.1
MAF
St. Martin (French part)
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MAR
Morocco
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11.1 / 23.1
MCO
Monaco
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10.1 / 17.0
MDA
Moldova
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5.0 / 13.9
MDG
Madagascar
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
18.0 / 27.3
MDV
Maldives
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
24.8 / 30.5
MEX
Mexico
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
13.5 / 28.5
MHL
Marshall Islands
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
24.7 / 30.1
MIC
Middle income
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MKD
Macedonia, FYR
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
4.5 / 15.1
MLI
Mali
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20.9 / 35.6
MLT
Malta
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
15.2 / 23.2
MMR
Myanmar
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
17.7 / 8.4
MNA
Middle East & North Africa
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MNE
Montenegro
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MNG
Mongolia
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-7.7 / 6.3
MNP
Northern Mariana Islands
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
24.4 / 30.3
MOZ
Mozambique
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
18.5 / 29.1
MRT
Mauritania
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20.2 / 35.1
MUS
Mauritius
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
18.9 / 25.9
MWI
Malawi
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
16.6 / 27.2
MYS
Malaysia
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
21.2 / 29.6
MYT
Mayotte
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
NAM
Namibia
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12.7 / 27.2
NCL
New Caledonia
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
19.1 / 25.2
NER
Niger
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
19.4 / 34.9
NGA
Nigeria
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20.8 / 32.8
NIC
Nicaragua
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20.3 / 29.5
NIU
Niue
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
21.6 / 27.3
NLD
Netherlands
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5.5 / 13.0
NOR
Norway
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.0 / 5.0
NPL
Nepal
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.5 / 14.7
NRU
Nauru
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
24.5 / 30.8
NZL
New Zealand
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
6.0 / 15.1
OMN
Oman
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20.8 / 30.4
PAK
Pakistan
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
13.2 / 27.2
PAN
Panama
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
21.3 / 29.5
PER
Peru
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
13.5 / 25.7
PHL
Philippines
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
21.6 / 30.1
PLW
Palau
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
24.1 / 31.1
PNG
Papua New Guinea
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20.1 / 30.4
POL
Poland
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.8 / 11.9
PRI
Puerto Rico
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
21.2 / 29.3
PRK
Korea, Dem. Rep.
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0.3 / 11.1
PRT
Portugal
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10.2 / 20.1
PRY
Paraguay
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
17.7 / 29.4
PYF
French Polynesia
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
QAT
Qatar
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
21.3 / 33.0
ROM
Romania
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.8 / 13.8
RUS
Russian Federation
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-10.1 / -0.1
RWA
Rwanda
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11.9 / 23.8
SAS
South Asia
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SAU
Saudi Arabia
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
18.2 / 31.1
SDN
Sudan
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
19.4 / 34.4
SEN
Senegal
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20.8 / 34.9
SGP
Singapore
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
22.6 / 30.3
SID
Small island developing states
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SLB
Solomon Islands
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
21.7 / 29.6
SLE
Sierra Leone
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
21.0 / 31.1
SLV
El Salvador
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
18.4 / 30.5
SMR
San Marino
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
8.2 / 15.5
SOM
Somalia
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
21.2 / 32.9
SRB
Serbia
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SSA
Sub-Saharan Africa
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
STP
Sao Tome and Principe
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20.5 / 27.0
SUR
Suriname
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
21.3 / 30.1
SVK
Slovak Republic
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.1 / 11.5
SVN
Slovenia
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
4.2 / 13.6
SWE
Sweden
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.1 / 6.3
SWZ
Swaziland
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
15.5 / 27.3
SXM
Sint Maarten (Dutch part)
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SYC
Seychelles
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
24.5 / 29.8
SYR
Syrian Arab Republic
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10.8 / 24.7
TCA
Turks and Caicos Islands
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
24.9 / 31.1
TCD
Chad
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
18.6 / 34.5
TGO
Togo
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
21.8 / 32.5
THA
Thailand
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
21.2 / 31.4
TJK
Tajikistan
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-3.9 / 7.9
TKM
Turkmenistan
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
8.7 / 21.5
TMP
Timor-Leste
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
TON
Tonga
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
22.5 / 28.0
TTO
Trinidad and Tobago
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
21.5 / 30.0
TUN
Tunisia
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
13.5 / 24.9
TUR
Turkey
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5.4 / 16.8
TUV
Tuvalu
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
24.9 / 31.1
TZA
Tanzania
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
16.7 / 28.0
UGA
Uganda
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
16.6 / 29.0
UKR
Ukraine
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
4.0 / 12.6
UMC
Upper middle income
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
URY
Uruguay
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12.2 / 22.9
USA
United States
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.2 / 14.9
UZB
Uzbekistan
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5.8 / 18.3
VCT
St. Vincent and the Grenadines
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
23.4 / 30.2
VEN
Venezuela, RB
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20.3 / 30.4
VIR
Virgin Islands (U.S.)
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
21.5 / 29.7
VNM
Vietnam
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20.6 / 28.3
VUT
Vanuatu
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20.6 / 27.3
WBG
West Bank and Gaza
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
WLD
World
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
WSM
Samoa
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
23.8 / 29.6
YEM
Yemen, Rep.
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
18.6 / 29.1
ZAF
South Africa
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10.6 / 24.9
ZAR
Congo, Dem. Rep.
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
18.4 / 29.6
ZMB
Zambia
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
14.5 / 28.3
ZWE
Zimbabwe
EN.CLC.MMDT.C
Average daily min/max temperature (1961-1990, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
14.2 / 27.8
ABW
Aruba
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ADO
Andorra
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
AFG
Afghanistan
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
AGO
Angola
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ALB
Albania
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ARE
United Arab Emirates
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ARG
Argentina
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
ARM
Armenia
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
ASM
American Samoa
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ATG
Antigua and Barbuda
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes, with Goal
AUS
Australia
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
AUT
Austria
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
AZE
Azerbaijan
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BDI
Burundi
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BEL
Belgium
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BEN
Benin
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
BFA
Burkina Faso
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BGD
Bangladesh
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BGR
Bulgaria
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BHR
Bahrain
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BHS
Bahamas, The
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BIH
Bosnia and Herzegovina
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BLR
Belarus
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BLZ
Belize
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BMU
Bermuda
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BOL
Bolivia
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BRA
Brazil
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes, with Goal
BRB
Barbados
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BRN
Brunei Darussalam
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BTN
Bhutan
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes, with Goal
BWA
Botswana
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
CAF
Central African Republic
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
CAN
Canada
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CHE
Switzerland
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CHI
Channel Islands
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CHL
Chile
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes, with Goal
CHN
China
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes, with Goal
CIV
Cote d'Ivoire
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
CMR
Cameroon
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
COG
Congo, Rep.
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
COK
Cook Islands
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
COL
Colombia
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes, with Goal
COM
Comoros
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
CPV
Cape Verde
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
CRI
Costa Rica
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes, with Goal
CUB
Cuba
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
CUW
Curacao
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CYM
Cayman Islands
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CYP
Cyprus
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
CZE
Czech Republic
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
DEU
Germany
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
DJI
Djibouti
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
DMA
Dominica
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
DNK
Denmark
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
DOM
Dominican Republic
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
DZA
Algeria
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
EAP
East Asia & Pacific
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ECA
Europe & Central Asia
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ECU
Ecuador
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
EGY
Egypt, Arab Rep.
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
EMU
Euro area
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ERI
Eritrea
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
ESP
Spain
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
EST
Estonia
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ETH
Ethiopia
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
FIN
Finland
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
FJI
Fiji
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
FRA
France
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
FRO
Faeroe Islands
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
FSM
Micronesia, Fed. Sts.
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GAB
Gabon
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
GBR
United Kingdom
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GEO
Georgia
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
GHA
Ghana
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
GIB
Gibraltar
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GIN
Guinea
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GMB
Gambia, The
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GNB
Guinea-Bissau
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GNQ
Equatorial Guinea
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GRC
Greece
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GRD
Grenada
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GRL
Greenland
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GTM
Guatemala
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GUM
Guam
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GUY
Guyana
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
HIC
High income
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
HKG
Hong Kong SAR, China
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
HND
Honduras
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
HRV
Croatia
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
HTI
Haiti
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
HUN
Hungary
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
IDN
Indonesia
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes, with Goal
IMY
Isle of Man
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
IND
India
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes, with Goal
IRL
Ireland
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
IRN
Iran, Islamic Rep.
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
IRQ
Iraq
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ISL
Iceland
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ISR
Israel
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes, with Goal
ITA
Italy
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
JAM
Jamaica
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
JOR
Jordan
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
JPN
Japan
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
KAZ
Kazakhstan
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
KEN
Kenya
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
KGZ
Kyrgyz Republic
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
KHM
Cambodia
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
KIR
Kiribati
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
KNA
St. Kitts and Nevis
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
KOR
Korea, Rep.
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes, with Goal
KSV
Kosovo
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
KWT
Kuwait
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
LAC
Latin America & Caribbean
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LAO
Lao PDR
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
LBN
Lebanon
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
LBR
Liberia
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
LBY
Libya
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
LCA
St. Lucia
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
LIC
Low income
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LIE
Liechtenstein
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LKA
Sri Lanka
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
LMC
Lower middle income
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LMY
Low & middle income
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LSO
Lesotho
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
LTU
Lithuania
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LUX
Luxembourg
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LVA
Latvia
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MAC
Macao SAR, China
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MAF
St. Martin (French part)
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MAR
Morocco
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
MCO
Monaco
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MDA
Moldova
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes, with Goal
MDG
Madagascar
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
MDV
Maldives
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes, with Goal
MEX
Mexico
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes, with Goal
MHL
Marshall Islands
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes, with Goal
MIC
Middle income
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MKD
Macedonia, FYR
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
MLI
Mali
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MLT
Malta
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MMR
Myanmar
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MNA
Middle East & North Africa
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MNE
Montenegro
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MNG
Mongolia
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
MNP
Northern Mariana Islands
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MOZ
Mozambique
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MRT
Mauritania
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
MUS
Mauritius
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
MWI
Malawi
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MYS
Malaysia
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MYT
Mayotte
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NAM
Namibia
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
NCL
New Caledonia
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NER
Niger
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
NGA
Nigeria
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
NIC
Nicaragua
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
NIU
Niue
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
NLD
Netherlands
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NOR
Norway
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NPL
Nepal
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
NRU
Nauru
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
NZL
New Zealand
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
OMN
Oman
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
PAK
Pakistan
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
PAN
Panama
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
PER
Peru
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes, with Goal
PHL
Philippines
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
PLW
Palau
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
PNG
Papua New Guinea
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
POL
Poland
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PRI
Puerto Rico
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PRK
Korea, Dem. Rep.
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
PRT
Portugal
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PRY
Paraguay
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
PYF
French Polynesia
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
QAT
Qatar
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ROM
Romania
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
RUS
Russian Federation
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
RWA
Rwanda
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SAS
South Asia
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SAU
Saudi Arabia
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SDN
Sudan
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SEN
Senegal
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SGP
Singapore
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes, with Goal
SID
Small island developing states
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SLB
Solomon Islands
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SLE
Sierra Leone
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
SLV
El Salvador
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SMR
San Marino
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
SOM
Somalia
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SRB
Serbia
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SSA
Sub-Saharan Africa
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
STP
Sao Tome and Principe
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SUR
Suriname
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SVK
Slovak Republic
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SVN
Slovenia
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SWE
Sweden
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SWZ
Swaziland
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SXM
Sint Maarten (Dutch part)
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SYC
Seychelles
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SYR
Syrian Arab Republic
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
TCA
Turks and Caicos Islands
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TCD
Chad
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
TGO
Togo
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
THA
Thailand
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
TJK
Tajikistan
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
TKM
Turkmenistan
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
TMP
Timor-Leste
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
TON
Tonga
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
TTO
Trinidad and Tobago
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
TUN
Tunisia
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
TUR
Turkey
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TUV
Tuvalu
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
TZA
Tanzania
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
UGA
Uganda
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
UKR
Ukraine
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
UMC
Upper middle income
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
URY
Uruguay
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
USA
United States
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
UZB
Uzbekistan
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
VCT
St. Vincent and the Grenadines
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
VEN
Venezuela, RB
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
VIR
Virgin Islands (U.S.)
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
VNM
Vietnam
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
VUT
Vanuatu
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
WBG
West Bank and Gaza
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
WLD
World
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
WSM
Samoa
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
YEM
Yemen, Rep.
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ZAF
South Africa
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes, with Goal
ZAR
Congo, Dem. Rep.
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ZMB
Zambia
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ZWE
Zimbabwe
EN.CLC.NAMA
NAMA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ABW
Aruba
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ADO
Andorra
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
AFG
Afghanistan
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
AGO
Angola
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ALB
Albania
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ARE
United Arab Emirates
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ARG
Argentina
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ARM
Armenia
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ASM
American Samoa
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ATG
Antigua and Barbuda
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
AUS
Australia
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
AUT
Austria
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
AZE
Azerbaijan
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BDI
Burundi
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
BEL
Belgium
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BEN
Benin
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
BFA
Burkina Faso
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
BGD
Bangladesh
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
BGR
Bulgaria
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BHR
Bahrain
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BHS
Bahamas, The
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BIH
Bosnia and Herzegovina
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BLR
Belarus
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BLZ
Belize
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BMU
Bermuda
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BOL
Bolivia
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BRA
Brazil
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BRB
Barbados
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BRN
Brunei Darussalam
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BTN
Bhutan
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
BWA
Botswana
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CAF
Central African Republic
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
CAN
Canada
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CHE
Switzerland
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CHI
Channel Islands
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CHL
Chile
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CHN
China
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CIV
Cote d'Ivoire
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CMR
Cameroon
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
COG
Congo, Rep.
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
COK
Cook Islands
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
COL
Colombia
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
COM
Comoros
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
CPV
Cape Verde
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
CRI
Costa Rica
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CUB
Cuba
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CUW
Curacao
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CYM
Cayman Islands
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CYP
Cyprus
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CZE
Czech Republic
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
DEU
Germany
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
DJI
Djibouti
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
DMA
Dominica
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
DNK
Denmark
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
DOM
Dominican Republic
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
DZA
Algeria
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
EAP
East Asia & Pacific
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ECA
Europe & Central Asia
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ECU
Ecuador
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
EGY
Egypt, Arab Rep.
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
EMU
Euro area
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ERI
Eritrea
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
ESP
Spain
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
EST
Estonia
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ETH
Ethiopia
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
FIN
Finland
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
FJI
Fiji
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
FRA
France
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
FRO
Faeroe Islands
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
FSM
Micronesia, Fed. Sts.
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GAB
Gabon
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GBR
United Kingdom
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GEO
Georgia
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GHA
Ghana
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GIB
Gibraltar
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GIN
Guinea
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
GMB
Gambia, The
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
GNB
Guinea-Bissau
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
GNQ
Equatorial Guinea
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GRC
Greece
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GRD
Grenada
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GRL
Greenland
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GTM
Guatemala
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GUM
Guam
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GUY
Guyana
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
HIC
High income
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
HKG
Hong Kong SAR, China
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
HND
Honduras
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
HRV
Croatia
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
HTI
Haiti
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
HUN
Hungary
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
IDN
Indonesia
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
IMY
Isle of Man
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
IND
India
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
IRL
Ireland
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
IRN
Iran, Islamic Rep.
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
IRQ
Iraq
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ISL
Iceland
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ISR
Israel
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ITA
Italy
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
JAM
Jamaica
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
JOR
Jordan
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
JPN
Japan
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
KAZ
Kazakhstan
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
KEN
Kenya
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
KGZ
Kyrgyz Republic
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
KHM
Cambodia
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
KIR
Kiribati
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
KNA
St. Kitts and Nevis
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
KOR
Korea, Rep.
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
KSV
Kosovo
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
KWT
Kuwait
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LAC
Latin America & Caribbean
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LAO
Lao PDR
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
LBN
Lebanon
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LBR
Liberia
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
LBY
Libya
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LCA
St. Lucia
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LIC
Low income
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LIE
Liechtenstein
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LKA
Sri Lanka
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LMC
Lower middle income
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LMY
Low & middle income
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LSO
Lesotho
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
LTU
Lithuania
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LUX
Luxembourg
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LVA
Latvia
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MAC
Macao SAR, China
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MAF
St. Martin (French part)
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MAR
Morocco
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MCO
Monaco
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MDA
Moldova
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MDG
Madagascar
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
MDV
Maldives
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
MEX
Mexico
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MHL
Marshall Islands
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MIC
Middle income
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MKD
Macedonia, FYR
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MLI
Mali
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
MLT
Malta
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MMR
Myanmar
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MNA
Middle East & North Africa
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MNE
Montenegro
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MNG
Mongolia
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MNP
Northern Mariana Islands
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MOZ
Mozambique
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
MRT
Mauritania
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
MUS
Mauritius
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MWI
Malawi
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
MYS
Malaysia
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MYT
Mayotte
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NAM
Namibia
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NCL
New Caledonia
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NER
Niger
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
NGA
Nigeria
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NIC
Nicaragua
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NIU
Niue
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NLD
Netherlands
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NOR
Norway
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NPL
Nepal
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
NRU
Nauru
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NZL
New Zealand
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
OMN
Oman
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PAK
Pakistan
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PAN
Panama
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PER
Peru
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PHL
Philippines
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PLW
Palau
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PNG
Papua New Guinea
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
POL
Poland
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PRI
Puerto Rico
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PRK
Korea, Dem. Rep.
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PRT
Portugal
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PRY
Paraguay
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PYF
French Polynesia
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
QAT
Qatar
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ROM
Romania
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
RUS
Russian Federation
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
RWA
Rwanda
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
SAS
South Asia
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SAU
Saudi Arabia
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SDN
Sudan
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
SEN
Senegal
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
SGP
Singapore
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SID
Small island developing states
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SLB
Solomon Islands
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
SLE
Sierra Leone
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
SLV
El Salvador
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SMR
San Marino
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SOM
Somalia
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SRB
Serbia
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SSA
Sub-Saharan Africa
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
STP
Sao Tome and Principe
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
SUR
Suriname
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SVK
Slovak Republic
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SVN
Slovenia
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SWE
Sweden
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SWZ
Swaziland
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SXM
Sint Maarten (Dutch part)
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SYC
Seychelles
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SYR
Syrian Arab Republic
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TCA
Turks and Caicos Islands
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TCD
Chad
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
TGO
Togo
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
THA
Thailand
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TJK
Tajikistan
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TKM
Turkmenistan
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TMP
Timor-Leste
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
TON
Tonga
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TTO
Trinidad and Tobago
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TUN
Tunisia
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TUR
Turkey
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TUV
Tuvalu
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
TZA
Tanzania
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
UGA
Uganda
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
UKR
Ukraine
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
UMC
Upper middle income
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
URY
Uruguay
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
USA
United States
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
UZB
Uzbekistan
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
VCT
St. Vincent and the Grenadines
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
VEN
Venezuela, RB
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
VIR
Virgin Islands (U.S.)
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
VNM
Vietnam
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
VUT
Vanuatu
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
WBG
West Bank and Gaza
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
WLD
World
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
WSM
Samoa
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
YEM
Yemen, Rep.
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
ZAF
South Africa
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ZAR
Congo, Dem. Rep.
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
ZMB
Zambia
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
ZWE
Zimbabwe
EN.CLC.NAPA
NAPA submission
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ABW
Aruba
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ADO
Andorra
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
AFG
Afghanistan
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
AGO
Angola
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ALB
Albania
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11/23/2009 (2nd)
ARE
United Arab Emirates
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
4/7/2010 (2nd)
ARG
Argentina
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3/7/2008 (2nd)
ARM
Armenia
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
9/7/2010 (2nd)
ASM
American Samoa
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ATG
Antigua and Barbuda
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
9/10/2001 (1st)
AUS
Australia
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2/12/2010 (5th)
AUT
Austria
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2/16/2010 (5th)
AZE
Azerbaijan
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
6/7/2011 (2nd)
BDI
Burundi
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
6/28/2010 (2nd)
BEL
Belgium
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3/10/2010 (5th)
BEN
Benin
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10/21/2002 (1st)
BFA
Burkina Faso
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5/16/2002 (1st)
BGD
Bangladesh
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11/12/2002 (1st)
BGR
Bulgaria
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2/12/2010 (5th)
BHR
Bahrain
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
4/20/2005 (1st)
BHS
Bahamas, The
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11/5/2001 (1st)
BIH
Bosnia and Herzegovina
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5/26/2010 (1st)
BLR
Belarus
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5/3/2010 (5th)
BLZ
Belize
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
9/16/2002 (1st)
BMU
Bermuda
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
BOL
Bolivia
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12/2/2009 (2nd)
BRA
Brazil
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11/30/2010 (2nd)
BRB
Barbados
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10/30/2001 (1st)
BRN
Brunei Darussalam
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BTN
Bhutan
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11/13/2000 (1st)
BWA
Botswana
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10/22/2001 (1st)
CAF
Central African Republic
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
6/10/2003 (1st)
CAN
Canada
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3/3/2010 (5th)
CHE
Switzerland
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12/14/2009 (5th)
CHI
Channel Islands
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CHL
Chile
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2/8/2000 (1st)
CHN
China
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12/10/2004 (1st)
CIV
Cote d'Ivoire
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
4/26/2010 (2nd)
CMR
Cameroon
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1/31/2005 (1st)
COG
Congo, Rep.
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11/27/2009 (2nd)
COK
Cook Islands
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10/30/1999 (1st)
COL
Colombia
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12/7/2010 (2nd)
COM
Comoros
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
4/5/2003 (1st)
CPV
Cape Verde
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11/13/2000 (1st)
CRI
Costa Rica
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10/7/2009 (2nd)
CUB
Cuba
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
9/28/2001 (1st)
CUW
Curacao
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CYM
Cayman Islands
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
CYP
Cyprus
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
CZE
Czech Republic
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11/30/2009 (5th)
DEU
Germany
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2/11/2010 (5th)
DJI
Djibouti
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
6/2/2002 (1st)
DMA
Dominica
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12/4/2001 (1st)
DNK
Denmark
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1/11/2010 (5th)
DOM
Dominican Republic
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11/17/2009 (2nd)
DZA
Algeria
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11/25/2010 (2nd)
EAP
East Asia & Pacific
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ECA
Europe & Central Asia
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ECU
Ecuador
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11/15/2000 (1st)
EGY
Egypt, Arab Rep.
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
6/7/2010 (2nd)
EMU
Euro area
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ERI
Eritrea
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
9/16/2002 (1st)
ESP
Spain
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12/18/2009 (5th)
EST
Estonia
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2/12/2010 (5th)
ETH
Ethiopia
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10/16/2001 (1st)
FIN
Finland
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12/23/2009 (5th)
FJI
Fiji
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5/18/2006 (1st)
FRA
France
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2/8/2010 (5th)
FRO
Faeroe Islands
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
FSM
Micronesia, Fed. Sts.
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10/30/1999 (1st)
GAB
Gabon
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12/22/2004 (1st)
GBR
United Kingdom
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
6/12/2009 (5th)
GEO
Georgia
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10/2/2009 (2nd)
GHA
Ghana
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5/2/2001 (1st)
GIB
Gibraltar
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GIN
Guinea
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10/28/2002 (1st)
GMB
Gambia, The
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10/6/2003 (1st)
GNB
Guinea-Bissau
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12/1/2005 (1st)
GNQ
Equatorial Guinea
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GRC
Greece
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1/18/2010 (5th)
GRD
Grenada
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11/21/2000 (1st)
GRL
Greenland
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GTM
Guatemala
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2/1/2002 (1st)
GUM
Guam
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
GUY
Guyana
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5/16/2002 (1st)
HIC
High income
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
HKG
Hong Kong SAR, China
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
HND
Honduras
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11/15/2000 (1st)
HRV
Croatia
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
HTI
Haiti
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1/3/2002 (1st)
HUN
Hungary
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12/10/2009 (5th)
IDN
Indonesia
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10/27/1999 (1st)
IMY
Isle of Man
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
IND
India
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
6/22/2004 (1st)
IRL
Ireland
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3/3/2010 (5th)
IRN
Iran, Islamic Rep.
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3/31/2003 (1st)
IRQ
Iraq
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ISL
Iceland
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3/12/2010 (5th)
ISR
Israel
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12/7/2010 (2nd)
ITA
Italy
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3/17/2010 (5th)
JAM
Jamaica
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11/21/2000 (1st)
JOR
Jordan
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11/8/2009 (2nd)
JPN
Japan
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12/21/2009 (5th)
KAZ
Kazakhstan
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
6/4/2009 (2nd)
KEN
Kenya
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10/22/2002 (1st)
KGZ
Kyrgyz Republic
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
6/4/2009 (2nd)
KHM
Cambodia
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10/8/2002 (1st)
KIR
Kiribati
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10/30/1999 (1st)
KNA
St. Kitts and Nevis
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11/30/2001 (1st)
KOR
Korea, Rep.
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12/1/2003 (2nd)
KSV
Kosovo
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
KWT
Kuwait
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
LAC
Latin America & Caribbean
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LAO
Lao PDR
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11/2/2000 (1st)
LBN
Lebanon
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3/31/2011 (2nd)
LBR
Liberia
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
LBY
Libya
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
LCA
St. Lucia
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11/30/2001 (1st)
LIC
Low income
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LIE
Liechtenstein
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1/25/2010 (5th)
LKA
Sri Lanka
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11/6/2000 (1st)
LMC
Lower middle income
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LMY
Low & middle income
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LSO
Lesotho
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
4/17/2000 (1st)
LTU
Lithuania
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2/22/2010 (5th)
LUX
Luxembourg
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2/14/2010 (5th)
LVA
Latvia
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3/16/2010 (5th)
MAC
Macao SAR, China
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MAF
St. Martin (French part)
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MAR
Morocco
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11/3/2010 (2nd)
MCO
Monaco
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3/25/2011 (5th)
MDA
Moldova
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1/27/2010 (2nd)
MDG
Madagascar
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12/7/2010 (2nd)
MDV
Maldives
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11/5/2001 (1st)
MEX
Mexico
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
4/20/2010 (4th)
MHL
Marshall Islands
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11/24/2000 (1st)
MIC
Middle income
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MKD
Macedonia, FYR
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1/15/2009 (2nd)
MLI
Mali
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11/13/2000 (1st)
MLT
Malta
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
7/27/2010 (2nd)
MMR
Myanmar
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MNA
Middle East & North Africa
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MNE
Montenegro
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10/12/2010 (1st)
MNG
Mongolia
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12/10/2010 (2nd)
MNP
Northern Mariana Islands
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MOZ
Mozambique
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
6/2/2006 (1st)
MRT
Mauritania
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12/6/2008 (2nd)
MUS
Mauritius
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5/28/1999 (1st)
MWI
Malawi
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12/2/2003 (1st)
MYS
Malaysia
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
4/14/2011 (2nd)
MYT
Mayotte
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NAM
Namibia
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10/7/2002 (1st)
NCL
New Caledonia
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
NER
Niger
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12/9/2009 (2nd)
NGA
Nigeria
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11/17/2003 (1st)
NIC
Nicaragua
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
6/22/2011 (2nd)
NIU
Niue
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10/2/2001 (1st)
NLD
Netherlands
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12/19/2009 (5th)
NOR
Norway
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1/22/2010 (5th)
NPL
Nepal
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
9/1/2004 (1st)
NRU
Nauru
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10/30/1999 (1st)
NZL
New Zealand
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12/23/2009 (5th)
OMN
Oman
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
PAK
Pakistan
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11/15/2003 (1st)
PAN
Panama
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
7/20/2001 (1st)
PER
Peru
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
9/28/2010 (2nd)
PHL
Philippines
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5/19/2000 (1st)
PLW
Palau
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
6/18/2003 (1st)
PNG
Papua New Guinea
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2/27/2002 (1st)
POL
Poland
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3/12/2010 (5th)
PRI
Puerto Rico
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
PRK
Korea, Dem. Rep.
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5/7/2004 (1st)
PRT
Portugal
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
6/11/2010 (5th)
PRY
Paraguay
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
4/10/2002 (1st)
PYF
French Polynesia
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
QAT
Qatar
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
6/20/2011 (1st)
ROM
Romania
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2/15/2010 (5th)
RUS
Russian Federation
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3/16/2010 (5th)
RWA
Rwanda
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
9/6/2005 (1st)
SAS
South Asia
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SAU
Saudi Arabia
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11/29/2005 (1st)
SDN
Sudan
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
6/7/2003 (1st)
SEN
Senegal
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
9/16/2010 (2nd)
SGP
Singapore
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11/12/2010 (2nd)
SID
Small island developing states
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SLB
Solomon Islands
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
9/29/2004 (1st)
SLE
Sierra Leone
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1/8/2007 (1st)
SLV
El Salvador
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
4/10/2000 (1st)
SMR
San Marino
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
8/24/2009 (1st)
SOM
Somalia
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SRB
Serbia
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11/29/2010 (1st)
SSA
Sub-Saharan Africa
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
STP
Sao Tome and Principe
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5/19/2005 (1st)
SUR
Suriname
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3/27/2006 (1st)
SVK
Slovak Republic
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2/15/2010 (5th)
SVN
Slovenia
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
4/6/2010 (5th)
SWE
Sweden
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2/4/2010 (5th)
SWZ
Swaziland
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5/21/2002 (1st)
SXM
Sint Maarten (Dutch part)
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SYC
Seychelles
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11/15/2020 (1st)
SYR
Syrian Arab Republic
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12/29/2010 (1st)
TCA
Turks and Caicos Islands
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
TCD
Chad
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10/29/2001 (1st)
TGO
Togo
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
7/21/2005 (1st)
THA
Thailand
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3/24/2011 (2nd)
TJK
Tajikistan
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12/31/2008 (2nd)
TKM
Turkmenistan
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11/29/2010 (2nd)
TMP
Timor-Leste
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12/20/2001 (1st)
TON
Tonga
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11/30/2001 (1st)
TTO
Trinidad and Tobago
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11/30/2001 (1st)
TUN
Tunisia
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10/27/2001 (1st)
TUR
Turkey
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2/20/2007 (4th)
TUV
Tuvalu
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10/30/1999 (1st)
TZA
Tanzania
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
7/4/2003 (1st)
UGA
Uganda
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10/26/2002 (1st)
UKR
Ukraine
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2/8/2010 (5th)
UMC
Upper middle income
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
URY
Uruguay
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11/18/2010 (3rd)
USA
United States
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5/28/2010 (5th)
UZB
Uzbekistan
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12/3/2008 (2nd)
VCT
St. Vincent and the Grenadines
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11/21/2000 (1st)
VEN
Venezuela, RB
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10/13/2005 (1st)
VIR
Virgin Islands (U.S.)
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
VNM
Vietnam
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12/7/2010 (2nd)
VUT
Vanuatu
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10/30/1999 (1st)
WBG
West Bank and Gaza
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
WLD
World
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
WSM
Samoa
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
6/14/2010 (2nd)
YEM
Yemen, Rep.
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10/29/2001 (1st)
ZAF
South Africa
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12/11/2003 (1st)
ZAR
Congo, Dem. Rep.
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11/28/2009 (2nd)
ZMB
Zambia
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
8/18/2004 (1st)
ZWE
Zimbabwe
EN.CLC.NCOM
Latest UNFCCC national communication
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5/25/1998 (1st)
ABW
Aruba
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.5 to 2.1
ADO
Andorra
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.8 to 2.8
AFG
Afghanistan
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.3 to 3.6
AGO
Angola
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.1 to 2.7
ALB
Albania
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.9 to 2.9
ARE
United Arab Emirates
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.2 to 2.8
ARG
Argentina
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.4 to 2.1
ARM
Armenia
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.1 to 3.3
ASM
American Samoa
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.3 to 1.6
ATG
Antigua and Barbuda
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.3 to 1.7
AUS
Australia
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.7 to 2.4
AUT
Austria
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.9 to 2.9
AZE
Azerbaijan
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.9 to 3.1
BDI
Burundi
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.1 to 2.4
BEL
Belgium
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.4 to 2.4
BEN
Benin
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.0 to 2.5
BFA
Burkina Faso
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.2 to 2.8
BGD
Bangladesh
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.7 to 2.4
BGR
Bulgaria
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.9 to 3.1
BHR
Bahrain
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.1 to 3.0
BHS
Bahamas, The
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.4 to 1.7
BIH
Bosnia and Herzegovina
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.9 to 3.0
BLR
Belarus
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.2 to 3.1
BLZ
Belize
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.7 to 2.6
BMU
Bermuda
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.3 to 1.7
BOL
Bolivia
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.1 to 3.0
BRA
Brazil
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.9 to 2.6
BRB
Barbados
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.4 to 1.7
BRN
Brunei Darussalam
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.5 to 1.9
BTN
Bhutan
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.9 to 3.0
BWA
Botswana
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.5 to 3.3
CAF
Central African Republic
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.1 to 2.4
CAN
Canada
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.6 to 3.5
CHE
Switzerland
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.7 to 2.8
CHI
Channel Islands
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
CHL
Chile
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.2 to 1.9
CHN
China
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.1 to 3.0
CIV
Cote d'Ivoire
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.8 to 2.4
CMR
Cameroon
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.1 to 2.4
COG
Congo, Rep.
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.0 to 2.3
COK
Cook Islands
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.3 to 1.7
COL
Colombia
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.8 to 2.5
COM
Comoros
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.5 to 1.8
CPV
Cape Verde
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.4 to 1.8
CRI
Costa Rica
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.6 to 2.3
CUB
Cuba
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.4 to 1.8
CUW
Curacao
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
CYM
Cayman Islands
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.4 to 1.8
CYP
Cyprus
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.7 to 2.3
CZE
Czech Republic
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.9 to 2.8
DEU
Germany
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.7 to 2.6
DJI
Djibouti
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.0 to 2.7
DMA
Dominica
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.3 to 1.7
DNK
Denmark
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.6 to 2.5
DOM
Dominican Republic
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.5 to 1.8
DZA
Algeria
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.4 to 3.0
EAP
East Asia & Pacific
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ECA
Europe & Central Asia
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ECU
Ecuador
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.8 to 2.3
EGY
Egypt, Arab Rep.
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.9 to 2.4
EMU
Euro area
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ERI
Eritrea
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.1 to 2.7
ESP
Spain
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.5 to 2.6
EST
Estonia
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.2 to 3.2
ETH
Ethiopia
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.1 to 2.5
FIN
Finland
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.4 to 3.7
FJI
Fiji
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.3 to 1.7
FRA
France
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.6 to 2.6
FRO
Faeroe Islands
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0.6 to 1.6
FSM
Micronesia, Fed. Sts.
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.4 to 1.7
GAB
Gabon
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.8 to 2.2
GBR
United Kingdom
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.1 to 1.8
GEO
Georgia
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.9 to 3.0
GHA
Ghana
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.8 to 2.4
GIB
Gibraltar
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.8 to 2.7
GIN
Guinea
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.0 to 2.6
GMB
Gambia, The
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.1 to 2.7
GNB
Guinea-Bissau
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.8 to 2.2
GNQ
Equatorial Guinea
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.8 to 2.1
GRC
Greece
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.7 to 2.6
GRD
Grenada
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.5 to 1.9
GRL
Greenland
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.9 to 3.0
GTM
Guatemala
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.7 to 2.8
GUM
Guam
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.3 to 1.7
GUY
Guyana
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.9 to 3.0
HIC
High income
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
HKG
Hong Kong SAR, China
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.4 to 1.9
HND
Honduras
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.6 to 2.6
HRV
Croatia
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.9 to 2.9
HTI
Haiti
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.5 to 1.8
HUN
Hungary
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.0 to 3.0
IDN
Indonesia
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.5 to 1.8
IMY
Isle of Man
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.3 to 1.8
IND
India
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.9 to 2.6
IRL
Ireland
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0.9 to 1.4
IRN
Iran, Islamic Rep.
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.2 to 3.3
IRQ
Iraq
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.3 to 3.2
ISL
Iceland
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0.9 to 2.3
ISR
Israel
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.9 to 2.7
ITA
Italy
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.8 to 2.6
JAM
Jamaica
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.3 to 1.8
JOR
Jordan
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.1 to 2.9
JPN
Japan
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.8 to 2.3
KAZ
Kazakhstan
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.2 to 3.1
KEN
Kenya
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.9 to 2.1
KGZ
Kyrgyz Republic
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.3 to 3.2
KHM
Cambodia
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.6 to 2.0
KIR
Kiribati
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.6 to 2.0
KNA
St. Kitts and Nevis
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.3 to 1.8
KOR
Korea, Rep.
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.8 to 2.3
KSV
Kosovo
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.0 to 3.1
KWT
Kuwait
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.2 to 3.1
LAC
Latin America & Caribbean
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LAO
Lao PDR
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.6 to 2.4
LBN
Lebanon
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.0 to 2.9
LBR
Liberia
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.7 to 2.2
LBY
Libya
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.0 to 2.4
LCA
St. Lucia
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.4 to 1.7
LIC
Low income
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LIE
Liechtenstein
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.7 to 2.8
LKA
Sri Lanka
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.5 to 1.8
LMC
Lower middle income
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LMY
Low & middle income
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LSO
Lesotho
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.0 to 2.5
LTU
Lithuania
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.0 to 3.0
LUX
Luxembourg
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.5 to 2.5
LVA
Latvia
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.1 to 3.1
MAC
Macao SAR, China
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.4 to 1.9
MAF
St. Martin (French part)
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MAR
Morocco
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.1 to 3.0
MCO
Monaco
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.8 to 2.7
MDA
Moldova
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.0 to 3.3
MDG
Madagascar
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.7 to 2.1
MDV
Maldives
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.5 to 1.8
MEX
Mexico
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.7 to 2.8
MHL
Marshall Islands
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.4 to 1.8
MIC
Middle income
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MKD
Macedonia, FYR
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.9 to 3.0
MLI
Mali
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.5 to 3.1
MLT
Malta
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.7 to 2.1
MMR
Myanmar
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.7 to 2.3
MNA
Middle East & North Africa
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MNE
Montenegro
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.9 to 2.9
MNG
Mongolia
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.3 to 3.1
MNP
Northern Mariana Islands
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.4 to 1.8
MOZ
Mozambique
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.9 to 2.4
MRT
Mauritania
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.4 to 3.1
MUS
Mauritius
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.3 to 1.7
MWI
Malawi
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.0 to 2.5
MYS
Malaysia
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.6 to 1.9
MYT
Mayotte
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.5 to 1.8
NAM
Namibia
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.2 to 2.9
NCL
New Caledonia
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.4 to 1.7
NER
Niger
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.4 to 2.8
NGA
Nigeria
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.0 to 2.5
NIC
Nicaragua
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.6 to 2.4
NIU
Niue
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.3 to 1.7
NLD
Netherlands
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.4 to 2.3
NOR
Norway
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.8 to 3.3
NPL
Nepal
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.2 to 3.4
NRU
Nauru
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.3 to 2.1
NZL
New Zealand
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.1 to 1.7
OMN
Oman
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.0 to 2.4
PAK
Pakistan
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.4 to 3.4
PAN
Panama
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.6 to 2.2
PER
Peru
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.1 to 2.7
PHL
Philippines
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.4 to 1.8
PLW
Palau
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.4 to 1.7
PNG
Papua New Guinea
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.4 to 1.8
POL
Poland
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.9 to 2.8
PRI
Puerto Rico
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.4 to 1.8
PRK
Korea, Dem. Rep.
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.1 to 2.7
PRT
Portugal
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.3 to 2.3
PRY
Paraguay
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.9 to 2.6
PYF
French Polynesia
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.3 to 1.7
QAT
Qatar
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.3 to 2.9
ROM
Romania
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.0 to 3.1
RUS
Russian Federation
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.6 to 3.7
RWA
Rwanda
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.1 to 2.4
SAS
South Asia
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SAU
Saudi Arabia
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.3 to 2.9
SDN
Sudan
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.1 to 2.6
SEN
Senegal
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.0 to 2.7
SGP
Singapore
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.5 to 1.8
SID
Small island developing states
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SLB
Solomon Islands
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.4 to 1.7
SLE
Sierra Leone
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.8 to 2.3
SLV
El Salvador
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.7 to 2.9
SMR
San Marino
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.9 to 3.0
SOM
Somalia
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.9 to 2.2
SRB
Serbia
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.0 to 3.1
SSA
Sub-Saharan Africa
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
STP
Sao Tome and Principe
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.5 to 2.0
SUR
Suriname
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.9 to 2.9
SVK
Slovak Republic
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.0 to 2.9
SVN
Slovenia
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.0 to 3.0
SWE
Sweden
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.1 to 3.1
SWZ
Swaziland
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.0 to 2.4
SXM
Sint Maarten (Dutch part)
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SYC
Seychelles
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.5 to 1.8
SYR
Syrian Arab Republic
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.2 to 3.1
TCA
Turks and Caicos Islands
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.4 to 1.7
TCD
Chad
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.3 to 2.6
TGO
Togo
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.9 to 2.5
THA
Thailand
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.7 to 2.1
TJK
Tajikistan
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.3 to 3.4
TKM
Turkmenistan
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.8 to 3.0
TMP
Timor-Leste
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.3 to 1.7
TON
Tonga
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.3 to 1.7
TTO
Trinidad and Tobago
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.5 to 2.1
TUN
Tunisia
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.9 to 2.6
TUR
Turkey
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.9 to 2.9
TUV
Tuvalu
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.4 to 1.9
TZA
Tanzania
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.9 to 2.2
UGA
Uganda
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.1 to 2.3
UKR
Ukraine
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.1 to 3.0
UMC
Upper middle income
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
URY
Uruguay
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.4 to 1.8
USA
United States
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.0 to 3.0
UZB
Uzbekistan
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.0 to 3.0
VCT
St. Vincent and the Grenadines
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.4 to 1.7
VEN
Venezuela, RB
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.8 to 2.9
VIR
Virgin Islands (U.S.)
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.3 to 1.7
VNM
Vietnam
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.4 to 2.1
VUT
Vanuatu
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.3 to 1.7
WBG
West Bank and Gaza
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.0 to 2.6
WLD
World
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
WSM
Samoa
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.3 to 1.6
YEM
Yemen, Rep.
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.0 to 2.6
ZAF
South Africa
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.9 to 2.7
ZAR
Congo, Dem. Rep.
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.1 to 2.4
ZMB
Zambia
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.1 to 2.7
ZWE
Zimbabwe
EN.CLC.PCAT.C
Projected annual temperature change (2045-2065, Celsius)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.2 to 2.9
ABW
Aruba
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.9 / -3.0
ADO
Andorra
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.8 / -1.6
AFG
Afghanistan
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.4 / -1.5
AGO
Angola
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.2 / -2.6
ALB
Albania
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.5 / -1.4
ARE
United Arab Emirates
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.6 / -2.0
ARG
Argentina
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.2 / -1.3
ARM
Armenia
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.3 / -1.4
ASM
American Samoa
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.8 / -2.8
ATG
Antigua and Barbuda
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-3.0 / -3.0
AUS
Australia
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.8 / -1.9
AUT
Austria
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.4 / -1.5
AZE
Azerbaijan
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.3 / -1.3
BDI
Burundi
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.1 / -2.8
BEL
Belgium
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.4 / -1.5
BEN
Benin
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.3 / -2.6
BFA
Burkina Faso
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.1 / -2.6
BGD
Bangladesh
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.7 / -2.1
BGR
Bulgaria
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.4 / -1.3
BHR
Bahrain
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.5 / -1.9
BHS
Bahamas, The
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.0 / -1.9
BIH
Bosnia and Herzegovina
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.5 / -1.5
BLR
Belarus
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.5 / -1.7
BLZ
Belize
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.5 / -1.6
BMU
Bermuda
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.0 / -2.1
BOL
Bolivia
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.0 / -2.1
BRA
Brazil
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.1 / -2.5
BRB
Barbados
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-3.0 / -2.9
BRN
Brunei Darussalam
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.4 / -2.8
BTN
Bhutan
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.0 / -2.1
BWA
Botswana
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.8 / -2.1
CAF
Central African Republic
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.3 / -2.4
CAN
Canada
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.6 / -1.7
CHE
Switzerland
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.4 / -1.5
CHI
Channel Islands
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
CHL
Chile
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.7 / -1.7
CHN
China
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.5 / -1.6
CIV
Cote d'Ivoire
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.4 / -2.5
CMR
Cameroon
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.4 / -2.4
COG
Congo, Rep.
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.3 / -2.7
COK
Cook Islands
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.6 / -2.6
COL
Colombia
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.4 / -2.9
COM
Comoros
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-3.0 / -3.0
CPV
Cape Verde
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.9 / -2.9
CRI
Costa Rica
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.8 / -3.0
CUB
Cuba
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.9 / -1.8
CUW
Curacao
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
CYM
Cayman Islands
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.9 / -1.7
CYP
Cyprus
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.9 / -1.8
CZE
Czech Republic
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.5 / -1.6
DEU
Germany
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.5 / -1.5
DJI
Djibouti
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.3 / -2.6
DMA
Dominica
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-3.0 / -2.9
DNK
Denmark
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.6 / -1.7
DOM
Dominican Republic
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.8 / -2.9
DZA
Algeria
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.7 / -2.0
EAP
East Asia & Pacific
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ECA
Europe & Central Asia
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ECU
Ecuador
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.6 / -2.8
EGY
Egypt, Arab Rep.
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.7 / -2.1
EMU
Euro area
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ERI
Eritrea
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.0 / -2.4
ESP
Spain
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.9 / -1.8
EST
Estonia
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.7 / -1.8
ETH
Ethiopia
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.0 / -2.7
FIN
Finland
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.7 / -1.9
FJI
Fiji
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.7 / -2.7
FRA
France
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.5 / -1.5
FRO
Faeroe Islands
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.3 / -1.5
FSM
Micronesia, Fed. Sts.
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-3.0 / -3.0
GAB
Gabon
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.6 / -2.9
GBR
United Kingdom
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.4 / -1.5
GEO
Georgia
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.3 / -1.3
GHA
Ghana
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.4 / -2.5
GIB
Gibraltar
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.9 / -1.9
GIN
Guinea
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.4 / -2.5
GMB
Gambia, The
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.3 / -2.6
GNB
Guinea-Bissau
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.7 / -2.7
GNQ
Equatorial Guinea
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.8 / -2.9
GRC
Greece
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.7 / -1.7
GRD
Grenada
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-3.0 / -3.0
GRL
Greenland
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.5 / -1.7
GTM
Guatemala
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.7 / -1.7
GUM
Guam
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-3.0 / -3.0
GUY
Guyana
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.5 / -3.0
HIC
High income
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
HKG
Hong Kong SAR, China
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.2 / -1.4
HND
Honduras
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.2 / -2.5
HRV
Croatia
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.6 / -1.6
HTI
Haiti
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.8 / -2.8
HUN
Hungary
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.5 / -1.7
IDN
Indonesia
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.8 / -2.9
IMY
Isle of Man
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.3 / -1.4
IND
India
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.0 / -2.2
IRL
Ireland
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.3 / -1.4
IRN
Iran, Islamic Rep.
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.4 / -1.4
IRQ
Iraq
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.5 / -1.5
ISL
Iceland
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.4 / -1.5
ISR
Israel
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.6 / -1.8
ITA
Italy
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.8 / -1.8
JAM
Jamaica
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.9 / -2.8
JOR
Jordan
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.5 / -1.6
JPN
Japan
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.9 / -2.2
KAZ
Kazakhstan
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.2 / -1.4
KEN
Kenya
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.0 / -2.9
KGZ
Kyrgyz Republic
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.2 / -1.4
KHM
Cambodia
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.8 / -1.7
KIR
Kiribati
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.4 / -2.4
KNA
St. Kitts and Nevis
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-3.0 / -3.0
KOR
Korea, Rep.
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.4 / -1.8
KSV
Kosovo
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.5 / -1.3
KWT
Kuwait
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.5 / -1.7
LAC
Latin America & Caribbean
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LAO
Lao PDR
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.1 / -1.3
LBN
Lebanon
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.7 / -1.6
LBR
Liberia
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.7 / -2.7
LBY
Libya
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.7 / -2.1
LCA
St. Lucia
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-3.0 / -2.9
LIC
Low income
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LIE
Liechtenstein
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.4 / -1.5
LKA
Sri Lanka
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.8 / -2.9
LMC
Lower middle income
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LMY
Low & middle income
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LSO
Lesotho
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.6 / -1.9
LTU
Lithuania
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.6 / -1.8
LUX
Luxembourg
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.4 / -1.4
LVA
Latvia
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.7 / -1.8
MAC
Macao SAR, China
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.2 / -1.4
MAF
St. Martin (French part)
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MAR
Morocco
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.8 / -2.0
MCO
Monaco
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.6 / -1.7
MDA
Moldova
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.5 / -1.6
MDG
Madagascar
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.5 / -2.7
MDV
Maldives
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-3.0 / -3.0
MEX
Mexico
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.6 / -1.5
MHL
Marshall Islands
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-3.0 / -3.0
MIC
Middle income
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MKD
Macedonia, FYR
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.4 / -1.3
MLI
Mali
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.0 / -2.5
MLT
Malta
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.2 / -2.3
MMR
Myanmar
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.7 / -1.8
MNA
Middle East & North Africa
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MNE
Montenegro
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.6 / -1.5
MNG
Mongolia
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.3 / -1.4
MNP
Northern Mariana Islands
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-3.0 / -2.9
MOZ
Mozambique
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.2 / -2.5
MRT
Mauritania
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.0 / -2.4
MUS
Mauritius
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.9 / -2.9
MWI
Malawi
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.1 / -2.5
MYS
Malaysia
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.5 / -2.8
MYT
Mayotte
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-3.0 / -3.0
NAM
Namibia
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.9 / -2.2
NCL
New Caledonia
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.9 / -2.8
NER
Niger
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.8 / -2.4
NGA
Nigeria
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.2 / -2.5
NIC
Nicaragua
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.6 / -2.8
NIU
Niue
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.7 / -2.7
NLD
Netherlands
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.6 / -1.6
NOR
Norway
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.8 / -1.8
NPL
Nepal
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.1 / -2.1
NRU
Nauru
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-3.0 / -2.9
NZL
New Zealand
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.2 / -2.1
OMN
Oman
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.9 / -2.1
PAK
Pakistan
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.8 / -1.9
PAN
Panama
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.9 / -3.0
PER
Peru
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.5 / -2.7
PHL
Philippines
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.5 / -2.5
PLW
Palau
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-3.0 / -3.0
PNG
Papua New Guinea
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.8 / -2.9
POL
Poland
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.5 / -1.7
PRI
Puerto Rico
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-3.0 / -2.9
PRK
Korea, Dem. Rep.
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.4 / -1.8
PRT
Portugal
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.0 / -1.9
PRY
Paraguay
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-0.8 / -1.2
PYF
French Polynesia
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.9 / -2.8
QAT
Qatar
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.6 / -1.9
ROM
Romania
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.5 / -1.6
RUS
Russian Federation
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.6 / -1.8
RWA
Rwanda
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.2 / -2.8
SAS
South Asia
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SAU
Saudi Arabia
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.5 / -1.7
SDN
Sudan
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.8 / -2.2
SEN
Senegal
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.3 / -2.6
SGP
Singapore
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.6 / -2.7
SID
Small island developing states
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SLB
Solomon Islands
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-3.0 / -3.0
SLE
Sierra Leone
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.7 / -2.6
SLV
El Salvador
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.2 / -2.3
SMR
San Marino
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.5 / -1.4
SOM
Somalia
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.2 / -2.8
SRB
Serbia
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.5 / -1.4
SSA
Sub-Saharan Africa
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
STP
Sao Tome and Principe
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-3.0 / -3.0
SUR
Suriname
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.4 / -3.0
SVK
Slovak Republic
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.5 / -1.8
SVN
Slovenia
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.4 / -1.5
SWE
Sweden
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.7 / -1.8
SWZ
Swaziland
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.6 / -2.1
SXM
Sint Maarten (Dutch part)
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SYC
Seychelles
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-3.0 / -3.0
SYR
Syrian Arab Republic
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.6 / -1.3
TCA
Turks and Caicos Islands
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.5 / -2.3
TCD
Chad
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.8 / -2.3
TGO
Togo
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.4 / -2.5
THA
Thailand
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.6 / -1.6
TJK
Tajikistan
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.4 / -1.5
TKM
Turkmenistan
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.0 / -1.1
TMP
Timor-Leste
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-3.0 / -3.0
TON
Tonga
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.7 / -2.8
TTO
Trinidad and Tobago
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.9 / -3.0
TUN
Tunisia
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.9 / -2.0
TUR
Turkey
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.5 / -1.4
TUV
Tuvalu
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-3.0 / -3.0
TZA
Tanzania
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.1 / -2.8
UGA
Uganda
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.1 / -2.8
UKR
Ukraine
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.4 / -1.6
UMC
Upper middle income
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
URY
Uruguay
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-0.8 / -1.0
USA
United States
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.4 / -1.5
UZB
Uzbekistan
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.1 / -1.3
VCT
St. Vincent and the Grenadines
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-3.0 / -3.0
VEN
Venezuela, RB
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.5 / -2.9
VIR
Virgin Islands (U.S.)
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-3.0 / -2.9
VNM
Vietnam
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.5 / -1.5
VUT
Vanuatu
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.8 / -2.8
WBG
West Bank and Gaza
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.7 / -1.8
WLD
World
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
WSM
Samoa
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.8 / -2.8
YEM
Yemen, Rep.
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.0 / -2.2
ZAF
South Africa
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.7 / -2.0
ZAR
Congo, Dem. Rep.
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.1 / -2.7
ZMB
Zambia
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2.0 / -2.5
ZWE
Zimbabwe
EN.CLC.PCCC
Projected change in annual cool days/cold nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1.9 / -2.3
ABW
Aruba
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
13.7 / 26.9
ADO
Andorra
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
4.0 / 7.2
AFG
Afghanistan
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.1 / 7.0
AGO
Angola
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
7.0 / 20.2
ALB
Albania
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.2 / 6.5
ARE
United Arab Emirates
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
4.2 / 9.4
ARG
Argentina
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.9 / 6.5
ARM
Armenia
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.8 / 6.3
ASM
American Samoa
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
16.3 / 25.4
ATG
Antigua and Barbuda
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12.8 / 23.2
AUS
Australia
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.6 / 9.3
AUT
Austria
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.9 / 5.2
AZE
Azerbaijan
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.7 / 6.2
BDI
Burundi
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
7.8 / 26.2
BEL
Belgium
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.9 / 5.5
BEN
Benin
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5.5 / 19.2
BFA
Burkina Faso
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5.3 / 16.6
BGD
Bangladesh
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.4 / 11.8
BGR
Bulgaria
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.9 / 6.0
BHR
Bahrain
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
4.6 / 8.6
BHS
Bahamas, The
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10.2 / 16.2
BIH
Bosnia and Herzegovina
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.1 / 6.1
BLR
Belarus
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.1 / 4.5
BLZ
Belize
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
8.3 / 21.2
BMU
Bermuda
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
6.5 / 8.6
BOL
Bolivia
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5.1 / 16.9
BRA
Brazil
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5.6 / 19.6
BRB
Barbados
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
13.7 / 23.6
BRN
Brunei Darussalam
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
15.5 / 26.8
BTN
Bhutan
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.9 / 8.7
BWA
Botswana
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
4.7 / 12.8
CAF
Central African Republic
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
4.7 / 22.5
CAN
Canada
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.9 / 4.4
CHE
Switzerland
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.1 / 5.6
CHI
Channel Islands
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
CHL
Chile
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.8 / 7.3
CHN
China
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.9 / 5.6
CIV
Cote d'Ivoire
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
7.1 / 22.9
CMR
Cameroon
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
6.2 / 22.0
COG
Congo, Rep.
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
9.1 / 26.5
COK
Cook Islands
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11.3 / 16.3
COL
Colombia
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
7.9 / 26.6
COM
Comoros
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12.2 / 19.2
CPV
Cape Verde
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
8.4 / 15.4
CRI
Costa Rica
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11.8 / 26.8
CUB
Cuba
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10.5 / 17.6
CUW
Curacao
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
CYM
Cayman Islands
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11.2 / 18.4
CYP
Cyprus
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
4.0 / 7.3
CZE
Czech Republic
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.5 / 4.7
DEU
Germany
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.6 / 5.0
DJI
Djibouti
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
7.1 / 16.1
DMA
Dominica
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
13.4 / 23.8
DNK
Denmark
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.6 / 5.2
DOM
Dominican Republic
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12.1 / 23.6
DZA
Algeria
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.9 / 7.8
EAP
East Asia & Pacific
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ECA
Europe & Central Asia
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ECU
Ecuador
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
9.5 / 24.4
EGY
Egypt, Arab Rep.
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
4.0 / 8.1
EMU
Euro area
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ERI
Eritrea
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
6.6 / 14.4
ESP
Spain
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
4.0 / 8.0
EST
Estonia
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.1 / 4.8
ETH
Ethiopia
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
6.6 / 21.4
FIN
Finland
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.7 / 4.1
FJI
Fiji
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10.0 / 17.5
FRA
France
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.6 / 6.3
FRO
Faeroe Islands
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.5 / 4.7
FSM
Micronesia, Fed. Sts.
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
26.4 / 27.4
GAB
Gabon
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
13.7 / 26.9
GBR
United Kingdom
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.0 / 5.4
GEO
Georgia
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.8 / 5.9
GHA
Ghana
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
6.6 / 22.1
GIB
Gibraltar
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.4 / 7.8
GIN
Guinea
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
6.9 / 20.2
GMB
Gambia, The
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
6.7 / 16.8
GNB
Guinea-Bissau
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
9.9 / 22.2
GNQ
Equatorial Guinea
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12.6 / 27.1
GRC
Greece
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.5 / 6.5
GRD
Grenada
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
15.1 / 25.9
GRL
Greenland
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.5 / 4.6
GTM
Guatemala
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
7.8 / 21.6
GUM
Guam
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
18.9 / 27.0
GUY
Guyana
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
8.9 / 26.3
HIC
High income
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
HKG
Hong Kong SAR, China
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
7.4 / 10.3
HND
Honduras
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10.2 / 24.5
HRV
Croatia
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.2 / 6.0
HTI
Haiti
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12.6 / 23.1
HUN
Hungary
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.0 / 5.3
IDN
Indonesia
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
16.5 / 26.7
IMY
Isle of Man
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.9 / 4.9
IND
India
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
4.6 / 13.3
IRL
Ireland
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.0 / 5.6
IRN
Iran, Islamic Rep.
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.3 / 7.1
IRQ
Iraq
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.4 / 6.8
ISL
Iceland
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.1 / 5.7
ISR
Israel
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.7 / 7.7
ITA
Italy
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
4.0 / 6.7
JAM
Jamaica
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
14.0 / 23.7
JOR
Jordan
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.7 / 7.4
JPN
Japan
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.5 / 6.0
KAZ
Kazakhstan
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.3 / 5.0
KEN
Kenya
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
8.1 / 25.0
KGZ
Kyrgyz Republic
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.1 / 6.6
KHM
Cambodia
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
4.5 / 18.2
KIR
Kiribati
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
13.6 / 23.6
KNA
St. Kitts and Nevis
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12.2 / 22.5
KOR
Korea, Rep.
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.2 / 5.2
KSV
Kosovo
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.1 / 6.3
KWT
Kuwait
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.9 / 7.4
LAC
Latin America & Caribbean
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LAO
Lao PDR
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.1 / 12.7
LBN
Lebanon
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.6 / 7.5
LBR
Liberia
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10.2 / 25.3
LBY
Libya
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.5 / 7.6
LCA
St. Lucia
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
14.1 / 24.1
LIC
Low income
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LIE
Liechtenstein
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.8 / 5.0
LKA
Sri Lanka
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
7.9 / 23.9
LMC
Lower middle income
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LMY
Low & middle income
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LSO
Lesotho
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.7 / 10.1
LTU
Lithuania
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.0 / 4.8
LUX
Luxembourg
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.9 / 5.0
LVA
Latvia
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.1 / 5.0
MAC
Macao SAR, China
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
7.4 / 10.3
MAF
St. Martin (French part)
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MAR
Morocco
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.6 / 7.9
MCO
Monaco
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
4.0 / 6.8
MDA
Moldova
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.8 / 5.2
MDG
Madagascar
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
7.6 / 15.7
MDV
Maldives
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
21.7 / 27.1
MEX
Mexico
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5.6 / 12.1
MHL
Marshall Islands
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20.8 / 27.1
MIC
Middle income
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MKD
Macedonia, FYR
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.2 / 6.4
MLI
Mali
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5.5 / 12.8
MLT
Malta
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5.0 / 7.4
MMR
Myanmar
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.8 / 13.9
MNA
Middle East & North Africa
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MNE
Montenegro
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.2 / 6.4
MNG
Mongolia
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.2 / 4.2
MNP
Northern Mariana Islands
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
17.5 / 26.4
MOZ
Mozambique
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5.0 / 15.0
MRT
Mauritania
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5.1 / 10.6
MUS
Mauritius
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
8.5 / 13.7
MWI
Malawi
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.6 / 15.9
MYS
Malaysia
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
13.0 / 26.3
MYT
Mayotte
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
13.1 / 19.8
NAM
Namibia
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5.8 / 13.1
NCL
New Caledonia
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
7.2 / 12.2
NER
Niger
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5.4 / 12.2
NGA
Nigeria
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5.5 / 19.0
NIC
Nicaragua
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10.4 / 26.0
NIU
Niue
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
8.7 / 15.1
NLD
Netherlands
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.9 / 5.3
NOR
Norway
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.2 / 4.8
NPL
Nepal
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.5 / 8.0
NRU
Nauru
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
17.7 / 25.9
NZL
New Zealand
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
4.1 / 7.9
OMN
Oman
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
4.4 / 11.8
PAK
Pakistan
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.4 / 8.1
PAN
Panama
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
14.0 / 26.9
PER
Peru
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
7.7 / 22.9
PHL
Philippines
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
13.5 / 23.8
PLW
Palau
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
25.4 / 27.2
PNG
Papua New Guinea
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
15.5 / 25.5
POL
Poland
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.3 / 4.8
PRI
Puerto Rico
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12.8 / 24.2
PRK
Korea, Dem. Rep.
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.6 / 4.6
PRT
Portugal
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
4.5 / 8.7
PRY
Paraguay
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.5 / 11.8
PYF
French Polynesia
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
16.4 / 24.5
QAT
Qatar
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
4.6 / 8.8
ROM
Romania
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.0 / 5.5
RUS
Russian Federation
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1.7 / 4.0
RWA
Rwanda
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
8.3 / 26.4
SAS
South Asia
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SAU
Saudi Arabia
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
4.6 / 9.5
SDN
Sudan
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5.2 / 16.6
SEN
Senegal
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
7.1 / 16.9
SGP
Singapore
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12.4 / 25.9
SID
Small island developing states
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SLB
Solomon Islands
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
21.6 / 27.0
SLE
Sierra Leone
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
9.2 / 24.0
SLV
El Salvador
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
8.9 / 24.5
SMR
San Marino
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.6 / 6.2
SOM
Somalia
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
9.5 / 21.2
SRB
Serbia
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.2 / 6.1
SSA
Sub-Saharan Africa
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
STP
Sao Tome and Principe
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
20.0 / 27.0
SUR
Suriname
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
9.9 / 26.6
SVK
Slovak Republic
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.6 / 4.7
SVN
Slovenia
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.1 / 5.6
SWE
Sweden
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.0 / 4.4
SWZ
Swaziland
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.8 / 10.9
SXM
Sint Maarten (Dutch part)
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SYC
Seychelles
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
17.5 / 24.7
SYR
Syrian Arab Republic
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.3 / 6.7
TCA
Turks and Caicos Islands
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10.9 / 18.5
TCD
Chad
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5.1 / 13.7
TGO
Togo
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
6.0 / 21.5
THA
Thailand
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.6 / 17.0
TJK
Tajikistan
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.2 / 7.0
TKM
Turkmenistan
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.7 / 5.7
TMP
Timor-Leste
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
16.1 / 25.9
TON
Tonga
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
8.4 / 14.0
TTO
Trinidad and Tobago
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
14.7 / 26.5
TUN
Tunisia
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.4 / 6.8
TUR
Turkey
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.1 / 6.3
TUV
Tuvalu
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
24.0 / 27.3
TZA
Tanzania
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
6.2 / 21.6
UGA
Uganda
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
6.4 / 25.6
UKR
Ukraine
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.6 / 4.8
UMC
Upper middle income
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
URY
Uruguay
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.0 / 5.7
USA
United States
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.1 / 6.4
UZB
Uzbekistan
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
2.6 / 5.7
VCT
St. Vincent and the Grenadines
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
14.5 / 24.6
VEN
Venezuela, RB
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
9.1 / 26.5
VIR
Virgin Islands (U.S.)
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
12.4 / 23.3
VNM
Vietnam
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5.7 / 14.4
VUT
Vanuatu
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
10.4 / 18.7
WBG
West Bank and Gaza
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.8 / 7.9
WLD
World
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
WSM
Samoa
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
15.5 / 24.9
YEM
Yemen, Rep.
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
5.6 / 13.1
ZAF
South Africa
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
4.1 / 10.4
ZAR
Congo, Dem. Rep.
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
6.4 / 24.7
ZMB
Zambia
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
4.0 / 17.7
ZWE
Zimbabwe
EN.CLC.PCHW
Projected change in annual hot days/warm nights
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
3.8 / 13.2
ABW
Aruba
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-121 to 24
ADO
Andorra
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-113 to -22
AFG
Afghanistan
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-58 to 13
AGO
Angola
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-89 to 75
ALB
Albania
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-147 to -44
ARE
United Arab Emirates
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-26 to 17
ARG
Argentina
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-57 to 52
ARM
Armenia
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-75 to -7
ASM
American Samoa
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-40 to 237
ATG
Antigua and Barbuda
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-104 to 37
AUS
Australia
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-67 to 54
AUT
Austria
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-70 to 27
AZE
Azerbaijan
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-58 to 3
BDI
Burundi
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-21 to 206
BEL
Belgium
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-64 to 29
BEN
Benin
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-207 to 97
BFA
Burkina Faso
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-229 to 88
BGD
Bangladesh
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-126 to 120
BGR
Bulgaria
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-127 to -21
BHR
Bahrain
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-19 to 4
BHS
Bahamas, The
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-96 to 74
BIH
Bosnia and Herzegovina
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-116 to -7
BLR
Belarus
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
8 to 70
BLZ
Belize
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-189 to 16
BMU
Bermuda
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-97 to 60
BOL
Bolivia
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-91 to 137
BRA
Brazil
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-95 to 136
BRB
Barbados
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-154 to 14
BRN
Brunei Darussalam
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-185 to 111
BTN
Bhutan
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-112 to 298
BWA
Botswana
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-106 to 24
CAF
Central African Republic
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-73 to 100
CAN
Canada
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
17 to 88
CHE
Switzerland
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-89 to 11
CHI
Channel Islands
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
CHL
Chile
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-118 to 24
CHN
China
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-37 to 86
CIV
Cote d'Ivoire
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-125 to 73
CMR
Cameroon
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-71 to 115
COG
Congo, Rep.
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-40 to 134
COK
Cook Islands
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-57 to 174
COL
Colombia
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-80 to 199
COM
Comoros
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-9 to 140
CPV
Cape Verde
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-32 to 12
CRI
Costa Rica
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-239 to 60
CUB
Cuba
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-108 to 39
CUW
Curacao
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
CYM
Cayman Islands
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-122 to 39
CYP
Cyprus
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-98 to -44
CZE
Czech Republic
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-43 to 55
DEU
Germany
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-38 to 57
DJI
Djibouti
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-29 to 57
DMA
Dominica
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-106 to 42
DNK
Denmark
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
21 to 87
DOM
Dominican Republic
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-128 to 30
DZA
Algeria
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-39 to 4
EAP
East Asia & Pacific
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ECA
Europe & Central Asia
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ECU
Ecuador
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
22 to 273
EGY
Egypt, Arab Rep.
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-20 to 1
EMU
Euro area
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ERI
Eritrea
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-55 to 26
ESP
Spain
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-112 to -18
EST
Estonia
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
33 to 93
ETH
Ethiopia
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-42 to 79
FIN
Finland
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
37 to 103
FJI
Fiji
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-93 to 271
FRA
France
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-112 to 2
FRO
Faeroe Islands
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
16 to 95
FSM
Micronesia, Fed. Sts.
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-85 to 411
GAB
Gabon
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-51 to 148
GBR
United Kingdom
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-10 to 66
GEO
Georgia
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-77 to -3
GHA
Ghana
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-159 to 83
GIB
Gibraltar
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-100 to -26
GIN
Guinea
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-122 to 104
GMB
Gambia, The
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-87 to 26
GNB
Guinea-Bissau
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-69 to 130
GNQ
Equatorial Guinea
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-16 to 129
GRC
Greece
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-110 to -40
GRD
Grenada
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-245 to 7
GRL
Greenland
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
6 to 74
GTM
Guatemala
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-186 to 22
GUM
Guam
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-25 to 230
GUY
Guyana
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-158 to 72
HIC
High income
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
HKG
Hong Kong SAR, China
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-83 to 73
HND
Honduras
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-204 to 15
HRV
Croatia
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-112 to -2
HTI
Haiti
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-125 to 34
HUN
Hungary
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-75 to 23
IDN
Indonesia
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-160 to 234
IMY
Isle of Man
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-13 to 56
IND
India
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-91 to 135
IRL
Ireland
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-13 to 78
IRN
Iran, Islamic Rep.
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-51 to 6
IRQ
Iraq
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-38 to -2
ISL
Iceland
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1 to 101
ISR
Israel
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-41 to -11
ITA
Italy
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-108 to -11
JAM
Jamaica
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-102 to 28
JOR
Jordan
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-28 to -3
JPN
Japan
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-47 to 80
KAZ
Kazakhstan
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-1 to 37
KEN
Kenya
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0 to 144
KGZ
Kyrgyz Republic
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-32 to 35
KHM
Cambodia
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-109 to 95
KIR
Kiribati
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
81 to 385
KNA
St. Kitts and Nevis
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-102 to 32
KOR
Korea, Rep.
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0 to 181
KSV
Kosovo
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-148 to -34
KWT
Kuwait
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-19 to 4
LAC
Latin America & Caribbean
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LAO
Lao PDR
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-95 to 70
LBN
Lebanon
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-75 to -27
LBR
Liberia
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-115 to 81
LBY
Libya
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-18 to 5
LCA
St. Lucia
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-159 to 14
LIC
Low income
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LIE
Liechtenstein
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-66 to 32
LKA
Sri Lanka
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
11 to 196
LMC
Lower middle income
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LMY
Low & middle income
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LSO
Lesotho
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-66 to 89
LTU
Lithuania
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
22 to 83
LUX
Luxembourg
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-86 to 26
LVA
Latvia
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
31 to 89
MAC
Macao SAR, China
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-83 to 73
MAF
St. Martin (French part)
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MAR
Morocco
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-62 to -5
MCO
Monaco
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-114 to 1
MDA
Moldova
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-72 to 11
MDG
Madagascar
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-104 to 56
MDV
Maldives
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-2 to 319
MEX
Mexico
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-178 to 10
MHL
Marshall Islands
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
8 to 240
MIC
Middle income
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MKD
Macedonia, FYR
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-150 to -43
MLI
Mali
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-142 to 43
MLT
Malta
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-67 to -28
MMR
Myanmar
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-84 to 97
MNA
Middle East & North Africa
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MNE
Montenegro
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-138 to -27
MNG
Mongolia
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1 to 50
MNP
Northern Mariana Islands
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
1 to 197
MOZ
Mozambique
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-69 to 61
MRT
Mauritania
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-113 to 9
MUS
Mauritius
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-165 to 67
MWI
Malawi
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-53 to 91
MYS
Malaysia
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-160 to 117
MYT
Mayotte
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-24 to 112
NAM
Namibia
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-67 to 23
NCL
New Caledonia
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-122 to 118
NER
Niger
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-71 to 36
NGA
Nigeria
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-128 to 89
NIC
Nicaragua
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-220 to 19
NIU
Niue
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-9 to 153
NLD
Netherlands
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-18 to 50
NOR
Norway
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
41 to 131
NPL
Nepal
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-116 to 231
NRU
Nauru
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-60 to 565
NZL
New Zealand
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-44 to 53
OMN
Oman
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-16 to 31
PAK
Pakistan
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-60 to 36
PAN
Panama
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-228 to 107
PER
Peru
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-57 to 181
PHL
Philippines
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-136 to 140
PLW
Palau
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-89 to 172
PNG
Papua New Guinea
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-163 to 421
POL
Poland
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-12 to 64
PRI
Puerto Rico
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-133 to 37
PRK
Korea, Dem. Rep.
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-9 to 129
PRT
Portugal
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-113 to -7
PRY
Paraguay
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-48 to 112
PYF
French Polynesia
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-79 to 283
QAT
Qatar
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-23 to 8
ROM
Romania
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-92 to 2
RUS
Russian Federation
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
24 to 79
RWA
Rwanda
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-12 to 211
SAS
South Asia
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SAU
Saudi Arabia
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-27 to 9
SDN
Sudan
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-69 to 44
SEN
Senegal
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-124 to 37
SGP
Singapore
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-134 to 49
SID
Small island developing states
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SLB
Solomon Islands
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-107 to 314
SLE
Sierra Leone
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-96 to 128
SLV
El Salvador
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-205 to 14
SMR
San Marino
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-111 to 3
SOM
Somalia
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-4 to 111
SRB
Serbia
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-125 to -15
SSA
Sub-Saharan Africa
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
STP
Sao Tome and Principe
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-42 to 137
SUR
Suriname
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-138 to 107
SVK
Slovak Republic
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-44 to 45
SVN
Slovenia
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-93 to 5
SWE
Sweden
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
35 to 107
SWZ
Swaziland
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-82 to 34
SXM
Sint Maarten (Dutch part)
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SYC
Seychelles
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-75 to 226
SYR
Syrian Arab Republic
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-57 to -13
TCA
Turks and Caicos Islands
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-87 to 52
TCD
Chad
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-79 to 41
TGO
Togo
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-175 to 100
THA
Thailand
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-109 to 76
TJK
Tajikistan
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-46 to 27
TKM
Turkmenistan
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-32 to 12
TMP
Timor-Leste
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-123 to 206
TON
Tonga
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-13 to 182
TTO
Trinidad and Tobago
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-266 to 8
TUN
Tunisia
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-57 to -16
TUR
Turkey
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-103 to -29
TUV
Tuvalu
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
9 to 651
TZA
Tanzania
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-9 to 167
UGA
Uganda
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-13 to 224
UKR
Ukraine
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-43 to 31
UMC
Upper middle income
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
URY
Uruguay
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
0 to 130
USA
United States
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-26 to 98
UZB
Uzbekistan
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-26 to 17
VCT
St. Vincent and the Grenadines
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-165 to 15
VEN
Venezuela, RB
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-150 to 85
VIR
Virgin Islands (U.S.)
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-116 to 44
VNM
Vietnam
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-107 to 61
VUT
Vanuatu
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-163 to 180
WBG
West Bank and Gaza
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-40 to -13
WLD
World
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
WSM
Samoa
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-41 to 196
YEM
Yemen, Rep.
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-24 to 51
ZAF
South Africa
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-78 to 33
ZAR
Congo, Dem. Rep.
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-48 to 128
ZMB
Zambia
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-54 to 94
ZWE
Zimbabwe
EN.CLC.PCPT.MM
Projected annual precipitation change (2045-2065, mm)
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
-81 to 24
ABW
Aruba
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ADO
Andorra
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
AFG
Afghanistan
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
AGO
Angola
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ALB
Albania
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
ARE
United Arab Emirates
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ARG
Argentina
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
ARM
Armenia
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ASM
American Samoa
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ATG
Antigua and Barbuda
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
AUS
Australia
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
AUT
Austria
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
AZE
Azerbaijan
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BDI
Burundi
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
BEL
Belgium
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
BEN
Benin
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BFA
Burkina Faso
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BGD
Bangladesh
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
BGR
Bulgaria
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
BHR
Bahrain
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BHS
Bahamas, The
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BIH
Bosnia and Herzegovina
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BLR
Belarus
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BLZ
Belize
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BMU
Bermuda
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BOL
Bolivia
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BRA
Brazil
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
BRB
Barbados
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BRN
Brunei Darussalam
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BTN
Bhutan
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
BWA
Botswana
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
CAF
Central African Republic
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
CAN
Canada
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
CHE
Switzerland
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
CHI
Channel Islands
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
CHL
Chile
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
CHN
China
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
CIV
Cote d'Ivoire
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
CMR
Cameroon
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
COG
Congo, Rep.
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
COK
Cook Islands
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
COL
Colombia
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
COM
Comoros
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
CPV
Cape Verde
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
CRI
Costa Rica
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
CUB
Cuba
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
CUW
Curacao
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
CYM
Cayman Islands
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
CYP
Cyprus
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
CZE
Czech Republic
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
DEU
Germany
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
DJI
Djibouti
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
DMA
Dominica
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
DNK
Denmark
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
DOM
Dominican Republic
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
DZA
Algeria
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
EAP
East Asia & Pacific
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ECA
Europe & Central Asia
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ECU
Ecuador
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
EGY
Egypt, Arab Rep.
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
EMU
Euro area
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
ERI
Eritrea
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ESP
Spain
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
EST
Estonia
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
ETH
Ethiopia
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
FIN
Finland
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
FJI
Fiji
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
FRA
France
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
FRO
Faeroe Islands
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
FSM
Micronesia, Fed. Sts.
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GAB
Gabon
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
GBR
United Kingdom
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
GEO
Georgia
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GHA
Ghana
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
GIB
Gibraltar
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GIN
Guinea
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GMB
Gambia, The
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GNB
Guinea-Bissau
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GNQ
Equatorial Guinea
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GRC
Greece
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
GRD
Grenada
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GRL
Greenland
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GTM
Guatemala
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GUM
Guam
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
GUY
Guyana
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
HIC
High income
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
HKG
Hong Kong SAR, China
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
HND
Honduras
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
HRV
Croatia
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
HTI
Haiti
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
HUN
Hungary
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
IDN
Indonesia
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
IMY
Isle of Man
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
IND
India
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
IRL
Ireland
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
IRN
Iran, Islamic Rep.
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
IRQ
Iraq
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ISL
Iceland
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ISR
Israel
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
ITA
Italy
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
JAM
Jamaica
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
JOR
Jordan
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
JPN
Japan
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
KAZ
Kazakhstan
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
KEN
Kenya
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
KGZ
Kyrgyz Republic
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
KHM
Cambodia
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
KIR
Kiribati
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
KNA
St. Kitts and Nevis
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
KOR
Korea, Rep.
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
KSV
Kosovo
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
KWT
Kuwait
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
LAC
Latin America & Caribbean
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LAO
Lao PDR
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
LBN
Lebanon
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
LBR
Liberia
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
LBY
Libya
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
LCA
St. Lucia
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
LIC
Low income
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LIE
Liechtenstein
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
LKA
Sri Lanka
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
LMC
Lower middle income
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LMY
Low & middle income
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
LSO
Lesotho
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
LTU
Lithuania
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
LUX
Luxembourg
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
LVA
Latvia
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
MAC
Macao SAR, China
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MAF
St. Martin (French part)
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MAR
Morocco
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
MCO
Monaco
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MDA
Moldova
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
MDG
Madagascar
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
MDV
Maldives
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MEX
Mexico
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MHL
Marshall Islands
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MIC
Middle income
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MKD
Macedonia, FYR
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MLI
Mali
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
MLT
Malta
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
MMR
Myanmar
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MNA
Middle East & North Africa
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
MNE
Montenegro
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MNG
Mongolia
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
MNP
Northern Mariana Islands
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MOZ
Mozambique
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MRT
Mauritania
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MUS
Mauritius
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
MWI
Malawi
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
MYS
Malaysia
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
MYT
Mayotte
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
NAM
Namibia
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
NCL
New Caledonia
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
NER
Niger
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
NGA
Nigeria
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
NIC
Nicaragua
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
NIU
Niue
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
NLD
Netherlands
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
NOR
Norway
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
NPL
Nepal
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
NRU
Nauru
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
NZL
New Zealand
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
OMN
Oman
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
PAK
Pakistan
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
PAN
Panama
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
PER
Peru
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
PHL
Philippines
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
PLW
Palau
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
PNG
Papua New Guinea
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
POL
Poland
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
PRI
Puerto Rico
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
PRK
Korea, Dem. Rep.
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
PRT
Portugal
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
PRY
Paraguay
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
PYF
French Polynesia
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
QAT
Qatar
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ROM
Romania
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
RUS
Russian Federation
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
RWA
Rwanda
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
SAS
South Asia
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SAU
Saudi Arabia
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SDN
Sudan
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SEN
Senegal
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
SGP
Singapore
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SID
Small island developing states
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
SLB
Solomon Islands
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SLE
Sierra Leone
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SLV
El Salvador
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SMR
San Marino
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SOM
Somalia
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SRB
Serbia
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SSA
Sub-Saharan Africa
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
STP
Sao Tome and Principe
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SUR
Suriname
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SVK
Slovak Republic
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
SVN
Slovenia
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
SWE
Sweden
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
SWZ
Swaziland
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SXM
Sint Maarten (Dutch part)
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SYC
Seychelles
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
SYR
Syrian Arab Republic
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
TCA
Turks and Caicos Islands
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
TCD
Chad
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
TGO
Togo
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
THA
Thailand
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
TJK
Tajikistan
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
TKM
Turkmenistan
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
TMP
Timor-Leste
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
TON
Tonga
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
TTO
Trinidad and Tobago
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
TUN
Tunisia
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
TUR
Turkey
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
TUV
Tuvalu
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
TZA
Tanzania
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
UGA
Uganda
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
UKR
Ukraine
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
UMC
Upper middle income
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
URY
Uruguay
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
USA
United States
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
UZB
Uzbekistan
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
VCT
St. Vincent and the Grenadines
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
VEN
Venezuela, RB
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
VIR
Virgin Islands (U.S.)
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
VNM
Vietnam
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
VUT
Vanuatu
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
WBG
West Bank and Gaza
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
WLD
World
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
n/a
WSM
Samoa
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
YEM
Yemen, Rep.
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ZAF
South Africa
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
Yes
ZAR
Congo, Dem. Rep.
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ZMB
Zambia
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ZWE
Zimbabwe
EN.CLC.RNET
Renewable energy target
Text
Text
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
None
..
ABW
Aruba
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
29.57482
..
..
..
..
..
..
..
..
..
29.57482
..
..
..
..
..
..
..
..
..
..
..
ADO
Andorra
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
AFG
Afghanistan
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
AGO
Angola
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
2.057264
..
..
..
..
..
..
..
..
..
2.056975
..
..
..
..
..
..
..
..
..
..
..
ALB
Albania
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
7.40137
..
..
..
..
..
..
..
..
..
8.206302
..
..
..
..
..
..
..
..
..
..
..
ARE
United Arab Emirates
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
6.900407
..
..
..
..
..
..
..
..
..
7.322541
..
..
..
..
..
..
..
..
..
..
..
ARG
Argentina
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
4.625538
..
..
..
..
..
..
..
..
..
4.494384
..
..
..
..
..
..
..
..
..
..
..
ARM
Armenia
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
ASM
American Samoa
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
10.85896
..
..
..
..
..
..
..
..
..
9.855739
..
..
..
..
..
..
..
..
..
..
..
ATG
Antigua and Barbuda
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
32.30729
..
..
..
..
..
..
..
..
..
32.30729
..
..
..
..
..
..
..
..
..
..
..
AUS
Australia
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
7.005713
..
..
..
..
..
..
..
..
..
7.214221
..
..
..
..
..
..
..
..
..
..
..
AUT
Austria
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
AZE
Azerbaijan
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
29.77825
..
..
..
..
..
..
..
..
..
29.78408
..
..
..
..
..
..
..
..
..
..
..
BDI
Burundi
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
BEL
Belgium
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
14.5422
..
..
..
..
..
..
..
..
..
14.32144
..
..
..
..
..
..
..
..
..
..
..
BEN
Benin
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
14.06841
..
..
..
..
..
..
..
..
..
14.06828
..
..
..
..
..
..
..
..
..
..
..
BFA
Burkina Faso
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
BGD
Bangladesh
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
14.08317
..
..
..
..
..
..
..
..
..
13.95883
..
..
..
..
..
..
..
..
..
..
..
BGR
Bulgaria
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
1.452436
..
..
..
..
..
..
..
..
..
1.527417
..
..
..
..
..
..
..
..
..
..
..
BHR
Bahrain
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
70.48661
..
..
..
..
..
..
..
..
..
66.63535
..
..
..
..
..
..
..
..
..
..
..
BHS
Bahamas, The
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
48.88346
..
..
..
..
..
..
..
..
..
46.53529
..
..
..
..
..
..
..
..
..
..
..
BIH
Bosnia and Herzegovina
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0.08228393
..
..
..
..
..
..
..
..
..
0.07920434
..
..
..
..
..
..
..
..
..
..
..
BLR
Belarus
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
BLZ
Belize
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
16.90529
..
..
..
..
..
..
..
..
..
15.78399
..
..
..
..
..
..
..
..
..
..
..
BMU
Bermuda
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
82.26369
..
..
..
..
..
..
..
..
..
82.26369
..
..
..
..
..
..
..
..
..
..
..
BOL
Bolivia
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
BRA
Brazil
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
4.745497
..
..
..
..
..
..
..
..
..
4.878794
..
..
..
..
..
..
..
..
..
..
..
BRB
Barbados
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
15.69373
..
..
..
..
..
..
..
..
..
15.69373
..
..
..
..
..
..
..
..
..
..
..
BRN
Brunei Darussalam
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
8.85752
..
..
..
..
..
..
..
..
..
9.240206
..
..
..
..
..
..
..
..
..
..
..
BTN
Bhutan
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
BWA
Botswana
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
CAF
Central African Republic
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
CAN
Canada
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
3.943848
..
..
..
..
..
..
..
..
..
3.99087
..
..
..
..
..
..
..
..
..
..
..
CHE
Switzerland
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
CHI
Channel Islands
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHL
Chile
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
1.706311
..
..
..
..
..
..
..
..
..
1.609674
..
..
..
..
..
..
..
..
..
..
..
CHN
China
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
7.635574
..
..
..
..
..
..
..
..
..
8.059189
..
..
..
..
..
..
..
..
..
..
..
CIV
Cote d'Ivoire
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
3.355851
..
..
..
..
..
..
..
..
..
3.245112
..
..
..
..
..
..
..
..
..
..
..
CMR
Cameroon
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0.3487158
..
..
..
..
..
..
..
..
..
0.3487947
..
..
..
..
..
..
..
..
..
..
..
COG
Congo, Rep.
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0.9667999
..
..
..
..
..
..
..
..
..
0.9661633
..
..
..
..
..
..
..
..
..
..
..
COK
Cook Islands
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
62.97459
..
..
..
..
..
..
..
..
..
61.97115
..
..
..
..
..
..
..
..
..
..
..
COL
Colombia
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
2.082108
..
..
..
..
..
..
..
..
..
2.004576
..
..
..
..
..
..
..
..
..
..
..
COM
Comoros
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
14.03837
..
..
..
..
..
..
..
..
..
14.03701
..
..
..
..
..
..
..
..
..
..
..
CPV
Cape Verde
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
13.75433
..
..
..
..
..
..
..
..
..
13.8443
..
..
..
..
..
..
..
..
..
..
..
CRI
Costa Rica
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0.899192
..
..
..
..
..
..
..
..
..
0.8397314
..
..
..
..
..
..
..
..
..
..
..
CUB
Cuba
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
10.65563
..
..
..
..
..
..
..
..
..
10.03804
..
..
..
..
..
..
..
..
..
..
..
CUW
Curacao
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
59.50253
..
..
..
..
..
..
..
..
..
59.59201
..
..
..
..
..
..
..
..
..
..
..
CYP
Cyprus
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
9.54782
..
..
..
..
..
..
..
..
..
9.662172
..
..
..
..
..
..
..
..
..
..
..
CZE
Czech Republic
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
DEU
Germany
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
4.408065
..
..
..
..
..
..
..
..
..
4.417399
..
..
..
..
..
..
..
..
..
..
..
DJI
Djibouti
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
7.420453
..
..
..
..
..
..
..
..
..
7.627246
..
..
..
..
..
..
..
..
..
..
..
DMA
Dominica
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
10.68151
..
..
..
..
..
..
..
..
..
10.43414
..
..
..
..
..
..
..
..
..
..
..
DNK
Denmark
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
18.57557
..
..
..
..
..
..
..
..
..
18.50849
..
..
..
..
..
..
..
..
..
..
..
DOM
Dominican Republic
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
2.913546
..
..
..
..
..
..
..
..
..
2.983391
..
..
..
..
..
..
..
..
..
..
..
DZA
Algeria
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
3.404253
..
..
..
..
..
..
..
..
..
3.529982
..
..
..
..
..
..
..
..
..
..
..
EAP
East Asia & Pacific
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
9.92105108079
..
..
..
..
..
..
..
..
..
10.3259781773
..
..
..
..
..
..
..
..
..
..
..
ECA
Europe & Central Asia
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
3.12332134359
..
..
..
..
..
..
..
..
..
3.00256216437
..
..
..
..
..
..
..
..
..
..
..
ECU
Ecuador
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
7.094317
..
..
..
..
..
..
..
..
..
7.301979
..
..
..
..
..
..
..
..
..
..
..
EGY
Egypt, Arab Rep.
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
25.64932
..
..
..
..
..
..
..
..
..
25.60711
..
..
..
..
..
..
..
..
..
..
..
EMU
Euro area
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
8.39909910042
..
..
..
..
..
..
..
..
..
8.46660741567
..
..
..
..
..
..
..
..
..
..
..
ERI
Eritrea
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
1.228486
..
..
..
..
..
..
..
..
..
1.231078
..
..
..
..
..
..
..
..
..
..
..
ESP
Spain
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
6.553566
..
..
..
..
..
..
..
..
..
6.608603
..
..
..
..
..
..
..
..
..
..
..
EST
Estonia
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
7.237
..
..
..
..
..
..
..
..
..
7.198966
..
..
..
..
..
..
..
..
..
..
..
ETH
Ethiopia
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0.3948163
..
..
..
..
..
..
..
..
..
0.3947973
..
..
..
..
..
..
..
..
..
..
..
FIN
Finland
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
4.337044
..
..
..
..
..
..
..
..
..
4.366244
..
..
..
..
..
..
..
..
..
..
..
FJI
Fiji
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
10.99511
..
..
..
..
..
..
..
..
..
10.99503
..
..
..
..
..
..
..
..
..
..
..
FRA
France
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
4.010109
..
..
..
..
..
..
..
..
..
4.037874
..
..
..
..
..
..
..
..
..
..
..
FRO
Faeroe Islands
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
11.03939
..
..
..
..
..
..
..
..
..
11.03825
..
..
..
..
..
..
..
..
..
..
..
FSM
Micronesia, Fed. Sts.
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
55.39294
..
..
..
..
..
..
..
..
..
54.85011
..
..
..
..
..
..
..
..
..
..
..
GAB
Gabon
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
5.923736
..
..
..
..
..
..
..
..
..
5.923836
..
..
..
..
..
..
..
..
..
..
..
GBR
United Kingdom
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
8.674301
..
..
..
..
..
..
..
..
..
8.643258
..
..
..
..
..
..
..
..
..
..
..
GEO
Georgia
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
3.306834
..
..
..
..
..
..
..
..
..
3.271782
..
..
..
..
..
..
..
..
..
..
..
GHA
Ghana
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
2.322335
..
..
..
..
..
..
..
..
..
2.301107
..
..
..
..
..
..
..
..
..
..
..
GIB
Gibraltar
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
99.99999
..
..
..
..
..
..
..
..
..
99.99999
..
..
..
..
..
..
..
..
..
..
..
GIN
Guinea
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
4.880878
..
..
..
..
..
..
..
..
..
3.629523
..
..
..
..
..
..
..
..
..
..
..
GMB
Gambia, The
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
32.05582
..
..
..
..
..
..
..
..
..
33.41145
..
..
..
..
..
..
..
..
..
..
..
GNB
Guinea-Bissau
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
18.80467
..
..
..
..
..
..
..
..
..
18.79771
..
..
..
..
..
..
..
..
..
..
..
GNQ
Equatorial Guinea
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
2.427399
..
..
..
..
..
..
..
..
..
2.6232
..
..
..
..
..
..
..
..
..
..
..
GRC
Greece
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
9.97527
..
..
..
..
..
..
..
..
..
9.900933
..
..
..
..
..
..
..
..
..
..
..
GRD
Grenada
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
21.74677
..
..
..
..
..
..
..
..
..
21.74678
..
..
..
..
..
..
..
..
..
..
..
GRL
Greenland
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
52.1651
..
..
..
..
..
..
..
..
..
52.18566
..
..
..
..
..
..
..
..
..
..
..
GTM
Guatemala
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0.3474334
..
..
..
..
..
..
..
..
..
0.3095247
..
..
..
..
..
..
..
..
..
..
..
GUM
Guam
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
26.57025
..
..
..
..
..
..
..
..
..
26.57009
..
..
..
..
..
..
..
..
..
..
..
GUY
Guyana
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
31.19556
..
..
..
..
..
..
..
..
..
31.30113
..
..
..
..
..
..
..
..
..
..
..
HIC
High income
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
7.8487159962
..
..
..
..
..
..
..
..
..
7.73057892586
..
..
..
..
..
..
..
..
..
..
..
HKG
Hong Kong SAR, China
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
25.8055
..
..
..
..
..
..
..
..
..
26.17461
..
..
..
..
..
..
..
..
..
..
..
HND
Honduras
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
2.158211
..
..
..
..
..
..
..
..
..
2.165212
..
..
..
..
..
..
..
..
..
..
..
HRV
Croatia
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
3.384269
..
..
..
..
..
..
..
..
..
3.386141
..
..
..
..
..
..
..
..
..
..
..
HTI
Haiti
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
5.365527
..
..
..
..
..
..
..
..
..
5.396142
..
..
..
..
..
..
..
..
..
..
..
HUN
Hungary
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
IDN
Indonesia
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
11.24608
..
..
..
..
..
..
..
..
..
11.165
..
..
..
..
..
..
..
..
..
..
..
IMY
Isle of Man
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
28.17473
..
..
..
..
..
..
..
..
..
27.77264
..
..
..
..
..
..
..
..
..
..
..
IND
India
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
3.884644
..
..
..
..
..
..
..
..
..
3.761993
..
..
..
..
..
..
..
..
..
..
..
IRL
Ireland
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
6.875201
..
..
..
..
..
..
..
..
..
6.624217
..
..
..
..
..
..
..
..
..
..
..
IRN
Iran, Islamic Rep.
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
5.116283
..
..
..
..
..
..
..
..
..
4.978386
..
..
..
..
..
..
..
..
..
..
..
IRQ
Iraq
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
6.486346
..
..
..
..
..
..
..
..
..
6.488134
..
..
..
..
..
..
..
..
..
..
..
ISL
Iceland
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
13.45787
..
..
..
..
..
..
..
..
..
13.08911
..
..
..
..
..
..
..
..
..
..
..
ISR
Israel
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
8.29226
..
..
..
..
..
..
..
..
..
8.257503
..
..
..
..
..
..
..
..
..
..
..
ITA
Italy
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
7.627314
..
..
..
..
..
..
..
..
..
7.540614
..
..
..
..
..
..
..
..
..
..
..
JAM
Jamaica
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
5.921655
..
..
..
..
..
..
..
..
..
5.845192
..
..
..
..
..
..
..
..
..
..
..
JOR
Jordan
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
4.194579
..
..
..
..
..
..
..
..
..
4.187482
..
..
..
..
..
..
..
..
..
..
..
JPN
Japan
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
16.33642
..
..
..
..
..
..
..
..
..
16.22966
..
..
..
..
..
..
..
..
..
..
..
KAZ
Kazakhstan
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
3.883971
..
..
..
..
..
..
..
..
..
3.880005
..
..
..
..
..
..
..
..
..
..
..
KEN
Kenya
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
1.318036
..
..
..
..
..
..
..
..
..
1.351918
..
..
..
..
..
..
..
..
..
..
..
KGZ
Kyrgyz Republic
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
KHM
Cambodia
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
10.62831
..
..
..
..
..
..
..
..
..
10.57913
..
..
..
..
..
..
..
..
..
..
..
KIR
Kiribati
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
94.16601
..
..
..
..
..
..
..
..
..
95.22124
..
..
..
..
..
..
..
..
..
..
..
KNA
St. Kitts and Nevis
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
22.11988
..
..
..
..
..
..
..
..
..
22.11966
..
..
..
..
..
..
..
..
..
..
..
KOR
Korea, Rep.
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
5.415502
..
..
..
..
..
..
..
..
..
4.960352
..
..
..
..
..
..
..
..
..
..
..
KSV
Kosovo
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KWT
Kuwait
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
21.31244
..
..
..
..
..
..
..
..
..
22.78367
..
..
..
..
..
..
..
..
..
..
..
LAC
Latin America & Caribbean
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
3.81009613368
..
..
..
..
..
..
..
..
..
3.79058846487
..
..
..
..
..
..
..
..
..
..
..
LAO
Lao PDR
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
LBN
Lebanon
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
9.113449
..
..
..
..
..
..
..
..
..
9.114946
..
..
..
..
..
..
..
..
..
..
..
LBR
Liberia
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
3.354808
..
..
..
..
..
..
..
..
..
3.345975
..
..
..
..
..
..
..
..
..
..
..
LBY
Libya
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
4.712442
..
..
..
..
..
..
..
..
..
4.712481
..
..
..
..
..
..
..
..
..
..
..
LCA
St. Lucia
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
8.024293
..
..
..
..
..
..
..
..
..
8.024293
..
..
..
..
..
..
..
..
..
..
..
LIC
Low income
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
5.32951715216
..
..
..
..
..
..
..
..
..
5.09273420958
..
..
..
..
..
..
..
..
..
..
..
LIE
Liechtenstein
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
LKA
Sri Lanka
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
6.537213
..
..
..
..
..
..
..
..
..
5.442259
..
..
..
..
..
..
..
..
..
..
..
LMC
Lower middle income
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
6.64887967062
..
..
..
..
..
..
..
..
..
6.4954313226
..
..
..
..
..
..
..
..
..
..
..
LMY
Low & middle income
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
6.3117339215
..
..
..
..
..
..
..
..
..
6.32430146995
..
..
..
..
..
..
..
..
..
..
..
LSO
Lesotho
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
LTU
Lithuania
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
3.993077
..
..
..
..
..
..
..
..
..
4.010017
..
..
..
..
..
..
..
..
..
..
..
LUX
Luxembourg
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
LVA
Latvia
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
24.84532
..
..
..
..
..
..
..
..
..
23.94287
..
..
..
..
..
..
..
..
..
..
..
MAC
Macao SAR, China
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
93.02621
..
..
..
..
..
..
..
..
..
79.89817
..
..
..
..
..
..
..
..
..
..
..
MAF
St. Martin (French part)
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
3.721697
..
..
..
..
..
..
..
..
..
3.750314
..
..
..
..
..
..
..
..
..
..
..
MCO
Monaco
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
99.99999
..
..
..
..
..
..
..
..
..
99.99999
..
..
..
..
..
..
..
..
..
..
..
MDA
Moldova
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0.9539502
..
..
..
..
..
..
..
..
..
0.9401972
..
..
..
..
..
..
..
..
..
..
..
MDG
Madagascar
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
2.064798
..
..
..
..
..
..
..
..
..
2.034768
..
..
..
..
..
..
..
..
..
..
..
MDV
Maldives
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
100
..
..
..
..
..
..
..
..
..
100
..
..
..
..
..
..
..
..
..
..
..
MEX
Mexico
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
2.682032
..
..
..
..
..
..
..
..
..
2.712069
..
..
..
..
..
..
..
..
..
..
..
MHL
Marshall Islands
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
99.38074
..
..
..
..
..
..
..
..
..
99.42851
..
..
..
..
..
..
..
..
..
..
..
MIC
Middle income
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
6.44278475009
..
..
..
..
..
..
..
..
..
6.50512725194
..
..
..
..
..
..
..
..
..
..
..
MKD
Macedonia, FYR
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
MLI
Mali
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
MLT
Malta
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
22.25467
..
..
..
..
..
..
..
..
..
21.82335
..
..
..
..
..
..
..
..
..
..
..
MMR
Myanmar
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
14.09049
..
..
..
..
..
..
..
..
..
14.0232
..
..
..
..
..
..
..
..
..
..
..
MNA
Middle East & North Africa
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
9.86939590313
..
..
..
..
..
..
..
..
..
9.65328844375
..
..
..
..
..
..
..
..
..
..
..
MNE
Montenegro
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNG
Mongolia
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
MNP
Northern Mariana Islands
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
39.28177
..
..
..
..
..
..
..
..
..
39.28058
..
..
..
..
..
..
..
..
..
..
..
MOZ
Mozambique
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
6.458905
..
..
..
..
..
..
..
..
..
6.479798
..
..
..
..
..
..
..
..
..
..
..
MRT
Mauritania
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
19.1975
..
..
..
..
..
..
..
..
..
20.43003
..
..
..
..
..
..
..
..
..
..
..
MUS
Mauritius
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
5.645333
..
..
..
..
..
..
..
..
..
5.645287
..
..
..
..
..
..
..
..
..
..
..
MWI
Malawi
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
MYS
Malaysia
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
10.15617
..
..
..
..
..
..
..
..
..
9.478413
..
..
..
..
..
..
..
..
..
..
..
MYT
Mayotte
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
21.56333
..
..
..
..
..
..
..
..
..
21.56333
..
..
..
..
..
..
..
..
..
..
..
NAM
Namibia
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
2.313802
..
..
..
..
..
..
..
..
..
2.903213
..
..
..
..
..
..
..
..
..
..
..
NCL
New Caledonia
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
35.26922
..
..
..
..
..
..
..
..
..
34.28659
..
..
..
..
..
..
..
..
..
..
..
NER
Niger
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
NGA
Nigeria
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
3.031621
..
..
..
..
..
..
..
..
..
3.031652
..
..
..
..
..
..
..
..
..
..
..
NIC
Nicaragua
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
1.474728
..
..
..
..
..
..
..
..
..
1.461811
..
..
..
..
..
..
..
..
..
..
..
NIU
Niue
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
10.43766
..
..
..
..
..
..
..
..
..
10.43766
..
..
..
..
..
..
..
..
..
..
..
NLD
Netherlands
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
61.33327
..
..
..
..
..
..
..
..
..
61.32412
..
..
..
..
..
..
..
..
..
..
..
NOR
Norway
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
9.341223
..
..
..
..
..
..
..
..
..
9.338212
..
..
..
..
..
..
..
..
..
..
..
NPL
Nepal
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
NRU
Nauru
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
40.35881
..
..
..
..
..
..
..
..
..
40.35881
..
..
..
..
..
..
..
..
..
..
..
NZL
New Zealand
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
12.32587
..
..
..
..
..
..
..
..
..
12.55922
..
..
..
..
..
..
..
..
..
..
..
OMN
Oman
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
5.433475
..
..
..
..
..
..
..
..
..
5.48451
..
..
..
..
..
..
..
..
..
..
..
PAK
Pakistan
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
1.268372
..
..
..
..
..
..
..
..
..
1.27542
..
..
..
..
..
..
..
..
..
..
..
PAN
Panama
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
4.050603
..
..
..
..
..
..
..
..
..
3.95295
..
..
..
..
..
..
..
..
..
..
..
PER
Peru
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
1.727219
..
..
..
..
..
..
..
..
..
1.714813
..
..
..
..
..
..
..
..
..
..
..
PHL
Philippines
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
10.72976
..
..
..
..
..
..
..
..
..
10.53193
..
..
..
..
..
..
..
..
..
..
..
PLW
Palau
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
56.51813
..
..
..
..
..
..
..
..
..
55.5714
..
..
..
..
..
..
..
..
..
..
..
PNG
Papua New Guinea
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
2.020935
..
..
..
..
..
..
..
..
..
2.020936
..
..
..
..
..
..
..
..
..
..
..
POL
Poland
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
2.472775
..
..
..
..
..
..
..
..
..
2.492365
..
..
..
..
..
..
..
..
..
..
..
PRI
Puerto Rico
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
11.83544
..
..
..
..
..
..
..
..
..
11.30101
..
..
..
..
..
..
..
..
..
..
..
PRK
Korea, Dem. Rep.
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
5.265922
..
..
..
..
..
..
..
..
..
5.265721
..
..
..
..
..
..
..
..
..
..
..
PRT
Portugal
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
5.078459
..
..
..
..
..
..
..
..
..
5.24842
..
..
..
..
..
..
..
..
..
..
..
PRY
Paraguay
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
PYF
French Polynesia
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
19.49905
..
..
..
..
..
..
..
..
..
19.84311
..
..
..
..
..
..
..
..
..
..
..
QAT
Qatar
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
25.28502
..
..
..
..
..
..
..
..
..
23.07667
..
..
..
..
..
..
..
..
..
..
..
ROM
Romania
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
2.872109
..
..
..
..
..
..
..
..
..
2.891963
..
..
..
..
..
..
..
..
..
..
..
RUS
Russian Federation
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
3.277586
..
..
..
..
..
..
..
..
..
2.877748
..
..
..
..
..
..
..
..
..
..
..
RWA
Rwanda
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
SAS
South Asia
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
4.50604387712
..
..
..
..
..
..
..
..
..
4.37103790666
..
..
..
..
..
..
..
..
..
..
..
SAU
Saudi Arabia
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
1.026227
..
..
..
..
..
..
..
..
..
1.021817
..
..
..
..
..
..
..
..
..
..
..
SDN
Sudan
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0.2159844
..
..
..
..
..
..
..
..
..
0.2237731
..
..
..
..
..
..
..
..
..
..
..
SEN
Senegal
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
14.38167
..
..
..
..
..
..
..
..
..
14.77128
..
..
..
..
..
..
..
..
..
..
..
SGP
Singapore
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
12.03938
..
..
..
..
..
..
..
..
..
12.05026
..
..
..
..
..
..
..
..
..
..
..
SID
Small island developing states
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
10.0835420453
..
..
..
..
..
..
..
..
..
9.8307789509
..
..
..
..
..
..
..
..
..
..
..
SLB
Solomon Islands
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
13.31739
..
..
..
..
..
..
..
..
..
13.39024
..
..
..
..
..
..
..
..
..
..
..
SLE
Sierra Leone
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
4.86552
..
..
..
..
..
..
..
..
..
5.057095
..
..
..
..
..
..
..
..
..
..
..
SLV
El Salvador
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
1.690784
..
..
..
..
..
..
..
..
..
1.723826
..
..
..
..
..
..
..
..
..
..
..
SMR
San Marino
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
SOM
Somalia
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
1.766045
..
..
..
..
..
..
..
..
..
2.151358
..
..
..
..
..
..
..
..
..
..
..
SRB
Serbia
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0.08998014
..
..
..
..
..
..
..
..
..
0.09034837
..
..
..
..
..
..
..
..
..
..
..
SSA
Sub-Saharan Africa
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
1.95658773792
..
..
..
..
..
..
..
..
..
1.96225825248
..
..
..
..
..
..
..
..
..
..
..
STP
Sao Tome and Principe
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
11.09435
..
..
..
..
..
..
..
..
..
11.09405
..
..
..
..
..
..
..
..
..
..
..
SUR
Suriname
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
64.42828
..
..
..
..
..
..
..
..
..
68.21855
..
..
..
..
..
..
..
..
..
..
..
SVK
Slovak Republic
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
SVN
Slovenia
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
1.32785
..
..
..
..
..
..
..
..
..
1.304086
..
..
..
..
..
..
..
..
..
..
..
SWE
Sweden
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
6.007809
..
..
..
..
..
..
..
..
..
6.312298
..
..
..
..
..
..
..
..
..
..
..
SWZ
Swaziland
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
SXM
Sint Maarten (Dutch part)
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
41.33456
..
..
..
..
..
..
..
..
..
41.33482
..
..
..
..
..
..
..
..
..
..
..
SYR
Syrian Arab Republic
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0.3049088
..
..
..
..
..
..
..
..
..
0.3050168
..
..
..
..
..
..
..
..
..
..
..
TCA
Turks and Caicos Islands
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
53.27269
..
..
..
..
..
..
..
..
..
53.27269
..
..
..
..
..
..
..
..
..
..
..
TCD
Chad
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
TGO
Togo
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
6.115709
..
..
..
..
..
..
..
..
..
6.118247
..
..
..
..
..
..
..
..
..
..
..
THA
Thailand
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
12.15646
..
..
..
..
..
..
..
..
..
13.77714
..
..
..
..
..
..
..
..
..
..
..
TJK
Tajikistan
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
TKM
Turkmenistan
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
5.636106
..
..
..
..
..
..
..
..
..
5.636103
..
..
..
..
..
..
..
..
..
..
..
TMP
Timor-Leste
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
4.398214
..
..
..
..
..
..
..
..
..
4.393636
..
..
..
..
..
..
..
..
..
..
..
TON
Tonga
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
31.8894
..
..
..
..
..
..
..
..
..
31.31068
..
..
..
..
..
..
..
..
..
..
..
TTO
Trinidad and Tobago
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
7.552062
..
..
..
..
..
..
..
..
..
7.457944
..
..
..
..
..
..
..
..
..
..
..
TUN
Tunisia
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
9.422151
..
..
..
..
..
..
..
..
..
9.526479
..
..
..
..
..
..
..
..
..
..
..
TUR
Turkey
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
2.270489
..
..
..
..
..
..
..
..
..
2.383424
..
..
..
..
..
..
..
..
..
..
..
TUV
Tuvalu
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
100
..
..
..
..
..
..
..
..
..
99.99996
..
..
..
..
..
..
..
..
..
..
..
TZA
Tanzania
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
1.28487
..
..
..
..
..
..
..
..
..
1.292692
..
..
..
..
..
..
..
..
..
..
..
UGA
Uganda
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
UKR
Ukraine
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
2.014135
..
..
..
..
..
..
..
..
..
2.066859
..
..
..
..
..
..
..
..
..
..
..
UMC
Upper middle income
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
6.26556408673
..
..
..
..
..
..
..
..
..
6.5140990553
..
..
..
..
..
..
..
..
..
..
..
URY
Uruguay
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
4.774252
..
..
..
..
..
..
..
..
..
4.706931
..
..
..
..
..
..
..
..
..
..
..
USA
United States
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
4.169981
..
..
..
..
..
..
..
..
..
4.102634
..
..
..
..
..
..
..
..
..
..
..
UZB
Uzbekistan
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0.0005100727
..
..
..
..
..
..
..
..
..
0.000511343
..
..
..
..
..
..
..
..
..
..
..
VCT
St. Vincent and the Grenadines
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
21.95772
..
..
..
..
..
..
..
..
..
21.95772
..
..
..
..
..
..
..
..
..
..
..
VEN
Venezuela, RB
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
3.586734
..
..
..
..
..
..
..
..
..
3.67944
..
..
..
..
..
..
..
..
..
..
..
VIR
Virgin Islands (U.S.)
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
21.94076
..
..
..
..
..
..
..
..
..
21.93975
..
..
..
..
..
..
..
..
..
..
..
VNM
Vietnam
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
42.80487
..
..
..
..
..
..
..
..
..
42.81091
..
..
..
..
..
..
..
..
..
..
..
VUT
Vanuatu
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
10.75522
..
..
..
..
..
..
..
..
..
10.84096
..
..
..
..
..
..
..
..
..
..
..
WBG
West Bank and Gaza
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
11.20395
..
..
..
..
..
..
..
..
..
11.2353
..
..
..
..
..
..
..
..
..
..
..
WLD
World
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
6.59719759258
..
..
..
..
..
..
..
..
..
6.56710379397
..
..
..
..
..
..
..
..
..
..
..
WSM
Samoa
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
15.64693
..
..
..
..
..
..
..
..
..
15.64689
..
..
..
..
..
..
..
..
..
..
..
YEM
Yemen, Rep.
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
1.844212
..
..
..
..
..
..
..
..
..
1.844291
..
..
..
..
..
..
..
..
..
..
..
ZAF
South Africa
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0.5116804
..
..
..
..
..
..
..
..
..
0.4960424
..
..
..
..
..
..
..
..
..
..
..
ZAR
Congo, Dem. Rep.
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0.03693746
..
..
..
..
..
..
..
..
..
0.03694646
..
..
..
..
..
..
..
..
..
..
..
ZMB
Zambia
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
ZWE
Zimbabwe
EN.POP.EL5M.ZS
Population below 5m (% of total)
0
1
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
ABW
Aruba
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ADO
Andorra
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AFG
Afghanistan
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
6.73939603057
7.04178330977
7.39039278751
7.32230698124
7.25509313986
7.18849539611
7.15555697942
7.12229360282
7.08942000095
7.05670127808
7.56597417912
8.13694046298
8.75221564561
9.41401287672
9.8472318414
10.0104724378
10.1796711349
10.3491667721
10.5177875259
10.6852349879
10.8515474991
..
AGO
Angola
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
15.171060581
15.2907279898
15.6606297788
16.0257392222
16.0659407849
16.134424278
16.2374098842
16.8164879997
17.4213414024
18.0240127446
18.6077738978
19.1613166972
19.6998295689
20.2407233282
20.8122909285
21.4283855906
22.1008295765
22.8240584063
23.5713409784
24.3096849575
25.0097264886
..
ALB
Albania
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ARE
United Arab Emirates
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
26.1356863326
26.37720362
26.6568855987
26.9649300751
27.3043645711
27.6663491643
28.0373793999
28.3886568056
28.761526505
29.2426264343
29.8556679417
30.7365436395
31.793432925
32.5240615956
32.3263100861
31.0598083379
28.97625596
26.0567443666
23.632964335
21.8800184181
20.8591941361
..
ARG
Argentina
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
39.2043922449
39.1196461404
39.042134825
38.9756675844
38.9208192874
38.8763844435
38.8419279299
38.8167144333
38.8065197934
38.8158363028
38.8482604003
38.9029860933
38.9791312929
39.0623456054
39.1368818859
39.191235509
39.2206765862
39.2250917279
39.2045605338
39.1603812745
39.0931604714
..
ARM
Armenia
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
33.1346984719
33.2581730732
33.6698899111
34.2748710603
34.912749883
35.4458169015
35.8165743801
36.0436080229
36.1414441023
36.156937887
36.126969947
36.0485157267
36.0448170524
36.0449121303
36.0147481953
35.9988440792
36.0064224762
36.0087776224
36.0046338411
35.9869548545
35.952073561
..
ASM
American Samoa
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ATG
Antigua and Barbuda
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AUS
Australia
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
60.2584573193
60.3567981949
60.3051271792
60.39476991
60.4383814058
60.3930334219
60.2864125389
60.3426040935
60.4465394688
60.4904575716
60.5057797734
60.4249626539
60.3991166024
60.3667581451
60.3820612697
60.3001892639
60.1274960262
59.7586048167
59.2532641812
58.6787856977
58.3030122532
..
AUT
Austria
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
19.9601809495
19.7461205742
19.8008639619
19.4485988074
19.4615264507
19.4149250849
19.3988398695
19.3967444458
19.3820677608
19.347150891
19.3373937359
19.3257488238
19.5686366224
19.7286456922
19.8342569146
19.9482224624
20.0038780917
20.0945621066
20.1638469623
20.2436261808
20.3416323335
..
AZE
Azerbaijan
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
24.2136052521
23.9282492092
23.6551882959
23.3840693796
23.1548900882
22.97388419
22.8267551204
22.6913115591
22.5588525212
22.4719528999
22.4385810342
22.4144097255
22.3969039162
22.376854403
22.3307936655
22.2513629295
22.2082255394
22.2107023411
21.9999771778
21.7949626417
21.796284499
..
BDI
Burundi
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BEL
Belgium
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
16.8574854024
16.9510720176
16.9301642608
16.9111011949
16.9064118787
16.9183963381
17.0040267796
17.0834495629
17.1668724885
17.2490905535
17.3268923137
17.3895790804
17.4342978806
17.4843074968
17.5317818008
17.5584335223
17.5660634978
17.5605560104
17.5454503947
17.5241904941
17.5025753369
..
BEN
Benin
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BFA
Burkina Faso
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
5.76406296185
5.85740031221
5.95148914705
6.04548993471
6.14070247884
6.2369284796
6.33459089516
6.54077720622
6.84393011059
7.15995990864
7.4898902002
7.83199617598
8.18912314494
8.56089376817
8.94859045887
9.34997682496
9.76842612351
10.2038778373
10.654318478
11.1164649157
11.5853065394
..
BGD
Bangladesh
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
9.1481071117
9.44370431543
9.63012433913
9.82758470692
10.0352640773
10.2509970639
10.4756625275
10.708865607
10.9534542867
11.2102109219
11.4812345103
11.7640804415
12.0542068789
12.3487116061
12.6461731975
12.9445771309
13.24250255
13.5360089438
13.8180271559
14.0807689471
14.3198633692
..
BGR
Bulgaria
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
13.6584308328
13.7892608897
13.9324941452
13.9861779981
13.9495909899
13.9100595238
13.8856749641
13.8618813032
13.8570425094
13.8425804094
13.998337469
14.1644879899
14.3942051087
14.6486386297
14.8739757473
15.1016679802
15.2949985842
15.4411284734
15.5746488277
15.7134398865
15.8588818591
..
BHR
Bahrain
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BHS
Bahamas, The
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BIH
Bosnia and Herzegovina
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BLR
Belarus
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
15.7726175287
15.846782421
15.8949197338
15.9414884266
16.0431015938
16.1786541103
16.317234252
16.4716022536
16.6361009038
16.8000697559
16.9952623688
17.200644622
17.4273853904
17.6677900714
17.9094149431
18.1532237831
18.3900847675
18.6074211503
18.9652259946
19.3213842432
19.5166008113
..
BLZ
Belize
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BMU
Bermuda
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BOL
Bolivia
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
25.2013452957
25.6559816397
26.1351604951
26.7665227836
27.423958446
28.1115926073
28.3328240125
28.5725634721
28.8335925779
29.1131176308
29.4117498358
29.7254748276
30.0452695081
30.3848462173
30.7541859732
31.1529078117
31.586670191
32.0525171615
32.5330567265
33.0072386992
33.4553123617
..
BRA
Brazil
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
34.7934262115
35.1379137977
35.3475091486
35.5411632582
35.7464601405
35.9562377977
36.1700347258
36.3876626987
36.6164630714
36.8614392015
37.1286549016
37.3839750401
37.6569368554
37.9551386109
38.286876626
38.6535122967
39.0615970483
39.5079033206
39.9667736637
40.4066896697
40.7993902121
..
BRB
Barbados
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BRN
Brunei Darussalam
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BTN
Bhutan
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BWA
Botswana
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CAF
Central African Republic
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CAN
Canada
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
39.6026519377
39.9682916146
40.0687318855
40.2232717357
40.4350125223
40.7040233018
40.8869199478
41.1530252908
41.5027720933
41.8731081471
42.2258878052
42.1575128934
42.4189528729
42.6405385781
42.8625066417
43.0916099282
43.3012986615
43.5152444202
43.6940536873
43.7158586718
43.7727800771
..
CHE
Switzerland
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
14.9859803337
15.0756029412
14.9949818182
14.9421447103
14.9057334858
14.889376509
14.9032513429
14.9572093679
14.9946554149
15.0155042017
15.0069829408
15.0043957544
14.9897287166
14.9771955036
14.9730003334
14.975444107
14.9800759868
14.944875043
14.8538085104
14.7634420224
14.6981122503
..
CHI
Channel Islands
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHL
Chile
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
35.0013774072
35.0247722985
34.9963332627
34.7847823918
34.5997817267
34.4523122936
34.3460278814
34.27465617
34.2338821804
34.2142631906
34.2098416194
34.2178964638
34.2412511512
34.2776375608
34.3260058185
34.3833284893
34.4504176019
34.5261065574
34.6105433729
34.6964334255
34.7765718295
..
CHN
China
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
8.97010099675
9.28486887155
9.63057812648
10.0051653881
10.4078598967
10.8435285574
11.3160266929
11.8256928236
12.3842452302
13.0001610875
13.6798092892
14.2384978575
14.7632507029
15.2899401583
15.7522939645
16.1890134385
16.599098717
16.9513692014
17.2522253719
17.4960316363
17.7430705876
..
CIV
Cote d'Ivoire
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
16.7925734139
16.8566061172
16.9304441055
17.0178222083
17.1294178625
17.2700446952
17.4393859951
17.6336922619
17.8608506882
18.0704861063
18.2844677789
18.537241524
18.8263609832
19.1395308562
19.4619734895
19.7788673247
20.0895133624
20.3126292115
20.5240351994
20.7182719031
20.8998672598
..
CMR
Cameroon
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
13.8325838353
14.056165155
14.2914507472
14.5382116655
14.801784793
15.083035654
15.3841039092
15.7014655915
16.035422871
16.3813667809
16.7376640878
17.1006544559
17.4683151629
17.835486636
18.1972293236
18.5486512188
18.8851983701
19.2033775218
19.5006519081
19.776310105
20.0295435114
..
COG
Congo, Rep.
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
29.4490523261
29.6348155495
29.8295846831
30.0225633338
30.2095039091
30.3847907532
30.5481833859
30.7409504708
30.9421527184
31.1725294941
31.4466002482
31.7683213364
32.1327680824
32.512225976
32.8731355737
33.1800529665
33.1281463919
33.0268063256
32.9000904248
32.7896760942
32.7317353216
..
COK
Cook Islands
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
COL
Colombia
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
31.0425092719
31.2471286903
31.4660104456
31.6948821239
31.9491010173
32.2193932479
32.5005636223
32.7897373754
33.0918084214
33.4073828699
33.7389849947
34.0837477612
34.4451973186
34.821158694
35.211490608
35.6114690706
36.0026102753
36.4071179399
36.8281613238
37.2642103731
37.7000430782
..
COM
Comoros
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CPV
Cape Verde
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CRI
Costa Rica
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
24.0188389181
24.2028867169
24.4027239725
24.6074967337
24.8106513876
25.0057799002
25.1918770795
25.4456161741
25.7113205499
26.0050622419
26.340101756
26.7162734646
27.134350853
27.589571098
28.0771932227
28.5886732137
29.1287410254
29.697920859
30.2740703262
30.8336038024
31.3565021002
..
CUB
Cuba
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
19.9462211579
19.9223661905
19.8524333911
19.8006595688
19.7615157005
19.7306068044
19.708470185
19.6961142765
19.6911841612
19.6904028068
19.6917359948
19.6897748759
19.689132431
19.6486732859
19.5503058753
19.4319617438
19.3055842084
19.1899996867
19.0901671755
18.9991447822
18.9169921173
..
CUW
Curacao
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYP
Cyprus
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CZE
Czech Republic
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
11.6961304642
11.7631584053
11.7084415584
11.6495982964
11.5999806502
11.5617558804
11.5358894813
11.5045273241
11.4713110375
11.4412039288
11.4086904889
11.4308489828
11.4401059966
11.4251164992
11.4032808876
11.3695736193
11.322035529
11.2428586358
11.1425418367
11.078004016
11.0440195761
..
DEU
Germany
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
7.90432062241
7.91036193666
7.91003423298
7.91375499039
7.88585431081
7.86213591044
7.81568756715
7.75484885039
7.69329652516
7.65879737352
7.65945505413
7.68626067312
7.69620642847
7.70906337457
7.7210634269
7.74239657376
7.80141523698
7.86980128405
7.9308845537
7.9962619368
8.05970047684
..
DJI
Djibouti
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DMA
Dominica
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DNK
Denmark
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
20.1418287938
20.0834303454
20.0388394584
20.0043553671
20.021556196
20.052620505
20.0612884835
20.1038374632
20.1343331447
20.1577105648
20.1810301154
20.2062078601
20.286290844
20.452003221
20.6153399528
20.7764691806
20.9142930499
21.0422969189
21.14090142
21.2504945144
21.3857192253
..
DOM
Dominican Republic
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
21.1605514419
21.103865405
21.054277542
21.0127117067
20.9877719831
20.9778572312
20.9827520793
20.9995091947
21.0271025433
21.0616275589
21.1011867248
21.1437413709
21.1914102176
21.243762644
21.3061605384
21.3824364086
21.4739391283
21.5801607939
21.6990406984
21.8275829828
21.961113372
..
DZA
Algeria
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
7.17358766778
7.15233300014
7.13664889058
7.1286084459
7.13229745315
7.14938583694
7.18061073361
7.22334916178
7.27451728794
7.32892543642
7.38313608707
7.43555318545
7.48745748023
7.53850209043
7.58920964681
7.63921703939
7.68894806216
7.73822091595
7.78830260043
7.8399193961
7.89345489346
..
EAP
East Asia & Pacific
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ECA
Europe & Central Asia
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
16.2052969027
16.2425272486
16.2766334835
16.2963727927
16.3606367472
16.4613792704
16.5897532553
16.7370857396
16.8772272492
17.0152306763
17.140186326
17.2949229424
17.4768983246
17.6215143619
17.7475724475
17.8648143417
17.981057491
18.0802336177
18.1548929703
18.2147389558
18.2646717216
..
ECU
Ecuador
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
25.9172306614
26.042050039
26.134662579
26.247541582
26.3910341896
26.5682586491
26.783116199
27.028160766
27.2936705334
27.5618059253
27.8219246736
28.0671438482
28.4000794209
28.7991862021
29.2133868539
29.6347003464
30.0487297822
30.4379127926
30.7895500664
31.0962554884
31.3570815208
..
EGY
Egypt, Arab Rep.
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
21.3299673532
21.2101845125
21.1196248305
21.0479422979
20.9844212915
20.9200724222
20.8538342014
20.7488013786
20.6183321704
20.4833985022
20.3432987843
20.1962570218
20.0442575887
19.8903506039
19.7391356919
19.5927049792
19.4529786126
19.3191854723
19.1930477698
19.0760854478
18.9699897599
..
EMU
Euro area
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
17.6029389966
17.5936171118
17.6027422089
17.6106798915
17.6282814019
17.6535013764
17.6716410661
17.6868120075
17.7065608786
17.7347638082
17.7568560564
17.7743768894
17.7774215867
17.7679916725
17.7540345676
17.7517903452
17.769012363
17.7876630671
17.8138739569
17.8699293583
17.9422781191
..
ERI
Eritrea
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ESP
Spain
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
21.924703883
22.0228408243
22.2207728881
22.4240457879
22.6390821212
22.8642166197
23.0926753153
23.3150693237
23.519791748
23.6871481795
23.7786763099
23.800937858
23.7672577906
23.6935137902
23.6288454534
23.5592162339
23.4903150959
23.4048839606
23.3709728105
23.5062110593
23.7288530986
..
EST
Estonia
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ETH
Ethiopia
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
3.70523313128
3.72285199788
3.74014155885
3.75847831784
3.78078174848
3.75903123086
3.72405132046
3.69391164497
3.66792184491
3.64469002286
3.62346020337
3.6037006626
3.58593280723
3.57019039836
3.55680989959
3.54558188134
3.53678331789
3.53003887006
3.5263162711
3.526581245
3.5318170115
..
FIN
Finland
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
17.4744083434
17.844136418
17.979690599
18.1304974339
18.2868932993
18.4594753328
18.6668097561
18.9094980675
19.1621191539
19.4209341557
19.690244903
19.8851178185
20.0051075817
20.1267382807
20.2388107082
20.3403254534
20.443110757
20.5468809088
20.6431513989
20.7330913221
20.8181632419
..
FJI
Fiji
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FRA
France
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
22.1046981727
22.0954981118
22.0927726791
22.0945794309
22.0990306568
22.1038946224
22.1097841774
22.1155449383
22.1168617473
22.16027836
22.1648424038
22.159486286
22.15449235
22.1536364678
22.1469261548
22.1359756131
22.1378793408
22.1596756115
22.1943702784
22.2339111196
22.2799867641
..
FRO
Faeroe Islands
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FSM
Micronesia, Fed. Sts.
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GAB
Gabon
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GBR
United Kingdom
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
26.0320880604
25.9155675978
25.9465342749
25.9857261992
26.0217422242
26.0557027582
26.0929290602
26.1296496019
26.1581926188
26.1762602137
26.1887206921
26.1993190088
26.2061171387
26.1972889719
26.1541542169
26.0796641462
25.9923850617
25.8922899666
25.7831734394
25.6731244853
25.5597921662
..
GEO
Georgia
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
25.4859017076
25.0382762257
24.5806914948
24.1336156869
24.1202484779
24.5071398395
24.8656008319
25.0604422279
25.0388652419
24.9664008984
24.8918814929
24.8068119643
24.860408538
25.0994940978
25.239330292
25.0685591122
24.9622555707
25.1478898915
25.3068868764
25.2780221275
25.1555425799
..
GHA
Ghana
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
12.7944021039
12.9579506173
13.1214235806
13.2889803745
13.4714499161
13.6736514498
13.898152234
14.1397236107
14.3960162601
14.6595078906
14.9262815613
15.1921034073
15.4551118974
15.7120575587
15.9598447171
16.1955379822
16.4151183218
16.6159741001
16.7982566844
16.9652862641
17.120352177
..
GIB
Gibraltar
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GIN
Guinea
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
15.5322262454
15.168574878
14.72254805
14.2917765707
13.9745623112
13.8145741672
13.8125749849
13.9334928976
14.1407185075
14.3805756723
14.6129432058
14.8286441324
15.035137972
15.2307297134
15.419017943
15.6052658822
15.7921138595
15.9801246456
16.1703129266
16.3649471167
16.5654469879
..
GMB
Gambia, The
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GNB
Guinea-Bissau
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GNQ
Equatorial Guinea
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRC
Greece
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
30.2100875898
29.982417154
29.7735101254
29.6086470476
29.4724343788
29.3553883769
29.2570454758
29.1790943676
29.1295246885
29.1075990076
29.1224111934
29.1425710622
29.1451692157
29.1441730831
29.1263522672
29.0854302945
29.0282783452
28.9645550433
28.8970796186
28.8249683588
28.7763864947
..
GRD
Grenada
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRL
Greenland
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GTM
Guatemala
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
8.99485841909
8.84912071814
8.70468361596
8.56209860327
8.43825128082
8.37711886618
8.31816626066
8.26004637688
8.20161680043
8.14067284752
8.07622891349
8.00745302749
7.93578936762
7.86260300386
7.79464244543
7.73747019184
7.69480158811
7.66807482265
7.6567876083
7.65921244999
7.67306586891
..
GUM
Guam
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GUY
Guyana
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HIC
High income
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HKG
Hong Kong SAR, China
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
100
100
100
100
100
100
100
100
100
100
100
100
100
100
100
100
100
100
100
100
100
..
HND
Honduras
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
11.8176160199
11.8632907373
11.9162578552
11.9773038113
12.0507670809
12.1377754906
12.2392736136
12.3523911052
12.4765554566
12.6082154766
12.7456859764
12.8866858077
12.9399732151
12.9882467788
13.0412621561
13.1001477924
13.1664635869
13.2430083789
13.3292535872
13.4239642477
13.5250674822
..
HRV
Croatia
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HTI
Haiti
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
15.9198678096
16.4033832266
16.9082328007
17.2977066377
17.7013058129
18.118203725
18.5496264086
18.6770721726
18.813463973
18.9616376379
19.5881472293
20.2466215897
20.9420618467
21.6745511685
22.4317062851
23.2220515484
24.0538483676
24.9268950996
25.8418776188
26.7913466429
21.4490645533
..
HUN
Hungary
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
19.3291914353
19.1091541828
18.8976425792
18.7030739592
18.5144471982
18.3281480768
18.1493434639
17.9781887853
17.813924222
17.660089885
17.5032031724
17.2672086078
17.0250589451
16.9046864067
16.8330703841
16.8350357611
16.8776541821
16.9202587964
16.9664086785
17.0085855537
17.0469340533
..
IDN
Indonesia
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
9.86214239306
9.83539875317
9.74759595884
9.66583819422
9.59023717863
9.52041460672
9.45638979714
9.39737593826
9.34255321998
9.29050183073
9.24049721013
9.19984879616
9.16134868056
9.12585368409
9.05833232427
8.9969209625
8.94196499946
8.89537541373
8.85835657568
8.83118109532
8.8136117132
..
IMY
Isle of Man
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IND
India
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
10.0491911267
10.185364269
10.298741421
10.4147640074
10.5389136363
10.6678876397
10.8024526662
10.9414249395
11.0863242012
11.2368792712
11.393760846
11.5604675125
11.7326397483
11.9045058519
12.070476687
12.2283197345
12.3655723152
12.4876429371
12.5914355798
12.6805899026
12.7589551283
..
IRL
Ireland
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
26.1387129899
26.0102391015
26.0440111578
26.1457356944
26.2985128966
26.2269797977
26.2313230754
26.200032606
26.1585920312
26.0952022299
25.978812007
25.7953522321
25.5952076668
25.436548438
25.2288918993
24.9346981692
24.5933834874
24.3024505093
24.1973046872
24.3142880082
24.5152998039
..
IRN
Iran, Islamic Rep.
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
23.9573506992
24.0759265685
24.0907347762
24.0935899628
24.1059296459
24.0927816561
24.0442720649
23.9528999174
23.8523171198
23.7748063277
23.7376041092
23.7415193241
23.7790363004
23.8411547053
23.916278505
23.9943631624
24.0754984204
24.162005562
24.2559385456
24.3593871065
24.4724653907
..
IRQ
Iraq
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
26.5322557929
26.473813513
26.4171531631
26.3594745254
26.3035828045
26.2485355321
26.1313038037
26.0134950847
25.9133360507
25.820167698
25.7284013063
25.7604016061
25.7935155111
25.8267996087
24.7759652435
23.7806543105
22.7352614049
21.7473551995
23.1085442675
23.0075408656
22.9079875084
..
ISL
Iceland
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ISR
Israel
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
55.9610300429
54.9453020812
55.3548701932
56.2114616993
57.1280237081
58.0179260595
58.3238229093
58.0634852639
57.9284541953
57.8351510204
57.882143425
57.9579127194
58.1033942161
58.137793922
57.959847261
57.7835384771
57.6067737499
57.4264703834
57.2482897329
56.7198888533
56.5018361619
..
ITA
Italy
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
18.5035384968
18.4563251592
18.4083725295
18.3614729183
18.3221851133
18.2864083904
18.2458197627
18.200902383
18.1605350113
18.1224053105
18.0791468096
18.0345502951
17.9445741059
17.7747699187
17.5774856339
17.435175461
17.3347355825
17.2180888248
17.1065606686
17.0311837492
16.9796381398
..
JAM
Jamaica
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
JOR
Jordan
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
26.8609148265
24.731932299
24.1840075007
23.7978879866
23.569016665
23.2005482718
22.656342304
22.1244929799
21.6051028842
21.3659651747
20.9869723814
20.6140111845
20.2579198094
19.8981603408
19.5566162571
19.2474729742
18.9562217807
18.7150653479
18.5313115604
18.3924598478
18.2801719861
..
JPN
Japan
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
46.2091810551
46.4162861823
46.5500044273
46.6845827712
46.7764718592
46.8497851545
46.9359244917
47.00336503
47.075717111
47.1780276352
47.2885851659
47.4222557787
47.5660245596
47.7193559248
47.9602210377
48.2135685943
48.4798984001
48.7253749391
48.9833164244
49.2453375586
49.4607987249
..
KAZ
Kazakhstan
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
6.60697944703
6.60007294611
6.6391610282
6.71817422274
6.85192524988
7.00942835404
7.15358559777
7.30537820561
7.47135940931
7.62959880121
7.78992296635
7.94286170018
8.08489941549
8.20217614586
8.29158280592
8.36531045131
8.4256652612
8.47915086561
8.52682203182
8.54030141287
8.47728463691
..
KEN
Kenya
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
5.88562111336
5.97376463834
6.06787387595
6.16852938641
6.27915060406
6.40064873411
6.53418108949
6.67746654146
6.82932381389
6.98587828031
7.13540773939
7.28313210305
7.43268679681
7.58460928953
7.74101024673
7.9014586612
8.06795981319
8.23544815472
8.39888933206
8.55365140929
8.69690384853
..
KGZ
Kyrgyz Republic
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KHM
Cambodia
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
6.45200005707
6.47893552499
6.51310951517
6.5564506128
6.99680696191
7.48381737582
8.02409803839
8.61931533442
9.08562798595
9.19211342155
9.31555194771
9.45463787463
9.61014142068
9.77806572104
9.95396302899
10.1341605893
10.3171572056
10.5019386816
10.6862840423
10.8695131165
11.0515618795
..
KIR
Kiribati
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KNA
St. Kitts and Nevis
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KOR
Korea, Rep.
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
50.8063659054
51.0745285199
51.0692531434
51.0932676593
51.1421478865
50.9445479343
50.6742778693
50.2517713366
49.9480026789
49.6593989317
49.3186542716
49.0053022784
48.7707362144
48.5692388057
48.4292699682
48.3735884333
48.2602873885
48.1543028727
48.0662949781
47.9996286951
47.9529943734
..
KSV
Kosovo
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KWT
Kuwait
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
66.670051593
68.8844039697
..
..
..
73.1119207377
76.5605729307
77.7512312278
77.5053254733
77.0791996843
77.2493721616
78.1237746245
79.4334858751
80.9574635154
82.359047904
83.4049612767
84.0216701163
84.2942571711
84.3224500864
84.2687449505
84.2393043966
..
LAC
Latin America & Caribbean
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
31.627143991
31.9263754627
32.0466194422
32.1619518329
32.2852797015
32.2883647384
32.5554536389
32.6878872376
32.8372468801
33.0055937002
33.0532258277
33.3331405946
33.5030663668
33.6917741577
33.8961713905
33.9876661087
34.3432074989
34.5853926764
34.829120706
35.0610466709
35.0321551707
..
LAO
Lao PDR
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LBN
Lebanon
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
43.8387354106
39.6569996441
38.8610843606
37.954716584
37.1632246037
36.6098041741
36.3178085505
36.2233310631
37.319873299
38.5332326296
39.7262239637
40.8699617108
43.3704605191
43.4601278999
43.6105473629
43.8589287389
44.2184262092
44.6459527647
45.0909125816
45.4946521197
45.8177541521
..
LBR
Liberia
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
29.9731815716
..
..
..
..
LBY
Libya
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
19.8938552654
20.0226374046
20.1579167932
20.2978322452
20.447862711
20.6088197949
20.437003166
20.2150805199
19.9952273581
19.772768528
19.5453079596
19.314911473
19.0841016485
18.8499244369
18.6093539181
18.3621912301
18.1040283772
17.8506149622
17.6334147476
17.4863520606
17.4277967092
..
LCA
St. Lucia
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LIC
Low income
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
8.34982352784
8.50649578237
8.62437290539
8.71633892338
8.81177261302
8.90286656332
9.00226379237
9.1066634289
9.21740340725
9.3277437245
9.48028094291
9.64535917222
9.82792126379
10.0198598601
10.2056926085
10.3687584129
10.5341216881
10.7373348734
10.806391075
10.9775014539
11.0514865877
..
LIE
Liechtenstein
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LKA
Sri Lanka
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LMC
Lower middle income
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
11.8986831303
11.9891438157
12.0761755762
12.1645256492
12.2586289702
12.3722906985
12.4472426354
12.5410501695
12.6409622409
12.7482808801
12.8856103923
12.9980238124
13.1327576847
13.2697095673
13.3879906343
13.5219825176
13.6077842864
13.7071105722
13.8288265939
13.925715443
14.0402292123
..
LMY
Low & middle income
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
13.3490532601
13.5073941473
13.6637785135
13.8233060038
13.9958822548
14.1858672363
14.3754055479
14.5822479493
14.8062568635
15.0492270439
15.3211426541
15.5560925627
15.7956415816
16.0340619476
16.2469342297
16.4542430797
16.6403255174
16.814291153
16.9742858217
17.1144279654
17.2427337142
..
LSO
Lesotho
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LTU
Lithuania
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LUX
Luxembourg
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LVA
Latvia
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAC
Macao SAR, China
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAF
St. Martin (French part)
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
18.328230319
18.4738887876
18.6389715933
18.8203688925
19.018662625
18.9968583588
18.9386130645
18.8915034357
18.8565416326
18.8338631269
18.823736936
18.8248158103
18.8366367803
18.8567867402
18.8829974664
18.9123603071
18.9501859222
19.0012614475
19.0683235545
19.1523823782
19.2524574501
..
MCO
Monaco
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MDA
Moldova
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MDG
Madagascar
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
8.40465842983
8.56965980932
8.73581720965
8.90111683108
8.91276376545
8.90718090258
8.8991576237
8.88845435158
8.87768117766
8.86814898458
8.86135054105
8.85657270554
8.85614073055
8.86109897579
8.87168290335
8.88854933032
8.91205071724
8.9423605657
8.97917056553
9.02242827647
9.07130162719
..
MDV
Maldives
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MEX
Mexico
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
33.3025259398
33.4117128597
33.5442294882
33.6947582465
33.8629080215
34.0457755301
34.1898170342
34.3214274694
34.4792799129
34.6716908076
34.796752976
34.7779048012
34.7895120253
34.8202179679
34.8564743883
34.8866991986
34.9100584995
34.9227687526
34.9222475732
34.9087225967
34.8814090667
..
MHL
Marshall Islands
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MIC
Middle income
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
13.9274045138
14.0926807526
14.2605899699
14.4354574631
14.6246244778
14.8329492298
15.0408425047
15.2665549726
15.5107759298
15.776731648
16.0694641254
16.321310564
16.5757033271
16.827841771
17.0519753505
17.2718539602
17.4691333943
17.6510209714
17.826356266
17.9698276018
18.1126728055
..
MKD
Macedonia, FYR
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MLI
Mali
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
8.60594211742
8.76337068726
8.902223063
9.02610554103
9.14433162478
9.26192756687
9.38073090662
9.4972509815
9.61132348019
9.72078151458
9.82575621558
9.92879773343
10.0337805213
10.1438727817
10.2609999292
10.3853015055
10.5148050482
10.6474629882
10.781369835
10.9161530061
11.0510156632
..
MLT
Malta
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MMR
Myanmar
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
9.02079702755
9.07485306122
9.13565605596
9.20005466262
9.26563568411
9.33037864037
9.39277082959
9.45399507028
9.52128894708
9.60298235237
9.70505582363
9.82920866281
9.97356415881
10.1317226422
10.294726436
10.4545369566
10.6099077448
10.7619526937
10.9128711629
11.0661931733
11.2248392574
..
MNA
Middle East & North Africa
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
20.4569904726
20.3808222091
20.3522251315
20.3308724843
20.3297457774
20.3039506199
20.2607803228
20.2109065742
20.1789504366
20.1600669105
20.1450073982
20.142919218
20.1657833797
20.1597996743
20.0584022955
19.9679580977
19.8853369639
19.8125637457
19.9783480404
20.0095472643
20.047336377
..
MNE
Montenegro
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNG
Mongolia
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNP
Northern Mariana Islands
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MOZ
Mozambique
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
5.72657154946
5.78966299576
5.80350822839
5.78903221159
5.7755077897
5.78061803556
5.80802543464
5.85036458366
5.90305432256
5.96054621585
6.02038739703
6.08506740056
6.15923284667
6.24505571698
6.34379034536
6.45475282081
6.57468487083
6.6996293577
6.82610856629
6.95168345123
7.07415939581
..
MRT
Mauritania
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MUS
Mauritius
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MWI
Malawi
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MYS
Malaysia
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
8.04844995448
8.06314529992
8.06550709753
8.07248245963
8.08536965727
8.10230391573
8.12387025769
8.15034355533
8.18333634376
8.22342065214
8.2718194634
8.3236868215
8.38396051319
8.45470647781
8.53919233083
8.63824973877
8.75404677607
8.88551026792
9.02834803917
9.17578001241
9.32075425327
..
MYT
Mayotte
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NAM
Namibia
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NCL
New Caledonia
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NER
Niger
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
5.54295101383
5.62155090233
5.69647613673
5.7673087105
5.83605201794
5.90313855909
5.9690152267
6.03272995121
6.09636227333
6.16060398443
6.22653164532
6.29337254051
6.35936635873
6.42176367322
6.47855713084
6.52954112873
6.57595041002
6.61980765058
6.66262653022
6.70707829822
6.75405604955
..
NGA
Nigeria
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
12.1794264164
12.4446203222
12.6161087789
12.720197934
12.8309966773
12.9473384499
13.0699826012
13.1968027925
13.327887029
13.4605469938
13.5940585472
13.7261190629
13.8592820329
13.9940146135
14.1325384347
14.2740117637
14.4209794939
14.5721066825
14.7254249523
14.8778023458
15.0251678444
..
NIC
Nicaragua
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
17.831210807
..
..
..
..
18.7525015958
..
..
..
..
20.1261642382
..
..
..
..
21.4852103557
..
..
..
..
22.6620950378
..
NIU
Niue
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NLD
Netherlands
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
12.6204588015
12.6370072993
12.6629331928
12.6950434684
12.7272548778
12.7378266494
12.7246181607
12.6846286923
12.644438782
12.5920468206
12.5303907008
12.4700894543
12.4246072294
12.3999294435
12.390746736
12.3998306849
12.4223935726
12.437936829
12.4322181632
12.4108883591
12.3937551246
..
NOR
Norway
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NPL
Nepal
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NRU
Nauru
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NZL
New Zealand
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
25.2227668213
25.3259706446
25.6813149475
26.0142769162
26.3019253612
26.5583383242
26.7140675241
26.7899984133
26.9825950197
27.2743865871
27.5521022344
27.8985955418
28.0679498544
28.1716577275
28.4148012232
28.7608069861
29.2016202265
29.957311449
30.7596804797
31.5022012141
32.1541966207
..
OMN
Oman
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PAK
Pakistan
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
15.4174165049
15.4969628539
15.6004988819
15.7165110791
15.8348310354
15.947374315
16.0514773037
16.1503558516
16.2578753828
16.3861084755
16.5409171209
16.7203510145
16.9144674563
17.1114019635
17.2977496365
17.4659901872
17.6159825675
17.7518928509
17.8763475586
17.9973206974
18.1204245556
..
PAN
Panama
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
35.0676717747
35.1735931029
35.2799127338
35.3845938314
35.4930395825
35.6059898555
35.7249305107
35.8471212258
35.9783925303
36.1202578531
36.2759909422
36.4583163908
36.6756236228
36.9307949123
37.2208214473
37.5392989145
37.8759314912
38.219784503
38.5597537874
38.8879115838
39.1964900109
..
PER
Peru
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
26.9144222714
27.0877289258
27.2801887974
27.4872148532
27.5527042358
27.6249883379
27.7082566711
27.8017879176
27.9121417899
28.0440701221
28.2019212287
28.3835909294
28.5893824251
28.8165457253
29.0630475339
29.3237154388
29.6011499446
29.8932638048
30.1951092314
30.4859990012
30.7483751834
..
PHL
Philippines
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
14.3233129751
14.4456821585
14.5795066365
14.7207839154
14.8687046654
15.0207537649
14.9201274649
14.771630465
14.6287971511
14.491745541
14.3716751133
14.3086993303
14.2507400681
14.1997113033
14.1587068388
14.1282300429
14.1098101359
14.1015329821
14.0994182314
14.0989273099
14.0970464353
..
PLW
Palau
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PNG
Papua New Guinea
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
POL
Poland
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
4.2716533574
4.2745212371
4.27805248054
4.27974466315
4.27781006445
4.28039577481
4.28450981408
4.28842949547
4.29412603713
4.30253505096
4.33295243427
4.36385349161
4.37471900608
4.39593483188
4.41688281002
4.43723373329
4.45854092891
4.46893749725
4.47632268777
4.48097292268
4.48383512422
..
PRI
Puerto Rico
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
43.5057675997
44.8463691464
46.2593189288
47.6181006373
48.9768135092
50.376924023
51.7171389028
53.1898718689
54.9016278592
56.7105016972
58.6548179235
60.4583705946
62.2259135696
63.8718301456
65.3144598607
66.5012752121
67.4201068366
68.094138005
68.5474944956
68.8122717584
68.9456511194
..
PRK
Korea, Dem. Rep.
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
12.5400308551
12.6338574175
12.7227231322
12.8131205352
12.7797773104
12.6292264104
12.5006868539
12.3908627977
12.2959283579
12.2104048897
12.1304685772
12.0550556224
11.9851528779
11.9210463997
11.8635528355
11.8129241541
11.7689275374
11.7305561181
11.696740105
11.666062042
11.636984931
..
PRT
Portugal
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
37.3997574778
37.3722496225
37.4995182174
37.6910567475
37.8347069414
37.9602373591
38.0906613625
38.1984735851
38.2847072761
38.3529192058
38.3966846329
38.3836430957
38.3420956921
38.312692898
38.3284659926
38.393773916
38.505881895
38.6585642327
38.8486495488
39.0538352193
39.262570962
..
PRY
Paraguay
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
25.7008713765
25.9521382274
26.2241588611
26.4246125949
26.6278930788
26.8484672178
27.0877343201
27.3420079168
27.613567393
27.8996831062
28.2004304638
28.5116341069
28.8372312011
29.1767754557
29.5257719417
29.8782125451
30.2271229041
30.5650078972
30.8841935835
31.1790077788
31.4455171764
..
PYF
French Polynesia
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
QAT
Qatar
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ROM
Romania
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
8.78846899642
8.87606210912
9.04232305059
8.99328059767
8.94050415732
8.89823200035
8.86513181175
8.82497118028
8.78379327201
8.74051351158
8.68577284677
8.74698174589
8.83922211349
8.87836374672
8.90348533011
8.92600945042
8.94706264216
8.96574644497
8.98208121347
8.9998459526
9.0216953521
..
RUS
Russian Federation
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
16.7802133628
16.7601497739
16.7350523576
16.7008281713
16.7056965268
16.750300727
16.852194072
16.9935439635
17.1235604054
17.2667101819
17.3486387839
17.4738734715
17.6378125431
17.7316363074
17.8032699373
17.8745288159
17.9605466667
18.0281773399
18.0644783374
18.0945632711
18.1241234568
..
RWA
Rwanda
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SAS
South Asia
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
10.4568757156
10.6082165037
10.7343281713
10.857132656
10.9876616661
11.1223680683
11.26271321
11.4069288967
11.5575886143
11.7154012323
11.8921543665
12.081018594
12.2769608115
12.4743158612
12.6618805394
12.8360967796
12.992550042
13.1354931073
13.2619134095
13.3747494618
13.4772176858
..
SAU
Saudi Arabia
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
33.7877569396
35.1233286806
36.5795657998
36.9945338501
37.1772796388
37.5134282166
38.0298914107
38.6828591826
39.3513689739
39.861549075
40.1011340527
40.0295799508
39.7275748784
39.3219625482
38.9682941162
38.7543906032
38.6821901917
38.6995016032
38.7661250648
38.8335306233
38.8699998973
..
SDN
Sudan
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
8.90775249452
9.37845005501
9.86668008327
10.3095561774
10.5297340464
10.7573311659
10.9928812364
11.1224516485
11.2575910174
11.4002378458
11.552355525
11.7135380559
11.7287918761
11.7458235968
11.7589470699
11.7632526883
11.7638833423
11.7689625916
11.7859355384
11.8210590728
11.8761251077
..
SEN
Senegal
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
19.3981059088
19.5307768462
19.6688611458
19.8156556851
19.9815427464
20.1696234672
20.3830811509
20.6149991575
20.8594736661
21.1035025394
21.3399794779
21.5636569957
21.7806818864
21.9929663712
22.1956229263
22.3842033983
22.5539813649
22.7018558544
22.828064151
22.9349546724
23.0251055838
..
SGP
Singapore
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
98.995077125
98.7492902938
98.4995821339
98.848528746
98.7115238374
98.7423748049
97.8786607459
97.7741306639
97.4825320839
99.3473109859
99.7625809975
98.5894635089
98.6723180077
100
100
100
99.1554959786
97.7325110055
95.3635368021
94.9730932713
95.2723422696
..
SID
Small island developing states
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLB
Solomon Islands
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLE
Sierra Leone
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLV
El Salvador
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
18.1822562904
18.5024427938
18.816842227
19.0043529361
19.1757153299
19.3868351437
19.6430122373
19.9384049228
20.2702167045
20.6293623482
21.009577791
21.4084515541
21.8288266338
22.2648561052
22.7106690694
23.158614815
23.6077054737
24.0563801741
24.4911436714
24.900270647
25.2737569702
..
SMR
San Marino
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SOM
Somalia
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
15.6873607891
16.7803605697
17.0443257155
17.3214063132
17.5204820065
17.5734903858
17.4589963362
17.210441226
16.8819293879
16.5408334631
16.2300262751
15.9538339222
16.170259627
16.4072836792
16.6617651252
16.9274146849
17.2096579853
12.5987505801
13.6760641362
14.8335476644
16.0756679547
..
SRB
Serbia
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
14.8918929607
14.9142876252
14.7990609507
14.6814386435
14.598457207
14.5743630097
14.6153301431
14.7125140611
14.8555084771
14.8931469295
14.9245125224
14.9339375723
14.924444979
14.9469340056
14.9655166038
14.9948345393
15.0402161809
15.0935457034
15.1603876945
15.2357383551
15.3196937049
..
SSA
Sub-Saharan Africa
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
11.2563445555
11.4235239673
11.5563404435
11.6649899713
11.7558028857
11.8512488791
11.9557198614
12.0761979542
12.2070404552
12.342140622
12.4815520679
12.6296197067
12.7872513017
12.9501531312
13.1163884337
13.2713794279
13.4242814658
13.592716531
13.6657633402
13.8138305394
13.9550737615
..
STP
Sao Tome and Principe
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SUR
Suriname
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SVK
Slovak Republic
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SVN
Slovenia
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SWE
Sweden
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
12.1306577871
12.1986794161
12.3697277342
12.5429197348
12.7026432972
12.8822443664
13.062603189
13.1935398828
13.3321358368
13.4672477251
13.5947457436
13.6733753092
13.7157888839
13.7554265297
13.7893441655
13.8293713237
13.8325236317
13.8173184091
13.7929183112
13.7529164603
13.7047777211
..
SWZ
Swaziland
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SXM
Sint Maarten (Dutch part)
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYR
Syrian Arab Republic
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
30.9135438193
30.8912724111
30.8817604697
30.892879639
30.9429358328
31.0671767177
31.2524696355
31.477907529
31.7119292983
31.9075405227
32.0396228948
32.0944682462
32.1000136887
32.1014557718
32.158102088
32.3025026561
32.6567722763
33.0367740203
33.44701062
33.8758168742
34.292665092
..
TCA
Turks and Caicos Islands
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TCD
Chad
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TGO
Togo
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
16.8827576197
17.3586818758
17.8924190425
18.4467519006
18.9770071538
19.4483308253
19.8478973982
20.1893202868
20.5128780605
20.8661434253
21.2839501125
21.7709923912
22.3215616802
22.9241243947
23.5629854964
24.2205499807
24.9009567609
25.5966987044
26.2952719628
26.9852431242
27.6554721973
..
THA
Thailand
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
10.3174446592
10.2774283241
10.260907809
10.2571011998
10.252200825
10.2362379365
10.206856295
10.1670860511
10.1204415159
10.0719196905
10.0254660638
9.98251784667
9.94552211749
9.91996255424
9.90980025048
9.91564230929
9.93534685121
9.96552607156
10.002771138
10.0452387634
10.0929478061
..
TJK
Tajikistan
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TKM
Turkmenistan
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TMP
Timor-Leste
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TON
Tonga
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TTO
Trinidad and Tobago
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TUN
Tunisia
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TUR
Turkey
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
24.3394028642
24.6673257201
24.9328729972
25.2051071359
25.4875091418
25.7797833807
26.0822051053
26.3919018962
26.6614983342
26.9069646097
27.168753525
27.4455567483
27.7301397263
28.0089867515
28.2680760838
28.4972660363
28.6909816291
28.8491405839
28.9750059677
29.0753491639
29.1558902069
..
TUV
Tuvalu
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TZA
Tanzania
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
5.1633937137
5.23933092939
5.31323293269
5.38897969456
5.47389138874
5.57164684749
5.68380661436
5.80731155703
5.94018198524
6.07749333869
6.21618482855
6.35416090003
6.49312046211
6.63216636841
6.76886404104
6.90120353252
7.02762368001
7.14731123374
7.26018779319
7.36707938368
7.46887250585
..
UGA
Uganda
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
4.26483090097
4.30087829444
4.31582607395
4.3338995511
4.35560433709
4.38040283567
4.40869883343
4.43927942563
4.47100363981
4.50142239766
4.52932129358
4.55369739757
4.57584257542
4.59624331502
4.61600169641
4.63634603726
4.65815222349
4.68232009372
4.71001798631
4.74252136584
4.78064668556
..
UKR
Ukraine
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
12.3604312804
12.2927485696
12.2159339179
12.1681126187
12.1876330721
12.2433558018
12.3114082962
12.3830770355
12.4531321399
12.5299280219
12.6153697341
12.7015594461
12.8156008506
12.9292294242
13.0373180251
13.1530480213
13.2729827786
13.3840679347
13.4893467537
13.582794284
13.6698066522
..
UMC
Upper middle income
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
15.6530362931
15.8895020086
16.1402175897
16.4044055643
16.690818258
17.0026041158
17.3387007077
17.6987513341
18.0907570817
18.5206078172
18.9837478053
19.3804882676
19.7716451349
20.1583021045
20.5099515462
20.8480857425
21.1732441656
21.4656592748
21.7250372437
21.9471778044
22.1606931555
..
URY
Uruguay
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
49.7268682284
49.6200106032
49.5051614579
49.3853231079
49.2667346177
49.1548212587
49.19631877
48.9873146203
48.826570975
48.7055375103
48.6303303861
48.6219074809
48.7217168844
48.8979764457
49.0278435682
49.0677228552
49.0293459037
48.9713307175
48.8971377771
48.8085279907
48.7045460504
..
USA
United States
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
41.5633715643
41.6518991545
41.7248372409
41.8291652399
41.9780766629
42.1472491156
42.3345215558
42.5085128935
42.7056334148
42.9163911984
43.1484644118
43.4156116486
43.6987738183
43.9858641665
44.2057908997
44.3853786775
44.5018305854
44.5560441674
44.6030150308
44.6442286332
44.7456158796
..
UZB
Uzbekistan
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
10.2406777182
10.0880441008
9.85755513078
9.63925804393
9.45500290477
9.28876892693
9.11581485468
8.95805974564
8.8369049104
8.73211885246
8.65964300203
8.56017142628
8.4879430828
8.42047583474
8.35445310784
8.28796353199
8.21834718981
8.13120910532
8.02783950911
7.9263264799
7.84665711748
..
VCT
St. Vincent and the Grenadines
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VEN
Venezuela, RB
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
33.5526886076
33.4109669753
33.1898591413
32.9892855452
32.8103461057
32.6542711972
32.5192338459
32.4035018947
32.3097638064
32.2322998282
32.1845049566
32.1368786594
32.1034139572
32.0875983485
32.0885980021
32.1062083757
32.1275424513
32.1548266201
32.180247002
32.2029770293
32.2142019838
..
VIR
Virgin Islands (U.S.)
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VNM
Vietnam
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
9.1214738089
9.1559566583
9.1966834234
9.24202772653
9.29287040502
9.34812314659
9.40811572966
9.4720759445
9.53953347832
9.64616099649
9.88071373641
10.129261902
10.3975976474
10.6747990516
10.9580636487
11.2132546864
11.4698078331
11.7373401677
12.0161966958
12.3039537528
12.597005265
..
VUT
Vanuatu
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
WBG
West Bank and Gaza
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
WLD
World
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
16.8050327923
16.9353810244
17.0407820514
17.1688444546
17.3098724245
17.4814383941
17.6405083687
17.8111130706
17.9988674164
18.205145241
18.4339566772
18.6372744187
18.8431178143
19.0475964983
19.2289404419
19.402557252
19.5622334585
19.7043163338
19.8362883924
19.950024315
20.0575858396
..
WSM
Samoa
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
YEM
Yemen, Rep.
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
5.46917952306
5.73718161878
6.00606875169
6.28869074918
6.60797541685
6.82673130461
6.95842977539
7.12051158389
7.30601159908
7.50203939985
7.70018437994
7.89684314164
8.09640322053
8.2990631683
8.50737564352
8.72077162649
8.93653111813
9.14975584351
9.35632604022
9.55294734522
9.73720668035
..
ZAF
South Africa
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
27.8085369318
28.0912273614
28.2891496588
28.4842690793
28.6797903457
28.8745603272
29.0586880962
29.2436435647
29.4210819341
29.5833834038
29.7314840909
30.0092131466
30.4961213874
31.0118067518
31.5366296344
32.0402426613
32.4982433828
32.9024829869
33.2340226846
33.50020225
33.5954056006
..
ZAR
Congo, Dem. Rep.
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
13.1853189067
13.3189210796
13.4645633578
13.6234744877
13.7980068439
13.9895508625
14.1988176674
14.42560261
14.6625704322
14.9087470342
15.1729147104
15.455469746
15.75683862
16.0755824889
16.4100903446
16.6277746482
16.8599851595
17.1019187646
17.3525156927
17.6081030331
17.8657469375
..
ZMB
Zambia
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
9.63648718399
9.7211790026
9.8175303276
9.91827417939
10.0170271285
10.1084752254
10.1904391116
10.2643202677
10.3385974346
10.42209165
10.5209280696
10.6347139785
10.7549270017
10.8696620057
10.9661251157
11.036369894
11.0807945972
11.1039515622
11.1096050506
11.1019820735
11.2232175231
..
ZWE
Zimbabwe
EN.URB.MCTY.TL.ZS
Population in urban agglomerations >1million (%)
0
0
10.0052229387
10.342656897
10.7205000323
10.7492944139
10.738690022
10.7418825638
10.7564191942
10.7838079765
10.8320090245
10.9104816708
11.0257687032
11.1767659919
11.3598726375
11.5713318908
11.800266029
12.0349597468
12.2736978792
12.508856288
12.7178133666
12.8768400685
12.9785623843
..
ABW
Aruba
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ADO
Andorra
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AFG
Afghanistan
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
42.0363636364
..
..
..
..
..
..
..
..
..
..
..
AGO
Angola
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
0.432702702703
..
..
..
..
..
..
..
..
..
..
..
ALB
Albania
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
4.46096654275
..
..
..
..
..
..
..
..
..
6.83271375465
..
..
..
..
..
..
..
..
..
..
..
ARE
United Arab Emirates
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
1148.66666667
..
..
..
..
1679.33333333
..
..
..
..
2032
..
..
..
..
..
..
ARG
Argentina
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
10.3550724638
..
..
..
..
11.8007246377
..
..
..
..
..
..
..
..
..
..
..
ARM
Armenia
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
42.6447003936
..
..
..
..
..
..
25.2660737717
..
..
..
41.2159206881
..
..
..
..
..
ASM
American Samoa
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ATG
Antigua and Barbuda
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
3.2692307692
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AUS
Australia
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
4.85772357724
..
..
..
..
..
..
..
..
..
..
..
AUT
Austria
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
6.5
..
..
..
..
..
..
..
..
..
..
..
AZE
Azerbaijan
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
154.15896488
..
..
..
..
124.091189156
..
..
150.462107209
..
..
..
..
..
..
BDI
Burundi
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
2.86282306163
..
..
..
..
..
..
..
..
..
..
..
BEL
Belgium
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BEN
Benin
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
1.26213592233
..
..
..
..
..
..
..
..
..
..
BFA
Burkina Faso
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
3.008
..
..
..
..
..
..
..
7.88
..
..
..
..
..
..
..
..
..
..
..
BGD
Bangladesh
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BGR
Bulgaria
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
35.6857142857
..
..
..
..
..
..
..
..
..
..
..
24.2476190476
..
..
..
..
..
..
..
..
..
BHR
Bahrain
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
4872.5
..
..
..
..
..
..
..
..
..
..
..
6375
..
..
..
..
..
..
..
..
BHS
Bahamas, The
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BIH
Bosnia and Herzegovina
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BLR
Belarus
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
11.6612903226
..
..
..
..
..
..
..
..
..
..
..
BLZ
Belize
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
0.71875
..
..
..
0.9375
..
..
..
..
..
..
..
..
..
..
..
BMU
Bermuda
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BOL
Bolivia
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
0.667874794069
..
..
..
..
..
..
..
..
..
..
..
BRA
Brazil
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
1.01273532669
..
..
..
1.09449981543
..
..
..
..
..
1.07179771133
..
..
..
..
..
BRB
Barbados
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
76.125
..
..
..
..
..
..
..
..
..
..
..
BRN
Brunei Darussalam
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
0.894117647059
..
..
1.08235294118
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BTN
Bhutan
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BWA
Botswana
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
4.7083333333
..
..
5.975
..
..
..
..
8.08333333333
..
..
..
..
..
..
..
..
..
..
..
CAF
Central African Republic
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
0.0473758865248
..
..
..
..
..
..
..
..
..
..
..
CAN
Canada
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
1.61298245614
..
..
..
..
..
..
..
..
..
..
..
CHE
Switzerland
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
6.4702970297
..
..
..
..
..
..
..
..
..
..
..
CHI
Channel Islands
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHL
Chile
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
1.28280542986
..
..
..
..
..
..
..
..
..
..
..
CHN
China
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
17.7746178457
..
..
18.6775684323
..
..
..
..
..
..
..
..
..
..
..
19.6978314966
..
..
..
..
..
..
CIV
Cote d'Ivoire
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
1.43154606976
..
..
..
1.60333159813
..
..
..
..
..
1.8336803748
..
..
..
..
..
..
..
..
..
..
..
CMR
Cameroon
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
0.1465201465
..
..
..
..
..
..
..
0.351428571429
..
..
..
..
..
..
..
..
..
..
..
COG
Congo, Rep.
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
0.0207207207
..
..
..
..
..
..
..
..
..
COK
Cook Islands
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
COL
Colombia
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
0.598958333333
..
..
..
..
..
..
..
..
..
..
..
COM
Comoros
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
0.833333333333
..
..
..
..
..
..
..
..
..
..
..
..
CPV
Cape Verde
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
6.76666666667
..
..
..
..
..
..
..
..
..
..
CRI
Costa Rica
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
5.1352313167
..
..
2.38434163701
..
..
..
..
..
..
..
..
..
..
..
CUB
Cuba
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
13.6516264428
..
..
..
..
19.8006295908
..
..
..
..
..
..
..
..
..
..
..
CUW
Curacao
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYP
Cyprus
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
28.5897435897
..
..
26.6666666667
..
..
..
..
..
..
24.5
..
..
..
..
..
..
..
..
..
..
..
CZE
Czech Republic
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
13.6349809886
..
..
..
..
..
..
..
..
..
..
..
DEU
Germany
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
42.2429906542
..
..
..
..
..
36.5887850467
..
..
..
..
..
..
..
..
..
..
DJI
Djibouti
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
6.3
..
..
..
..
..
..
..
..
..
..
..
DMA
Dominica
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DNK
Denmark
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
17.4
..
..
..
..
..
..
..
..
..
..
..
DOM
Dominican Republic
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
39.7095238095
..
..
..
..
..
16.5952380952
..
..
..
..
..
..
..
..
..
..
..
DZA
Algeria
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
54.6133333333
..
..
..
..
..
..
..
..
..
EAP
East Asia & Pacific
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
10.8278237436
..
..
..
..
ECA
Europe & Central Asia
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
6.48343852429
..
..
..
..
ECU
Ecuador
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
3.9328703704
..
..
3.53009259259
..
..
..
..
..
..
..
..
..
..
..
EGY
Egypt, Arab Rep.
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
3268.88888889
..
..
..
..
3788.88888889
..
..
..
..
..
..
..
..
..
..
..
EMU
Euro area
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
21.5258584723
..
..
..
..
ERI
Eritrea
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
14.7642857143
..
..
..
20.7857142857
..
..
..
..
..
..
..
ESP
Spain
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
33.3992805755
..
..
..
..
..
..
..
..
..
..
..
EST
Estonia
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
1.24311565696
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ETH
Ethiopia
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
4.5557377049
..
..
..
..
..
..
..
..
..
FIN
Finland
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
2.13644859813
..
..
..
..
..
..
..
..
..
..
..
FJI
Fiji
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
0.286164623468
..
..
..
..
..
..
..
..
..
..
..
FRA
France
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
15.875
..
..
..
..
..
..
..
..
..
..
..
FRO
Faeroe Islands
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FSM
Micronesia, Fed. Sts.
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GAB
Gabon
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
0.0792682926829
..
..
..
..
..
..
..
..
..
..
..
GBR
United Kingdom
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
10.0206896552
..
..
..
..
..
..
..
..
..
..
GEO
Georgia
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.78857732668
..
..
..
..
..
..
GHA
Ghana
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
3.24092409241
..
..
..
..
..
..
..
..
..
..
..
GIB
Gibraltar
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GIN
Guinea
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
0.716814159292
..
..
..
..
..
..
..
..
..
..
..
GMB
Gambia, The
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
2.37666666667
..
..
..
..
..
..
..
..
..
..
..
GNB
Guinea-Bissau
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
0.10375
..
..
..
..
..
..
..
..
1.09375
..
..
..
..
..
..
..
..
..
..
..
GNQ
Equatorial Guinea
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
0.0669230769231
..
..
..
..
..
..
..
..
..
..
..
GRC
Greece
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
12.2379310345
..
..
..
..
..
..
..
..
..
..
..
GRD
Grenada
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRL
Greenland
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GTM
Guatemala
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
2.6858974359
..
..
..
..
..
..
..
..
..
..
..
GUM
Guam
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GUY
Guyana
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
0.6058091286
..
..
..
..
..
..
..
0.680497925311
..
..
..
..
..
..
..
..
..
..
..
HIC
High income
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
10.4204331796
..
..
..
..
HKG
Hong Kong SAR, China
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HND
Honduras
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
1.24465756281
..
..
..
..
..
..
..
..
..
..
..
HRV
Croatia
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HTI
Haiti
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
7.53189853958
..
..
..
..
..
..
..
..
9.22367409685
..
..
..
..
..
..
..
..
..
..
..
HUN
Hungary
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
89.5833333333
..
..
..
..
..
..
..
..
..
IDN
Indonesia
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
3.68103021298
..
..
..
..
..
..
..
..
..
5.61168895493
..
..
..
..
..
..
..
..
..
..
..
IMY
Isle of Man
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IND
India
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
39.1849529781
..
..
..
..
..
..
..
..
..
47.8369905956
..
..
..
..
..
..
..
..
..
..
..
IRL
Ireland
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IRN
Iran, Islamic Rep.
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
64.5914396887
..
..
..
..
..
69.8054474708
..
..
72.4513618677
..
..
..
..
..
..
..
IRQ
Iraq
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
121.590909091
..
..
..
..
..
..
154.517045454
..
..
187.471590909
..
..
..
..
..
..
..
..
..
..
..
ISL
Iceland
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
0.0548235294118
..
..
..
..
..
..
..
..
..
..
..
ISR
Israel
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
237.066666667
..
..
..
..
..
..
..
..
..
..
..
240.666666667
..
..
..
..
241.866666667
..
..
..
..
ITA
Italy
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
24.8273972603
..
..
..
..
..
..
..
..
..
..
..
JAM
Jamaica
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
9.56507868992
..
..
..
..
..
..
6.21225010634
..
..
..
..
..
..
..
..
..
..
..
JOR
Jordan
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
144.281524927
..
..
..
..
..
..
..
..
..
..
..
..
136.524926686
..
..
..
..
..
..
JPN
Japan
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
21.2558139535
..
..
..
..
..
..
..
20.5558139535
..
..
..
..
..
..
..
..
..
..
..
KAZ
Kazakhstan
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
42.8798727128
..
..
..
..
42.0578095996
..
..
..
..
..
..
..
..
..
..
..
KEN
Kenya
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
9.89855072464
..
..
..
..
..
..
..
..
..
..
..
..
13.2125603865
..
..
..
..
..
..
..
..
KGZ
Kyrgyz Republic
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
20.6128702758
..
..
..
..
..
20.5924412666
..
..
..
..
..
..
..
..
..
..
..
KHM
Cambodia
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
3.38308457711
..
..
..
..
..
1.81094527363
..
..
..
..
..
KIR
Kiribati
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KNA
St. Kitts and Nevis
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KOR
Korea, Rep.
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
39.2752505783
..
..
..
..
..
..
..
..
..
KSV
Kosovo
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KWT
Kuwait
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LAC
Latin America & Caribbean
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.9967990742
..
..
..
..
LAO
Lao PDR
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
1.5756302521
..
..
..
..
..
..
..
..
..
..
..
LBN
Lebanon
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
26.9375
..
..
..
..
..
29.8541666667
..
..
..
..
26.3125
..
..
..
..
..
..
LBR
Liberia
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
0.08925
..
..
..
..
..
..
..
..
..
..
..
LBY
Libya
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
793.333333333
..
..
..
766.666666667
..
..
..
..
..
718
..
..
..
..
..
..
..
..
..
..
..
LCA
St. Lucia
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LIC
Low income
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.69667531807
..
..
..
..
LIE
Liechtenstein
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LKA
Sri Lanka
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
18.5018939394
..
..
..
..
..
..
..
..
..
24.6401515152
..
..
..
..
24.5265151515
..
..
..
..
..
..
LMC
Lower middle income
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
18.7161084022
..
..
..
..
LMY
Low & middle income
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
8.41368876737
..
..
..
..
LSO
Lesotho
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
0.956022944551
..
..
..
..
..
..
..
..
..
..
..
LTU
Lithuania
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
1.62596401028
..
..
..
..
..
17.7249357326
..
..
..
..
..
..
..
..
..
..
LUX
Luxembourg
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LVA
Latvia
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
1.70250896057
..
..
..
..
2.41935483871
..
..
..
..
..
..
..
..
..
..
..
MAC
Macao SAR, China
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAF
St. Martin (French part)
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
38.0689655172
..
..
38.8275862069
..
..
..
..
43.4137931034
..
..
..
..
..
..
..
..
..
..
..
MCO
Monaco
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MDA
Moldova
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
296.3
..
..
..
..
..
..
..
191.5
..
..
..
..
..
..
..
..
..
..
..
MDG
Madagascar
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
4.35608308605
..
..
..
..
..
..
..
..
..
..
..
MDV
Maldives
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MEX
Mexico
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
17.7457212714
..
..
..
..
19.2982885086
..
..
..
..
MHL
Marshall Islands
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MIC
Middle income
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
9.08351703909
..
..
..
..
MKD
Macedonia, FYR
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
28.7962962963
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MLI
Mali
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
10.91
..
..
..
..
..
..
..
..
..
..
..
MLT
Malta
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
62.3762376238
..
..
..
..
53.4653465347
..
..
..
..
..
..
..
..
..
MMR
Myanmar
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
3.31306081755
..
..
..
..
..
..
..
..
..
..
..
MNA
Middle East & North Africa
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
121.901657014
..
..
..
..
MNE
Montenegro
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNG
Mongolia
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
1.22988505747
..
..
..
..
..
..
1.43735632184
..
..
..
..
..
..
..
..
..
..
..
MNP
Northern Mariana Islands
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MOZ
Mozambique
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
0.603190428714
..
..
..
..
..
..
..
..
..
0.741974077767
..
..
..
..
..
..
..
..
..
..
..
MRT
Mauritania
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
399.75
..
..
..
..
..
..
..
..
..
..
..
MUS
Mauritius
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
20.5743366049
..
..
..
..
22.3555070883
..
..
..
..
22.1737549982
..
..
26.3540530716
..
..
..
..
..
..
..
..
MWI
Malawi
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
5.79925650558
..
..
..
..
..
6.00681536555
..
..
..
..
..
..
..
..
..
..
..
MYS
Malaysia
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
1.74482758621
..
..
..
..
..
..
..
..
..
2.13793103448
..
..
..
..
..
..
..
..
..
..
..
MYT
Mayotte
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NAM
Namibia
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
4.03733766234
..
..
..
4.42694805195
..
..
..
..
4.86525974026
..
..
..
..
..
..
..
..
..
..
..
NCL
New Caledonia
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NER
Niger
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
67.5428571429
..
..
..
..
..
..
..
..
..
..
..
NGA
Nigeria
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
4.66515837104
..
..
..
..
..
..
..
..
..
..
..
NIC
Nicaragua
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
0.678966789668
..
..
..
..
..
..
..
..
..
..
..
NIU
Niue
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NLD
Netherlands
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
105.090909091
..
..
..
..
..
..
..
..
..
..
NOR
Norway
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
0.475130890052
..
..
..
..
..
..
..
..
..
..
..
NPL
Nepal
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
5.07568113017
..
..
..
..
..
..
..
..
..
..
..
NRU
Nauru
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NZL
New Zealand
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
0.645259938838
..
..
..
..
..
..
..
..
..
..
..
OMN
Oman
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
87.3571428571
..
..
..
..
..
..
..
..
94.7142857143
..
..
..
..
..
..
..
..
..
..
..
PAK
Pakistan
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
282.909090909
..
..
..
..
..
..
..
..
313.818181818
..
..
..
..
..
..
..
..
..
..
..
PAN
Panama
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
0.30644504749
..
..
..
..
..
..
..
..
..
..
..
PER
Peru
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
1.1738861386
..
..
..
..
..
..
..
1.19616336634
..
..
..
..
..
..
..
..
..
..
..
PHL
Philippines
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
16.4718162839
..
..
..
..
..
PLW
Palau
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PNG
Papua New Guinea
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
0.0338826466916
..
..
..
..
..
..
..
..
..
..
..
POL
Poland
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
24.4589552239
..
..
..
..
..
..
..
..
..
..
..
PRI
Puerto Rico
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
11.1830985915
..
..
..
..
11.6225352113
..
..
..
..
12.0633802817
..
..
..
..
14.014084507
..
..
..
..
..
..
PRK
Korea, Dem. Rep.
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
10.3074626866
..
..
..
..
..
..
..
..
..
..
..
PRT
Portugal
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
31.2631578947
..
..
..
..
..
..
..
..
..
..
..
PRY
Paraguay
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
0.521276595745
..
..
..
..
..
..
..
..
..
..
..
PYF
French Polynesia
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
QAT
Qatar
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
331.964285714
..
..
..
..
348.035714286
..
..
..
..
471.428571429
..
..
..
..
..
..
ROM
Romania
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
48.2505910165
..
..
..
..
..
..
29.4562647754
..
..
..
..
23.1205673759
21.7257683215
..
..
..
..
..
..
..
..
RUS
Russian Federation
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
1.7876188268
..
..
..
..
..
..
1.53489450498
..
..
..
..
..
..
..
..
..
..
RWA
Rwanda
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
1.57894736842
..
..
..
..
..
..
..
..
..
..
..
SAS
South Asia
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
50.6493585828
..
..
..
..
SAU
Saudi Arabia
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
680.833333333
..
..
..
..
..
..
..
..
..
..
..
..
..
943.333333333
..
..
..
..
..
SDN
Sudan
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
51.6666666667
..
..
..
..
59.3333333333
..
..
..
..
123.8
..
..
..
..
..
..
..
..
..
..
..
SEN
Senegal
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
8.6085271318
..
..
..
..
..
..
..
..
..
SGP
Singapore
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SID
Small island developing states
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.3846913779
..
..
..
..
SLB
Solomon Islands
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLE
Sierra Leone
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
0.30825
..
..
..
..
..
..
..
..
..
..
..
SLV
El Salvador
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
4.1064788732
..
..
..
..
..
..
..
7.75211267606
..
..
..
..
..
..
..
..
..
..
..
SMR
San Marino
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SOM
Somalia
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
54.8333333333
..
..
54.9666666667
..
..
..
..
..
..
..
..
SRB
Serbia
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SSA
Sub-Saharan Africa
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.22767791991
..
..
..
..
STP
Sao Tome and Principe
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
0.321100917431
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SUR
Suriname
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
0.761363636364
..
..
..
..
..
..
..
..
..
..
..
SVK
Slovak Republic
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SVN
Slovenia
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SWE
Sweden
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
1.75438596491
..
..
..
..
..
..
..
..
..
1.63625730994
..
..
..
..
..
..
..
..
..
..
..
SWZ
Swaziland
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
39.4696969697
..
..
..
..
..
..
..
..
..
..
..
SXM
Sint Maarten (Dutch part)
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYR
Syrian Arab Republic
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
202.327537858
..
..
..
..
229.38867078
..
..
234.997195738
..
..
..
..
..
..
TCA
Turks and Caicos Islands
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TCD
Chad
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
2.44666666667
..
..
..
..
..
..
..
..
..
..
..
TGO
Togo
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
1.4695652174
..
..
..
..
..
..
..
..
..
THA
Thailand
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
25.5278396437
..
..
..
..
TJK
Tajikistan
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
17.9034690799
..
..
..
..
..
18.0392156863
..
..
..
..
..
..
..
..
..
..
..
TKM
Turkmenistan
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
1748.52941176
..
..
..
..
..
1831.61764706
..
..
..
..
..
..
..
..
..
..
..
TMP
Timor-Leste
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TON
Tonga
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TTO
Trinidad and Tobago
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
7.734375
..
..
6.03125
..
..
..
..
..
..
..
..
..
..
..
TUN
Tunisia
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
73.1108462455
..
..
..
..
67.9141835518
..
..
..
..
..
67.6281287247
..
..
..
..
..
..
..
..
..
..
TUR
Turkey
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
13.9207048458
..
..
..
..
..
..
..
18.5022026432
..
..
17.6651982379
..
..
..
..
..
..
..
..
TUV
Tuvalu
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TZA
Tanzania
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
6.1714285714
..
..
..
..
..
..
..
..
..
UGA
Uganda
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
0.8451282051
..
..
..
..
..
..
..
..
..
UKR
Ukraine
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
72.4670433145
..
..
..
..
..
..
..
..
..
..
..
UMC
Upper middle income
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
5.574521417
..
..
..
..
URY
Uruguay
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
5.33898305085
..
..
..
..
..
..
..
..
..
..
..
USA
United States
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
16.3910574876
..
..
..
..
16.5862313698
..
..
..
..
16.7778566359
..
..
..
..
16.9552874379
..
..
..
..
..
..
UZB
Uzbekistan
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
355.263157895
..
..
..
..
..
364.810281518
..
..
..
..
..
..
..
..
..
..
..
VCT
St. Vincent and the Grenadines
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VEN
Venezuela, RB
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
1.25401439646
..
..
..
..
..
..
..
..
..
..
..
VIR
Virgin Islands (U.S.)
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VNM
Vietnam
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
22.8241513634
..
..
..
..
..
..
VUT
Vanuatu
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
WBG
West Bank and Gaza
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
34.3596059113
..
..
..
51.4778325123
..
..
..
..
..
..
WLD
World
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
8.84098657857
..
..
..
..
WSM
Samoa
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
YEM
Yemen, Rep.
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
139.142857143
..
..
..
..
..
..
..
..
..
161.428571429
..
..
..
..
..
..
..
..
..
..
..
ZAF
South Africa
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
29.6651785714
..
..
..
..
28.75
..
..
..
..
27.8571428571
..
..
..
..
..
..
..
..
..
..
..
ZAR
Congo, Dem. Rep.
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
0.0691333333333
..
..
..
..
..
..
..
..
..
..
..
ZMB
Zambia
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
2.1783042394
..
2.12718204489
..
..
..
..
..
2.16957605985
..
..
..
..
..
..
..
..
..
..
..
ZWE
Zimbabwe
ER.H2O.FWTL.ZS
Annual freshwater withdrawals (% of internal resources)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
34.2985318108
..
..
..
..
..
..
..
..
..
ABW
Aruba
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
0.105546596441
0.104929774539
0.104929774539
0.104929774539
0.104929774539
0.104929774539
0.104929774539
0.104929774539
0.104929774539
0.104929774539
0.104929774539
0.104929774539
0.104929774539
0.104929774539
0.104929774539
0.104929774539
0.104929774539
0.104929774539
0.104929774539
0.104930038545
..
..
ADO
Andorra
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
5.559145495
5.55873852691
5.55833162663
5.55792479629
5.55751804012
5.55711134964
5.55670472911
5.55629817639
5.5558916936
5.5558916936
5.5558916936
5.5558916936
5.5558916936
5.5558916936
6.02911161455
6.02911161455
6.02911161455
6.02911161455
6.02911161455
6.02917932036
..
..
AFG
Afghanistan
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
0.432993228161
0.433000567575
0.433007918032
0.433015279844
0.4330226527
0.433030036444
0.433037431543
0.433044837374
0.433052254405
0.433052254405
0.433052254405
0.433052254405
0.433052254405
0.433052254405
0.433052254405
0.433052254405
0.433052254405
0.433052254405
0.433052254405
0.433051634867
..
..
AGO
Angola
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
12.3998212281
12.3998220487
12.399822686
12.3998233313
12.3998239766
12.3998246299
12.3998252832
12.3998259444
12.3998266057
12.3998266057
12.3998266057
12.3998266057
12.3998266057
12.3998266057
12.3998266057
12.3998266057
12.3998266057
12.3998266057
12.3998266057
12.3998327002
..
..
ALB
Albania
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
4.33661483246
4.33645255471
4.33629005433
4.3361273487
4.39177416479
4.39160792828
5.99006390506
5.9898728724
5.9896815371
8.00635426134
8.00635426134
8.00635426134
8.15304512976
8.16643917494
8.71362146501
9.7896160228
9.7896160228
9.7896160228
9.7896160228
9.78970847265
..
..
ARE
United Arab Emirates
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
0.266885480597
0.266886484808
0.266889498711
0.267615790023
0.304184020779
0.304700223896
0.305230390174
0.305764345027
0.306298373383
0.306298373383
0.306298373383
5.32841057987
5.32841057987
5.61950331283
5.61950331283
5.61950331283
5.61950331283
5.61950331283
5.61950331283
5.61683075716
..
..
ARG
Argentina
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
4.58764384878
4.77246763254
5.06085528202
5.15629018214
5.23538637053
5.26006499633
5.34910834397
5.41982058393
5.41982795111
5.41982795111
5.41984898995
5.42543495596
5.42543495596
5.42543495596
5.42543495596
5.42543495596
5.42543495596
5.42543495596
5.42543495596
5.42543741528
..
..
ARM
Armenia
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
6.93069512615
6.93070817294
6.93071782749
6.93072613458
6.93073422608
6.93074237822
6.93075065162
6.93075893514
6.93076727928
6.93076727928
6.93076727928
6.93076727928
7.99134507701
7.99134507701
7.99134507701
7.99134507701
7.99134507701
7.99134507701
7.99134507701
7.9914121199
..
..
ASM
American Samoa
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
0.267522808351
0.310188083509
0.310627603734
0.31106660143
0.311505094174
0.31194307864
0.31238055103
0.312817532717
0.313253991877
0.313253991877
0.313253991877
0.313253991877
0.313253991877
0.313253991877
0.313253991877
0.313253991877
0.313253991877
0.313253991877
0.313253991877
0.313241336722
..
..
ATG
Antigua and Barbuda
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
6.43906098686
6.44131352871
6.4435604574
6.58704012039
6.58937480777
6.5916955556
6.59400202557
6.59629421767
6.59857092139
6.5985709192
6.5985709192
6.5985709192
6.5985709192
6.5985709192
6.59857092139
7.01134061031
7.01134061031
7.01134061031
7.01134061031
7.00324377169
..
..
AUS
Australia
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
7.42522987892
7.91527299734
7.9397736986
7.99060248641
7.99706233498
8.02049264852
8.06100071131
8.0891939695
8.28597883536
8.40530372923
8.79272581118
8.88051922753
10.276584747
10.3198351562
10.3385543646
10.3855563379
10.5026549627
10.5026586405
10.5026586405
10.5026622341
..
..
AUT
Austria
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
20.1143916835
20.991142712
21.0148730959
21.033735478
21.0437719859
21.0536141241
21.4390062624
22.2764309132
22.6104989982
22.8266917964
22.8926447382
22.9021239139
22.9021622515
22.9224248821
22.9224248821
22.9224248821
22.9224248821
22.9224248821
22.9224248821
22.9223859366
..
..
AZE
Azerbaijan
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
6.1753659894
6.21213401537
6.21213270269
6.75303200653
6.75303147752
6.7530310527
6.75303071932
6.75303051327
6.75303041603
6.75303041603
6.75303041603
6.75303041603
6.75303041603
6.80236886245
7.10299542336
7.14790537617
7.14790537617
7.14790537617
7.14790537617
7.14784158612
..
..
BDI
Burundi
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
3.84011069471
3.84002828281
3.83994586723
4.22091830197
4.22086321737
4.22080812543
4.66171481806
4.66165971142
4.66160459008
4.66160459008
4.84884160469
4.84884160469
4.84884160469
4.84884160469
4.84884160469
4.84884160469
4.84884160469
4.84884160469
4.84884160469
4.84883875289
..
..
BEL
Belgium
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
0.583369118585
0.587442020966
0.588429712175
0.590217070471
0.591039731701
0.591250463815
0.592257074603
0.606282638765
0.650432500622
0.659296105069
0.822206941681
0.866198407517
0.871046456916
0.873678625166
0.878830936878
0.885070824
0.885070824
0.885070824
0.885070824
0.884918709628
..
..
BEN
Benin
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
23.8065310112
23.8063932828
23.806258706
23.8061241293
23.8059895526
23.8058549845
23.8057204078
23.8055858397
23.805451263
23.805451263
23.805451263
23.805451263
23.805451263
23.805451263
23.805451263
23.805451263
23.805451263
23.805451263
23.805451263
23.8054533727
..
..
BFA
Burkina Faso
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
13.3461686186
13.3462109046
13.346251226
13.3462915402
13.34633184
13.3463721289
13.5079892093
13.508029708
13.508070185
13.508070185
13.508070185
13.508070185
13.508070185
13.9055681382
13.9055681382
13.9055681382
13.9055681382
13.9055681382
13.9055681382
13.9055638763
..
..
BGD
Bangladesh
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
1.53789663924
1.5379218511
1.53794804362
1.53797419188
1.53800029733
1.53802635923
1.60036178336
1.60039366504
1.60042550603
1.60042550603
1.60042550603
1.64126216308
1.64126216308
1.64126216308
1.64126216308
1.64126216308
1.64126216308
1.64126216308
1.64126216308
1.64125504861
..
..
BGR
Bulgaria
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
1.94378212604
2.41686992785
3.10501814813
3.1059935368
3.11461403707
4.09661857674
4.09724369958
4.10523705559
4.10524314512
4.10627342978
4.50458903139
4.59409446872
8.95599023405
9.03461003914
9.0459876688
9.05342742489
9.06659204501
9.06659204501
9.06659204501
9.06656634648
..
..
BHR
Bahrain
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
1.34936050353
1.34936050353
1.34936050353
1.34936050353
1.34936050353
1.34936050353
1.34936050353
1.34936050353
1.34936050353
1.34936050353
1.34936050353
1.34936050353
1.34936050353
1.34936050353
1.34936050353
1.34936050353
1.34936050353
1.34936050353
1.34936050353
1.34936058294
..
..
BHS
Bahamas, The
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
6.08144568015
6.0811488636
6.08381720409
6.08352046712
7.35537908717
7.35512061968
7.35486219011
7.35460379401
7.35434544254
7.35434544254
7.35434544254
7.35434544254
13.6590924449
13.6590924449
13.6590924449
13.6590924449
13.6590924449
13.6590924449
13.6590924449
13.6589604969
..
..
BIH
Bosnia and Herzegovina
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
0.535938425198
0.535915328547
0.535892356639
0.535869507718
0.535846782563
0.535824186447
0.535801723079
0.535779391286
0.535757190288
0.535757190288
0.535757190288
0.535757190288
0.535757190288
0.563679995822
0.563679995822
0.575447618871
0.575447618871
0.575447618871
0.575447618871
0.575448261524
..
..
BLR
Belarus
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
6.54194959103
6.64433283602
6.70758664582
6.86995339102
6.89014425926
7.21402059751
7.2680039989
7.2679875243
7.26797102074
7.26797099661
7.26798857628
7.26798857628
7.26798857628
7.26798857628
7.26798857628
7.26798857628
7.26798857628
7.26798857628
7.26798857628
7.2679883543
..
..
BLZ
Belize
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
15.4158489241
16.0293326982
16.0293044805
16.0292762403
17.1454576861
17.592016936
17.9739129251
23.6249849772
24.1512766319
24.1512766319
24.2676900991
25.4097971225
25.5692265329
25.5695049381
26.2644924922
27.9480497397
27.9480497397
27.9480497397
27.9480497397
27.9479171104
..
..
BMU
Bermuda
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
5.22023580596
5.33352911435
5.34752069716
5.36152170062
5.37549411088
5.38944185586
5.40340577824
5.41739973805
5.43145844768
5.43145844768
5.56893245738
5.56893245738
5.56893245738
5.56893245738
5.56893245738
5.56893245738
5.56893245738
5.56893245738
5.56893245738
5.56802356202
..
..
BOL
Bolivia
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
8.45988485431
8.58362240762
8.95352214692
9.01008081875
9.01008119034
14.036445632
14.0382129814
17.686164727
17.6871234952
17.6871234952
17.8632893966
17.8632893966
17.866607224
17.9639145412
18.2063961814
18.2063961814
18.2063961814
18.2063961814
18.2063961814
18.2063953281
..
..
BRA
Brazil
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
10.7531953234
10.9945413211
11.3492896411
11.4424983416
12.4881495175
12.9007330158
13.645060805
14.6775657289
15.9895383548
16.8225121886
18.7140099283
19.5966823304
22.2389934821
22.9353373167
24.6948533201
26.7627407058
28.0264457509
28.0286850651
28.0286850651
28.0286909716
..
..
BRB
Barbados
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
0.0878379115522
0.0876367788759
0.0875877882639
0.08753869159
0.0874894899804
0.0874401850113
0.0873907642975
0.0873412476553
0.0872916226995
0.0872916226995
0.0872916226995
0.0872916226995
0.0872916226995
0.0872916226995
0.0872916226995
0.0872916226995
0.0872916226995
0.0872916226995
0.0872916226995
0.0864945809436
..
..
BRN
Brunei Darussalam
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
35.5677122936
42.8506859773
42.851533097
42.8523789922
42.8532234783
42.8540665387
42.85490819
42.8557484658
42.8565873325
42.8565873325
42.8565873325
42.8565873325
42.8565873325
42.8565873325
42.8565873325
42.8565873325
42.8565873325
42.8565873325
42.8565873325
42.8567275658
..
..
BTN
Bhutan
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
14.2461119066
14.246246578
14.2463813621
18.1089199735
18.1090477635
26.3757205261
26.375820317
26.375920108
28.3482511535
28.3482511535
28.3482511535
28.3482511535
28.3482511535
28.3482511535
28.3482511535
28.3482511535
28.3482511535
28.3482511535
28.3482511535
28.3482190501
..
..
BWA
Botswana
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
30.3155989926
30.3155914388
30.9304809686
30.9304200735
30.9303591611
30.9313201481
30.9312605435
30.931200956
30.9311413514
30.9311413514
30.9311413514
30.9311413514
30.9330883441
30.9330883441
30.9330883441
30.9330883441
30.9330883441
30.9330883441
30.9330883441
30.9333201035
..
..
CAF
Central African Republic
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
14.4071478305
14.4071689796
14.6617285998
14.6626693092
14.6626853651
14.6627014466
14.6627175521
14.6627336849
14.6627836394
14.6627836394
14.6627836394
14.6627836394
14.6627836394
14.6627836394
14.6627836394
14.6627836394
14.6627836394
14.6627836394
14.6627836394
14.6627760389
..
..
CAN
Canada
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
6.01230147911
6.01616041194
6.18818524996
6.92260591781
7.05645131323
7.18239192948
7.36108141015
7.3936985603
7.633011379
7.86784936116
7.8865253429
7.95657559547
7.95793526538
8.03436705166
8.03436705166
8.03436705166
8.03436705166
8.03436705166
8.03436705166
8.03437695618
..
..
CHE
Switzerland
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
14.5459123509
14.8603846479
17.8427060498
17.8430169561
17.8440323079
17.8593004197
21.7800434214
21.7802463074
22.8247161247
22.8247161247
22.8253911978
22.8290118069
22.8290118069
22.8295009542
22.8295009542
22.8295009542
22.8295009542
22.8295009542
22.8295009542
22.8295322006
..
..
CHI
Channel Islands
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHL
Chile
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
15.9679707034
15.9677661676
15.9705981064
15.9706340384
16.1219215289
16.4814591748
16.4812448992
16.4810357962
16.495478866
16.495478866
16.495478866
16.495478866
16.495478866
16.4964330241
16.4964330241
16.4964330241
16.4964330241
16.4964330241
16.4964330241
16.4966797964
..
..
CHN
China
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
13.5385698258
13.5681521574
13.6644058703
13.7837435861
13.9254401265
14.0005510833
14.3553075088
14.4838576306
14.6214017973
14.8615351695
15.4628599838
16.2787889876
16.5992976524
16.5992984642
16.5992984642
16.5992984642
16.5992984642
16.5992984642
16.5992984642
16.5992980797
..
..
CIV
Cote d'Ivoire
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
22.5924717941
22.5924660275
22.5924528745
22.5924396906
22.5924264851
22.5924132549
22.5925505457
22.5925370564
22.5925235424
22.5925235424
22.5925235424
22.5925235424
22.5925235424
22.5925235424
22.5925235424
22.5925235424
22.5925235424
22.5925235424
22.5925235424
22.5925384849
..
..
CMR
Cameroon
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
7.01564981606
7.14354130803
7.14352349274
7.14350569023
7.60208226178
7.61962265876
7.76787702833
7.76786048267
7.76784396897
7.76784396897
8.67606014791
9.15024672964
9.15394355909
9.15394355909
9.15394355909
9.15394355909
9.15394355909
9.15394355909
9.15394355909
9.15394261326
..
..
COG
Congo, Rep.
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
5.4399210377
5.43991864343
5.43991074785
6.7855596337
6.78646576332
6.78645687279
6.78644798227
6.78643909174
6.78643020121
7.80790243879
7.80790243879
9.36920500336
9.44763250706
9.44763250706
9.44763250706
9.44763250706
9.44763250706
9.44763250706
9.44763250706
9.447604922
..
..
COK
Cook Islands
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
0.0749853061
0.0748862715
0.0747870103
0.1445881885
0.1445371477
0.1444860393
0.7557197667
0.7556685071
0.7628824149
0.7628824149
0.8071026997
0.8071026997
0.8071026997
0.8071026997
0.8071026997
0.8071026997
0.8071026997
0.8071026997
0.8071026997
0.806410955
..
..
COL
Colombia
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
20.343148193
20.3468302036
20.3505817495
20.3593738793
20.359393774
20.3596872592
20.3599264752
20.3665271729
20.3665491897
20.3665489714
20.4019268999
20.4019268999
20.4053577298
20.4053577298
20.4053577298
20.4102098737
20.4102098737
20.4102098737
20.4102098737
20.4102088082
..
..
COM
Comoros
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
..
..
CPV
Cape Verde
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
2.46892905543
2.46891627708
2.46891627708
2.46891627708
2.46891627708
2.46891627708
2.46891627708
2.46891627708
2.46891627708
2.46891627708
2.46891627708
2.46891627708
2.46891627708
2.46891627708
2.46891627708
2.46891627708
2.46891627708
2.46891627708
2.46891627708
2.46891627708
..
..
CRI
Costa Rica
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
18.6699252113
19.8340314775
19.8421793402
19.8795930947
20.5633033655
20.70559022
20.7150804144
20.7359049938
20.7576179602
20.761881776
20.7733959649
20.7733959649
20.9152328449
20.9152328449
20.9152328449
20.9152328449
20.9152328449
20.9152328449
20.9152328449
20.9153675429
..
..
CUB
Cuba
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
4.25671348748
4.25665926432
4.25658650007
4.25651364355
4.25644068939
4.25636764655
4.25629451323
4.25622129122
4.25614798054
4.2590143747
4.2590143747
6.07969234433
6.24916186785
6.24916186785
6.24916186785
6.24916186785
6.24916186785
6.24916186785
6.24916186785
6.24918543613
..
..
CUW
Curacao
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
7.04813973466
7.34389474357
7.93658564248
7.93366395307
7.93357245129
7.9306422685
7.96173482806
8.67610621051
8.67372705369
8.67372705369
8.67372705369
8.67372705369
8.69400508497
8.69400508497
8.69400508497
8.69400508497
8.69400508497
8.69400508497
8.69400508497
8.66567525338
..
..
CYP
Cyprus
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
7.82271858739
9.97741044793
10.9800098444
10.9798141547
10.9796181947
10.9794219787
10.9794219787
10.9794219787
10.9794219787
10.9794219787
10.9794219787
10.9794219787
10.9794219787
10.9794219787
10.9794219787
10.9794219787
10.9794219787
10.9794219787
10.9794219787
10.9794219787
..
..
CZE
Czech Republic
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
13.7241397022
15.0447142475
15.0709178919
15.0761111677
15.111793807
15.12076444
15.1225466462
15.1226337004
15.1226592918
15.1219130866
15.1230595643
15.1247506992
15.1247506992
15.1247517901
15.1247517901
15.1247517901
15.1247517901
15.1247517901
15.1247517901
15.1247239142
..
..
DEU
Germany
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
31.8356410871
32.2668644759
32.5029198576
32.7558695249
33.1130398142
33.3336667466
33.7318295325
34.9994073564
36.346442741
37.0561954772
37.4901526276
38.9558480296
39.0161988187
39.834111165
39.967768796
40.4718162872
40.4718162872
40.4718162872
40.4718162872
40.4718250684
..
..
DJI
Djibouti
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
0.00256871590592
0.00256941273697
0.00257010488929
0.00257079233086
0.00257147372489
0.0025721371457
0.00257277926507
0.00257340016999
0.00257399975975
0.00257399975975
0.00257399975975
0.00257399975975
0.00257399975975
0.00257399975975
0.00257399975975
0.00257399975975
0.00257399975975
0.00257399975975
0.00257399975975
0.00257800888333
..
..
DMA
Dominica
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
21.3739789989
21.3739461333
21.3739134895
21.3738810677
21.3738488677
21.3738169027
21.3737851596
21.3737536383
21.373722339
21.373722339
21.6669670691
21.6669670691
21.6669670691
21.6669670691
21.6669670691
21.6669670691
21.6669670691
21.6669670691
21.6669670691
21.6668755466
..
..
DNK
Denmark
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
4.75404394653
4.78178766701
4.84301875013
4.89922733695
4.90794695786
4.91391104434
4.93558269394
4.94536120685
4.94681468518
4.94817485701
4.95046254361
4.95133664548
4.95136908428
4.95136908428
4.95136908428
4.95136908428
4.95136908428
4.95136908428
4.95136908428
4.95186048382
..
..
DOM
Dominican Republic
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
22.1327798134
22.1327798134
22.1327798134
22.1327798134
22.1327798134
22.1327798134
22.1327798134
22.1327798134
22.1327798134
22.1327798134
22.1327798134
22.1327798134
22.1327798134
22.1327798134
22.1327798134
22.1327798134
22.1327798134
22.1327798134
22.1327798134
22.1327798134
..
..
DZA
Algeria
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
6.30637376014
6.30637456893
6.30637542074
6.30779595316
6.30905964482
6.30905996317
6.30906026862
6.30906056977
6.30906085801
6.317288358
6.317288358
6.317288358
6.317288358
6.31732700354
6.31732700354
6.31732700354
6.31732700354
6.31732700354
6.31732700354
6.31732917179
..
..
EAP
East Asia & Pacific
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
10.7938965881
10.8740576187
11.1650975147
11.8944516146
12.0360599847
12.1461428478
12.6762353446
12.9702502789
13.2230378022
13.5573029809
14.0849018834
14.6054215884
14.847448207
14.8482199011
14.9113457055
14.9117624333
14.9119781566
14.9128306086
14.9128306062
14.9128314229
..
..
ECA
Europe & Central Asia
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
6.64443866272
6.75126149554
6.83813742601
6.98296717593
7.15068557216
7.19807470484
7.26983629568
7.33320635105
7.37858979659
7.40698495196
7.40948833142
7.41421437869
7.44163844018
7.44307710157
7.45144074339
7.47739255308
7.47772506899
7.4777538939
7.47769775332
7.47770503552
..
..
ECU
Ecuador
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
21.6263789168
21.9989857149
22.0608431458
22.5215496574
23.3250286492
23.4650644838
24.936586658
24.9405216037
24.9404930181
24.9404928128
25.0948480591
25.0948480591
25.0948480591
25.0948480591
25.0948480591
25.0948480591
25.0948480591
25.0948480591
25.0948560083
25.0948454365
..
..
EGY
Egypt, Arab Rep.
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
1.94377007349
1.94377265021
2.0175877187
2.01759199095
2.01759626725
2.0176005476
3.95772665867
3.95773860031
4.28104411772
4.28688880517
4.28688880517
4.28688880517
5.38729404242
5.87999775084
5.87999775084
5.87999775084
5.87999775084
5.87999775084
5.87999775084
5.88000723122
..
..
EMU
Euro area
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
11.225922936
12.1596244724
12.2475596241
12.3927987937
12.5268658792
12.8433855355
13.0784691572
13.4510309382
13.9156902896
14.1729421919
14.2723939145
14.660871986
14.7774454441
14.974188963
15.2601012887
15.4126591301
15.4347515668
15.4515453656
15.4516285787
15.4516309331
..
..
ERI
Eritrea
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
4.87399855393
4.87395987168
4.87392117631
4.87388246697
4.8738437445
4.87380500808
4.87376625853
4.87372749665
4.87368872411
4.87368872411
4.87368872411
4.87368872411
4.87368872411
4.87368872411
4.87368872411
4.87368872411
4.87368872411
4.96100134473
4.96100134473
4.961005331
..
..
ESP
Spain
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
7.71364185822
7.90938914304
7.94651768075
7.9829262164
8.28075873328
8.39111139654
8.5189795596
8.51902447184
8.54638910012
8.55072266442
8.55072250072
8.55103406
8.56176017133
8.56710726975
8.5719685405
8.57196837876
8.57196821506
8.57196805333
8.57196788962
8.5719662723
..
..
EST
Estonia
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
19.6042765395
19.6279981985
19.7668205138
19.7677903057
19.7678646366
19.7679838537
19.7681171557
19.8457357719
19.8460913798
19.8490405203
19.9329334691
19.9433996728
19.9433252626
19.9433283077
19.9504884684
19.9504884684
19.9504884684
19.9504884684
19.9504884684
19.9502799371
..
..
ETH
Ethiopia
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
17.7107938135
17.710829113
17.7108644212
17.7108997207
17.7109349937
17.7109702227
17.7110054076
17.7110405749
17.7110757158
17.7110757158
17.7110757158
17.7110757158
17.7110757158
17.7110757158
17.7110757158
17.7110757158
17.9638378504
18.3986779899
18.3986779899
18.398677162
..
..
FIN
Finland
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
4.24566245581
8.67357750311
8.69868638696
8.72291454143
8.77970497204
8.78901729459
8.80141416007
8.80785779382
8.82194402649
8.83422314313
8.93763099874
8.95417550211
8.9704219404
9.00547714851
9.03637844925
9.06597522547
9.06601981663
9.06601981663
9.06601981663
9.0660279163
..
..
FJI
Fiji
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
1.06800085483
1.0680264752
1.06806380746
1.06810114338
1.06813848817
1.06817583349
1.25092678407
1.33710957347
1.33713638848
1.33713638848
1.33893875818
1.33893875818
1.33893875818
1.33893875818
1.33893875818
1.33893875818
1.33893875818
1.33893875818
1.33893875818
1.33893910383
..
..
FRA
France
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
10.1309211959
10.3955808098
10.4120461206
10.4299410503
10.457504011
11.4499684636
11.9261971391
12.279306234
13.2602605085
13.7263379498
13.727926371
14.0541752387
14.0563720215
14.194846643
15.1030264786
15.1039691883
15.1039691883
15.1039691883
15.1039691883
15.1039986399
..
..
FRO
Faeroe Islands
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FSM
Micronesia, Fed. Sts.
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
2.74351325925
2.74292046167
2.74232792747
2.74173565542
2.74114365408
2.74055191367
3.90455699736
3.90364887007
3.90274078566
4.02569304184
4.02569304184
4.02569304184
4.02569304184
4.02569304184
4.02569304184
4.02569304184
4.02569304184
4.02569304184
4.02569304184
4.02534532349
..
..
GAB
Gabon
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
4.1554071222
4.15541354603
4.15541993979
4.15542629972
4.15543262582
4.15543891433
4.15544516901
4.15545139738
5.04657666316
5.21975005724
5.22126297626
5.22327645407
14.5963011513
14.8889585858
14.8889585858
14.8889585858
14.8889585858
14.8889585858
14.8889585858
14.8889891037
..
..
GBR
United Kingdom
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
21.822162914
22.1977827638
22.4938843405
22.7225082178
23.12233399
23.3578252154
23.6190225169
23.6593811339
23.6911249038
23.7277268135
23.9951550065
24.2629353325
24.2673371157
24.2744461293
24.2744461293
24.352375429
24.3523783562
24.3523783562
24.3523783562
24.3525518792
..
..
GEO
Georgia
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
2.76257751594
2.76244073992
2.76228892789
2.76213672715
2.7619833988
2.76183002044
3.06821058863
3.06805732602
3.6512350401
3.6512350401
3.6512350401
3.6512350401
3.6512350401
3.6512350401
3.6512350401
3.6512350401
3.6512350401
3.6512350401
3.6512350401
3.6512416556
..
..
GHA
Ghana
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
13.9474931364
13.9953188137
13.9953273977
13.9953359776
13.9953445533
13.9953531248
13.995361093
13.9953696687
13.9953782527
13.9953782527
13.9953782527
13.9953782527
13.9953782527
13.9953782527
13.9953782527
13.9953782527
13.9953782527
13.9953782527
13.9953782527
13.9953856343
..
..
GIB
Gibraltar
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
0
4.67782398712
4.67782398712
4.67782398712
4.67782398712
4.67782398712
4.67782398712
4.67782398712
4.67782398712
4.67782398712
4.67782398712
4.67782398712
4.67782398712
4.67782398712
4.67782398712
4.67782398712
4.67782398712
4.67782398712
4.67782398712
4.67782398712
..
..
GIN
Guinea
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
6.7787410441
6.77874984183
6.77875771435
6.77876559904
6.77877350402
6.77878142117
6.77878935456
6.77879730418
6.77880526597
6.77880526597
6.77880526597
6.77880526597
6.77880526597
6.77880526597
6.77880526597
6.77880526597
6.77880526597
6.77880526597
6.77880526597
6.77880052217
..
..
GMB
Gambia, The
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
1.47525267645
1.47529438623
1.47540076658
1.53238172608
1.53248798093
1.53259417073
1.53270030195
1.53280636626
1.53291237014
1.53291237014
1.53291237014
1.53291237014
1.53291237014
1.53291237014
1.53291237014
1.53291237014
1.53291237014
1.53291237014
1.53291237014
1.53293333611
..
..
GNB
Guinea-Bissau
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
7.64892872904
7.64894364847
7.64895627487
7.64896892478
7.64898159527
7.64899428928
11.7375300961
11.7375579477
11.737585811
11.737585811
16.0571158686
16.0571158686
16.0571158686
16.0571158686
16.0571158686
16.0571158686
16.0571158686
16.0571158686
16.0571158686
16.0571255787
..
..
GNQ
Equatorial Guinea
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
7.26361044689
7.26357484499
7.2635392652
7.26350370384
7.26346816458
7.26343264375
7.26339714135
7.26336166106
7.26332620288
7.26332620288
19.1632380402
19.1632380402
19.1640387089
19.1640387089
19.1640387089
19.1640387089
19.1640387089
19.1640387089
19.1640387089
19.1633063917
..
..
GRC
Greece
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
5.67475127249
5.75464161782
6.24425088204
6.32314635718
6.41486069681
6.61848971407
6.78599518204
7.05886217244
7.14631975388
7.18042920956
7.29469167473
9.21921650692
9.55110561982
10.1539198637
11.4980034436
13.0738819938
13.4867631826
13.8339275011
13.8339275011
13.8340372606
..
..
GRD
Grenada
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
1.64525375877
1.64525375877
1.64525375877
1.64525375877
1.64525375877
1.64525375877
1.64525375877
1.64525375877
1.64525375877
1.66147069165
1.66147069165
1.66147069165
1.66147069165
1.66147069165
1.66147069165
1.66147069165
1.66147069165
1.66147069165
1.66147069165
1.66147773935
..
..
GRL
Greenland
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
40.3148795273
40.3148491224
40.3148191122
40.3147891019
40.3147590917
40.3147290815
40.3146990666
40.3146690564
40.3146390415
40.4946134597
40.4946134597
40.4946134597
40.4946134597
40.4946134597
40.4946134597
40.4946134597
40.4946134597
40.4946134597
40.4946134597
40.4946132415
..
..
GTM
Guatemala
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
25.9553595207
25.9599151584
25.9636031051
25.9635413156
25.9701388813
27.2851288685
28.3960057642
28.8838889739
28.967990341
29.005147223
29.030616548
29.1027798066
29.1691835423
29.5262240538
29.6146232749
30.3721037199
30.5463234879
30.6288785984
30.6288873501
30.6288710021
..
..
GUM
Guam
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
25.5363333149
25.5368215292
25.5355184604
25.5342147679
25.5329104341
25.5316054053
25.5302997172
26.3905346837
26.3894208603
26.3894208603
26.3894208603
26.3894208603
26.3894208603
26.3894208603
26.3894208603
26.3894208603
26.3894208603
26.3894208603
26.3894208603
26.3888428788
..
..
GUY
Guyana
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
2.93589697028
2.93755135936
2.93765383908
2.93775649872
2.93785933782
2.93844271517
4.64306113923
4.64316470939
4.92183463117
4.92183463117
4.92183463117
4.92183463117
4.92183463117
4.92183463117
4.92980313645
4.93849605043
4.93849605043
4.93849605043
4.93849605043
4.93848465365
..
..
HIC
High income
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
9.94184573545
10.1496388127
10.2293168108
10.4787767325
11.9780062948
12.110806486
12.2046151352
12.3328782148
12.4885260579
12.6030720423
12.7565887859
12.8465491066
13.1981086858
13.2600288623
13.3006729182
13.3281497873
13.3744736837
13.3757245096
13.3751230597
13.3752053818
..
..
HKG
Hong Kong SAR, China
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
41.0912059527
41.0941315854
41.0970162048
41.1070193443
41.2238864405
41.2267180693
41.7792337964
41.7817648671
41.7842955567
41.7842955567
41.7842955567
41.7907083042
41.7907083042
41.7907083042
41.7907083042
41.7907083042
41.7907083042
41.7907083042
41.7907083042
41.7934283534
..
..
HND
Honduras
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
13.5594386613
13.6007430006
14.9971783695
15.0092649193
15.0093971995
15.0095296915
15.0096624131
15.0097954347
15.0099287389
17.9078058349
18.1677638791
18.1677638791
18.1677638791
18.1714042328
18.1714042328
18.1745703162
18.1745703162
18.1745703162
18.1745703162
18.1745329518
..
..
HRV
Croatia
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
7.09046911863
7.09049500542
7.09052078492
7.09054645889
7.09057195345
7.09080106508
7.29569391966
7.30000910734
7.30132227177
7.30132227177
7.30132227177
7.30132227177
7.30132227177
7.30132227177
7.30132227177
7.30132227177
7.30132227177
7.30132227177
7.30132227177
7.30120240422
..
..
HTI
Haiti
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
0.268058324771
0.268058324771
0.268058324771
0.268058324771
0.268058324771
0.268058324771
0.268058324771
0.268058324771
0.268058324771
0.268058324771
0.268058324771
0.268058324771
0.268058324771
0.268058324771
0.268058324771
0.268058324771
0.268058324771
0.268058324771
0.268058324771
0.268058322946
..
..
HUN
Hungary
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
4.55962978111
4.65611076215
4.65604144361
4.66285091016
4.66278140159
4.66390432119
5.06412375601
5.08967552126
5.10262984558
5.1067265366
5.1067265366
5.1067265366
5.10858830288
5.11072383579
5.11072383579
5.11631759263
5.11631759263
5.11631759263
5.11631759263
5.11630954689
..
..
IDN
Indonesia
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
9.99857082149
10.2226722192
10.7828407801
10.8344656576
10.8344757337
10.8759846749
11.0168574787
11.9917672631
12.796430233
13.5176037688
13.5176037688
13.5181492938
13.5562066372
13.5562066372
14.1080720135
14.111433813
14.111433813
14.111433813
14.111433813
14.1114397926
..
..
IMY
Isle of Man
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IND
India
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
4.9898569184
5.02332898715
5.18445342107
5.18803863975
5.19152515482
5.22862538279
5.24368068433
5.28855938948
5.30690440181
5.31763650573
5.3334339278
5.33465810438
5.33465974271
5.33465974271
5.33465974271
5.33465974271
5.33465974271
5.33465974271
5.33465974271
5.33466097698
..
..
IRL
Ireland
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
0.636229445315
0.901821756772
0.902147423983
0.902828872498
0.906394552323
0.907609914652
0.90785061663
0.911075530556
0.951721470247
0.951721470247
0.951738294022
0.951738294022
0.951738294022
0.954739290528
0.954739290528
0.954739290528
0.954739290528
0.954739290528
0.954739290528
0.954712050915
..
..
IRN
Iran, Islamic Rep.
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
5.23844640545
5.23843580318
5.23842562552
5.23841543925
5.23840524254
5.55005961223
5.76172984882
5.76195241842
5.76194220266
5.76195492981
5.87902599091
6.87359332985
7.06778178166
7.07915553214
7.07982273031
7.07982273031
7.07982273031
7.07982273031
7.07982273031
7.07982598707
..
..
IRQ
Iraq
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
0.051100884931
0.0511523955888
0.0512039317589
0.0512554932813
0.0513070802245
0.0513586926115
0.0514103303965
0.0514619937393
0.0515136823889
0.0515136823889
0.0533500212567
0.0533500212567
0.0533500212567
0.0533500212567
0.0533500212567
0.0533500212567
0.0533500212567
0.0533500212567
0.0533500212567
0.053370698329
..
..
ISL
Iceland
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
9.49958505855
9.49989294246
9.49997809753
9.63534058198
9.64869053481
9.64886649362
9.65073990722
9.65082308263
9.65090615538
9.65090615538
9.65090615538
9.65090615538
9.65090615538
9.65090615538
9.65090615538
9.65090615538
9.65090615538
9.65090615538
9.65090615538
9.650907264
..
..
ISR
Israel
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
17.2029242518
17.2025729267
18.7425987563
18.7426350001
18.742671096
18.7427071298
18.7427431064
18.7427790305
18.742814883
18.742814883
18.742814883
18.742814883
18.742814883
18.742814883
18.742814883
18.742814883
18.742814883
18.742814883
18.742814883
18.7427808484
..
..
ITA
Italy
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
4.99357177391
6.74272616027
6.76258143161
7.53398974796
7.58335361427
7.90953302914
8.13523014568
8.59026990703
8.94638952456
9.30718922394
9.44001662913
9.58594035004
9.90540569968
9.90922569225
9.90922569225
9.90922569225
9.90922569225
9.90922569225
9.90922569225
9.9091491957
..
..
JAM
Jamaica
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
10.2474057675
10.2684760917
10.2684276775
14.070936091
14.0708694107
14.0708026762
14.0707359417
14.0706691981
14.9145427649
18.8877744424
18.8877744424
18.8877744424
18.8877744424
18.8877744424
18.8877744424
18.8877744424
18.8877744424
18.8877744424
18.8877744424
18.8878184709
..
..
JOR
Jordan
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
8.35085569782
8.35106263109
8.35127006052
9.41065052996
9.41085894947
9.41106786959
9.41127728141
9.41148719161
9.41169759351
9.41169759351
9.41169759351
9.41169759351
9.41169759351
9.41169759351
9.41169759351
9.41169759351
9.41169759351
9.41169759351
9.41169759351
9.41185038126
..
..
JPN
Japan
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
13.1944996539
13.2928076004
13.3986001395
13.7874386427
14.617547206
15.0439782662
15.1428044794
15.6009785995
15.6631251875
15.7564734454
15.7564734454
15.8108653795
16.225595991
16.3046454256
16.3046454256
16.3046454256
16.3046454256
16.3046454256
16.3046454256
16.3046054931
..
..
KAZ
Kazakhstan
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
2.40456636036
2.40746151791
2.42648759519
2.42648377461
2.42647998519
2.42647619391
2.51962356222
2.51962091315
2.51961826371
2.52093453333
2.52093453333
2.52093453333
2.52093453333
2.52093453333
2.52093453333
2.52093453333
2.52093453333
2.52093453333
2.52093453333
2.52095219653
..
..
KEN
Kenya
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
11.4965676495
11.5246441545
11.5246604471
11.6004729496
11.6062763327
11.6070691517
11.6070286844
11.6069882801
11.6069479405
11.6069479712
11.6095876007
11.6095875019
11.6105308417
11.6105308417
11.6105308417
11.6105308417
11.6105308417
11.6105308417
11.6105308417
11.6105286909
..
..
KGZ
Kyrgyz Republic
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
6.35641232791
6.35640139056
6.43479775391
6.43482382952
6.45894543163
6.77170559257
6.94172367326
6.94173450559
6.94174544294
6.94174544294
6.94174544294
6.94174544294
6.94174544294
6.94174544294
6.94174544294
6.94174544294
6.94174544294
6.94174544294
6.94174544294
6.94172483851
..
..
KHM
Cambodia
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
0.0327216284019
0.0326991048184
0.0326784642523
16.3163491337
18.2279416862
18.3335675734
18.3415737631
18.3416012683
18.345603492
23.97928683
23.97928683
23.97928683
23.97928683
23.97928683
23.97928683
23.97928683
23.97928683
23.97928683
23.97928683
23.9793074973
..
..
KIR
Kiribati
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
5.02527383497
5.02506396271
5.02485351633
5.02464248709
5.02443088373
5.02421869848
5.0240059779
5.02379283254
5.02357925852
16.8021138904
16.8021138904
16.8021138904
16.8021138904
16.8021138904
16.8021138904
16.8021138904
22.0366436111
22.0366436111
22.0366436111
22.0366445809
..
..
KNA
St. Kitts and Nevis
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
3.56958617758
3.56947188759
3.56871318903
3.56795409602
3.56719460451
3.56643471597
3.56567442967
3.5649126018
3.56414240609
3.56414240609
3.56414240609
3.56414240609
3.56414240609
3.56414240609
3.56414240609
3.56414240609
3.56414240609
3.56414240609
3.56414240609
3.56495311398
..
..
KOR
Korea, Rep.
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
2.17926070491
2.1792551792
2.17924395681
2.17923273361
2.17922150958
2.17921028474
2.1791990599
2.17918783424
2.17917660777
2.17917659877
2.25879334677
2.39759546759
2.39759546759
2.39759546759
2.39759546759
2.39759546759
2.39759546759
2.39759546759
2.39759546759
2.39759229205
..
..
KSV
Kosovo
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KWT
Kuwait
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
1.58636562101
1.58636607285
1.58636689729
1.58636772805
1.58636856341
1.58636940393
1.58637025019
1.58637110162
1.58637195821
1.58637195821
1.58637195821
1.58637195821
1.58637195821
1.58637195821
1.58637195821
1.58637195821
1.58637195821
1.58637195821
1.58637195821
1.58637281768
..
..
LAC
Latin America & Caribbean
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
10.4862804154
11.1831768765
11.5829400495
11.7240446863
12.2657947988
12.7522980729
13.156381634
13.9043030067
14.5238811972
14.9476315315
16.1436954681
16.6601047021
17.9604272608
18.3622716916
19.277290933
20.2478572026
20.7937511452
20.8322534748
20.8322547613
20.8322725475
..
..
LAO
Lao PDR
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
0.843132111836
0.848348060438
0.848308448488
14.0815880696
14.4058824055
15.055283833
15.9539631985
15.953892106
15.9538209962
15.9750549783
16.3170408821
16.3170408821
16.3170408821
16.3170408821
16.3170408821
16.3170408821
16.3170408821
16.3170408821
16.3170408821
16.3170617317
..
..
LBN
Lebanon
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
0.476897011831
0.476941655744
0.47699695407
0.477052269146
0.47710759913
0.477162944896
0.477218306153
0.477273685708
0.477329080462
0.477329080462
0.477329080462
0.477329080462
0.477329080462
0.477329080462
0.477329080462
0.477329080462
0.477329080462
0.477329080462
0.477329080462
0.477371726964
..
..
LBR
Liberia
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
18.1424609002
18.1423780203
18.1423093901
18.1422407391
18.1421720779
18.1421033959
18.1420347139
18.1419660009
18.1418972879
18.1418972879
18.1418972879
18.1418972879
18.1418972879
18.1418972879
18.1418972879
18.1418972879
18.1418972879
18.1418972879
18.1418972879
18.1418924552
..
..
LBY
Libya
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
0.110805113035
0.110810440175
0.111007135611
0.111012460347
0.111017792047
0.111023130526
0.111028476154
0.1110338285
0.111039188056
0.111039188056
0.111039188056
0.111039188056
0.111253678279
0.111253678279
0.111253678279
0.111253678279
0.111253678279
0.111253678279
0.111253678279
0.111252465114
..
..
LCA
St. Lucia
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
14.2619616058
14.2605494178
14.2609018073
14.2612544557
14.261607313
14.2619603439
14.2623135581
14.2626669507
14.2630205169
14.2630205169
14.2630205169
14.2630205169
14.2630205169
14.2630205169
14.2630205169
14.2630205169
14.2630205169
14.2630205169
14.2630205169
14.263293697
..
..
LIC
Low income
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
9.50677766093
9.52599591045
9.62407052448
9.82629354781
9.85948668736
9.86626984041
9.91247427394
9.96069397684
9.98311333279
10.0537205754
10.0653318231
10.1159506821
10.5089644739
10.5162632603
10.5166934502
10.5179876386
10.5348111319
10.5857344124
10.5857344099
10.5857360945
..
..
LIE
Liechtenstein
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
38.8836235627
38.8846931959
38.8857574239
38.886815295
38.8878662524
38.888910416
38.8899469715
38.8909742669
38.8919921945
38.8919921945
42.4411931929
42.4411931929
42.4411931929
42.4411931929
42.4411931929
42.4411931929
42.4411931929
42.4411931929
42.4411931929
42.4426556767
..
..
LKA
Sri Lanka
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
19.5577286833
19.5577264471
19.5577765442
19.5982993456
19.5983460959
19.6688708546
19.6689172747
20.769169012
20.7692151319
20.7692151319
20.7692151319
20.7692151319
20.7692151319
20.7692151319
20.7692151319
20.7692151319
20.7692151319
20.7692151319
20.7692151319
20.769235603
..
..
LMC
Lower middle income
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
7.14516564791
7.28862306463
7.52536799468
7.89119334739
7.91504557152
8.22697194787
8.57494412649
8.90921234881
9.04979533134
9.18789466116
9.31883309707
9.35541383521
9.41674926247
9.46231875414
9.51776588597
9.52358504167
9.52458979687
9.52575759481
9.52576026645
9.52576325059
..
..
LMY
Low & middle income
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
8.84878615203
9.05258350384
9.22881975008
9.42372977624
9.60454315636
9.74698541774
9.9710422116
10.1994435356
10.3921619464
10.5488632266
10.8969781808
11.1200211288
11.5355649022
11.6277405435
11.8323320892
12.0427679891
12.1604535039
12.176719824
12.1767499639
12.1767564713
..
..
LSO
Lesotho
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
0.485377789294
0.485318010947
0.485340424794
0.485362974729
0.485385662064
0.485408486798
0.485431445653
0.485454543219
0.485477775561
0.485477775561
0.485477775561
0.485477775561
0.485477775561
0.485477775561
0.485477775561
0.485477775561
0.485477775561
0.485477775561
0.485477775561
0.485451868353
..
..
LTU
Lithuania
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
1.39852107309
2.30500280588
4.3922232602
4.39225767793
4.39414458759
4.39417934846
4.39421422061
4.39424921333
4.45802160846
4.458784485
4.458784485
4.458784485
4.458784485
4.458784485
4.458784485
4.458784485
4.458784485
4.458784485
4.458784485
4.45876769888
..
..
LUX
Luxembourg
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
11.9871298038
12.1214945572
12.1208145285
12.1536535574
12.5166531748
12.515995954
12.5153406463
12.5268559714
12.5553195211
19.6990201464
19.7496817159
19.7496817159
19.7595505161
19.7595505161
19.7595505161
19.7944721965
19.7944721965
19.7944721965
19.7944721965
19.7943596209
..
..
LVA
Latvia
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
6.44582808487
6.4458129908
6.69502876206
6.6950021552
6.69497515145
6.69494774307
6.69584336575
14.0876445151
14.0874957139
15.4071239735
15.407092573
15.4261411606
15.4261411606
15.4261411606
17.8074200395
17.8077288664
17.807870381
17.807870381
17.807870381
17.8080218488
..
..
MAC
Macao SAR, China
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAF
St. Martin (French part)
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
1.15613829606
1.25020436464
1.25019017074
1.25017597709
1.54495026236
1.54493896965
1.5449276767
1.5449163835
1.54490509055
1.54490509055
1.54490509055
1.54490509055
1.54490509055
1.54490509055
1.5454482483
1.5454482483
1.5454482483
1.5454482483
1.5454482483
1.54544824265
..
..
MCO
Monaco
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
23.59872916
23.6039974853
23.6092853398
23.6145914393
23.6199168539
23.6252608347
23.630623863
23.636006046
23.6414068486
23.6414068486
23.6414068486
23.6414068486
23.6414068486
23.6414068486
23.6414068486
23.6414068486
23.6414068486
23.6414068486
23.6414068486
23.672070626
..
..
MDA
Moldova
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
0.937716351548
0.982318506511
1.14932575857
1.2725438224
1.33441816109
1.33544690442
1.35191105932
1.35198573867
1.35206048515
1.35206048515
1.35206048515
1.35206048515
1.35206048515
1.35206048515
1.35206048515
1.3752244033
1.3752244033
1.3752244033
1.3752244033
1.37522594317
..
..
MDG
Madagascar
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
2.07787548923
2.11420052698
2.11420088009
2.11420123152
2.11420158295
2.11420193606
2.11420228749
2.89852463023
2.89852317407
2.89852317407
2.89852317407
2.89852317407
2.89852317407
2.89852317407
2.89852317407
2.89852317407
2.89965362821
2.89965362821
2.89965362821
2.89965479852
..
..
MDV
Maldives
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MEX
Mexico
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
2.43082500478
2.43436727137
2.6367804942
3.26460902938
3.96163141218
4.12223448402
4.32976556961
5.01731726165
5.11099105229
5.21815047109
7.73177077057
7.93066539282
9.56214276488
10.0516965625
10.1975422406
10.5943006222
10.7343770312
11.1166745376
11.1166864902
11.1167391396
..
..
MHL
Marshall Islands
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
0
0
0
0
0
0
0
0
0
3.07741638767
3.07741638767
3.07741638767
3.07741638767
3.07741638767
3.07741638767
3.07741638767
3.07741638767
3.07741638767
3.07741638767
3.07739679223
..
..
MIC
Middle income
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
8.72617068362
8.96436412091
9.15516561906
9.34870945475
9.55702589568
9.72475196842
9.98195875491
10.2439439521
10.468428802
10.6411744547
11.052070151
11.3072695672
11.7270214121
11.8350276203
12.0776968986
12.3271359272
12.463648058
12.473452794
12.4734917932
12.4734992002
..
..
MKD
Macedonia, FYR
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
4.19831953211
4.40936627663
4.40930306512
4.40923982217
4.6230420036
4.62297870563
4.70597927096
4.78941650783
4.78933578277
4.81936632694
4.81936632694
4.83228742256
4.8460365013
4.8460365013
4.8460365013
4.8460365013
4.8460365013
4.8460365013
4.8460365013
4.84592960416
..
..
MLI
Mali
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
2.33838654435
2.33839467606
2.33840285394
2.33841100634
2.33841913567
2.33842724272
2.33843535057
2.33844341465
2.33845145565
2.33845145565
2.33845145565
2.33845145565
2.43397788911
2.43397788911
2.43397788911
2.43397788911
2.43397788911
2.43397788911
2.43397788911
2.43398514153
..
..
MLT
Malta
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
0.0966059121034
0.0966059121034
0.0966816486537
0.114887628787
5.02670743307
5.17439624576
14.3138757923
14.3212410246
14.3178785596
14.5510423322
15.3181134954
15.5633704777
15.6882937213
15.8593065207
15.8593065299
15.859674074
16.9116779218
17.2361737862
17.2361737862
17.2456010146
..
..
MMR
Myanmar
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
3.10476464814
3.10579405913
3.1057887655
3.1057835105
3.33995422442
3.33999812751
3.96496050159
4.31837489848
4.33256260543
4.43614748896
4.43816689918
5.2712066399
6.30375456699
6.30375456699
6.30375456699
6.30375456699
6.30375456699
6.30375456699
6.30375456699
6.30376367298
..
..
MNA
Middle East & North Africa
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
3.14927866634
3.15414291865
3.16269177675
3.17463462828
3.1902194502
3.24902127629
3.54436199925
3.54441007135
3.58178512007
3.58601901256
3.60818452125
3.7956998048
3.96594933003
4.02496036318
4.02512206689
4.02512206689
4.02509853867
4.02509461733
4.02509461733
4.02509941319
..
..
MNE
Montenegro
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
13.1867662438
13.1869491802
13.1871321745
13.1873152338
13.187498358
13.1876815472
13.2061682497
13.2063901898
13.2066122311
13.2066122311
13.2066122311
13.2066122311
13.2066122311
13.2066122311
13.2066122311
13.2542424374
13.2542424374
13.2542424374
13.2542424374
13.254148911
..
..
MNG
Mongolia
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
4.10468517652
4.10498716508
5.64818277839
8.2470774765
8.24705532259
8.48416298159
10.9391823678
11.6473275208
12.192448104
12.2293190463
13.387541137
13.387541137
13.387541137
13.387541137
13.387541137
13.387541137
13.387541137
13.387541137
13.387541137
13.3875441066
..
..
MNP
Northern Mariana Islands
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
0.812633222096
0.813369138237
0.814104927639
0.814840589904
0.815576113853
0.816311517052
0.81704677994
0.817781916488
0.818516929891
0.818516929891
0.914825440142
1.11557013119
1.11557013119
1.11557013119
1.11557013119
1.11557013119
1.11557013119
1.11557013119
1.11557013119
1.10870744525
..
..
MOZ
Mozambique
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
14.821929976
14.8219405565
14.8219154895
14.8218904226
14.8218653556
14.821840276
14.8218151711
14.8217900663
14.8217649361
14.8217649361
14.8217649361
14.8217649361
15.8272739453
15.8272739453
15.8272739453
15.8272739453
15.8272739453
15.8272739453
15.8272739453
15.8272797981
..
..
MRT
Mauritania
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
0.536347117828
0.536348874682
0.536350845623
0.536352817137
0.536354788843
0.53635676093
0.5363587334
0.536360705966
0.53636267901
0.53636267901
0.53636267901
0.53636267901
0.53636267901
0.53636267901
0.53636267901
0.53636267901
0.53636267901
0.53636267901
0.53636267901
0.536364750973
..
..
MUS
Mauritius
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
1.65749927847
1.65775668248
1.65801345612
1.65826964745
4.42783556932
4.42809036514
4.42834435904
4.42859764121
4.42885015725
4.42885015725
4.48344575935
4.48344575935
4.48344575935
4.48344575935
4.48344575935
4.48344575935
4.48344575935
4.48344575935
4.48344575935
4.48405460092
..
..
MWI
Malawi
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
15.0171881885
15.0172057639
15.0172123094
15.0172188633
15.0172254089
15.0172319628
15.0172385252
15.0172450875
15.0172516583
15.0172516583
15.0172516583
15.0172516583
15.0172516583
15.0172516583
15.0172516583
15.0172516583
15.0172516583
15.0172516583
15.0172516583
15.0172702264
..
..
MYS
Malaysia
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
16.8587886709
16.9737657278
17.4484615594
17.7434242959
17.7577796557
17.7577893783
17.7581395513
17.7581480741
17.7581566029
17.7678176128
17.8628440679
17.8828407627
17.8828407627
17.8828407627
17.8828407627
17.8828407627
17.8828407627
17.8828407627
17.8828407627
17.8828503135
..
..
MYT
Mayotte
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
0
2.16820730135
2.16831601048
2.16842473904
2.16853348325
2.1686422484
2.16875103223
2.16885983701
2.16896866299
2.16896866299
2.16896866299
2.16896866299
2.16896866299
2.16896866299
2.16896866299
2.16896866299
2.16896866299
2.16896866299
2.16896866299
2.16900345256
..
..
NAM
Namibia
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
14.419702691
14.4206668892
14.4207090542
14.420751207
14.4207933236
14.420835416
14.4208774722
14.4209195042
14.4209615
14.4555226216
14.4555226216
14.4555226216
14.4555226216
14.4555226216
14.4555226216
14.4555226216
14.4555226216
14.4555226216
14.4555226216
14.4553641979
..
..
NCL
New Caledonia
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
5.53095867145
5.5309286441
5.5308985645
5.53716366961
5.53714609836
5.53712852188
5.53711095063
5.53709338982
5.53718594847
5.53718594847
5.53718594847
5.53718594847
5.53718594847
5.53718594847
5.53718594847
5.53718594847
5.53718594847
5.53718594847
5.53718594847
5.5371846945
..
..
NER
Niger
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
6.83522725161
6.83521592649
6.83520566264
6.83519544248
6.83518525845
6.83517510803
6.8351649929
6.83515491055
6.83514486348
6.83514486348
6.83514486348
6.83514486348
6.83514486348
6.83514486348
6.83514486348
6.83514486348
6.83514486348
6.83514486348
6.83514486348
6.8351452895
..
..
NGA
Nigeria
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
11.5694710603
12.7830125835
12.7830125835
12.7830125616
12.7830125179
12.7830124413
12.7830123538
12.7830122335
12.7830120804
12.8448710943
12.8448710943
12.8448710943
12.8448710943
12.8448710943
12.8448710943
12.8448710943
12.8448710943
12.8448710943
12.8448710943
12.8448766505
..
..
NIC
Nicaragua
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
15.4127934487
25.2182651364
29.2303229065
29.2739679692
29.2740647492
29.2741611037
29.2742570247
29.2743524428
29.2744473811
36.7228365552
36.7228365552
36.7228365552
36.7228365552
36.7228365552
36.7228365552
36.7228365552
36.7228365552
36.7228365552
36.7228365552
36.722966333
..
..
NIU
Niue
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
0
0
22.2039577161
22.2039902468
22.204022938
22.2040557935
22.2040887984
22.2041219825
22.2223500181
22.2223500181
22.2223500181
22.2223500181
22.2223500181
22.2223500181
22.2223500181
22.2223500181
22.2223500181
22.2223500181
22.2223500181
22.2224652644
..
..
NLD
Netherlands
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
11.0159188902
11.1139256836
11.164011084
11.2108457012
11.4078479478
11.5672427423
11.7802388479
11.7799543967
11.7891584516
11.8266007412
11.8268699931
11.8487869096
12.2237376237
12.3383959037
12.3638371842
12.3638381841
12.3638381841
12.3645649348
12.3645649348
12.3645192088
..
..
NOR
Norway
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
4.70717351302
5.24111919998
5.38038422696
5.48018973664
5.48023528912
5.49897229261
5.52871362153
5.69739297949
5.7051904078
5.74817470353
6.66697232898
7.20236378014
9.08131474141
10.4247707955
12.0527452045
12.3988813044
14.4202411504
14.4202411504
14.4202411504
14.4202927633
..
..
NPL
Nepal
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
7.69063957114
8.69933082514
14.0233157408
14.0231411617
14.0229664607
14.0227916582
14.540129582
14.708276037
16.9966968481
16.9966968481
16.9966968481
16.9966968481
16.9966968481
16.9966968481
16.9966968481
16.9966968481
16.9966968481
16.9966968481
16.9966968481
16.9967266092
..
..
NRU
Nauru
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NZL
New Zealand
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
25.0321788547
25.0976366273
25.0977062133
25.1524403711
25.152919311
25.1536464561
25.3487518869
25.5969491648
25.5964023781
25.5971783752
25.5971780933
25.6003555096
25.6003555096
25.8439478525
25.8439478525
25.8471849272
25.8471849272
25.8471849272
25.8471849272
25.8476988084
..
..
OMN
Oman
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
0.00160441363518
0.0016042423258
0.00160355398713
0.00160286558338
9.0702662673
9.07022818982
9.12319949444
10.6767824392
10.6767425413
10.6767425413
10.6767425413
10.6767425413
10.6767425413
10.6767425413
10.6767425413
10.6767425413
10.6767425413
10.6767425413
10.6767425413
10.6768083344
..
..
PAK
Pakistan
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
10.2782175039
10.2782291029
10.2782358338
10.2937733025
10.2937784778
10.2937836088
10.2937886965
10.2937937433
10.2937987627
10.2937987627
10.2937987627
10.2938055471
10.2938055471
10.2938055471
10.2938055471
10.2938055471
10.2938055471
10.2938055471
10.2938055471
10.2938001749
..
..
PAN
Panama
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
17.2010448876
17.20114935
17.2631162053
17.2632209444
17.6437886702
17.6438893642
17.6439900186
17.6440906335
17.6441911694
17.6441911694
17.6441911694
18.6760933537
18.6760933537
18.6760933537
18.6760933537
18.6760933537
18.6760933537
18.6760933537
18.6760933537
18.676113474
..
..
PER
Peru
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
4.70997096528
4.70996544368
4.70995910885
4.70995278327
4.76662007236
4.78140382021
5.03063949578
5.49220237114
5.4926065724
5.49397586337
7.73270345521
9.43631056058
9.88623949764
10.4359714757
12.7386935458
13.6213951801
13.6213951801
13.6213951801
13.6213951801
13.6213892734
..
..
PHL
Philippines
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
8.71958366995
8.85024300945
8.92802058655
8.93252152741
9.0375431394
9.09653232074
9.54197931317
9.66393596811
9.75548464744
9.81183789212
10.7442946223
10.7453272439
10.8503265038
10.8505447906
10.8505447906
10.8505447906
10.8505447906
10.8505447906
10.8505447906
10.850548613
..
..
PLW
Palau
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
0.254333194193
0.254333194193
0.254333194193
0.254333194193
0.254333194193
0.574623024888
0.574501606773
0.678424474079
0.886447266089
0.886447266089
1.8707408352
1.97374012998
1.97374012998
1.97374012998
1.97374012998
1.97374012998
1.97374012998
1.97374012998
1.97374012998
1.97314941491
..
..
PNG
Papua New Guinea
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
1.92548456622
1.93449608708
1.98509445904
2.57440342013
2.574407104
2.57441079429
2.574414491
3.06363246475
3.06363617643
3.06363617643
3.06363617643
3.06363617643
3.06363617643
3.07337217788
3.07337217788
3.07337217788
3.07337217788
3.07337217788
3.07337217788
3.07337919264
..
..
POL
Poland
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
15.318704838
16.4495209776
17.461472849
18.3900075206
18.9044768363
20.2613320676
20.7794330776
21.0128589374
21.816065867
21.8191349197
21.827228227
21.8280691228
21.8280691228
21.8280691228
21.8324258255
21.8332981041
21.8332981041
21.8332981041
21.8332981041
21.8333014222
..
..
PRI
Puerto Rico
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
10.0508447596
10.052124753
10.0521884913
10.0522195065
10.052247211
10.0522713526
10.0522925696
10.0523106341
10.0698210324
10.0698210324
10.0698210324
10.0859919101
10.0859919101
10.0859919101
10.0859919101
10.0859919101
10.0859919101
10.0859919101
10.0859919101
10.0868065549
..
..
PRK
Korea, Dem. Rep.
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
3.93994428772
3.93998267004
3.94002106541
3.94005947282
3.94009789127
3.94013632177
3.94017476934
3.94021323296
3.94025171265
3.94025171265
3.9434399736
3.96036703185
3.96186004462
3.97052860567
3.97052860567
3.97052860567
3.97158253247
3.97158253247
3.9715822213
3.97157682702
..
..
PRT
Portugal
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
5.90562561503
5.91828375134
5.91826332698
5.91955791499
5.91953783358
5.91951759915
5.91949724859
5.91947677756
5.91945618606
5.91945640312
5.91945640312
5.91945640312
5.91945640312
5.91945640312
5.91945640312
5.91945640312
5.91945640312
5.91945640312
5.91945640312
5.91949005193
..
..
PRY
Paraguay
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
2.91019828659
3.10326621822
3.67229106012
3.75768026849
3.75770717519
3.76295170335
3.77458425594
3.95012815292
4.3673870045
4.3673870045
4.36826241756
4.45188651581
4.45188651581
5.44083552957
5.44529282184
5.44529282184
5.44529282184
5.44529282184
5.44529282184
5.44531934
..
..
PYF
French Polynesia
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
0.207225171008
0.207237036272
0.35006551616
0.350072460288
0.350079418824
0.350086393368
0.350093381253
0.350100384347
0.350107400782
0.350107400782
0.350107400782
0.350107400782
0.350107400782
0.350107400782
0.350107400782
0.350107400782
0.350107400782
0.350107400782
0.350107400782
0.350307864506
..
..
QAT
Qatar
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
0.00433851633347
0.14519260834
0.14519260834
0.37977155787
0.550355566654
0.550683969093
0.551012912379
0.551342405911
0.551672461438
0.551672461438
0.551672461438
0.551672461438
0.551672461438
0.741627689695
0.741627689695
0.741627689695
0.741627689695
0.741627689695
0.741627689695
0.741605221934
..
..
ROM
Romania
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
2.81923282106
2.847881644
4.25584668006
4.40261745009
4.59009027753
4.64007332655
4.64016095678
4.64013843436
4.64034671196
4.64949144464
4.70332243246
4.70522117996
4.70734213207
4.787216066
4.78954851319
7.10980896245
7.10980896245
7.10980896245
7.10980896245
7.10980465422
..
..
RUS
Russian Federation
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
8.18856621811
8.32150490228
8.37796300874
8.55964633953
8.78434643712
8.82166667007
8.88025369901
8.92618415135
8.98282886537
9.01273382808
9.01321641669
9.01463084112
9.02110337489
9.02110882224
9.02111418671
9.02111418671
9.02111418671
9.02111418671
9.02111418671
9.02112138669
..
..
RWA
Rwanda
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
9.8869227921
9.8868205335
9.88672201526
9.88662343022
9.88652478625
9.88642607941
9.88632730578
9.88622846929
9.88612957387
9.88612957387
9.88612957387
9.88612957387
9.9857002897
9.9857002897
9.9857002897
9.9857002897
9.9857002897
9.9857002897
9.9857002897
9.98569133564
..
..
SAS
South Asia
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
5.48994975359
5.54095952284
5.80050326621
5.84375353097
5.82811389239
5.92156276431
5.94814801281
5.99560812415
6.09217356646
6.09885984318
6.10950037041
6.11137788941
6.11137891004
6.11137891004
6.10354856592
6.10354856592
6.10354856592
6.10354856592
6.10354856592
6.10354909323
..
..
SAU
Saudi Arabia
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
7.60748851679
7.60746946695
7.60745045331
7.71258679308
30.4851537833
31.2594366791
31.2944575826
31.2944257811
31.2943930592
31.2943930592
31.2943930592
31.2943930592
31.2943930592
31.2943930592
31.2943930592
31.2943930592
31.2943930592
31.2943930592
31.2943930592
31.2945502256
..
..
SDN
Sudan
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
4.74784507758
4.74784129676
4.74783823081
4.74783517279
4.74783212272
4.7478290806
4.89486779162
4.89486181459
4.89485584551
4.89485584551
4.89485584551
4.89485584551
4.89485584551
4.89485584551
4.89485584551
4.89485584551
4.89501738007
4.89501738007
4.89501738007
4.89501561277
..
..
SEN
Senegal
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
24.0737670136
24.0738341152
24.073841123
24.0738481257
24.0738551233
24.0738621159
24.0738691085
24.073876096
24.0738830785
24.0738830785
24.0738830785
24.0738830785
24.0738830785
24.0738830785
24.0891625445
24.0891625445
24.0891625445
24.0891625445
24.0891625445
24.089168476
..
..
SGP
Singapore
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
4.98499660006
4.98499660006
4.98499660006
4.98499660006
4.98499660006
4.98499660006
5.15895364174
5.15907772206
5.15920151947
5.15920151947
5.15920151947
5.15920151947
5.37705954274
5.37705954274
5.37705954274
5.37705954274
5.37705954274
5.37705954274
5.37705954274
5.37740704771
..
..
SID
Small island developing states
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
4.0274465746
4.0432217921
4.070202612
4.3305529332
4.3753527118
4.3865262018
4.7774852619
5.0733892116
6.1730810299
6.2180067705
6.3867240311
6.5762597322
6.6510195959
6.6568500893
6.671481342
6.7053193263
6.7088736827
6.720583783
6.7205724973
6.7205841186
..
..
SLB
Solomon Islands
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
0.0544600526101
0.0544593842257
0.0544593842257
0.0544593842257
0.0931387578717
0.0931376890527
0.0931366252014
0.0931355662493
0.0931345122308
0.0931345122308
0.0931345122308
0.0931345122308
0.0931345122308
0.0931345122308
0.0931345122308
0.0931345122308
0.0931345122308
0.0931345122308
0.0931345122308
0.0931266819673
..
..
SLE
Sierra Leone
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
4.95881727842
4.95898385866
4.95900439133
4.9590249075
4.95904540991
4.9590658972
4.95908636798
4.95910682363
4.95912726553
4.95912726553
4.95912726553
4.95912726553
4.95912726553
4.95912726553
4.95912726553
4.95912726553
4.95912726553
4.95912726553
4.95912726553
4.9591282778
..
..
SLV
El Salvador
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
0.644117602997
0.644112726617
0.64417259983
0.644231675382
0.64429076503
0.644349868289
0.644408984671
0.64446811515
0.64452725924
0.64452725924
0.648105654311
0.648105654311
0.648105654311
0.648105654311
0.648105654311
0.648105654311
0.648105654311
0.827160698732
0.827147764076
0.827208035877
..
..
SMR
San Marino
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SOM
Somalia
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
0.583996842317
0.584001735179
0.584006973032
0.584012210727
0.584017448579
0.584022686432
0.584027924284
0.584033162136
0.584038399675
0.584038399675
0.584038399675
0.584038399675
0.584038399675
0.584038399675
0.584038399675
0.584038399675
0.584038399675
0.584038399675
0.584038399675
0.584037814556
..
..
SRB
Serbia
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
2.96071840438
3.00692462186
3.00692078383
3.00689897929
3.00688013716
3.01637740995
3.04269754069
4.71215935972
4.76277293453
4.76705319644
4.81409253962
5.62881294807
5.62881294807
5.62881425754
5.62881425754
5.81375149783
5.95783324771
5.95783324771
5.95783324771
5.9578082853
..
..
SSA
Sub-Saharan Africa
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
11.0359788799
11.0991507721
11.137949189
11.1648900176
11.175117996
11.1773262755
11.2023446728
11.2222886722
11.2337091018
11.2539872333
11.2800752797
11.3211007876
11.6469463369
11.6547550783
11.6552194971
11.6560342772
11.6667957698
11.6992865007
11.6992865007
11.6992883031
..
..
STP
Sao Tome and Principe
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SUR
Suriname
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
3.5094997358
3.50946201045
3.50938652315
3.50931106839
3.50923564548
3.50916025577
3.50908490199
3.50900958208
11.4167621965
11.4167621965
11.4167621965
11.4167621965
11.439635169
11.439635169
11.439635169
11.439635169
11.439635169
11.439635169
11.439635169
11.4396030394
..
..
SVK
Slovak Republic
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
19.528206706
19.5429702855
19.7189553823
19.7676080767
19.7696320387
19.7710960496
19.7787747485
21.2814221848
21.434677352
21.4387710371
21.4428590215
21.4497089918
23.4784559172
23.4793875651
23.4800914705
23.4816602704
23.4816602704
23.4816602704
23.4816602704
23.4816827054
..
..
SVN
Slovenia
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
7.47334828169
7.49099032119
8.02025588873
8.24472070517
8.24515808161
8.31139100084
8.44801408448
8.44937068265
8.76234631813
8.76894998093
8.76894998093
8.76894998093
9.86085271885
12.1139211269
12.1314738988
12.1314738988
12.1322667553
12.1322667553
12.1322667553
12.132599964
..
..
SWE
Sweden
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
7.08273294678
7.11711930088
7.16823334193
7.53541591151
7.56792593792
7.9253393744
7.94980394268
8.09621371852
8.21668766944
8.29218800851
10.9537835353
11.0006259084
11.1244193455
11.2081400385
11.2596734066
11.2864780802
11.3219033608
11.3219510782
11.3219510782
11.32202964
..
..
SWZ
Swaziland
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
3.01849881685
3.01836495564
3.01823106616
3.01809715246
3.01796321222
3.01782924718
3.01769525791
3.01756124326
3.01742720381
3.01742720381
3.01742720381
3.01742720381
3.01742720381
3.01742720381
3.01742720381
3.01742720381
3.01742720381
3.01742720381
3.01742720381
3.01748139378
..
..
SXM
Sint Maarten (Dutch part)
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
41.9744719109
41.9861614055
41.9804020649
41.9745212931
41.9685787268
41.9625816409
41.9768731209
41.9800583626
41.9737365011
41.9737365011
41.9737365011
41.9737365011
41.9737365011
41.9737365011
41.9737365011
41.9737365011
41.9737365011
41.9737365011
41.9737365011
42.0069831673
..
..
SYR
Syrian Arab Republic
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
0.2533719027
0.253370240298
0.253369922292
0.253369604233
0.253369286174
0.253368968061
0.254018802038
0.254018459484
0.259318610555
0.319915785017
0.319915785017
0.319915785017
0.638015049861
0.638015049861
0.638015049861
0.638015049861
0.638015049861
0.638015049861
0.638015049861
0.638014159147
..
..
TCA
Turks and Caicos Islands
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
4.88592633052
4.88565905102
42.9180749516
42.9188845942
42.9196904316
42.920494273
42.9212955973
42.9220927525
42.9228851783
42.9228851783
42.9228851783
42.9228851783
42.9228851783
42.9228851783
42.9228851783
42.9228851783
42.9228851783
42.9228851783
42.9228851783
42.9220132366
..
..
TCD
Chad
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
9.38581764033
9.38582078152
9.38582392272
9.38582705607
9.3858302051
9.38583334629
9.38583648748
9.38583963651
9.38584278553
9.38584278553
9.38584278553
9.38584278553
9.38584278553
9.38584278553
9.38584278553
9.38584278553
9.38584278553
9.38584278553
9.38584278553
9.3858427072
..
..
TGO
Togo
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
11.2564947533
11.2565362858
11.2565560668
11.2565758374
11.2565955993
11.2566153507
11.2566341082
11.2566538405
11.2566735641
11.2566735641
11.2566735641
11.2566735641
11.2566735641
11.2566735641
11.2566735641
11.2566735641
11.2566735641
11.2566735641
11.2566735641
11.2567590852
..
..
THA
Thailand
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
14.2418009776
15.2067035167
15.4129592945
15.4561868697
16.0023285913
16.3850320319
16.8412784515
17.0406256614
17.6386561396
18.6776342216
19.4225784741
19.5870935075
19.590347452
19.590347452
19.590347452
19.590347452
19.590347452
19.590347452
19.590347452
19.5903225575
..
..
TJK
Tajikistan
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
1.93630876864
1.93633287717
4.13681568895
4.13678165875
4.13674764191
4.13671362015
4.13667954145
4.13664540439
4.13661120969
4.13661079139
4.13661079139
4.13661079139
4.13661079139
4.13661079139
4.13661079139
4.13661079139
4.13661079139
4.13661079139
4.13661079139
4.13661793614
..
..
TKM
Turkmenistan
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
2.98631698664
2.98633922298
2.98636207853
2.98638484416
2.98640752192
2.98643010363
2.98645258112
2.98647495438
2.98649723159
2.98649761987
2.98649761987
2.98649761987
2.98649761987
2.98649761987
2.98649761987
2.98649761987
2.98649761987
2.98649761987
2.98649761987
2.98652320975
..
..
TMP
Timor-Leste
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
0
0
0
0
0
0
0
0
0
0
5.11204431613
5.11204431613
5.11204431613
5.11204431613
5.11204431613
5.11204431613
5.11204431613
6.04983087378
6.04983087378
6.04983078716
..
..
TON
Tonga
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
1.38436522907
1.38450085373
1.97176288953
1.97179748397
9.62974459172
9.62937922819
9.62901572486
9.62865401907
9.62829411081
9.62829411081
9.62829411081
14.5359289888
14.5359289888
14.5359289888
14.5359289888
14.5359289888
14.5359289888
14.5359289888
14.5359289888
14.5353479155
..
..
TTO
Trinidad and Tobago
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
30.462137715
30.4622794435
30.9440173873
31.230328437
31.2306048345
31.230880388
31.2311551358
31.2314290011
31.2393794215
31.2393794215
31.2393794215
31.2393794215
31.2393794215
31.2393794215
31.2393794215
31.2393794215
31.2393794215
31.2393794215
31.2393794215
31.2396599627
..
..
TUN
Tunisia
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
1.25342712298
1.2534062668
1.2533854583
1.29382085581
1.29380096594
1.29589210591
1.29587273656
1.29585341552
1.29583414409
1.29583414409
1.29583414409
1.29583414409
1.29637703154
1.29637703154
1.29637703154
1.29637703154
1.29637703154
1.29637703154
1.29637703154
1.29638090967
..
..
TUR
Turkey
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
1.71842006516
1.74193468051
1.7419391523
1.88231809808
1.88761674455
1.88837537987
1.88837745725
1.88837953974
1.8883816299
1.8883816951
1.88838170149
1.88838170149
1.89159100713
1.89159100713
1.89159100713
1.89159100713
1.89159100713
1.8915980357
1.8915980357
1.89159981649
..
..
TUV
Tuvalu
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
0
0
0
0
0
0
0.438812763396
0.438812763396
0.438812763396
0.438812763396
0.438812763396
0.438812763396
0.438812763396
0.438812763396
0.438812763396
0.438812763396
0.438812763396
0.438812763396
0.438812763396
0.438812763396
..
..
TZA
Tanzania
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
26.5126984432
26.5127625021
26.7172397712
26.8254181073
26.8264661484
26.8516838788
26.8516937706
26.8677672488
26.8677803816
26.8677803816
26.9160579078
27.1527994621
27.2963314167
27.2963314167
27.3030665764
27.324760074
27.324760074
27.688968339
27.688968339
27.6889700915
..
..
UGA
Uganda
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
7.29773007483
7.83641033014
7.8363901981
7.92431074102
7.92428764778
7.92426453397
7.92424141194
7.92421826523
7.92419510618
7.92419520489
7.92419520489
7.92419520489
9.67279928618
9.67279928618
9.67279928618
9.67279928618
9.67279928618
9.67279928618
9.67279928618
9.67277953663
..
..
UKR
Ukraine
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
1.82820382514
1.95894573833
2.05630853565
2.22919709124
2.35980186653
2.74635048867
3.27743173713
3.41306190665
3.50125276406
3.50124610104
3.50137221241
3.50137221241
3.50137221241
3.50137221241
3.50137221241
3.50887183529
3.50887183529
3.50887183529
3.50887183529
3.50886803954
..
..
UMC
Upper middle income
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
9.34831808249
9.62379020504
9.79651236016
9.92230050063
10.2030678211
10.3140872157
10.5355840444
10.7691210898
11.0268682547
11.2131845309
11.7339229972
12.0751364509
12.635902784
12.7684421137
13.084683909
13.4299557614
13.6198483287
13.6330559536
13.6331261633
13.6331353102
..
..
URY
Uruguay
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
0.250868999041
0.250873335037
0.250919155551
0.250922914777
0.250926674172
0.250930432446
0.250934189935
0.250937946584
0.250941702392
0.250941702392
0.250941702392
0.250941702392
0.250941702392
0.250941702392
0.250941702392
0.250941702392
0.250941702392
0.250941702392
0.250941702392
0.250942209118
..
..
USA
United States
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
14.7821560747
14.7821905837
14.7859641354
14.7939745088
14.7995323693
14.8017951357
14.8029241144
14.806373589
14.8085637278
14.8088797828
14.8093140062
14.8112693611
14.8112801786
14.8113584292
14.8113584292
14.8141270292
14.8141724844
14.8141725165
14.8141725165
14.8144288071
..
..
UZB
Uzbekistan
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
2.12196410269
2.12196836456
2.25541407991
2.25541903972
2.25542400072
2.25542896974
2.25543396097
2.25543897038
2.25544398782
2.25544398782
2.25544398782
2.25544398782
2.25544398782
2.25544398782
2.25544398782
2.25544398782
2.25544398782
2.25544398782
2.25544398782
2.25542904438
..
..
VCT
St. Vincent and the Grenadines
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
10.877854156
10.877854156
10.877854156
10.877854156
10.877854156
10.877854156
10.877854156
10.877854156
10.877854156
10.877854156
10.877854156
10.877854156
10.877854156
10.877854156
10.877854156
10.877854156
10.877854156
10.877854156
10.877854156
10.877854156
..
..
VEN
Venezuela, RB
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
39.2597428684
50.4928868187
53.4124118205
53.7414634634
53.7414531295
53.7414426865
53.7414321455
53.7414215063
53.7414107582
53.7414107582
53.7463553703
53.7463553703
53.7463596761
53.7463596761
53.7463596761
53.7498250426
53.7498250426
53.7498250426
53.7498250426
53.7498343083
..
..
VIR
Virgin Islands (U.S.)
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
15.219833308
15.2174700061
15.2148985383
15.2123204961
15.2097313376
15.2071369578
15.204537498
15.2019327585
15.1993226778
15.1993226778
15.1993226778
15.1993226778
15.1993226778
15.1993226778
15.1993226778
15.1993226778
15.1993226778
15.1993226778
15.1993226778
15.2010138708
..
..
VNM
Vietnam
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
4.44752582562
4.49020671717
4.49216863044
4.53548342677
4.64487050041
5.31445322565
5.45705888549
5.48192754937
5.73027002228
5.95421197224
5.95422474989
5.95422474989
6.16678885666
6.16678885666
6.16678885666
6.16678885666
6.16678885666
6.16678885666
6.16678885666
6.16676955529
..
..
VUT
Vanuatu
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
3.72845592893
3.74113060811
3.74118847779
3.74308681334
3.98075501427
4.21747381523
4.2174811543
4.21748826197
4.21749513346
4.21749513346
4.21749513346
4.25047369762
4.25047369762
4.25047369762
4.25047369762
4.25047369762
4.25047369762
4.25047369762
4.25047369762
4.25044298865
..
..
WBG
West Bank and Gaza
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
WLD
World
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
9.1336333785
9.33847175858
9.48954565166
9.69867889521
10.2231319127
10.3630748106
10.5531847563
10.7563195312
10.9394708453
11.0851375883
11.3825546704
11.570824722
11.9696945183
12.0539728403
12.2157412142
12.3784173081
12.4774586389
12.4898054033
12.4895801062
12.4896064047
..
..
WSM
Samoa
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
2.39463036546
2.39447783426
2.3943251918
2.39417243772
2.41735713387
2.41722837937
2.41709945244
2.41697035204
2.50960173031
2.50960173031
2.50960173031
2.50960173031
2.50960173031
3.4078283954
3.4078283954
3.4078283954
3.4078283954
3.4078283954
3.4078283954
3.40786426467
..
..
YEM
Yemen, Rep.
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
0
0
0
0
2.69040256044e-05
1.29138071665e-05
0.520667988841
0.520662591399
0.52066087458
0.52066087458
0.52066087458
0.52066087458
0.52066087458
0.52066087458
0.52066087458
0.52066087458
0.52066087458
0.52066087458
0.52066087458
0.52066118298
..
..
ZAF
South Africa
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
6.49485295383
6.63274967624
6.77727651952
6.78398403769
6.79572188657
6.81202717779
6.81204393561
6.81206067383
6.84475616591
6.84475616591
6.85703098943
6.85703098943
6.85786598911
6.85786598911
6.85955008126
6.85955008126
6.85955008126
6.85955008126
6.85955008126
6.85954149816
..
..
ZAR
Congo, Dem. Rep.
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
9.96293017516
9.96328429315
9.98590990921
9.98611325992
9.98612184679
9.9861304294
9.98613900775
9.98614757756
9.98615614737
9.98615615164
9.98615615164
9.98615615164
9.98656657701
9.98656657701
9.98656657701
9.98656657701
9.98656657701
9.98656657701
9.98656657701
9.9865667647
..
..
ZMB
Zambia
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
35.9803862014
35.9804241295
35.9804547261
35.9804853358
35.9805159589
35.9805466084
35.9805772579
35.9806079206
35.9806385966
35.9806385966
35.9806385966
35.9806385966
35.9830176648
35.9830176648
35.9830176648
35.9830176648
35.9830176648
35.9830176648
35.9830176648
35.9830213703
..
..
ZWE
Zimbabwe
ER.LND.PTLD.ZS
Nationally terrestrial protected areas (% of total land area)
0
1
18.0432235676
18.0431765828
18.0431268111
18.0430769198
18.0430269113
18.0445091139
18.0444612782
18.0444133483
18.0443653216
18.0443653216
18.0443653216
18.0443653216
28.0077131298
28.0077131298
28.0077131298
28.0077131298
28.0077131298
28.0077131298
28.0077131298
28.0077296872
..
..
ABW
Aruba
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ADO
Andorra
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AFG
Afghanistan
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
165
167
160
AGO
Angola
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
164
163
172
ALB
Albania
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
81
82
82
ARE
United Arab Emirates
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
37
40
33
ARG
Argentina
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
113
115
113
ARM
Armenia
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
44
48
55
ASM
American Samoa
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ATG
Antigua and Barbuda
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
56
64
57
AUS
Australia
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
10
10
15
AUT
Austria
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
31
32
32
AZE
Azerbaijan
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
55
54
66
BDI
Burundi
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
181
181
169
BEL
Belgium
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
22
25
28
BEN
Benin
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
172
170
175
BFA
Burkina Faso
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
154
151
150
BGD
Bangladesh
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
111
107
122
BGR
Bulgaria
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
51
51
59
BHR
Bahrain
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
25
28
38
BHS
Bahamas, The
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
71
77
85
BIH
Bosnia and Herzegovina
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
110
110
125
BLR
Belarus
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
64
68
69
BLZ
Belize
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
93
99
93
BMU
Bermuda
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BOL
Bolivia
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
148
149
153
BRA
Brazil
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
124
127
126
BRB
Barbados
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BRN
Brunei Darussalam
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
117
112
83
BTN
Bhutan
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
140
142
142
BWA
Botswana
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
50
52
54
CAF
Central African Republic
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
182
182
182
CAN
Canada
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
9
7
13
CHE
Switzerland
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
24
27
26
CHI
Channel Islands
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHL
Chile
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
53
43
39
CHN
China
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
78
79
91
CIV
Cote d'Ivoire
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
168
169
167
CMR
Cameroon
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
173
168
161
COG
Congo, Rep.
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
177
177
181
COK
Cook Islands
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
COL
Colombia
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
38
39
42
COM
Comoros
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
159
159
157
CPV
Cape Verde
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
142
132
119
CRI
Costa Rica
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
121
125
121
CUB
Cuba
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CUW
Curacao
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYP
Cyprus
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
35
37
40
CZE
Czech Republic
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
82
63
64
DEU
Germany
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
21
22
19
DJI
Djibouti
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
157
158
170
DMA
Dominica
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
85
88
65
DNK
Denmark
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
6
6
5
DOM
Dominican Republic
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
86
91
108
DZA
Algeria
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
136
136
148
EAP
East Asia & Pacific
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ECA
Europe & Central Asia
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ECU
Ecuador
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
127
130
130
EGY
Egypt, Arab Rep.
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
99
94
110
EMU
Euro area
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ERI
Eritrea
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
180
180
180
ESP
Spain
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
48
49
44
EST
Estonia
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
17
17
24
ETH
Ethiopia
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
103
104
111
FIN
Finland
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
11
13
11
FJI
Fiji
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
61
62
77
FRA
France
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
28
26
29
FRO
Faeroe Islands
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FSM
Micronesia, Fed. Sts.
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
139
141
140
GAB
Gabon
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
158
156
156
GBR
United Kingdom
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4
4
7
GEO
Georgia
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
13
12
16
GHA
Ghana
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
77
67
63
GIB
Gibraltar
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GIN
Guinea
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
178
179
179
GMB
Gambia, The
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
141
146
149
GNB
Guinea-Bissau
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
175
176
176
GNQ
Equatorial Guinea
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
161
164
155
GRC
Greece
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
97
109
100
GRD
Grenada
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
98
92
73
GRL
Greenland
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GTM
Guatemala
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
100
101
97
GUM
Guam
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GUY
Guyana
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
101
100
114
HIC
High income
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HKG
Hong Kong SAR, China
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2
2
2
HND
Honduras
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
128
131
128
HRV
Croatia
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
89
84
80
HTI
Haiti
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
163
162
174
HUN
Hungary
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
52
46
51
IDN
Indonesia
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
115
121
129
IMY
Isle of Man
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IND
India
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
135
134
132
IRL
Ireland
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
8
9
10
IRN
Iran, Islamic Rep.
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
131
129
144
IRQ
Iraq
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
166
166
164
ISL
Iceland
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
14
15
9
ISR
Israel
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
30
29
34
ITA
Italy
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
76
80
87
JAM
Jamaica
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
79
81
88
JOR
Jordan
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
107
111
96
JPN
Japan
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
19
18
20
KAZ
Kazakhstan
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
74
59
47
KEN
Kenya
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
94
98
109
KGZ
Kyrgyz Republic
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
47
44
70
KHM
Cambodia
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
145
147
138
KIR
Kiribati
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
91
93
115
KNA
St. Kitts and Nevis
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
83
87
95
KOR
Korea, Rep.
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
15
16
8
KSV
Kosovo
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
118
119
117
KWT
Kuwait
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
69
74
67
LAC
Latin America & Caribbean
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LAO
Lao PDR
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
169
171
165
LBN
Lebanon
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
109
113
104
LBR
Liberia
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
152
155
151
LBY
Libya
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LCA
St. Lucia
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
45
53
52
LIC
Low income
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LIE
Liechtenstein
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LKA
Sri Lanka
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
102
102
89
LMC
Lower middle income
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LMY
Low & middle income
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LSO
Lesotho
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
137
138
143
LTU
Lithuania
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
26
23
27
LUX
Luxembourg
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
42
45
50
LVA
Latvia
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
27
24
21
MAC
Macao SAR, China
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAF
St. Martin (French part)
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
114
114
94
MCO
Monaco
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MDA
Moldova
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
87
90
81
MDG
Madagascar
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
138
140
137
MDV
Maldives
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
96
85
79
MEX
Mexico
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
41
35
53
MHL
Marshall Islands
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
123
108
106
MIC
Middle income
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MKD
Macedonia, FYR
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
36
38
22
MLI
Mali
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
155
153
146
MLT
Malta
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MMR
Myanmar
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNA
Middle East & North Africa
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNE
Montenegro
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
65
66
56
MNG
Mongolia
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
63
73
86
MNP
Northern Mariana Islands
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MOZ
Mozambique
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
130
126
139
MRT
Mauritania
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
167
165
159
MUS
Mauritius
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
20
20
23
MWI
Malawi
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
132
133
145
MYS
Malaysia
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
23
21
18
MYT
Mayotte
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NAM
Namibia
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
68
69
78
NCL
New Caledonia
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NER
Niger
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
171
173
173
NGA
Nigeria
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
134
137
133
NIC
Nicaragua
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
119
117
118
NIU
Niue
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NLD
Netherlands
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
29
30
31
NOR
Norway
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
7
8
6
NPL
Nepal
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
112
116
107
NRU
Nauru
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NZL
New Zealand
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3
3
3
OMN
Oman
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
57
57
49
PAK
Pakistan
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
75
83
105
PAN
Panama
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
62
72
61
PER
Peru
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
46
36
41
PHL
Philippines
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
146
148
136
PLW
Palau
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
120
120
116
PNG
Papua New Guinea
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
108
103
101
POL
Poland
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
73
70
62
PRI
Puerto Rico
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
49
47
43
PRK
Korea, Dem. Rep.
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRT
Portugal
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
33
31
30
PRY
Paraguay
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
105
106
102
PYF
French Polynesia
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
QAT
Qatar
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
39
50
36
ROM
Romania
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
54
56
72
RUS
Russian Federation
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
116
123
120
RWA
Rwanda
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
70
58
45
SAS
South Asia
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SAU
Saudi Arabia
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
12
11
12
SDN
Sudan
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
153
154
135
SEN
Senegal
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
151
152
154
SGP
Singapore
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1
1
1
SID
Small island developing states
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLB
Solomon Islands
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
106
96
74
SLE
Sierra Leone
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
143
143
141
SLV
El Salvador
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
80
86
112
SMR
San Marino
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SOM
Somalia
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SRB
Serbia
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
90
89
92
SSA
Sub-Saharan Africa
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
STP
Sao Tome and Principe
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
176
178
163
SUR
Suriname
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
160
161
158
SVK
Slovak Republic
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
40
41
48
SVN
Slovenia
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
43
42
37
SWE
Sweden
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
18
14
14
SWZ
Swaziland
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
126
118
124
SXM
Sint Maarten (Dutch part)
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
92
95
103
SYR
Syrian Arab Republic
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
144
144
134
TCA
Turks and Caicos Islands
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TCD
Chad
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
183
183
183
TGO
Togo
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
162
160
162
THA
Thailand
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
16
19
17
TJK
Tajikistan
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
149
139
147
TKM
Turkmenistan
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TMP
Timor-Leste
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
174
174
168
TON
Tonga
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
66
71
58
TTO
Trinidad and Tobago
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
95
97
68
TUN
Tunisia
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
58
55
46
TUR
Turkey
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
60
65
71
TUV
Tuvalu
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TZA
Tanzania
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
125
128
127
UGA
Uganda
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
129
122
123
UKR
Ukraine
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
147
145
152
UMC
Upper middle income
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
URY
Uruguay
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
122
124
90
USA
United States
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
5
5
4
UZB
Uzbekistan
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
150
150
166
VCT
St. Vincent and the Grenadines
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
72
75
75
VEN
Venezuela, RB
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
170
172
177
VIR
Virgin Islands (U.S.)
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VNM
Vietnam
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
88
78
98
VUT
Vanuatu
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
59
60
76
WBG
West Bank and Gaza
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
133
135
131
WLD
World
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
WSM
Samoa
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
67
61
60
YEM
Yemen, Rep.
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
104
105
99
ZAF
South Africa
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
32
34
35
ZAR
Congo, Dem. Rep.
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
179
175
178
ZMB
Zambia
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
84
76
84
ZWE
Zimbabwe
IC.BUS.EASE.XQ
Ease of doing business (ranking 1-183; 1=best)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
156
157
171
ABW
Aruba
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ADO
Andorra
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AFG
Afghanistan
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
1580000
..
..
..
..
..
..
..
..
AGO
Angola
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
45000000
..
..
9400000
0
0
..
..
..
ALB
Albania
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
0
0
..
..
..
..
..
8000000
1600000
..
781000000
..
..
..
664000000
28000000
..
ARE
United Arab Emirates
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ARG
Argentina
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
5023150000
2494840000
2075680000
2135200000
2379790000
3080500000
3642300000
1754800000
2142900000
945500000
111830000
104040000
274000000
248600000
1928000000
489000000
717750000
344250000
322910000
..
ARM
Armenia
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
0
..
..
..
49000000
25000000
..
..
20000000
37000000
70000000
..
..
..
ASM
American Samoa
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ATG
Antigua and Barbuda
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AUS
Australia
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AUT
Austria
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AZE
Azerbaijan
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
230000000
145200000
..
..
..
..
..
..
..
..
..
BDI
Burundi
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BEL
Belgium
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BEN
Benin
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
590000000
..
..
..
..
..
..
BFA
Burkina Faso
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
5600000
..
..
..
..
..
..
..
..
..
..
..
..
..
BGD
Bangladesh
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
313700000
225000000
16150000
18500000
483000000
..
..
..
..
17800000
7300000
153800000
64630000
96900000
..
BGR
Bulgaria
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
793600000
117800000
2342100000
826100000
410500000
607860000
466000000
143640000
..
BHR
Bahrain
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BHS
Bahamas, The
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BIH
Bosnia and Herzegovina
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
800000000
..
..
108600000
..
BLR
Belarus
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
500000000
..
..
..
..
..
..
..
..
..
..
625000000
625000000
625000000
625000000
..
BLZ
Belize
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
31900000
..
37000000
60000000
..
..
..
25000000
..
..
..
30000000
..
..
16000000
85500000
75000000
21500000
22200000
..
BMU
Bermuda
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BOL
Bolivia
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
252400000
..
116600000
2281600000
126700000
164300000
64400000
474000000
29100000
25900000
126700000
53500000
63800000
20000000
0
..
..
BRA
Brazil
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
18600000
18600000
18600000
0
212000000
401630000
3071300000
13910250000
9916600000
5757500000
8587690000
3976690000
3889810000
3599850000
1950140000
4030390000
5785100000
8438800000
9194600000
23272210000
6134900000
..
BRB
Barbados
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BRN
Brunei Darussalam
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BTN
Bhutan
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
201000000
..
..
BWA
Botswana
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CAF
Central African Republic
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CAN
Canada
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHE
Switzerland
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHI
Channel Islands
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHL
Chile
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
440000000
..
82000000
80500000
518000000
933800000
1503000000
1465000000
2034600000
657700000
610000000
187000000
1900000
232810000
50500000
311000000
119300000
442460000
8870000
725100000
271500000
..
CHN
China
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
1881000000
2197000000
1048100000
987370000
2859100000
5946335000
3026000000
4347800000
846800000
997130000
1351330000
4678850000
1390490000
1706260000
1197580000
2199160000
678770000
3094950000
307060000
..
CIV
Cote d'Ivoire
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
39600000
..
..
..
70000000
37600000
..
..
..
223000000
0
..
..
..
..
0
..
..
0
0
..
..
CMR
Cameroon
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
70300000
21500000
..
..
0
440000000
126000000
0
0
342000000
..
COG
Congo, Rep.
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
325000000
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
COK
Cook Islands
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
COL
Colombia
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
282000000
258000000
1273200000
1495200000
3382926000
597100000
263600000
81900000
53000000
51300000
50700000
53000000
61700000
147600000
495600000
159300000
142100000
136300000
..
COM
Comoros
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
..
..
CPV
Cape Verde
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
0
..
..
..
0
..
..
..
..
..
..
..
..
CRI
Costa Rica
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
3200000
..
15000000
58100000
88300000
92900000
58500000
3400000
0
..
..
0
80000000
..
80000000
..
..
110000000
..
..
CUB
Cuba
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
150000000
15000000
..
..
..
..
116000000
..
60000000
..
..
..
..
..
CUW
Curacao
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYP
Cyprus
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CZE
Czech Republic
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DEU
Germany
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DJI
Djibouti
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DMA
Dominica
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
7800000
18500000
..
..
..
..
..
..
..
..
..
..
..
..
..
DNK
Denmark
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DOM
Dominican Republic
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
87500000
285000000
..
..
20000000
674000000
577300000
265000000
421800000
..
..
42500000
0
..
0
..
..
..
DZA
Algeria
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
2300000000
..
..
..
..
..
..
..
..
..
..
562000000
400000000
2320000000
..
..
..
..
..
EAP
East Asia & Pacific
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
3528000000
5577600000
6583200000
8765370000
11068200000
13560435000
5190000000
5095300000
3476300000
4439230000
3461330000
9455150000
3404600000
6473760000
3973580000
5877840000
8415070000
7845930000
14003171000
..
ECA
Europe & Central Asia
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
909000000
..
..
3813100000
626000000
..
..
..
..
18974000000
19654960000
9555200000
10740170000
..
ECU
Ecuador
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
0
..
..
..
30000000
..
..
..
..
..
..
302000000
..
0
129000000
..
..
..
..
..
EGY
Egypt, Arab Rep.
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
220000000
414000000
..
678000000
..
..
..
..
..
469000000
..
..
..
..
EMU
Euro area
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ERI
Eritrea
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ESP
Spain
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
EST
Estonia
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ETH
Ethiopia
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4000000
..
..
FIN
Finland
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FJI
Fiji
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
FRA
France
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FRO
Faeroe Islands
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FSM
Micronesia, Fed. Sts.
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GAB
Gabon
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
0
..
..
..
294000000
..
..
..
..
0
..
0
..
..
0
..
..
..
..
GBR
United Kingdom
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GEO
Georgia
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
119000000
10000000
11000000
0
..
2000000
27000000
..
94500000
457700000
50000000
32000000
..
..
GHA
Ghana
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
0
..
..
..
..
110000000
..
..
..
..
..
590000000
..
100000000
..
..
..
..
GIB
Gibraltar
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GIN
Guinea
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
36400000
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GMB
Gambia, The
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
GNB
Guinea-Bissau
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GNQ
Equatorial Guinea
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRC
Greece
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRD
Grenada
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
5600000
0
..
..
..
..
..
0
0
0
1500000
7500000
500000
1600000
8600000
13600000
..
..
GRL
Greenland
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GTM
Guatemala
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
100000000
34800000
342000000
168300000
540400000
137700000
50000000
0
60000000
..
..
0
37000000
226800000
..
..
758000000
..
GUM
Guam
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GUY
Guyana
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
50000000
..
..
..
..
..
..
..
..
..
..
..
..
HIC
High income
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HKG
Hong Kong SAR, China
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HND
Honduras
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
70000000
25300000
..
..
86800000
..
..
..
..
358800000
..
..
..
..
..
..
250000000
..
HRV
Croatia
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
193500000
..
175000000
..
..
7100000
..
..
..
..
..
85000000
..
..
..
HTI
Haiti
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
4700000
..
..
..
..
..
..
..
5520000
..
..
..
..
..
0
..
..
HUN
Hungary
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
374200000
608300000
433000000
239900000
140000000
110700000
..
9900000
498000000
93000000
1513000000
194000000
..
..
..
..
IDN
Indonesia
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
137000000
..
595500000
2470000000
3203600000
3023500000
330000000
125000000
..
..
187600000
829000000
158000000
105900000
611100000
305000000
2863200000
0
2300000000
..
IMY
Isle of Man
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IND
India
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
613600000
13400000
1050700000
311300000
1008300000
1553100000
969500000
1066300000
2499500000
1953780000
240000000
390320000
913170000
4256470000
909830000
5500800000
10236450000
12889380000
24570850000
37775510000
..
IRL
Ireland
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IRN
Iran, Islamic Rep.
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
650000000
0
..
..
..
..
..
..
IRQ
Iraq
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
350000000
240000000
..
..
..
..
ISL
Iceland
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ISR
Israel
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ITA
Italy
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
JAM
Jamaica
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
246000000
43000000
..
..
..
..
..
201000000
..
..
..
..
78000000
..
..
..
132000000
..
JOR
Jordan
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
420000000
104000000
465000000
..
..
JPN
Japan
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KAZ
Kazakhstan
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
0
0
1075072100
705189700
20000000
0
300000000
..
..
..
..
..
..
..
0
0
..
..
KEN
Kenya
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
99000000
..
..
139000000
..
..
..
..
..
..
116690000
0
205000000
116000000
..
..
KGZ
Kyrgyz Republic
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KHM
Cambodia
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
127000000
..
16000000
..
28000000
4100000
..
25000000
25000000
..
648700000
47100000
..
1756500000
..
KIR
Kiribati
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KNA
St. Kitts and Nevis
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KOR
Korea, Rep.
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KSV
Kosovo
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KWT
Kuwait
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LAC
Latin America & Caribbean
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
6456680000
9908890000
22911576000
22581000000
10711100000
15401590000
6325390000
7865940000
7050690000
3567540000
5136490000
9416000000
11437360000
11104520000
25060530000
10426910000
..
LAO
Lao PDR
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
535500000
..
..
..
..
..
..
..
..
1250000000
760000000
..
665000000
..
3860000000
..
LBN
Lebanon
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LBR
Liberia
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
170000000
0
..
LBY
Libya
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LCA
St. Lucia
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
0
..
..
..
..
..
15300000
7500000
4700000
6400000
15900000
10000000
9700000
19000000
10500000
11200000
..
..
LIC
Low income
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LIE
Liechtenstein
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LKA
Sri Lanka
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
21700000
62000000
16000000
..
77300000
..
132000000
10050000
6780000
62000000
60000000
..
..
..
..
..
..
LMC
Lower middle income
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
349000000
..
4070200000
8123900000
10308900000
11171700000
7911100000
4496300000
..
3100700000
3571770000
3194150000
5230280000
4889940000
8866490000
16660930000
19549980000
30847630000
47416880000
..
LMY
Low & middle income
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
13904170000
19867650000
29144662100
44588400700
32306200000
19959350000
..
17512420000
12867140000
21360370000
13066810000
21132050000
24797410000
50194430000
53952130000
69455940000
73612761000
..
LSO
Lesotho
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
LTU
Lithuania
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
0
..
..
10000000
..
..
..
33800000
253700000
111800000
115000000
96000000
103000000
162600000
56000000
46500000
..
LUX
Luxembourg
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LVA
Latvia
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
106000000
..
..
48000000
23100000
0
0
44000000
43000000
45000000
57000000
48000000
34000000
..
..
MAC
Macao SAR, China
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAF
St. Martin (French part)
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
2300000000
..
..
..
4608000000
1370000000
..
..
689000000
0
360000000
..
..
..
..
..
..
..
..
MCO
Monaco
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MDA
Moldova
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
60000000
125200000
..
..
..
..
102000000
15000000
17000000
13000000
23000000
..
..
MDG
Madagascar
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0
..
17800000
..
..
..
..
MDV
Maldives
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MEX
Mexico
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
1000000
43500000
526300000
1201500000
348500000
2214300000
311000000
2124000000
1285000000
695000000
120000000
801000000
120000000
562000000
0
799700000
..
MHL
Marshall Islands
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MIC
Middle income
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
8706950000
14712640000
13772470000
19432550000
28947462100
43695700700
31475600000
19788200000
25057770000
16685420000
12847040000
20135170000
13036010000
19797640000
24066620000
48708650000
53205230000
69074310000
71725261000
..
MKD
Macedonia, FYR
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
391000000
233000000
..
31000000
..
..
MLI
Mali
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
0
..
..
..
..
..
365900000
..
..
..
0
..
..
..
..
..
..
..
MLT
Malta
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MMR
Myanmar
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
394000000
..
325000000
..
..
..
..
..
..
..
..
556100000
..
..
..
..
..
MNA
Middle East & North Africa
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNE
Montenegro
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
268000000
..
..
MNG
Mongolia
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNP
Northern Mariana Islands
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MOZ
Mozambique
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
1200000000
5800000
..
..
..
..
..
..
..
MRT
Mauritania
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MUS
Mauritius
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
0
109300000
..
..
..
..
..
0
..
..
..
..
..
..
..
MWI
Malawi
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
MYS
Malaysia
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
1350000000
1330000000
3181700000
1200000000
..
215200000
..
195000000
..
1765300000
12300000
2050000000
1210000000
1600000000
203000000
0
0
181500000
..
..
MYT
Mayotte
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NAM
Namibia
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
4000000
..
..
..
1000000
..
..
..
..
..
..
..
..
..
..
..
NCL
New Caledonia
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NER
Niger
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NGA
Nigeria
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
295000000
462000000
34000000
..
1129000000
..
280000000
..
..
..
..
NIC
Nicaragua
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
38000000
..
43000000
151400000
115000000
0
11300000
0
0
0
0
95000000
0
..
415000000
..
NIU
Niue
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NLD
Netherlands
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NOR
Norway
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NPL
Nepal
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
125700000
..
98200000
..
..
..
15100000
..
..
0
..
..
..
..
..
..
34100000
..
NRU
Nauru
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NZL
New Zealand
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
OMN
Oman
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PAK
Pakistan
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
6700000
..
1632000000
1778600000
2365700000
154000000
..
..
..
..
..
..
29800000
345600000
297600000
1196700000
1084400000
1375800000
166000000
..
PAN
Panama
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
40000000
..
418000000
211200000
59800000
0
370000000
0
0
19500000
45000000
490500000
19700000
21500000
300300000
..
PER
Peru
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
451190000
756550000
877800000
161000000
905100000
304400000
348100000
304300000
345300000
1037000000
305600000
158600000
126300000
469300000
328200000
399070000
868100000
..
PHL
Philippines
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
44000000
378600000
160000000
1879300000
1242800000
2329200000
1614000000
1672800000
1260000000
182000000
1764000000
672000000
126000000
149300000
621110000
96000000
645800000
2438000000
1820000000
4559480000
1479250000
..
PLW
Palau
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PNG
Papua New Guinea
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
65000000
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
POL
Poland
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
145000000
..
159800000
135300000
188000000
453300000
662400000
771200000
390600000
214000000
129000000
74150000
41000000
1500200000
860000000
..
..
PRI
Puerto Rico
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRK
Korea, Dem. Rep.
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRT
Portugal
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRY
Paraguay
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PYF
French Polynesia
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
QAT
Qatar
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ROM
Romania
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
100000000
..
..
..
..
..
..
1240750000
45000000
2600000000
1447500000
2196200000
..
..
RUS
Russian Federation
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
0
1100000000
..
853300000
490000000
660000000
278000000
..
1700000000
14000000
0
9000000
3000000
459000000
13552200000
12412000000
791000000
5187000000
..
RWA
Rwanda
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
0
..
1580000
..
..
..
..
..
..
SAS
South Asia
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
613600000
20100000
1050700000
2069000000
2808600000
4079000000
1453200000
1291300000
2592950000
1987380000
855000000
400370000
921530000
4348270000
1315430000
5816200000
11440450000
14127580000
26212280000
38072510000
..
SAU
Saudi Arabia
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SDN
Sudan
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SEN
Senegal
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
59000000
..
65000000
..
..
..
..
..
93310000
..
..
..
..
22000000
..
SGP
Singapore
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SID
Small island developing states
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLB
Solomon Islands
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLE
Sierra Leone
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1180000
..
..
..
..
SLV
El Salvador
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
106000000
..
..
594000000
200200000
75000000
10000000
..
..
..
..
0
0
0
0
16000000
..
SMR
San Marino
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SOM
Somalia
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SRB
Serbia
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SSA
Sub-Saharan Africa
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
STP
Sao Tome and Principe
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
0
..
..
..
..
..
..
..
..
..
..
50000000
..
..
..
..
..
..
..
SUR
Suriname
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SVK
Slovak Republic
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SVN
Slovenia
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SWE
Sweden
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SWZ
Swaziland
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SXM
Sint Maarten (Dutch part)
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYR
Syrian Arab Republic
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TCA
Turks and Caicos Islands
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TCD
Chad
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
TGO
Togo
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
0
..
..
67700000
..
..
..
..
590000000
..
..
190000000
..
..
..
THA
Thailand
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
171300000
503500000
1384800000
2586000000
2140600000
574000000
190000000
858500000
889800000
..
1336000000
0
1609000000
..
..
2341000000
..
4300361000
..
TJK
Tajikistan
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
16000000
..
..
..
..
..
..
..
..
..
TKM
Turkmenistan
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TMP
Timor-Leste
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TON
Tonga
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
7000000
..
..
..
0
0
..
..
..
..
..
..
TTO
Trinidad and Tobago
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TUN
Tunisia
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
627000000
..
..
..
..
30000000
261000000
..
..
30000000
..
..
..
..
..
..
..
..
..
TUR
Turkey
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
68000000
..
..
..
..
1760000000
1232200000
..
0
..
3575000000
1700000000
360000000
..
169000000
50800000
298050000
81600000
4219000000
4315000000
4590510000
..
TUV
Tuvalu
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TZA
Tanzania
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
6000000
..
..
127000000
..
..
..
316000000
0
..
0
32000000
28400000
..
..
..
..
..
UGA
Uganda
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
18100000
..
95830000
11800000
810800000
151000000
27000000
..
..
UKR
Ukraine
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
0
..
..
160000000
0
..
..
..
..
..
..
54000000
10920000
..
UMC
Upper middle income
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
8357950000
9482640000
9702270000
11308650000
18638562100
32524000700
23564500000
15291900000
20642490000
13584720000
9275270000
16941020000
7805730000
14907700000
15200130000
32047720000
33655250000
38226680000
24308381000
..
URY
Uruguay
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
86000000
..
..
..
..
330000000
..
..
..
..
..
..
..
..
..
..
..
USA
United States
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
UZB
Uzbekistan
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VCT
St. Vincent and the Grenadines
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VEN
Venezuela, RB
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
73000000
30000000
30000000
..
..
9470000
..
0
..
..
..
..
..
..
VIR
Virgin Islands (U.S.)
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VNM
Vietnam
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
205000000
110000000
..
39500000
..
87000000
1780000000
412000000
..
81600000
..
286980000
..
10000000
..
..
VUT
Vanuatu
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
11600000
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
WBG
West Bank and Gaza
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
150000000
..
..
..
..
..
..
..
..
..
..
..
WLD
World
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
WSM
Samoa
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
YEM
Yemen, Rep.
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
15790000
..
..
..
..
..
ZAF
South Africa
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
3000000
..
..
..
..
15900000
28400000
..
1200000000
..
7000000
9900000
..
..
..
6000000
..
ZAR
Congo, Dem. Rep.
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ZMB
Zambia
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
274000000
..
..
..
3000000
..
..
..
..
..
..
..
..
..
..
ZWE
Zimbabwe
IE.PPI.ENGY.CD
Invest. in energy w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
600000000
..
..
..
..
..
..
..
..
..
..
..
..
..
ABW
Aruba
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ADO
Andorra
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AFG
Afghanistan
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
70000000
69000000
156000000
171100000
555400000
240000000
185000000
60000000
..
..
AGO
Angola
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
68000000
7300000
83600000
119800000
0
250000000
198000000
327000000
354000000
534000000
..
ALB
Albania
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
102200000
63000000
118000000
95000000
186000000
5000000
31000000
236000000
64000000
339000000
108840000
..
ARE
United Arab Emirates
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ARG
Argentina
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
1254700000
2648000000
1111000000
2095000000
2170000000
2645000000
2328000000
1464000000
1739000000
2322600000
1900500000
1470300000
768600000
332400000
658350000
706600000
1023000000
1111200000
1580000000
1319400000
960300000
..
ARM
Armenia
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
0
..
..
112500000
..
33000000
33000000
26400000
31000000
61700000
132000000
0
104000000
186300000
198500000
97900000
..
ASM
American Samoa
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
0
..
..
..
0
0
0
0
0
0
0
0
..
ATG
Antigua and Barbuda
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
6000000
..
..
..
0
..
AUS
Australia
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AUT
Austria
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AZE
Azerbaijan
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
14000000
..
20000000
1000000
74000000
27000000
60600000
17000000
7000000
39000000
109000000
123000000
413600000
188000000
474000000
207900000
124300000
..
BDI
Burundi
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
500000
..
..
..
..
..
..
35600000
3000000
3000000
6000000
6000000
0
0
0
0
0
0
..
BEL
Belgium
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BEN
Benin
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
90400000
0
9200000
7300000
4200000
5800000
17000000
205000000
50700000
127000000
394000000
..
BFA
Burkina Faso
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
27400000
8200000
1000000
5250000
0
0
290000000
88800000
108800000
193000000
299000000
..
BGD
Bangladesh
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
110000000
6000000
..
..
..
30000000
165400000
74000000
26000000
142700000
74100000
61300000
60900000
205000000
420000000
473000000
1113000000
1348800000
896000000
372000000
520500000
..
BGR
Bulgaria
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
21000000
16500000
26500000
26500000
41500000
41500000
66500000
5400000
312500000
226500000
230300000
587500000
816900000
462000000
654000000
410800000
339700000
344800000
..
BHR
Bahrain
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BHS
Bahamas, The
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BIH
Bosnia and Herzegovina
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
0
..
..
..
..
..
..
..
0
0
0
901500000
43800000
77700000
63600000
15900000
..
BLR
Belarus
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
10000000
..
..
..
..
..
20000000
..
..
38500000
120300000
241000000
148000000
187600000
220400000
660900000
1130000000
207900000
419500000
..
BLZ
Belize
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
66200000
..
..
..
..
..
..
5800000
10200000
12300000
17600000
8900000
27600000
45000000
33200000
30000000
..
..
..
..
..
..
BMU
Bermuda
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BOL
Bolivia
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
20000000
..
..
..
18000000
109000000
213000000
109000000
79000000
142400000
75000000
81500000
75800000
96800000
49000000
73800000
107200000
66300000
37400000
0
..
BRA
Brazil
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
705000000
5623300000
28280400000
10526500000
10107200000
13212400000
4117300000
3157800000
4660800000
5798300000
6061500000
6917800000
10854500000
7287600000
8941550000
..
BRB
Barbados
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BRN
Brunei Darussalam
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BTN
Bhutan
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
17500000
0
0
0
0
..
BWA
Botswana
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
80000000
17000000
17000000
17000000
17000000
17000000
17000000
19000000
18000000
28000000
51860000
86000000
59000000
..
CAF
Central African Republic
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
1100000
..
..
..
..
..
..
..
..
0
0
0
12000000
2800000
6000000
10000000
..
CAN
Canada
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHE
Switzerland
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHI
Channel Islands
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHL
Chile
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
472600000
378600000
0
46000000
49900000
53000000
131000000
136000000
158100000
195400000
351700000
393600000
218980000
98390000
85180000
112870000
224870000
159010000
405700000
365300000
171800000
..
CHN
China
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
3970000000
..
2000000000
5653000000
325000000
1430000000
0
1140000000
0
0
..
..
..
..
..
CIV
Cote d'Ivoire
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
10000000
694000000
48300000
0
75100000
7500000
7500000
0
24800000
20000000
13000000
253700000
300700000
318000000
319000000
..
CMR
Cameroon
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
12700000
95000000
54400000
66000000
89000000
61000000
29000000
63000000
149400000
211000000
278000000
233000000
..
COG
Congo, Rep.
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
4600000
..
42500000
0
7600000
35200000
19600000
7000000
0
0
0
10000000
90000000
120700000
110000000
77000000
..
COK
Cook Islands
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
COL
Colombia
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
1354700000
196500000
131200000
485800000
544800000
26000000
110500000
89300000
163400000
153900000
198400000
855400000
1632600000
1071400000
1691000000
899700000
1053200000
..
COM
Comoros
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CPV
Cape Verde
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
20000000
..
..
..
..
..
..
0
..
0
..
..
0
4700000
23000000
16000000
..
CRI
Costa Rica
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CUB
Cuba
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
5000000
366000000
..
..
..
..
..
0
0
60000000
..
0
0
0
0
0
0
..
..
CUW
Curacao
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYP
Cyprus
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CZE
Czech Republic
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DEU
Germany
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DJI
Djibouti
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DMA
Dominica
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
0
5000000
0
0
0
..
..
DNK
Denmark
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DOM
Dominican Republic
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
0
..
5000000
5000000
60000000
24000000
74000000
..
0
116500000
158700000
16200000
51400000
50200000
31000000
46120000
33000000
110000000
..
..
DZA
Algeria
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
368500000
133000000
520000000
1129000000
1272000000
702000000
561000000
264000000
398000000
237000000
..
EAP
East Asia & Pacific
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
9289000000
..
4581100000
7618950000
5042600000
5190740000
3076800000
4906300000
3544700000
4662000000
..
..
..
..
..
ECA
Europe & Central Asia
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
663800000
818420000
1871400000
6801300000
4755700000
3704900000
8628700000
3723600000
4709819000
6453620000
9503210000
17983140000
15411632000
15626210000
18815500000
14321800000
11912300000
..
ECU
Ecuador
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
27600000
23600000
126800000
296000000
250000000
0
20000000
13000000
23000000
65100000
75900000
160800000
230800000
212700000
1062100000
259100000
238600000
..
EGY
Egypt, Arab Rep.
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
1522100000
392400000
495900000
391600000
345400000
120000000
292000000
1827000000
3751000000
1908000000
1414000000
1791000000
2113000000
..
EMU
Euro area
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ERI
Eritrea
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
40000000
..
..
..
..
..
0
0
0
0
..
ESP
Spain
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
EST
Estonia
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ETH
Ethiopia
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0
..
FIN
Finland
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FJI
Fiji
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
21000000
2100000
2900000
2900000
2900000
2900000
2900000
2900000
2900000
2900000
13900000
24000000
49800000
0
90250000
0
0
..
FRA
France
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FRO
Faeroe Islands
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FSM
Micronesia, Fed. Sts.
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
GAB
Gabon
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
8400000
12300000
5300000
9000000
0
0
0
0
131400000
56400000
91000000
125000000
..
GBR
United Kingdom
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GEO
Georgia
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
11600000
0
10000000
10000000
21000000
10000000
10000000
37800000
15000000
15000000
38541000
36500000
58500000
383000000
50000000
106000000
122000000
60960000
..
GHA
Ghana
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
20000000
..
..
5000000
424000000
35100000
27000000
0
0
12000000
12000000
275000
80600000
51600000
215000000
420000000
1434000000
847000000
290000000
..
GIB
Gibraltar
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GIN
Guinea
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
45000000
20300000
47000000
8000000
..
6000000
..
0
12000000
0
32600000
48000000
18000000
89200000
87000000
71000000
..
GMB
Gambia, The
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
6600000
..
..
0
0
0
35000000
0
0
0
..
GNB
Guinea-Bissau
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
2800000
..
0
6300000
600000
0
35500000
24700000
28000000
19000000
..
GNQ
Equatorial Guinea
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRC
Greece
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRD
Grenada
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
6100000
6100000
6100000
6100000
6100000
6100000
6600000
6600000
..
..
..
..
..
10000000
0
0
0
0
0
0
..
..
GRL
Greenland
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GTM
Guatemala
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
0
..
..
..
..
20000000
16000000
28000000
940000000
362300000
97000000
54700000
129400000
50300000
108800000
119900000
276000000
504100000
525000000
206300000
213000000
..
GUM
Guam
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GUY
Guyana
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
16500000
10400000
10400000
10400000
10400000
10400000
10400000
10400000
10400000
11000000
19700000
20800000
0
37000000
0
0
26000000
0
0
..
..
HIC
High income
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HKG
Hong Kong SAR, China
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HND
Honduras
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
13100000
25000000
6600000
6600000
6600000
6600000
6600000
60000000
14460000
40700000
89200000
230700000
334000000
276600000
70500000
..
HRV
Croatia
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
28000000
950000000
..
447500000
114000000
157000000
279900000
207300000
588000000
1813000000
634000000
..
..
..
HTI
Haiti
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
1500000
101000000
..
..
18000000
..
..
0
130000000
176000000
0
0
..
..
HUN
Hungary
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
943200000
1736600000
622700000
1240000000
1027600000
1190500000
934000000
701800000
678800000
640100000
660290000
863000000
..
..
..
..
IDN
Indonesia
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
250000000
1249000000
1804000000
3694000000
1510600000
579300000
1259600000
642300000
1421300000
1321500000
939500000
895000000
1337600000
1676100000
3516600000
2876000000
1832900000
1107900000
..
IMY
Isle of Man
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IND
India
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
96700000
682800000
1228700000
3827000000
672900000
1045400000
681600000
3415100000
5008400000
2079700000
3701220000
5665750000
6823200000
8168250000
9933800000
7829800000
20335300000
..
IRL
Ireland
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IRN
Iran, Islamic Rep.
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
5000000
23000000
..
..
..
..
..
5000000
0
340000000
350000000
0
221000000
802000000
483000000
486000000
..
IRQ
Iraq
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
420000000
89000000
475000000
90000000
3700000000
284000000
447000000
456000000
..
ISL
Iceland
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ISR
Israel
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ITA
Italy
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
JAM
Jamaica
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
84000000
..
..
40000000
45000000
45000000
45000000
45000000
45000000
11000000
..
344500000
105000000
149100000
13400000
0
102400000
4300000
7500000
5400000
38300000
..
JOR
Jordan
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
43000000
..
17000000
800000
10300000
11800000
583900000
192100000
152000000
81700000
438300000
141000000
363600000
30700000
90300000
164000000
301000000
..
JPN
Japan
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KAZ
Kazakhstan
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
30000000
..
..
1370000000
86000000
177500000
75000000
64500000
115000000
139000000
275700000
484500000
635200000
876100000
1062600000
596300000
596300000
..
KEN
Kenya
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
193000000
130000000
108000000
108000000
108000000
559000000
421000000
619000000
877000000
1199800000
278000000
492000000
..
KGZ
Kyrgyz Republic
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
12000000
88000000
..
800000
0
5000000
600000
4700000
600000
600000
35900000
5000000
75000000
0
14300000
..
KHM
Cambodia
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
12600000
17500000
..
1500000
8000000
78000000
13800000
1100000
2400000
12000000
28370000
17000000
7500000
68800000
3100000
165800000
37000000
222580000
18250000
..
KIR
Kiribati
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KNA
St. Kitts and Nevis
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
3100000
5000000
3200000
4200000
..
..
8300000
13400000
0
0
0
0
0
..
..
KOR
Korea, Rep.
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KSV
Kosovo
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
275000000
64000000
41000000
5100000
..
KWT
Kuwait
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LAC
Latin America & Caribbean
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
9499600000
12750800000
37120100000
17858200000
16618300000
21870240000
9721920000
7099390000
10771790000
12853730000
14807470000
16076110000
23162100000
14934400000
16718850000
..
LAO
Lao PDR
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
92000000
..
1400000
6700000
5450000
12300000
19670000
6100000
34100000
10100000
10000000
0
0
125000000
0
..
LBN
Lebanon
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
50000000
50000000
83000000
140000000
119700000
93000000
46400000
53800000
37900000
0
0
0
0
0
0
0
0
..
LBR
Liberia
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
0
..
0
54500000
15800000
10530000
17000000
22300000
24000000
15000000
..
LBY
Libya
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LCA
St. Lucia
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
15000000
15000000
0
0
0
0
0
..
..
LIC
Low income
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
689970000
830550000
1593360000
1532450000
3234430000
4984400000
5241750000
3683980000
4471050000
..
LIE
Liechtenstein
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LKA
Sri Lanka
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
41600000
2000000
0
140000000
268300000
38300000
113300000
159400000
8600000
121700000
90000000
120400000
214500000
232600000
386500000
300400000
292400000
71600000
..
LMC
Lower middle income
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
2644200000
3566900000
7704200000
9778100000
5675160000
6096300000
6099550000
9310640000
9909129000
8147455000
14230030000
20561140000
24004790000
32403830000
29268050000
24285500000
34371900000
..
LMY
Low & middle income
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
34989850000
..
32160350000
40029200000
39863490000
30006529000
25397555000
41573630000
55284240000
61451712000
69858170000
77152300000
59575540000
71187630000
..
LSO
Lesotho
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
10000000
..
2500000
3200000
2800000
29000000
30100000
12000000
11500000
3000000
5530000
4800000
9300000
11000000
11000000
..
LTU
Lithuania
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
30000000
..
..
44220000
20000000
49000000
551500000
168000000
387800000
118500000
175300000
113900000
99500000
98000000
119000000
193200000
103000000
75000000
57970000
..
LUX
Luxembourg
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LVA
Latvia
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
20000000
..
160000000
50000000
70000000
107200000
198600000
175100000
181100000
122500000
97000000
98400000
70000000
131000000
117400000
137700000
125000000
88000000
..
..
MAC
Macao SAR, China
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAF
St. Martin (French part)
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
1240000000
2135000000
268000000
100000000
100000000
2910500000
626000000
750600000
716000000
843000000
240000000
1124000000
..
MCO
Monaco
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MDA
Moldova
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
0
34800000
49800000
0
0
0
0
9600000
36500000
34000000
163300000
101000000
94000000
34530000
..
MDG
Madagascar
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
5000000
..
20000000
10000000
0
..
0
0
0
0
12600000
0
0
119600000
102150000
83000000
132000000
..
MDV
Maldives
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
2400000
4600000
2200000
1700000
21300000
1700000
2600000
430000
8600000
0
40000000
0
0
0
0
11600000
..
MEX
Mexico
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
2198000000
4299000000
3245000000
3154000000
2944000000
2191000000
1963000000
1409800000
2891200000
2302500000
2269400000
4193500000
2929500000
2302700000
3463400000
3599460000
2880200000
3325400000
3872100000
2544900000
3668000000
..
MHL
Marshall Islands
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MIC
Middle income
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
34664450000
..
31542850000
39474000000
39263990000
29316559000
24567005000
39980270000
53751790000
58217282000
64873770000
71910550000
55891560000
66716580000
..
MKD
Macedonia, FYR
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
428500000
73000000
91100000
114000000
0
102000000
151000000
131600000
105000000
85810000
..
MLI
Mali
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
82600000
0
0
0
0
87000000
67000000
429000000
254000000
..
MLT
Malta
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MMR
Myanmar
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNA
Middle East & North Africa
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
1310450000
1360350000
5755450000
5009150000
8316000000
7293300000
3941800000
4565000000
5854000000
..
MNE
Montenegro
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
0
35000000
..
..
5000000
10000000
10000000
10100000
0
30000000
188000000
16000000
102500000
55500000
38000000
5500000
..
MNG
Mongolia
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
13100000
0
0
3060000
5700000
11000000
6600000
2500000
2000000
0
0
0
0
0
0
0
..
MNP
Northern Mariana Islands
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MOZ
Mozambique
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
10000000
..
19000000
..
0
0
76000000
33000000
14000000
15600000
65600000
23000000
52000000
80000000
..
MRT
Mauritania
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
42500000
48000000
1600000
..
0
0
20000000
30100000
40000000
43000000
133000000
..
MUS
Mauritius
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
338200000
27400000
1700000
25700000
0
0
4100000
13000000
20000000
26000000
..
MWI
Malawi
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
8000000
..
..
2000000
13100000
4700000
4700000
26000000
900000
0
0
30500000
37000000
57200000
73000000
116000000
..
MYS
Malaysia
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
870000000
78500000
78500000
78500000
748000000
1012000000
1033200000
672800000
174500000
296100000
276400000
418500000
475200000
438200000
1203600000
483000000
487000000
595000000
882440000
778160000
947330000
..
MYT
Mayotte
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NAM
Namibia
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
20000000
8750000
8750000
8750000
8750000
8750000
8750000
8750000
8750000
..
..
..
8500000
0
0
..
..
NCL
New Caledonia
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NER
Niger
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
13100000
20700000
4500000
47200000
0
0
0
110000000
54700000
87000000
107000000
..
NGA
Nigeria
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
0
0
0
0
0
22000000
28000000
19000000
75700000
970000000
848000000
1674000000
1070000000
2312000000
2535050000
2761000000
2995000000
3057000000
3036000000
..
NIC
Nicaragua
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
3300000
3300000
3300000
1200000
20000000
..
..
..
33000000
68040000
8600000
70700000
38200000
75800000
95400000
156000000
52900000
132100000
..
NIU
Niue
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NLD
Netherlands
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NOR
Norway
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NPL
Nepal
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
15100000
..
4900000
0
43300000
46000000
12000000
14000000
0
0
0
..
NRU
Nauru
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NZL
New Zealand
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
OMN
Oman
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PAK
Pakistan
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
19900000
19900000
19900000
19900000
501900000
20500000
18000000
31000000
6000000
..
76700000
60000000
170000000
240000000
1683500000
4364700000
2473000000
2740500000
2255500000
1266500000
271000000
..
PAN
Panama
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
112600000
1265600000
28000000
23000000
..
..
..
55700000
78600000
77100000
96500000
134000000
878000000
115500000
38200000
..
PER
Peru
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
10000000
..
..
..
1635000000
923700000
2140800000
648100000
501900000
560000000
603700000
770300000
143800000
150800000
258000000
314800000
409800000
707200000
842400000
683800000
547900000
..
PHL
Philippines
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
54200000
54200000
54200000
54200000
735000000
593200000
1191500000
2400900000
546700000
626000000
384200000
1157000000
706400000
767100000
929600000
672100000
618900000
1525500000
1208600000
824000000
995000000
..
PLW
Palau
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PNG
Papua New Guinea
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
150000000
0
0
..
..
POL
Poland
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
150000000
41000000
41000000
41000000
206000000
1257800000
724330000
1913630000
811430000
6796530000
3386730000
1780230000
1762630000
1649000000
1425000000
1379000000
2515000000
2281000000
1575000000
..
..
PRI
Puerto Rico
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRK
Korea, Dem. Rep.
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
400000000
27000000
47000000
..
PRT
Portugal
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRY
Paraguay
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
3400000
14900000
14900000
14900000
14900000
70500000
87000000
72000000
30000000
70000000
20000000
20000000
17600000
41400000
166500000
153200000
178800000
92900000
45000000
..
PYF
French Polynesia
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
QAT
Qatar
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ROM
Romania
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
5000000
..
..
227300000
345000000
1022500000
478000000
784500000
550500000
347500000
603400000
635000000
986000000
477000000
1518910000
1409000000
912000000
679500000
..
RUS
Russian Federation
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
18200000
18700000
53500000
359300000
553400000
607400000
3205100000
633000000
640200000
1829300000
1354900000
2864570000
4142010000
5952310000
5906300000
6131030000
6178100000
7197100000
5162300000
6314100000
..
RWA
Rwanda
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
0
8000000
8000000
8000000
7800000
7800000
7700000
33000000
10000000
114400000
43600000
183000000
63000000
..
SAS
South Asia
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
600600000
735700000
1556700000
4202500000
744900000
1322700000
1008600000
3547600000
5436330000
2692300000
6124420000
10975050000
11226700000
12898050000
13570700000
9820700000
21210000000
..
SAU
Saudi Arabia
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SDN
Sudan
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
0
..
..
..
6000000
0
0
12300000
0
0
0
266200000
203000000
278500000
706300000
478000000
207000000
357000000
478000000
..
SEN
Senegal
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
159700000
55300000
58900000
79300000
63500000
94000000
95300000
104000000
157000000
212000000
567000000
298000000
256000000
236000000
..
SGP
Singapore
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SID
Small island developing states
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
329600000
502020000
208150000
186400000
..
..
SLB
Solomon Islands
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4500000
5400000
0
0
0
..
..
SLE
Sierra Leone
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
3500000
3500000
3000000
9500000
6000000
15000000
15000000
250000
40000000
26300000
21900000
23000000
38000000
..
SLV
El Salvador
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
0
..
..
45000000
20500000
367000000
287700000
202400000
198640000
134400000
56300000
365800000
153100000
171500000
411480000
231800000
87100000
135700000
..
SMR
San Marino
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SOM
Somalia
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
0
0
..
1000000
9000000
2000000
0
0
1400000
0
0
0
0
0
..
SRB
Serbia
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
1080000000
160000000
310000000
344500000
..
105000000
51000000
63000000
0
2369392000
213000000
186000000
149000000
106700000
..
SSA
Sub-Saharan Africa
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
2846250000
2786650000
4052250000
3637270000
4715095000
4512460000
4918470000
7027910000
10335600000
11726910000
11318000000
11957000000
..
STP
Sao Tome and Principe
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
2420000
0
0
0
..
..
..
..
..
..
SUR
Suriname
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
60000000
0
0
..
..
SVK
Slovak Republic
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SVN
Slovenia
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SWE
Sweden
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SWZ
Swaziland
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
17200000
4000000
5400000
2800000
4200000
3000000
9300000
3000000
0
3800000
19500000
25000000
15000000
..
SXM
Sint Maarten (Dutch part)
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
10000000
..
25000000
..
7500000
7000000
6800000
7300000
7300000
7800000
14920000
0
0
0
..
..
..
SYR
Syrian Arab Republic
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
161000000
51250000
71250000
129250000
170250000
45000000
59300000
95400000
108000000
65000000
..
TCA
Turks and Caicos Islands
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TCD
Chad
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
2000000
4800000
4800000
1400000
..
0
0
26400000
53500000
98500000
68000000
345000000
..
TGO
Togo
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
5000000
..
..
0
0
0
0
0
0
0
44000000
23000000
..
THA
Thailand
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
60000000
252000000
1854000000
2460000000
160000000
370000000
1013000000
643800000
331400000
377000000
511300000
1672000000
1198200000
664000000
612600000
944600000
1130000000
1031000000
406000000
539000000
420000000
..
TJK
Tajikistan
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
200000
..
..
1000000
..
8500000
0
0
0
0
0
11000000
68000000
61400000
56000000
..
TKM
Turkmenistan
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
20000000
..
..
..
..
0
16300000
31800000
58000000
52000000
44400000
..
TMP
Timor-Leste
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
..
0
0
0
0
..
..
TON
Tonga
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
15000000
..
10000000
0
0
0
0
0
0
0
..
TTO
Trinidad and Tobago
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TUN
Tunisia
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
277000000
..
368000000
106000000
2343000000
76000000
99000000
287000000
966000000
..
TUR
Turkey
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
74000000
116300000
175500000
188600000
1448800000
1340500000
4525000000
197000000
198900000
155000000
383800000
7328900000
1991700000
2215000000
3954000000
3908000000
1682980000
..
TUV
Tuvalu
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TZA
Tanzania
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
0
1800000
28300000
9900000
14000000
10400000
37600000
33300000
155800000
64000000
58000000
87660000
116500000
184000000
301500000
477000000
522000000
625000000
..
UGA
Uganda
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
4400000
4400000
4400000
4400000
34400000
71700000
57100000
66100000
50700000
61700000
75000000
77000000
0
500600000
679400000
283000000
257000000
..
UKR
Ukraine
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
10600000
72000000
10000000
18000000
316500000
186500000
331300000
242300000
206300000
254500000
186449000
370269000
738000000
1407340000
865210000
1345800000
1363800000
934000000
412550000
..
UMC
Upper middle income
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
24886350000
..
25446550000
33374450000
29953350000
19407430000
16419550000
25750240000
33190650000
34212492000
..
..
..
..
..
URY
Uruguay
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
0
4000000
4000000
5000000
6000000
14000000
14000000
11000000
18700000
..
..
..
3700000
102100000
8400000
30000000
30900000
52900000
44700000
41700000
..
USA
United States
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
UZB
Uzbekistan
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
2500000
..
..
..
351000000
118400000
31200000
13200000
26200000
130200000
23200000
10000000
3000000
93000000
90000000
272100000
413100000
627200000
644360000
..
VCT
St. Vincent and the Grenadines
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
15000000
35000000
..
0
0
0
0
..
..
VEN
Venezuela, RB
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
2117000000
84500000
808200000
675000000
417600000
1526000000
936300000
1060000000
938000000
744100000
800300000
527300000
249300000
318500000
697500000
1091000000
592000000
391000000
545800000
423000000
..
VIR
Virgin Islands (U.S.)
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VNM
Vietnam
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
256000000
..
..
..
..
130000000
..
0
230000000
70000000
0
681700000
645000000
0
267000000
0
..
VUT
Vanuatu
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
17000000
..
..
6000000
..
..
..
6000000
..
..
6000000
0
0
0
0
0
35000000
0
0
..
WBG
West Bank and Gaza
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
65000000
..
50000000
40000000
110000000
86800000
62200000
68900000
7400000
31400000
23100000
..
0
0
597000000
47000000
..
WLD
World
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
WSM
Samoa
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
10000000
..
..
0
0
0
0
0
0
0
0
0
0
..
..
YEM
Yemen, Rep.
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
10000000
..
10000000
5000000
..
..
..
..
..
..
20000000
130000000
140000000
40000000
28000000
18800000
270800000
21300000
50100000
50000000
59000000
..
ZAF
South Africa
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
0
542200000
530600000
447700000
678000000
1031000000
2291000000
1840000000
1863700000
1955500000
1889800000
1787000000
1183500000
1357000000
2043000000
1927000000
2387000000
2101000000
..
ZAR
Congo, Dem. Rep.
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
0
30000000
18000000
41200000
65500000
141000000
129700000
54000000
42000000
74000000
320000000
335000000
151000000
174000000
..
ZMB
Zambia
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
5000000
34200000
25000000
27000000
25000000
25000000
32320000
25000000
74000000
238000000
141000000
131000000
114000000
453000000
..
ZWE
Zimbabwe
IE.PPI.TELE.CD
Invest. in telecoms w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
46000000
..
8000000
..
0
0
51000000
13000000
20000000
0
123000000
200000000
301000000
..
ABW
Aruba
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ADO
Andorra
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AFG
Afghanistan
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AGO
Angola
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
53000000
..
..
..
..
ALB
Albania
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
308000000
..
..
..
..
..
..
ARE
United Arab Emirates
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ARG
Argentina
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
2088000000
214000000
814700000
1439600000
940500000
621200000
930000000
1195000000
1911300000
2345000000
129800000
63500000
6900000
0
3400000
..
337000000
728700000
331000000
5890000
0
..
ARM
Armenia
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
63000000
..
..
..
..
..
10000000
705000000
..
..
..
ASM
American Samoa
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ATG
Antigua and Barbuda
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AUS
Australia
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AUT
Austria
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AZE
Azerbaijan
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BDI
Burundi
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BEL
Belgium
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BEN
Benin
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BFA
Burkina Faso
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
63300000
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BGD
Bangladesh
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
0
..
..
..
..
..
0
0
0
..
..
0
..
..
BGR
Bulgaria
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2120000
531600000
..
..
4580000
..
..
BHR
Bahrain
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BHS
Bahamas, The
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BIH
Bosnia and Herzegovina
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BLR
Belarus
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3960000
..
..
..
BLZ
Belize
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
37600000
..
..
..
..
..
..
..
..
..
BMU
Bermuda
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BOL
Bolivia
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
162100000
6600000
..
..
16600000
..
..
..
..
..
..
..
..
..
..
..
BRA
Brazil
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
328100000
989300000
4357200000
4048300000
7808700000
53900000
1373000000
917200000
157800000
107800000
224200000
376500000
233500000
3336000000
9967100000
8550300000
1440800000
..
BRB
Barbados
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BRN
Brunei Darussalam
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BTN
Bhutan
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BWA
Botswana
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CAF
Central African Republic
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CAN
Canada
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHE
Switzerland
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHI
Channel Islands
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHL
Chile
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
93400000
27000000
419500000
190400000
1949100000
168000000
367600000
201500000
2340600000
1045000000
18000000
791000000
434600000
147000000
423000000
260100000
290000000
823000000
..
CHN
China
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
173000000
2378800000
532600000
1172000000
2086100000
309300000
5084420000
3092740000
1670500000
695550000
1558500000
642230000
1787110000
4054650000
782580000
6628900000
8351010000
4494380000
436750000
2512870000
..
..
CIV
Cote d'Ivoire
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
63300000
28000000
..
..
150000000
140000000
..
..
..
36400000
0
..
..
..
..
..
..
CMR
Cameroon
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
30800000
..
..
..
..
90000000
..
..
..
..
0
..
..
..
..
..
..
..
COG
Congo, Rep.
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
735000000
..
0
..
COK
Cook Islands
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
COL
Colombia
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
40000000
260100000
518900000
195800000
148900000
48800000
284000000
318000000
1047700000
60500000
10800000
110400000
26000000
242000000
672360000
474000000
956000000
..
2359000000
..
COM
Comoros
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
500000
..
..
..
..
..
..
..
..
CPV
Cape Verde
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CRI
Costa Rica
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
161000000
..
..
..
..
304200000
43000000
330000000
..
34000000
..
..
CUB
Cuba
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
CUW
Curacao
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYP
Cyprus
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CZE
Czech Republic
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DEU
Germany
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DJI
Djibouti
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
50000000
..
0
..
130000000
..
..
396000000
..
..
..
..
DMA
Dominica
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DNK
Denmark
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DOM
Dominican Republic
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
498900000
200000000
..
200000000
..
..
250000000
..
..
629900000
69000000
..
DZA
Algeria
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
103860000
..
..
..
17000000
0
161000000
..
108000000
..
..
EAP
East Asia & Pacific
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
921900000
2405300000
855100000
2337500000
4133400000
4821100000
8761520000
6471840000
2289800000
2179780000
2644600000
2755030000
1844410000
5669550000
1775990000
7215850000
9641710000
6323880000
1542050000
3030370000
..
..
ECA
Europe & Central Asia
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ECU
Ecuador
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
12500000
..
105000000
..
569800000
12000000
..
..
0
..
110000000
585000000
566000000
200000000
..
..
..
..
EGY
Egypt, Arab Rep.
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
123900000
..
368300000
270000000
..
..
97000000
86200000
..
730000000
640000000
..
..
..
EMU
Euro area
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ERI
Eritrea
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ESP
Spain
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
EST
Estonia
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ETH
Ethiopia
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FIN
Finland
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FJI
Fiji
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FRA
France
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FRO
Faeroe Islands
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FSM
Micronesia, Fed. Sts.
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GAB
Gabon
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
46700000
..
..
..
85600000
..
91770000
..
..
3900000
..
..
..
GBR
United Kingdom
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GEO
Georgia
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
168500000
59500000
345000000
..
..
..
GHA
Ghana
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
10000000
..
..
0
..
..
..
..
..
..
..
..
GIB
Gibraltar
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GIN
Guinea
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
159000000
..
..
GMB
Gambia, The
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GNB
Guinea-Bissau
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GNQ
Equatorial Guinea
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRC
Greece
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRD
Grenada
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRL
Greenland
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GTM
Guatemala
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
23800000
10000000
..
..
..
..
..
..
..
..
..
..
..
..
..
GUM
Guam
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GUY
Guyana
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HIC
High income
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HKG
Hong Kong SAR, China
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HND
Honduras
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
10500000
120000000
..
..
..
..
..
..
..
..
..
..
..
HRV
Croatia
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
672200000
..
..
..
..
..
451000000
..
..
492000000
..
..
..
..
HTI
Haiti
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HUN
Hungary
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
120000000
15000000
..
..
..
..
..
667500000
2630000000
..
1588000000
..
..
..
..
IDN
Indonesia
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
116000000
10800000
114500000
351500000
26700000
502800000
..
..
..
1028000000
..
..
..
0
159200000
..
372000000
1139500000
..
220000000
..
..
IMY
Isle of Man
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IND
India
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
1900000
..
..
..
125000000
..
182000000
405000000
301600000
466700000
96400000
350800000
719170000
579140000
1141400000
1526510000
10028470000
3924920000
5423650000
4871750000
13787370000
..
IRL
Ireland
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IRN
Iran, Islamic Rep.
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IRQ
Iraq
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
500000000
..
ISL
Iceland
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ISR
Israel
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ITA
Italy
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
JAM
Jamaica
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
30000000
..
..
..
..
0
..
..
390000000
175000000
..
..
..
..
..
..
..
..
JOR
Jordan
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
182000000
..
..
..
..
0
..
705000000
675000000
..
..
..
..
JPN
Japan
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KAZ
Kazakhstan
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
231000000
..
31000000
..
..
..
..
KEN
Kenya
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
0
..
53400000
..
..
..
..
..
..
..
404000000
..
..
..
..
..
KGZ
Kyrgyz Republic
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KHM
Cambodia
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
120000000
..
..
..
..
..
65000000
7200000
..
53100000
..
40100000
..
..
0
..
..
KIR
Kiribati
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KNA
St. Kitts and Nevis
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KOR
Korea, Rep.
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KSV
Kosovo
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KWT
Kuwait
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LAC
Latin America & Caribbean
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
2433700000
2790120000
6554700000
10772000000
11708600000
3555500000
4497500000
4037200000
1719500000
924900000
1694200000
3546600000
6030890000
12513900000
12858280000
12076460000
5918200000
..
LAO
Lao PDR
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
0
..
0
..
..
..
..
1500000
..
..
..
..
..
..
..
..
1500000
..
..
LBN
Lebanon
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
150000000
..
..
..
3000000
..
..
..
..
..
..
..
LBR
Liberia
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
120000000
..
LBY
Libya
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LCA
St. Lucia
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LIC
Low income
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LIE
Liechtenstein
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LKA
Sri Lanka
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
240000000
..
..
..
..
..
..
..
..
..
..
..
..
LMC
Lower middle income
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1781000000
..
11285710000
7160620000
9852950000
5828250000
..
..
LMY
Low & middle income
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
5437490000
..
32262310000
29168200000
25243340000
..
..
..
LSO
Lesotho
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LTU
Lithuania
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LUX
Luxembourg
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LVA
Latvia
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
0
75000000
..
..
..
..
..
..
135000000
..
..
..
..
..
MAC
Macao SAR, China
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAF
St. Martin (French part)
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
200000000
..
..
..
200000000
..
..
..
MCO
Monaco
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MDA
Moldova
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
38000000
..
..
..
..
..
..
..
..
0
..
..
60000000
..
..
..
MDG
Madagascar
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
0
..
..
..
..
..
..
..
..
..
..
..
36000000
..
25000000
..
17500000
..
..
..
..
MDV
Maldives
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
478000000
..
MEX
Mexico
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
4603400000
395500000
1921800000
427800000
235200000
324320000
74100000
3139800000
795800000
370200000
793600000
223800000
71400000
74700000
485600000
1321300000
2762030000
6146400000
905080000
1738540000
1099400000
..
MHL
Marshall Islands
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MIC
Middle income
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
6742900000
..
15599220000
18731140000
15019000000
7980380000
8184700000
7998890000
4307680000
7432140000
5197490000
18292690000
31414210000
29016700000
25243340000
20530160000
..
..
MKD
Macedonia, FYR
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
295000000
..
..
..
MLI
Mali
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
55400000
..
..
..
..
..
..
..
..
MLT
Malta
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MMR
Myanmar
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
50000000
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNA
Middle East & North Africa
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNE
Montenegro
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNG
Mongolia
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNP
Northern Mariana Islands
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MOZ
Mozambique
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
0
..
..
0
426000000
15000000
..
..
..
77700000
70000000
186900000
..
..
..
0
..
..
..
MRT
Mauritania
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MUS
Mauritius
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
42600000
..
0
..
..
..
..
..
..
..
..
..
..
..
..
MWI
Malawi
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
6000000
..
..
..
..
..
..
..
..
..
..
..
..
MYS
Malaysia
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
700000
0
160000000
814000000
2010600000
1889000000
2948100000
2182400000
591900000
314200000
1079700000
684300000
..
1569900000
342110000
586950000
531000000
423000000
425000000
..
253300000
..
MYT
Mayotte
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NAM
Namibia
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NCL
New Caledonia
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NER
Niger
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NGA
Nigeria
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2355440000
262140000
..
382000000
..
..
..
NIC
Nicaragua
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
104000000
..
..
..
..
..
..
..
..
..
..
..
NIU
Niue
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NLD
Netherlands
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NOR
Norway
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NPL
Nepal
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NRU
Nauru
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NZL
New Zealand
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
OMN
Oman
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PAK
Pakistan
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
199600000
..
118700000
..
..
..
..
31800000
..
17000000
64000000
40000000
580700000
303000000
..
..
..
PAN
Panama
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
169900000
240000000
337000000
342600000
75000000
..
51400000
..
..
..
..
..
..
0
..
..
..
..
PER
Peru
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
6600000
..
..
..
8000000
78300000
..
164500000
..
75000000
0
283000000
1020000000
875800000
439000000
827830000
127000000
..
PHL
Philippines
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
0
..
300000000
514000000
1126700000
..
78300000
4900000
908500000
30100000
..
..
..
214600000
..
315300000
96000000
343000000
..
PLW
Palau
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PNG
Papua New Guinea
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
POL
Poland
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
3100000
..
..
1200000
..
87700000
80500000
536500000
..
..
121000000
..
1014500000
..
..
1439300000
2203000000
..
..
PRI
Puerto Rico
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRK
Korea, Dem. Rep.
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRT
Portugal
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRY
Paraguay
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
58000000
..
..
..
..
..
..
..
..
..
..
..
..
..
PYF
French Polynesia
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
QAT
Qatar
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ROM
Romania
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
23400000
..
..
..
..
..
..
..
..
116800000
..
..
..
..
RUS
Russian Federation
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
0
0
0
0
..
0
406000000
..
109400000
..
..
..
0
..
144000000
23000000
24000000
..
4595900000
..
RWA
Rwanda
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SAS
South Asia
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
1900000
..
..
..
125000000
..
182000000
523700000
301600000
706700000
96400000
350800000
750970000
579140000
1158400000
1590510000
10068470000
4505620000
5726650000
4871750000
14265370000
..
SAU
Saudi Arabia
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SDN
Sudan
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
30000000
..
..
..
..
..
SEN
Senegal
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
55400000
..
..
..
..
134000000
264000000
..
..
SGP
Singapore
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SID
Small island developing states
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLB
Solomon Islands
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLE
Sierra Leone
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
130000000
..
SLV
El Salvador
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SMR
San Marino
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SOM
Somalia
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SRB
Serbia
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SSA
Sub-Saharan Africa
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
STP
Sao Tome and Principe
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SUR
Suriname
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SVK
Slovak Republic
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SVN
Slovenia
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SWE
Sweden
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SWZ
Swaziland
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SXM
Sint Maarten (Dutch part)
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYR
Syrian Arab Republic
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
37000000
..
..
45000000
..
..
TCA
Turks and Caicos Islands
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TCD
Chad
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TGO
Togo
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
THA
Thailand
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
632200000
15700000
48000000
0
..
1700000000
150000000
..
27400000
63730000
0
455000000
..
45000000
439000000
..
..
..
..
..
..
..
TJK
Tajikistan
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TKM
Turkmenistan
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TMP
Timor-Leste
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TON
Tonga
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TTO
Trinidad and Tobago
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TUN
Tunisia
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
840000000
..
..
..
..
TUR
Turkey
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
20000000
..
85000000
305000000
..
200000000
114800000
..
..
85000000
155600000
2848200000
217000000
2578000000
1343500000
0
332700000
..
TUV
Tuvalu
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TZA
Tanzania
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
16500000
..
27690000
..
..
..
..
..
..
134000000
..
..
..
..
UGA
Uganda
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
404000000
..
..
..
..
..
UKR
Ukraine
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
130000000
..
..
UMC
Upper middle income
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
7497300000
..
3517100000
4237900000
6550400000
6688420000
14660120000
16790340000
14525500000
5916880000
7273000000
6406590000
3469010000
6782050000
3416490000
14260540000
20128500000
21856080000
15390390000
14701910000
..
..
URY
Uruguay
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
31000000
65000000
..
..
..
20000000
..
..
67100000
..
164000000
20000000
0
..
..
..
..
..
..
USA
United States
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
UZB
Uzbekistan
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
25000000
..
..
..
VCT
St. Vincent and the Grenadines
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VEN
Venezuela, RB
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
100000000
..
250000000
18000000
..
..
..
..
..
..
34000000
..
..
..
..
..
..
..
VIR
Virgin Islands (U.S.)
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VNM
Vietnam
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
10000000
..
15000000
70000000
..
..
..
..
20000000
..
..
..
133000000
267000000
365000000
200000000
155000000
..
VUT
Vanuatu
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
WBG
West Bank and Gaza
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
WLD
World
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
WSM
Samoa
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
YEM
Yemen, Rep.
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
190000000
..
..
..
..
..
..
..
..
..
..
220000000
..
..
..
ZAF
South Africa
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
0
..
..
0
..
..
..
426000000
165700000
794700000
3700000
484000000
..
17000000
..
..
3483000000
..
..
..
..
..
ZAR
Congo, Dem. Rep.
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ZMB
Zambia
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
15550000
..
..
..
..
..
..
..
..
ZWE
Zimbabwe
IE.PPI.TRAN.CD
Invest. in transport w/ private participation ($)
0
0
..
..
..
..
18000000
..
..
..
85000000
..
..
..
..
..
..
..
..
..
..
..
..
..
ABW
Aruba
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ADO
Andorra
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AFG
Afghanistan
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AGO
Angola
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ALB
Albania
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
8000000
0
..
..
0
..
..
..
..
..
ARE
United Arab Emirates
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ARG
Argentina
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
75000000
0
4000000000
1900000
1091000000
900000
874000000
438800000
902400000
689900000
0
67000000
0
34650000
0
..
..
..
..
..
..
ARM
Armenia
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
0
..
..
..
0
0
0
0
0
..
..
..
ASM
American Samoa
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ATG
Antigua and Barbuda
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AUS
Australia
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AUT
Austria
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AZE
Azerbaijan
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
BDI
Burundi
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BEL
Belgium
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BEN
Benin
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BFA
Burkina Faso
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BGD
Bangladesh
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BGR
Bulgaria
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
152000000
..
..
..
..
..
..
..
..
..
..
..
BHR
Bahrain
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BHS
Bahamas, The
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BIH
Bosnia and Herzegovina
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BLR
Belarus
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BLZ
Belize
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
49600000
..
..
..
..
..
..
..
..
..
..
BMU
Bermuda
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BOL
Bolivia
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
362000000
..
320000000
..
..
..
..
..
..
..
..
..
..
..
..
BRA
Brazil
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
3500000
152800000
58000000
473000000
649900000
516300000
711280000
14030000
207060000
45500000
255030000
1464000
382600000
140570000
827400000
14800000
215600000
..
BRB
Barbados
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BRN
Brunei Darussalam
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BTN
Bhutan
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BWA
Botswana
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CAF
Central African Republic
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CAN
Canada
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHE
Switzerland
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHI
Channel Islands
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHL
Chile
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
38000000
..
29500000
44400000
64000000
49000000
4003400000
451300000
271000000
134200000
195300000
389400000
54000000
..
3100000
..
..
..
..
CHN
China
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
30800000
150000000
149300000
211400000
272000000
203200000
72400000
242260000
917650000
662200000
603380000
1007319000
604261030
1901875870
973613620
512430000
634680000
..
CIV
Cote d'Ivoire
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
..
CMR
Cameroon
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
..
..
COG
Congo, Rep.
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
COK
Cook Islands
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
COL
Colombia
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
0
3000000
83000000
100000000
65000000
70000000
42000000
0
150700000
55300000
51000000
15280000
305000000
..
..
..
..
..
COM
Comoros
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CPV
Cape Verde
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CRI
Costa Rica
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CUB
Cuba
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
600000000
..
..
..
..
..
..
..
..
..
..
..
CUW
Curacao
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYP
Cyprus
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CZE
Czech Republic
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DEU
Germany
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DJI
Djibouti
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DMA
Dominica
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DNK
Denmark
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DOM
Dominican Republic
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DZA
Algeria
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
510000000
..
230000000
874000000
468000000
..
..
EAP
East Asia & Pacific
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
820800000
520000000
149300000
8032500000
942800000
270500000
4066000000
672960000
934050000
696500000
3132480000
1340919000
1147161030
1901875870
973613620
539030000
634680000
..
ECA
Europe & Central Asia
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ECU
Ecuador
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
0
500000000
..
..
10000000
..
..
..
..
..
..
..
EGY
Egypt, Arab Rep.
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
475000000
..
EMU
Euro area
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ERI
Eritrea
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ESP
Spain
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
EST
Estonia
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ETH
Ethiopia
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FIN
Finland
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FJI
Fiji
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FRA
France
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FRO
Faeroe Islands
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FSM
Micronesia, Fed. Sts.
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GAB
Gabon
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GBR
United Kingdom
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GEO
Georgia
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
435000000
..
..
..
..
GHA
Ghana
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
GIB
Gibraltar
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GIN
Guinea
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
0
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GMB
Gambia, The
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GNB
Guinea-Bissau
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GNQ
Equatorial Guinea
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRC
Greece
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRD
Grenada
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRL
Greenland
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GTM
Guatemala
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
6700000
..
..
..
GUM
Guam
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GUY
Guyana
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
HIC
High income
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HKG
Hong Kong SAR, China
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HND
Honduras
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
207900000
..
..
..
..
..
..
..
..
..
..
HRV
Croatia
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
298700000
..
..
..
..
..
..
..
..
..
..
HTI
Haiti
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1000000
..
..
HUN
Hungary
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
195600000
..
0
..
0
..
..
0
..
0
..
..
..
..
..
IDN
Indonesia
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
200000000
..
123200000
632000000
0
0
36700000
0
0
8100000
0
20200000
0
0
..
..
..
IMY
Isle of Man
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IND
India
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
0
2100000
..
..
110750000
0
..
142250000
75900000
23530000
..
..
IRL
Ireland
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IRN
Iran, Islamic Rep.
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IRQ
Iraq
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ISL
Iceland
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ISR
Israel
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ITA
Italy
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
JAM
Jamaica
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
JOR
Jordan
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
0
..
..
..
169000000
..
..
..
..
..
951000000
..
..
JPN
Japan
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KAZ
Kazakhstan
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
..
KEN
Kenya
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
..
KGZ
Kyrgyz Republic
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
KHM
Cambodia
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KIR
Kiribati
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KNA
St. Kitts and Nevis
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KOR
Korea, Rep.
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KSV
Kosovo
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
KWT
Kuwait
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LAC
Latin America & Caribbean
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
525200000
1293300000
192300000
1933200000
1275900000
6010700000
..
1164530000
..
..
1161780000
189744000
..
..
..
..
..
..
LAO
Lao PDR
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LBN
Lebanon
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
LBR
Liberia
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LBY
Libya
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LCA
St. Lucia
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LIC
Low income
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LIE
Liechtenstein
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LKA
Sri Lanka
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LMC
Lower middle income
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
192000000
..
..
..
..
..
..
LMY
Low & middle income
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LSO
Lesotho
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LTU
Lithuania
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LUX
Luxembourg
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LVA
Latvia
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAC
Macao SAR, China
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAF
St. Martin (French part)
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MCO
Monaco
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MDA
Moldova
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MDG
Madagascar
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MDV
Maldives
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MEX
Mexico
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
0
22800000
519800000
17000000
6000000
60200000
48200000
173600000
..
72000000
..
..
421700000
30000000
25000000
278800000
..
..
793000000
..
MHL
Marshall Islands
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MIC
Middle income
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
7210780000
1839590000
..
..
4645790000
2480963000
..
3426295870
3228613620
..
..
..
MKD
Macedonia, FYR
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MLI
Mali
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MLT
Malta
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MMR
Myanmar
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNA
Middle East & North Africa
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNE
Montenegro
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
MNG
Mongolia
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNP
Northern Mariana Islands
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MOZ
Mozambique
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
25500000
..
..
..
..
..
..
..
..
..
..
0
..
MRT
Mauritania
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MUS
Mauritius
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
..
MWI
Malawi
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MYS
Malaysia
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
284000000
2558200000
790000000
10000000
0
..
0
..
3964800000
0
16400000
0
2521000000
0
..
0
0
..
..
..
MYT
Mayotte
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NAM
Namibia
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
NCL
New Caledonia
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NER
Niger
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
3400000
..
..
..
..
..
..
..
..
..
..
NGA
Nigeria
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NIC
Nicaragua
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NIU
Niue
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NLD
Netherlands
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NOR
Norway
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NPL
Nepal
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0
..
NRU
Nauru
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NZL
New Zealand
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
OMN
Oman
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PAK
Pakistan
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PAN
Panama
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
25000000
..
..
..
..
..
..
..
..
..
..
..
..
..
PER
Peru
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
35000000
45000000
..
..
72000000
..
..
..
..
119800000
..
PHL
Philippines
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
7565600000
..
1600000
..
..
0
..
..
0
503900000
0
..
26600000
..
..
PLW
Palau
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PNG
Papua New Guinea
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
71000000
..
..
..
..
..
..
..
..
..
..
..
..
..
..
POL
Poland
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
0
..
..
..
..
..
6100000
20200000
1600000
42500000
..
..
..
750000
0
..
..
..
..
PRI
Puerto Rico
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRK
Korea, Dem. Rep.
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRT
Portugal
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRY
Paraguay
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PYF
French Polynesia
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
QAT
Qatar
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ROM
Romania
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
116000000
0
0
0
0
..
41000000
0
..
..
..
..
RUS
Russian Federation
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
0
..
0
0
..
108000000
..
..
0
..
323600000
240780000
340300000
698700000
174000000
369000000
..
..
..
RWA
Rwanda
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SAS
South Asia
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
0
2100000
..
..
110750000
0
..
142250000
75900000
23530000
..
..
SAU
Saudi Arabia
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SDN
Sudan
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
120700000
..
..
..
..
SEN
Senegal
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
20000000
0
..
..
..
..
0
0
0
0
0
..
..
..
..
..
SGP
Singapore
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SID
Small island developing states
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLB
Solomon Islands
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLE
Sierra Leone
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLV
El Salvador
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SMR
San Marino
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SOM
Somalia
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SRB
Serbia
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
SSA
Sub-Saharan Africa
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
STP
Sao Tome and Principe
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SUR
Suriname
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SVK
Slovak Republic
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SVN
Slovenia
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SWE
Sweden
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SWZ
Swaziland
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SXM
Sint Maarten (Dutch part)
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYR
Syrian Arab Republic
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TCA
Turks and Caicos Islands
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TCD
Chad
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TGO
Togo
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
THA
Thailand
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
160000000
..
61300000
..
65700000
8800000
240000000
..
34300000
0
241600000
18800000
0
0
..
..
..
TJK
Tajikistan
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TKM
Turkmenistan
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TMP
Timor-Leste
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TON
Tonga
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TTO
Trinidad and Tobago
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TUN
Tunisia
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
95000000
..
TUR
Turkey
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
942000000
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TUV
Tuvalu
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TZA
Tanzania
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
8500000
..
..
..
..
..
..
..
..
UGA
Uganda
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
0
..
..
..
0
..
..
..
..
..
..
..
..
..
UKR
Ukraine
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
0
..
100000000
..
..
102000000
..
..
..
UMC
Upper middle income
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
1346000000
1613300000
1283600000
1843900000
1655900000
6016500000
7190780000
1389290000
1546010000
1485200000
4526940000
2288963000
2075361030
2728345870
3044013620
..
1858080000
..
URY
Uruguay
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
10000000
..
..
..
..
..
..
351000000
..
..
..
..
17000000
..
..
..
..
..
..
USA
United States
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
UZB
Uzbekistan
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
VCT
St. Vincent and the Grenadines
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VEN
Venezuela, RB
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
0
..
25000000
..
15000000
..
..
..
..
..
..
..
..
..
..
VIR
Virgin Islands (U.S.)
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VNM
Vietnam
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
38800000
..
20000000
154000000
..
..
..
92000000
..
..
..
..
..
..
VUT
Vanuatu
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
WBG
West Bank and Gaza
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
0
..
..
0
..
..
..
..
..
..
..
..
..
..
..
..
WLD
World
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
WSM
Samoa
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
YEM
Yemen, Rep.
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ZAF
South Africa
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
0
0
0
0
..
..
..
56900000
31300000
0
..
..
..
..
0
..
..
..
..
..
ZAR
Congo, Dem. Rep.
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ZMB
Zambia
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
ZWE
Zimbabwe
IE.PPI.WATR.CD
Invest. in water/sanit. w/ private participation ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ABW
Aruba
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ADO
Andorra
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AFG
Afghanistan
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.3
2.2
2.2
2.4
2.4
..
AGO
Angola
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.4
2.4
2.4
2.4
2.4
2.4
..
ALB
Albania
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.3
3.3
..
..
..
..
..
ARE
United Arab Emirates
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ARG
Argentina
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ARM
Armenia
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.8
3.7
3.7
3.7
3.7
3.7
..
ASM
American Samoa
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ATG
Antigua and Barbuda
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AUS
Australia
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AUT
Austria
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AZE
Azerbaijan
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.2
3.2
3.2
3.2
3.2
3.1
..
BDI
Burundi
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.7
2.7
2.6
2.6
2.6
2.6
..
BEL
Belgium
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BEN
Benin
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.4
3.3
3.3
3.3
3.3
3.3
..
BFA
Burkina Faso
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.6
3.5
3.5
3.5
3.7
3.7
..
BGD
Bangladesh
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.9
2.8
3
3
3
3
..
BGR
Bulgaria
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BHR
Bahrain
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BHS
Bahamas, The
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BIH
Bosnia and Herzegovina
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.3
3.4
3.3
3.3
3.3
3.3
..
BLR
Belarus
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BLZ
Belize
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BMU
Bermuda
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BOL
Bolivia
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.3
3.3
3.3
3.3
3.3
3.3
..
BRA
Brazil
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BRB
Barbados
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BRN
Brunei Darussalam
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BTN
Bhutan
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.8
3.8
3.8
3.8
3.9
3.9
..
BWA
Botswana
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CAF
Central African Republic
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.2
2.2
2.3
2.3
2.4
2.5
..
CAN
Canada
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHE
Switzerland
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHI
Channel Islands
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHL
Chile
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHN
China
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CIV
Cote d'Ivoire
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.5
2.5
2.4
2.5
2.6
2.4
..
CMR
Cameroon
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.1
3
3
2.9
2.9
2.9
..
COG
Congo, Rep.
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.6
2.7
2.6
2.6
2.6
2.6
..
COK
Cook Islands
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
COL
Colombia
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
COM
Comoros
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.3
2.2
2.2
2.2
2.4
2.4
..
CPV
Cape Verde
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.9
3.9
4
4
4
4
..
CRI
Costa Rica
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CUB
Cuba
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CUW
Curacao
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYP
Cyprus
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CZE
Czech Republic
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DEU
Germany
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DJI
Djibouti
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.8
2.8
2.8
2.8
2.8
2.8
..
DMA
Dominica
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.6
3.6
3.8
3.8
3.8
3.9
..
DNK
Denmark
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DOM
Dominican Republic
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DZA
Algeria
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
EAP
East Asia & Pacific
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ECA
Europe & Central Asia
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ECU
Ecuador
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
EGY
Egypt, Arab Rep.
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
EMU
Euro area
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ERI
Eritrea
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.8
2.8
2.7
2.7
2.7
2.7
..
ESP
Spain
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
EST
Estonia
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ETH
Ethiopia
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.1
3.3
3.3
3.3
3.2
3.2
..
FIN
Finland
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FJI
Fiji
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FRA
France
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FRO
Faeroe Islands
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FSM
Micronesia, Fed. Sts.
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GAB
Gabon
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GBR
United Kingdom
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GEO
Georgia
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.6
3.7
3.7
3.8
3.8
3.9
..
GHA
Ghana
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.7
3.9
3.9
3.9
3.8
3.7
..
GIB
Gibraltar
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GIN
Guinea
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.7
2.6
2.7
2.6
2.6
2.6
..
GMB
Gambia, The
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.9
2.9
3
2.9
2.9
3
..
GNB
Guinea-Bissau
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.6
2.6
2.6
2.6
2.6
2.6
..
GNQ
Equatorial Guinea
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRC
Greece
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRD
Grenada
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.7
3.7
3.7
3.7
3.7
3.7
..
GRL
Greenland
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GTM
Guatemala
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GUM
Guam
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GUY
Guyana
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.1
3.1
3.1
3.1
3.1
3
..
HIC
High income
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HKG
Hong Kong SAR, China
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HND
Honduras
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.5
3.5
3.5
3.4
3.3
3.3
..
HRV
Croatia
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HTI
Haiti
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.3
2.4
2.4
2.4
2.5
2.5
..
HUN
Hungary
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IDN
Indonesia
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.2
3.2
..
..
..
..
..
IMY
Isle of Man
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IND
India
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.7
3.7
3.7
3.7
3.7
3.6
..
IRL
Ireland
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IRN
Iran, Islamic Rep.
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IRQ
Iraq
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ISL
Iceland
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ISR
Israel
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ITA
Italy
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
JAM
Jamaica
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
JOR
Jordan
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
JPN
Japan
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KAZ
Kazakhstan
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KEN
Kenya
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.3
3.4
3.3
3.3
3.3
3.3
..
KGZ
Kyrgyz Republic
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.7
2.8
2.9
3
3
3
..
KHM
Cambodia
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.6
2.7
2.7
2.7
2.7
2.7
..
KIR
Kiribati
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.3
3.2
3.2
3.1
3.1
3.1
..
KNA
St. Kitts and Nevis
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KOR
Korea, Rep.
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KSV
Kosovo
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.2
3.2
..
KWT
Kuwait
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LAC
Latin America & Caribbean
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LAO
Lao PDR
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.5
2.7
2.7
2.9
2.9
3.1
..
LBN
Lebanon
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LBR
Liberia
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.8
2.8
..
LBY
Libya
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LCA
St. Lucia
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.9
3.8
3.9
3.9
4
4
..
LIC
Low income
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LIE
Liechtenstein
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LKA
Sri Lanka
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.5
3.5
3.3
3.3
3.4
3.4
..
LMC
Lower middle income
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LMY
Low & middle income
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LSO
Lesotho
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.4
3.4
3.4
3.4
3.4
3.5
..
LTU
Lithuania
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LUX
Luxembourg
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LVA
Latvia
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAC
Macao SAR, China
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAF
St. Martin (French part)
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MCO
Monaco
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MDA
Moldova
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.2
3.2
3.4
3.5
3.4
3.4
..
MDG
Madagascar
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.4
3.4
3.5
3.6
3.3
3
..
MDV
Maldives
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.6
3.5
3.5
3.5
3.5
3.5
..
MEX
Mexico
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MHL
Marshall Islands
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MIC
Middle income
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MKD
Macedonia, FYR
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MLI
Mali
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.6
3.5
3.5
3.4
3.4
3.4
..
MLT
Malta
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MMR
Myanmar
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNA
Middle East & North Africa
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNE
Montenegro
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNG
Mongolia
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.3
3.3
3.4
3.3
3.4
3.4
..
MNP
Northern Mariana Islands
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MOZ
Mozambique
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.2
3.1
3.3
3.3
3.4
3.4
..
MRT
Mauritania
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.9
2.9
3
3
3
3
..
MUS
Mauritius
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MWI
Malawi
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.4
3.4
3.4
3.4
3.4
3.4
..
MYS
Malaysia
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MYT
Mayotte
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NAM
Namibia
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NCL
New Caledonia
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NER
Niger
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.2
3.2
3.2
3.2
3.1
3.2
..
NGA
Nigeria
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.8
2.8
2.9
2.9
2.9
2.9
..
NIC
Nicaragua
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.5
3.4
3.4
3.4
3.4
3.2
..
NIU
Niue
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NLD
Netherlands
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NOR
Norway
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NPL
Nepal
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3
3.2
3.2
3
3
2.8
..
NRU
Nauru
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NZL
New Zealand
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
OMN
Oman
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PAK
Pakistan
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.2
3.2
3.2
3
3
3.1
..
PAN
Panama
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PER
Peru
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PHL
Philippines
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PLW
Palau
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PNG
Papua New Guinea
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.1
2.9
2.9
2.9
2.8
2.9
..
POL
Poland
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRI
Puerto Rico
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRK
Korea, Dem. Rep.
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRT
Portugal
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRY
Paraguay
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PYF
French Polynesia
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
QAT
Qatar
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ROM
Romania
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
RUS
Russian Federation
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
RWA
Rwanda
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.3
3.4
3.5
3.5
3.5
3.7
..
SAS
South Asia
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SAU
Saudi Arabia
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SDN
Sudan
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.4
2.3
2.3
2.3
2.2
2.2
..
SEN
Senegal
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.6
3.6
3.5
3.4
3.4
3.5
..
SGP
Singapore
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SID
Small island developing states
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLB
Solomon Islands
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.6
2.5
2.5
2.6
2.6
2.7
..
SLE
Sierra Leone
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.9
2.9
2.8
2.7
2.9
3
..
SLV
El Salvador
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SMR
San Marino
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SOM
Somalia
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SRB
Serbia
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.4
2.9
..
..
..
..
..
SSA
Sub-Saharan Africa
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
STP
Sao Tome and Principe
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.1
3
3.1
3.1
3.1
3.1
..
SUR
Suriname
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SVK
Slovak Republic
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SVN
Slovenia
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SWE
Sweden
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SWZ
Swaziland
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SXM
Sint Maarten (Dutch part)
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYR
Syrian Arab Republic
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TCA
Turks and Caicos Islands
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TCD
Chad
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.4
2.4
2.2
2.2
2.2
2.2
..
TGO
Togo
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.2
2.2
2.2
2.2
2.4
2.6
..
THA
Thailand
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TJK
Tajikistan
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.6
2.6
2.6
2.6
2.7
2.8
..
TKM
Turkmenistan
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TMP
Timor-Leste
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.6
2.6
2.7
2.7
2.7
..
TON
Tonga
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.7
2.7
2.9
3.3
3.6
3.8
..
TTO
Trinidad and Tobago
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TUN
Tunisia
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TUR
Turkey
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TUV
Tuvalu
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TZA
Tanzania
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.8
3.8
3.7
3.5
3.5
3.3
..
UGA
Uganda
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.3
3.3
3.3
3.4
3.3
3.2
..
UKR
Ukraine
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
UMC
Upper middle income
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
URY
Uruguay
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
USA
United States
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
UZB
Uzbekistan
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.4
2.4
2.5
2.7
2.8
2.8
..
VCT
St. Vincent and the Grenadines
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.7
3.7
3.8
3.8
3.8
3.8
..
VEN
Venezuela, RB
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VIR
Virgin Islands (U.S.)
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VNM
Vietnam
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.5
3.5
3.5
3.6
3.6
3.6
..
VUT
Vanuatu
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.1
3.1
3.1
3.3
3.3
3.4
..
WBG
West Bank and Gaza
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
WLD
World
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
WSM
Samoa
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4
3.9
3.9
3.9
4
4
..
YEM
Yemen, Rep.
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.9
2.9
2.9
3
3
2.9
..
ZAF
South Africa
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ZAR
Congo, Dem. Rep.
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.3
2.3
2.3
2.2
2.2
2.2
..
ZMB
Zambia
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.2
3.2
3.2
3.2
3.2
3.1
..
ZWE
Zimbabwe
IQ.CPA.PUBS.XQ
Public sector mgmt & institutions avg. (1-6 scale; 6=best)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.1
1.9
1.8
1.6
2
2.1
..
ABW
Aruba
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ADO
Andorra
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AFG
Afghanistan
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
23.6599998474
27.4594287872
29.3
..
..
..
..
..
AGO
Angola
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
10.3999996185
10.3999996185
10.3999996185
..
..
..
..
..
..
..
..
..
..
ALB
Albania
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
39
39
39
39
39
39
39
39
..
..
..
..
..
..
..
..
..
ARE
United Arab Emirates
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
94.1999969482
96.0999984741
98
100
100
100
100
100
100
100
100
..
..
..
..
..
..
..
..
..
..
..
ARG
Argentina
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
28.5
28.5
28.5
28.6000003815
28.7000007629
29.1000003815
29.1000003815
29.5
29.5
29.3999996185
29.3999996185
..
..
30
..
..
..
..
..
..
..
..
ARM
Armenia
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
99.1999969482
96.5999984741
96.6999969482
96.6999969482
97
96.6999969482
96.6999969482
96.8000030518
96.8000030518
..
..
..
..
91.2699966431
90.1200027466
89.9700012207
88.9789962769
89.04
90.52
..
..
..
ASM
American Samoa
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ATG
Antigua and Barbuda
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
32.9599990845
..
..
..
..
..
..
..
..
..
AUS
Australia
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
35
35.7000007629
36.4000015259
37.0999984741
37.9000015259
38.5999984741
38.7000007629
..
38.7000007629
..
..
..
..
..
..
..
..
..
..
..
..
..
AUT
Austria
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
100
100
100
100
100
100
100
100
100
100
100
100
100
100
..
100
100
100
100
..
..
..
AZE
Azerbaijan
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
49.3899993896
..
50.6025461826
..
..
..
..
..
BDI
Burundi
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
7.09999990463
7.09999990463
..
..
..
10.4399995804
..
..
..
..
..
..
..
BEL
Belgium
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
81.1999969482
81.1999969482
81.1999969482
80.5999984741
80.6999969482
80.6999969482
80.6999969482
78.1999969482
78.1999969482
78.1999969482
78.3000030518
78.1999969482
78
78
78.2119979858
78.2080001831
78.2
78.2
..
..
..
BEN
Benin
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
20
20
20
20
20
20
20
20
20
..
..
..
..
..
9.5
..
..
..
..
..
..
..
BFA
Burkina Faso
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
16.6000003815
17.1000003815
17.6000003815
18.2000007629
18.7000007629
16
16
16
16
16
..
..
..
..
4.17000007629
..
..
..
..
..
..
..
BGD
Bangladesh
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
7.19999980927
6.59999990463
6.90000009537
9.30000019073
7.90000009537
8.39999961853
9.5
9.52999973297
9.52999973297
9.52999973297
..
..
9.5
..
..
..
..
..
..
..
..
BGR
Bulgaria
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
91.5999984741
91.8000030518
91.8000030518
91.9000015259
91.9000015259
92
92
92
92.0999984741
..
..
..
..
..
..
98.4000015259
..
..
..
..
..
..
BHR
Bahrain
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
75.4000015259
75.3000030518
78.8000030518
..
..
..
75.8000030518
76.5
76.9000015259
77.4000015259
77.5999984741
75.3000030518
78.9000015259
79.1299972534
79.7391063003
80.312837109
80.8046279253
81.0438847053
81.4814814815
..
..
..
BHS
Bahamas, The
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
52
53
54.0999984741
55.0999984741
56.2999992371
57.4000015259
57.4000015259
57.4000015259
57.4000015259
57.4000015259
57.4000015259
57.4000015259
..
..
..
..
..
..
..
..
..
..
BIH
Bosnia and Herzegovina
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
54
54.2000007629
53
52.5999984741
52.5
52.2999992371
52.2999992371
52.2999992371
52.2999992371
52.2999992371
..
..
..
..
..
52.2999992371
..
..
..
..
..
..
BLR
Belarus
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
95.8000030518
96.3000030518
98
98.4000015259
98.5999984741
98.8000030518
98.1999969482
95.5999984741
..
..
..
..
86.4000015259
87
88.6399993896
..
..
..
..
..
..
BLZ
Belize
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
19
16
17
17
17
17
..
..
..
..
..
..
..
..
..
..
BMU
Bermuda
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BOL
Bolivia
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
4.30000019073
4.40000009537
4.19999980927
4
4.69999980927
5.5
5.5
5.69999980927
6
6.40000009537
6.59999990463
6.69999980927
6.69999980927
7
7
..
..
..
..
..
..
..
BRA
Brazil
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
9.69999980927
8.60000038147
8.60000038147
12.3000001907
8.10000038147
8.89999961853
9.30000019073
9.10000038147
9.60000038147
5.59999990463
5.5
..
..
..
..
..
..
..
..
..
..
..
BRB
Barbados
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
86.8000030518
88.5
90.3000030518
92.0999984741
93.9000015259
95.8000030518
95.9000015259
..
98.5999984741
98.5999984741
98.5999984741
98.5999984741
98.5999984741
100
100
..
..
..
..
..
..
..
BRN
Brunei Darussalam
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
31.3999996185
32
32.5999984741
33.2999992371
33.9000015259
34.5999984741
..
34.7000007629
34.7000007629
34.7000007629
34.7000007629
..
..
..
..
77.2300033569
..
..
..
..
..
..
BTN
Bhutan
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
77.0999984741
79.0999984741
77.0999984741
74.5
65.1999969482
63.7000007629
60.7000007629
60.7000007629
..
..
..
..
..
62
..
..
..
..
..
..
..
..
BWA
Botswana
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
32
34
19.8999996185
21.1000003815
22.2000007629
..
..
..
..
..
..
..
35.2999992371
35.1399993896
33.2000007629
32.5999984741
..
..
..
..
..
..
CAF
Central African Republic
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
2.09999990463
2.09999990463
2.09999990463
2.40000009537
2.70000004768
..
..
..
..
..
..
..
..
..
..
..
..
..
CAN
Canada
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
35
37
35.2000007629
..
..
35.2999992371
..
..
..
..
..
..
..
..
39.8699989319
..
..
..
..
..
..
..
CHE
Switzerland
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
100
100
100
100
100
100
..
..
..
CHI
Channel Islands
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHL
Chile
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
13.8000001907
13.8000001907
13.8000001907
13.8000001907
13.8000001907
15.8999996185
16.7000007629
17.2000007629
18.2999992371
18.8999996185
18.3999996185
20.2000007629
..
..
..
..
..
..
..
..
..
..
CHN
China
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
40.7999992371
44.0999984741
49.6
53.5
..
..
..
CIV
Cote d'Ivoire
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
8.69999980927
8.89999961853
9.10000038147
9.19999980927
9.39999961853
9.60000038147
9.69999980927
9.69999980927
9.69999980927
9.69999980927
9.69999980927
..
..
..
8.11999988556
..
..
7.92965510513
..
..
..
..
CMR
Cameroon
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
10.5
10.8999996185
11.3000001907
11.6999998093
12.1000003815
12.5
12.5
12.5
12.5
12.5
8.10000038147
..
..
..
8.36999988556
..
..
..
..
..
..
..
COG
Congo, Rep.
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
9.69999980927
9.69999980927
9.69999980927
9.69999980927
9.69999980927
9.69999980927
9.69999980927
9.69999980927
9.69999980927
9.69999980927
9.69999980927
..
..
..
5
..
7.12941176471
..
..
..
..
..
COK
Cook Islands
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
COL
Colombia
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
11.8999996185
11.8999996185
11.8999996185
11.8999996185
11.8999996185
9.19999980927
11.8999996185
12
14.3000001907
14.3999996185
..
..
..
..
..
..
..
..
..
..
..
..
COM
Comoros
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
69.3000030518
70.6999969482
72.0999984741
73.5
75
76.5
..
..
76.5
76.5
76.5
76.5
..
..
..
..
..
..
..
..
..
..
CPV
Cape Verde
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
78
78
78
78
78
78
78
78
78
78
69.0400009155
69.0400009155
..
..
..
..
..
..
..
..
..
..
CRI
Costa Rica
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
15.3000001907
15.8000001907
15.8000001907
16.2999992371
16.2999992371
16.7000007629
17
17
21
22
22
22
22
24.6000003815
24.3999996185
..
25.2000007629
25.5333660719
25.28
..
..
..
CUB
Cuba
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
50.5
51.5
52.5999984741
53.5999984741
54.7000007629
55.7999992371
55.9000015259
49
49
49
49
49
..
..
..
..
..
..
..
..
..
..
CUW
Curacao
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYP
Cyprus
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
59.5999984741
59.0999984741
58.4000015259
57.4000015259
57.2000007629
57
57.2000007629
57.2999992371
59.2000007629
59.5999984741
60.5999984741
61.2000007629
62.2000007629
62.9500007629
63
64.5899963379
65.0500030518
64.0372366487
64.61
..
..
..
CZE
Czech Republic
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
100
100
100
100
100
100
100
..
100
100
100
100
100
100
100
..
..
..
..
..
..
..
DEU
Germany
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
99
99
99
99
99
99
99.0999984741
..
..
..
..
..
..
100
..
..
..
..
..
..
..
..
DJI
Djibouti
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
45
45
..
..
..
..
..
..
..
..
..
..
DMA
Dominica
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
45.5999984741
46.5
47.4000015259
48.4000015259
49.2999992371
50.2999992371
50.4000015259
50.4000015259
50.4000015259
50.4000015259
50.4000015259
50.4000015259
..
..
..
..
..
..
..
..
..
..
DNK
Denmark
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
100
100
100
100
100
100
100
100
100
100
100
100
100
100
100
100
100
100
100
..
..
..
DOM
Dominican Republic
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
44.7000007629
45.5
46.5
47.4000015259
48.2999992371
49.2999992371
49.4000015259
..
..
49.4000015259
49.4000015259
49.4000015259
..
..
..
..
..
..
..
..
..
..
DZA
Algeria
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
67
70
66
66.6999969482
68
68.9000015259
68.9000015259
68.9000015259
68.9000015259
68.9000015259
68.9000015259
..
..
..
70.1999969482
..
..
..
73.46
..
..
..
EAP
East Asia & Pacific
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
18.75
..
..
..
..
..
..
..
..
15.8550000191
..
..
..
ECA
Europe & Central Asia
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
86.5
..
..
..
..
..
..
..
..
85.8
..
..
..
ECU
Ecuador
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
13.3999996185
13.6000003815
14
14.1999998093
..
12.6999998093
13.3000001907
18.8999996185
18.8999996185
18.8999996185
18.8999996185
16.8700008392
16.8700008392
14.9399995804
14.970000267
..
14.8156633377
14.8156629265
..
..
..
..
EGY
Egypt, Arab Rep.
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
72
72
73
72
75
78
78.0999984741
78.0999984741
78.0999984741
78.0999984741
78.0999984741
..
..
..
81
..
..
..
86.89
..
..
..
EMU
Euro area
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
95
..
..
..
..
..
..
..
..
91.8000030518
..
..
..
ERI
Eritrea
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
19.3999996185
19.7999992371
20.2000007629
20.6000003815
21
21.3999996185
21.7999992371
21.7999992371
21.7999992371
21.7999992371
21.7999992371
21.7999992371
..
..
..
..
..
..
..
..
..
..
ESP
Spain
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
99
99
99
99
99
99
99
99
99
99
99
..
99
..
..
..
..
..
..
..
..
EST
Estonia
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
51.7999992371
52.4000015259
54.4000015259
54.5
50.2999992371
54
53.2000007629
50.7999992371
22.1000003815
21.2999992371
20.1000003815
19.7000007629
24.7999992371
23.3999996185
22.1399993896
22.6700000763
..
28.602449405
28.7745114933
..
..
..
ETH
Ethiopia
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
15
15
15
15
15
15.5
15.3000001907
15.3000001907
14
13.3000001907
12
12
12
12.8999996185
19.1399993896
11.047911258
11.6315475599
13.6747897834
..
..
..
..
FIN
Finland
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
61
61
62
62
63
63
64
64
64
64.5
62
64
64
64.5999984741
64.6999969482
65.0400009155
65.2753322101
65.3627248412
65.47
..
..
..
FJI
Fiji
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
44.5
45.4000015259
46.2999992371
47.2000007629
48.2000007629
49.0999984741
49.2000007629
49.2000007629
49.2000007629
49.2000007629
49.2000007629
49.2000007629
..
..
..
..
..
..
..
..
..
..
FRA
France
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
100
100
100
100
100
100
100
100
100
100
100
100
100
..
..
..
FRO
Faeroe Islands
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FSM
Micronesia, Fed. Sts.
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
15.8999996185
16.2999992371
16.6000003815
16.8999996185
17.2999992371
17.6000003815
17.7000007629
17.5
17.5
17.5
17.5
17.5
..
..
..
..
..
..
..
..
..
..
GAB
Gabon
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
8.19999980927
8.19999980927
8.19999980927
8.19999980927
8.19999980927
8.19999980927
9.89999961853
9.89999961853
9.89999961853
9.89999961853
9.89999961853
..
..
..
10.2100000381
..
..
..
..
..
..
..
GBR
United Kingdom
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
100
100
100
100
100
100
100
100
100
100
100
100
100
100
100
100
100
100
100
..
..
..
GEO
Georgia
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
93.8000030518
93.8000030518
93.8000030518
93.5999984741
93.5
93.5
93.5
93.6999969482
93.4000015259
..
..
..
..
..
..
..
94.0675881745
94.0675881745
..
..
..
..
GHA
Ghana
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
19.6000003815
23
23.5
23.8999996185
24.3999996185
24.8999996185
24.1000003815
..
..
29.6000003815
29.6000003815
18.3999996185
..
17.9200000763
..
14.9302930832
..
..
..
..
..
..
GIB
Gibraltar
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GIN
Guinea
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
15.1999998093
15.1999998093
15.5
15.8000001907
16.1000003815
16.3999996185
16.5
16.5
16.5
16.5
16.5
..
..
9.78999996185
..
..
..
..
..
..
..
..
GMB
Gambia, The
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
19.3199996948
19.3199996948
..
..
..
..
..
..
..
GNB
Guinea-Bissau
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
8.30000019073
8.69999980927
9.10000038147
9.39999961853
9.80000019073
10.1999998093
10.3000001907
10.3000001907
10.3000001907
..
..
..
27.9400005341
..
..
..
..
..
..
..
..
..
GNQ
Equatorial Guinea
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRC
Greece
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
91.6999969482
91.6999969482
91.6999969482
91.6999969482
91.6999969482
91.6999969482
91.8000030518
91.8000030518
91.8000030518
91.8000030518
91.8000030518
..
..
..
..
..
..
..
..
..
..
..
GRD
Grenada
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
55.4000015259
56.5
57.7000007629
58.7999992371
60
61.2000007629
61.2999992371
61.2999992371
61.2999992371
60.9599990845
60.9599990845
60.9599990845
..
..
..
..
..
..
..
..
..
..
GRL
Greenland
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GTM
Guatemala
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
24.8999996185
25.3999996185
25.8999996185
26.3999996185
26.8999996185
26
25.7999992371
26.3999996185
31
34.5
34.5
34.5
..
..
..
..
..
..
..
..
..
..
GUM
Guam
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GUY
Guyana
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
6.59999990463
6.80000019073
6.90000009537
7
7.19999980927
7.30000019073
7.40000009537
7.40000009537
7.40000009537
7.40000009537
7.40000009537
7.40000009537
..
..
..
..
..
..
..
..
..
..
HIC
High income
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
86.6999969482
..
..
..
..
..
..
..
..
87.2799993896
..
..
..
HKG
Hong Kong SAR, China
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
100
100
100
100
100
100
100
100
100
100
100
100
100
100
100
100
100
100
100
..
..
..
HND
Honduras
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
21.1000003815
21.5
19
19.3999996185
19.7999992371
20.3999996185
20.3999996185
20.3999996185
20.3999996185
20.3999996185
20.3999996185
20.3999996185
..
..
..
..
..
..
..
..
..
..
HRV
Croatia
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
81.5
81.5
84.4000015259
84.5999984741
85.4
84.9277453581
..
..
..
..
..
89.1314828845
86.88
..
..
..
HTI
Haiti
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
21.8999996185
22.3999996185
22.7999992371
23.2999992371
23.7999992371
24.2000007629
24.2999992371
24.2999992371
24.2999992371
24.2999992371
24.2999992371
24.2999992371
..
..
..
..
..
..
..
..
..
..
HUN
Hungary
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
44.0999984741
44.0999984741
44.0999984741
44.0999984741
43.0999984741
43.4000015259
43.4000015259
..
..
43.7000007629
43.9000015259
43.9000015259
..
..
38.0408202606
37.7163177821
37.65
..
..
..
IDN
Indonesia
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
45.0999984741
45.2999992371
53.5999984741
53.7999992371
53.7999992371
52.4000015259
46.2999992371
56.4000015259
47.2999992371
46.2999992371
57.0999984741
58.9000015259
58
58.3264960218
55.3215128184
55.4242996964
53.0053784466
60.8604267736
59.1064946694
..
..
..
IMY
Isle of Man
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IND
India
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
47.2999992371
51.9000015259
54.4000015259
54.9000015259
55.4000015259
54.7000007629
56.5
57
46.6699981689
47.4599990845
47.7400016785
47.4000015259
..
48.62
46.99
47.72
48.24
49.3406593147
..
..
..
IRL
Ireland
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
94
94
94
94
94
94
94.0999984741
94.0999984741
100
100
100
100
100
100
..
..
..
100
100
..
..
..
IRN
Iran, Islamic Rep.
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
47.2000007629
49.9000015259
52.0999984741
56.7999992371
56.2999992371
..
..
64.8000030518
66.3000030518
67.3600006104
..
71.0243159504
73.2973419544
..
..
..
..
..
IRQ
Iraq
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
77.9000015259
79.4000015259
81
82.5999984741
84.3000030518
86
86
..
84.3000030518
84.3000030518
84.3000030518
84.3000030518
..
..
..
..
..
..
..
..
..
..
ISL
Iceland
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
19.8999996185
20.7999992371
22.1000003815
23.7000007629
24.7000007629
24.7999992371
25.8999996185
25.7000007629
27.1000003815
28.1000003815
29.5
30.6000003815
31.5
..
34.4000015259
35.3899993896
35.8600006104
36.6416309013
36.6416309013
..
..
..
ISR
Israel
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
100
100
100
100
100
100
100
100
100
100
100
..
100
100
100
100
100
100
100
..
..
..
ITA
Italy
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
100
100
100
100
100
100
100
100
100
100
100
..
..
100
..
..
..
..
..
..
..
..
JAM
Jamaica
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
64
65.1999969482
66.5
67.9000015259
69.1999969482
70.5999984741
70.6999969482
..
70.0999984741
70.0999984741
70.0999984741
..
..
73.25
73.2799987793
73.2799987793
..
..
..
..
..
..
JOR
Jordan
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
100
100
100
100
100
100
100
..
..
100
..
..
..
100
100
100
100
100
100
..
..
..
JPN
Japan
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
69.1999969482
70.0999984741
71.0999984741
72.0999984741
73
73.5999984741
74.3000030518
74.9000015259
76
76.0999984741
76.5999984741
77.0999984741
77.6999969482
78.2198
..
79
79.2866134644
79.6003330558
..
..
..
..
KAZ
Kazakhstan
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
55.0999984741
68.6999969482
70.5999984741
70.4000015259
73.5
76.3000030518
80.5
82.8000030518
86.5
..
..
..
..
93.9700012207
93.4300003052
91.1600036621
91.4343129867
90.2580458104
89.88
..
..
..
KEN
Kenya
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
12.8000001907
13.3000001907
13.8000001907
14.3000001907
13.6000003815
13.8000001907
12.1000003815
12.1000003815
12.1000003815
12.1000003815
12.1000003815
..
..
..
14.1199998856
..
..
..
..
..
..
..
KGZ
Kyrgyz Republic
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
90
90
91
91
91
91
91.0999984741
91.0999984741
91.0999984741
91.0999984741
91.0999984741
91.0999984741
..
..
..
..
..
..
..
..
..
..
KHM
Cambodia
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
7.5
7.5
7.5
7.5
7.5
7.5
7.5
7.5
..
..
..
..
..
..
6.28999996185
..
..
..
..
..
..
..
KIR
Kiribati
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KNA
St. Kitts and Nevis
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
38.5
39.2999992371
40
40.7999992371
41.7000007629
42.5
42.5
42.5
42.5
42.5
..
..
..
..
..
..
..
..
..
..
..
..
KOR
Korea, Rep.
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
71.5
76.4000015259
80.8000030518
84.6999969482
77.8000030518
76
72.6999969482
74
74.5
74.5
74.5
76.6999969482
76.6999969482
76.8899993896
86.7600021362
76.8199996948
77.5
78.3
78.5
..
..
..
KSV
Kosovo
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KWT
Kuwait
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
72.9000015259
74.4000015259
75.9000015259
77.4000015259
78.9000015259
80.5
80.5999984741
80.5999984741
80.5999984741
80.5999984741
80.5999984741
..
..
84.4000015259
85
..
..
..
..
..
..
..
LAC
Latin America & Caribbean
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
25.1499996185
..
..
..
..
..
..
..
..
28.125
..
..
..
LAO
Lao PDR
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
24
16
16
16
16
13.8000001907
..
..
..
..
..
..
14.0699996948
14.4099998474
..
13.4
12.9
13.06
13.54
..
..
..
LBN
Lebanon
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
95
95
95
95
95
95
95
..
..
84.9000015259
..
..
..
..
..
..
..
..
..
..
..
..
LBR
Liberia
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
5.5
5.59999990463
5.69999980927
5.90000009537
6
6.09999990463
6.19999980927
6.19999980927
6.19999980927
6.19999980927
6.19999980927
6.19999980927
..
..
..
..
..
..
..
..
..
..
LBY
Libya
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
51.7000007629
52.7000007629
53.7999992371
54.9000015259
56
57.0999984741
..
..
..
57.2000007629
57.2000007629
57.2000007629
..
..
..
..
..
..
..
..
..
..
LCA
St. Lucia
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LIC
Low income
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
12.1000003815
..
..
..
..
..
..
..
..
14.1199998856
..
..
..
LIE
Liechtenstein
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LKA
Sri Lanka
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
85.8399963379
81
..
..
..
..
..
..
..
..
LMC
Lower middle income
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
27
..
..
..
..
..
..
..
..
29.2600002289
..
..
..
LMY
Low & middle income
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
29
..
..
..
..
..
..
..
..
29.2800001144
..
..
..
LSO
Lesotho
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
18
17
16
15
15
17.8999996185
17.8999996185
16.7999992371
17.2999992371
18.2999992371
18.2999992371
18.2999992371
..
..
..
..
..
..
..
..
..
..
LTU
Lithuania
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
28.2999992371
28.3894278856
28.6055875612
28.6
..
..
..
LUX
Luxembourg
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
99.0999984741
99.0999984741
99.0999984741
97.8000030518
99.0999984741
99
100
99
100
100
100
100
100
100
100
..
..
..
..
..
..
..
LVA
Latvia
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
100
100
100
100
100
100
100
..
..
..
MAC
Macao SAR, China
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
100
100
100
100
100
100
100
100
100
100
100
100
100
100
100
..
100
..
100
..
..
..
MAF
St. Martin (French part)
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
49.0999984741
49.5
49.5
49.5999984741
50.2000007629
50.2000007629
50.2000007629
52.2999992371
52.2999992371
56.2999992371
56.4199981689
56.4199981689
56.4199981689
56.9000015259
56.9000015259
61.8899993896
61.8899993896
61.98
67.77
..
..
..
MCO
Monaco
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
100
100
100
100
100
100
100
100
100
100
100
100
..
..
..
..
100
100
100
..
..
..
MDA
Moldova
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
87.0999984741
86.0999984741
85.0999984741
86.4000015259
86.5999984741
87.3000030518
86.9000015259
86.9000015259
87
87
86.0999984741
..
86
86.1999969482
86.1999969482
86.25
85.5
85.6997255978
85.8
..
..
..
MDG
Madagascar
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
15.3999996185
15.3999996185
15.3999996185
11.5
..
11.5
11.6000003815
..
..
11.6000003815
11.6000003815
11.6000003815
..
..
..
..
..
..
..
..
..
..
MDV
Maldives
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
100
..
..
..
..
..
..
MEX
Mexico
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
35.0999984741
..
35.5
36
31
31.2999992371
31.7999992371
29.7000007629
34.2999992371
32.7999992371
32.7999992371
..
33.5
35.7599983215
36.3100013733
36.9799995422
33.47
34.96
35.28
..
..
..
MHL
Marshall Islands
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MIC
Middle income
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
35.4499988556
..
..
..
..
..
..
..
..
45
..
..
..
MKD
Macedonia, FYR
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
58.9000015259
59.2000007629
59.7000007629
60
61.5999984741
63.2999992371
63.7999992371
63.7999992371
63.7999992371
63.7999992371
..
..
..
51.74
52.87
55.62
54.34
56.16
56.54
..
..
..
MLI
Mali
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
10.8999996185
11.1000003815
11.3000001907
11.5
11.8000001907
12
12.1000003815
12.1000003815
12.1000003815
12.1000003815
12.1000003815
..
..
..
18
19.0355329949
..
..
..
..
..
..
MLT
Malta
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
95
95
95
95
95
..
88
88
90
87.5299987793
87.5299987793
..
..
..
87.53
..
..
..
MMR
Myanmar
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
10.8999996185
11.1999998093
11.3999996185
11.6000003815
11.8999996185
12.1000003815
12.1999998093
..
..
11.4399995804
11.4399995804
..
..
..
..
11.8500003815
..
..
..
..
..
..
MNA
Middle East & North Africa
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
66.3500003815
..
..
..
..
..
..
..
..
74.32
..
..
..
MNE
Montenegro
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNG
Mongolia
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
2.59999990463
3.29999995232
3.29999995232
3.40000009537
3.40000009537
3.5
3.5
3.5
3.5
..
..
..
..
..
..
..
..
..
MNP
Northern Mariana Islands
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MOZ
Mozambique
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
16.7999992371
17.2000007629
17.5
17.7999992371
18.2000007629
18.6000003815
18.7000007629
18.7000007629
18.7000007629
18.7000007629
18.7000007629
18.7000007629
..
..
..
..
..
..
20.78
..
..
..
MRT
Mauritania
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
32.6180257511
30.2999992371
26.848
26.848
..
..
..
..
MUS
Mauritius
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
93
93
93
93
93
93
95
95
96
96
97
98
98
100
100
100
98.0207817912
98.0276134122
98.03
..
..
..
MWI
Malawi
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
45.0200004578
..
..
..
..
..
..
..
..
MYS
Malaysia
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
69.9786977864
71.3122235484
73.2897323059
74.1273719086
73.9482415395
73.9198086939
73.9910888868
74.4553897233
75.582883032
75.3176885261
76.1848145082
77.885927535
..
80.8499984741
81.3199996948
..
82.7728133317
..
..
..
..
..
MYT
Mayotte
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NAM
Namibia
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
10.8000001907
10.8999996185
10.8999996185
7.30000019073
7.90000009537
7.90000009537
11.3999996185
13.1999998093
13.5
13.6000003815
..
..
12.8000001907
..
..
..
..
..
..
..
..
..
NCL
New Caledonia
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NER
Niger
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
29
..
..
..
..
..
..
..
..
..
..
25.6599998474
25.6599998474
24.9500007629
20.4500007629
20.6100006104
20.5
20.65
20.65
..
..
..
NGA
Nigeria
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
15
..
..
..
..
..
..
..
NIC
Nicaragua
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
10.5
10.5
10.5
10.6000003815
10.6999998093
10
..
..
..
..
11.0600004196
11.3599996567
11.3599996567
..
..
..
..
12
..
..
..
..
NIU
Niue
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NLD
Netherlands
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
88
88
88
88
89
90
90
90
90
90
90
..
..
..
..
..
..
..
..
..
..
..
NOR
Norway
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
69
69.8000030518
70.1999969482
71
72.5
73.5
72
74
74.5
75.5
76
77
77.5
..
..
..
79.5910460611
80.45
..
..
..
..
NPL
Nepal
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
37.5
38.2000007629
39
39.7000007629
40.5
41.4000015259
41.5
..
..
..
..
..
..
53.9000015259
55.66
56.07
55.85
..
..
..
..
..
NRU
Nauru
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NZL
New Zealand
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
57
58
58
58
58
60.4000015259
60.7999992371
61.2999992371
61.2999992371
61.9000015259
62.7999992371
63
64
64.3300018311
64.5
64.8899993896
64.9573699337
65.4066220079
65.89
..
..
..
OMN
Oman
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
21
21.6000003815
21.2000007629
21.5
19.7000007629
20.3999996185
30
30
30
30
30
27.6599998474
..
33.2151395493
36.7074955704
39.6562445589
42.1122159773
41.2509718869
43.46
..
..
..
PAK
Pakistan
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
54
53
53
54
54
45
44
44
53
55
56
59
..
60
64.6999969482
..
65.3601837158
..
..
..
..
..
PAN
Panama
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
32
32.2000007629
32.4000015259
32.7000007629
33.4000015259
33.5
33.5999984741
29.3999996185
28.1000003815
34.5999984741
34.5999984741
34.5999984741
..
..
..
..
34.1226344721
36.65
38.14
..
..
..
PER
Peru
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
9.89999961853
10
10.3000001907
10.5
10.8999996185
11.3999996185
11.6000003815
11.8000001907
12.970000267
13.0399999619
13.3500003815
13.3599996567
14.3999996185
13.1099996567
14.3999996185
..
13.8809409262
..
..
..
..
..
PHL
Philippines
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
16.6000003815
16.7000007629
17.3999996185
17.7000007629
19.7999992371
20
..
..
9.5
9.89999961853
..
..
..
..
..
..
..
..
PLW
Palau
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PNG
Papua New Guinea
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
3.20000004768
3.20000004768
3.29999995232
3.29999995232
3.29999995232
3.40000009537
3.5
3.5
3.5
3.5
3.5
3.5
..
..
..
..
..
..
..
..
..
..
POL
Poland
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
61.5999984741
63.4000015259
64.0999984741
64.5
64.9000015259
65.3000030518
65.4000015259
65.6999969482
65.5999984741
65.5999984741
68.3000030518
68.3000030518
..
69.6600036621
..
66.528479317
66.7883467315
67.5910728826
68.1512924679
..
..
..
PRI
Puerto Rico
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
94
94
..
..
95
..
..
..
..
..
..
..
PRK
Korea, Dem. Rep.
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
5.69999980927
5.80000019073
6
6.09999990463
6.19999980927
6.30000019073
6.40000009537
6.40000009537
6.40000009537
6.40000009537
6.40000009537
..
..
..
..
..
2.83321595192
..
..
..
..
..
PRT
Portugal
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
86
..
..
..
..
86
86
..
..
..
86
..
..
..
..
..
..
..
PRY
Paraguay
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
50.7999992371
50.7999992371
..
..
..
..
..
..
..
..
..
..
PYF
French Polynesia
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
QAT
Qatar
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
85.5999984741
86.5
87.3000030518
88.1999969482
89.0999984741
90
90
90
90
90
90
..
..
..
..
..
..
..
..
..
..
..
ROM
Romania
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
51
51
51
51
51
52.2999992371
52.7999992371
53.0999984741
53
49.5
50.5
50.4000015259
30.2000007629
30.2000007629
..
..
..
..
..
..
..
RUS
Russian Federation
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
74.1999969482
75.8000030518
..
..
..
..
..
..
67.1999969482
67.4000015259
..
..
..
..
..
84.4000015259
80.9199981689
80.06
..
..
..
..
RWA
Rwanda
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
9
9.1999998093
9.3999996185
9.6000003815
9.6999998093
9.8999996185
..
..
..
..
..
..
..
..
19
..
..
..
..
..
..
..
SAS
South Asia
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
46.6699981689
..
..
..
..
..
..
..
..
58.925
..
..
..
SAU
Saudi Arabia
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
40.5999984741
39.5
40
40.9000015259
41.7999992371
30.1000003815
29.7999992371
30.1000003815
..
..
29.8999996185
..
..
..
..
21.4699993134
..
..
..
..
..
..
SDN
Sudan
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
33.7999992371
33.7000007629
33.7000007629
34.5
35.4000015259
36.2000007629
36.2999992371
36.2999992371
36.2999992371
36.2999992371
36.2999992371
36.2999992371
..
..
..
..
..
..
..
..
..
..
SEN
Senegal
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
27.2000007629
27.7999992371
28.2999992371
28.2999992371
28.3999996185
28.5
29.2999992371
29.2999992371
29.2999992371
29.2999992371
29.2999992371
..
..
29.2600002289
..
..
..
..
..
..
..
..
SGP
Singapore
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
97.0999984741
97.0999984741
97.0999984741
97.1999969482
97.1999969482
97.3000030518
97.3000030518
97.3000030518
100
100
100
100
100
100
100
100
100
100
100
..
..
..
SID
Small island developing states
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
49.4000015259
..
..
..
..
..
..
..
..
49.9000015259
..
..
..
SLB
Solomon Islands
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
2.09999990463
2.20000004768
2.20000004768
2.29999995232
2.29999995232
2.40000009537
2.5
2.5
2.5
2.44000005722
2.44000005722
2.44000005722
..
..
..
..
..
..
..
..
..
..
SLE
Sierra Leone
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
10.6000003815
10.8000001907
11
11
11
8
8
8
8
7.90000009537
7.90000009537
..
8
..
..
..
..
..
..
..
..
..
SLV
El Salvador
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
14.3999996185
14.1999998093
14.1999998093
19.8999996185
20
20
19.8999996185
19.7999992371
19.7999992371
19.7999992371
19.7999992371
19.7999992371
..
..
..
..
..
..
..
..
..
..
SMR
San Marino
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SOM
Somalia
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
11.1000003815
11.3000001907
11.5
11.8000001907
11.8000001907
11.8000001907
11.8000001907
11.8000001907
11.8000001907
11.8000001907
11.8000001907
11.8000001907
..
..
..
..
..
..
..
..
..
..
SRB
Serbia
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
62.7000007629
..
..
..
..
..
..
..
47.74
..
..
..
SSA
Sub-Saharan Africa
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
16.5
..
..
..
..
..
..
..
..
18.2999992371
..
..
..
STP
Sao Tome and Principe
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
61.5999984741
62.7999992371
64.0999984741
65.4000015259
66.6999969482
68
68.0999984741
68.0999984741
68.0999984741
68.0999984741
68.0999984741
68.0999984741
..
..
..
..
..
..
..
..
..
..
SUR
Suriname
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
24
24.5
26
26
26
26
26
..
..
26
26
26
26
26.25
..
..
..
..
..
..
..
..
SVK
Slovak Republic
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
85.8000030518
85.8000030518
86.5999984741
86.6999969482
..
87
87
87.3000030518
87.3099975586
87.3099975586
87.0199966431
87.0299987793
..
..
..
..
..
SVN
Slovenia
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
72
74
75
77
79
80.1999969482
81.1999969482
81.6999969482
100
..
100
100
100
100
100
100
100
100
100
..
..
..
SWE
Sweden
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
31.1599998474
30.5100002289
31.4799995422
31.654672884
31.6627053355
23.57
..
..
..
SWZ
Swaziland
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
28.2000007629
..
..
..
..
..
..
..
29.9899997711
..
..
..
..
..
..
..
..
..
SXM
Sint Maarten (Dutch part)
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
56.9000015259
58
59.0999984741
60.2999992371
61.5
62.7999992371
80.3000030518
84.5
..
..
..
..
..
96
..
95.983935743
96.015936255
96.4566929134
96.4566929134
..
..
..
SYR
Syrian Arab Republic
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
93.6
94.58
95.15
95.75
92.98
91.03
..
..
..
TCA
Turks and Caicos Islands
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TCD
Chad
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
0.800000011921
0.800000011921
0.800000011921
0.800000011921
0.800000011921
0.800000011921
0.800000011921
0.800000011921
0.800000011921
0.800000011921
0.800000011921
..
..
..
..
..
..
..
..
..
..
..
TGO
Togo
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
21.2000007629
21.6000003815
31
31.6000003815
31.6000003815
31.6000003815
31.6000003815
31.6000003815
31.6000003815
31.6000003815
31.6000003815
31.6000003815
..
..
..
..
..
21
..
..
..
..
THA
Thailand
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
88.4000015259
89.6999969482
92.8000030518
94.6999969482
97.4000015259
97.5
97.5
97.5
97.5
98.5
..
..
..
..
..
..
..
..
..
..
..
TJK
Tajikistan
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
71.5999984741
74.0999984741
76.6999969482
78.6999969482
80.6999969482
82.6999969482
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TKM
Turkmenistan
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
73.5
75
76.5
78
..
..
..
..
..
81.1999969482
81.1999969482
81.1999969482
..
..
..
..
..
..
..
..
..
..
TMP
Timor-Leste
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TON
Tonga
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
27
27
27
27
27
27
27
..
..
..
..
..
..
..
..
..
..
TTO
Trinidad and Tobago
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
46.2000007629
47.0999984741
48.0999984741
49
50
51
51.0999984741
51.0999984741
51.0999984741
51.0999984741
51.0999984741
51.0999984741
..
..
..
..
..
..
..
..
..
..
TUN
Tunisia
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
76.0999984741
75.5
74.5999984741
76
77.4000015259
78.8000030518
78.9000015259
78.9000015259
63.7000007629
63.7999992371
68.4000015259
65.4000015259
..
..
65.8000030518
..
..
..
75.18
..
..
..
TUR
Turkey
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
23
25
25
28
34
..
..
..
..
..
..
..
..
..
..
..
..
TUV
Tuvalu
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TZA
Tanzania
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
8.63000011444
..
..
..
..
7.38
..
..
..
UGA
Uganda
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
23
..
..
..
..
..
..
..
..
UKR
Ukraine
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
93.6999969482
94.1999969482
94.5999984741
94.9000015259
94.4000015259
94.8000030518
95
95
96.5
96.5999984741
96.6999969482
96.6999969482
96.8000030518
96.4000015259
97.1999969482
97.4199981689
97.664750686
97.751177533
97.81
..
..
..
UMC
Upper middle income
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
50.4000015259
..
..
..
..
..
..
..
..
50.5012738542
..
..
..
URY
Uruguay
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
USA
United States
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
66.1999969482
64.5
65.3399963379
..
65.12
67.37
..
..
..
UZB
Uzbekistan
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
79
80.5
..
83.8000030518
85.5
87.1999969482
87.3000030518
..
87.3000030518
87.3000030518
87.3000030518
87.3000030518
..
..
..
..
..
..
..
..
..
..
VCT
St. Vincent and the Grenadines
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
63
65
68
70
70
70
..
..
..
..
..
..
..
..
VEN
Venezuela, RB
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
35.5999984741
36.2999992371
37
37.7999992371
35.4000015259
35.4000015259
35.4000015259
33.5999984741
33.5999984741
33.5999984741
33.5999984741
33.5999984741
..
..
..
..
..
..
..
..
..
..
VIR
Virgin Islands (U.S.)
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VNM
Vietnam
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
23.5
23.8999996185
24.3999996185
24.8999996185
25.3999996185
25.8999996185
25.1000003815
25.1000003815
25.1000003815
..
..
..
..
..
43.8930102869
..
46.9623826105
47.6241340754
..
..
..
..
VUT
Vanuatu
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
21.6000003815
22
22.5
22.8999996185
23.3999996185
23.7999992371
23.8999996185
23.8999996185
23.8999996185
23.8999996185
23.8999996185
23.8999996185
..
..
..
..
..
..
..
..
..
..
WBG
West Bank and Gaza
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
100
100
100
100
100
..
..
..
..
..
WLD
World
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
46.484998703
..
..
..
..
..
..
..
..
49.1000003815
..
..
..
WSM
Samoa
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
14.2100000381
..
..
..
..
..
..
..
..
..
..
YEM
Yemen, Rep.
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
9.10000038147
9.10000038147
9.39999961853
9.5
8.10000038147
7.90000009537
8.10000038147
..
..
..
..
..
..
..
..
8.69999980927
..
..
..
..
..
..
ZAF
South Africa
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
19.7000007629
19.7000007629
19.7000007629
20.2999992371
20.2999992371
17.2999992371
..
..
..
..
..
..
..
..
..
..
ZAR
Congo, Dem. Rep.
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.82000005245
..
..
..
..
..
..
..
ZMB
Zambia
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
16.6000003815
16.8999996185
17.2999992371
17.6000003815
18
..
..
..
..
..
..
22
..
..
..
..
..
..
..
..
..
..
ZWE
Zimbabwe
IS.ROD.PAVE.ZS
Paved roads (% of total roads)
0
1
14
15
16
17
54.9000015259
48
47.4000015259
47.4000015259
47.4000015259
..
..
..
19
..
..
..
..
..
..
..
..
..
ABW
Aruba
NY.GDP.MKTP.CD
GDP ($)
0
0
..
872067021.914
958659238.282
1083240282.27
1245810153.89
1320670419.17
1379888369.04
1531843679.53
1665363128.18
1722905064.6
1858659293.19
1898882757.74
1911173189.28
..
..
..
..
..
..
..
..
..
ADO
Andorra
NY.GDP.MKTP.CD
GDP ($)
0
0
1028989439.41
1106890942.99
1209992604.29
1007090896.44
1017544619.09
1178745261.83
1224023469.69
1180646037.01
1211953953.56
1239840265.63
1133644294.54
1264760246.44
1456198796.29
1917948475.28
2322163502.26
2539759285.93
2823503852.62
3245411583.72
3712034266.51
..
..
..
AFG
Afghanistan
NY.GDP.MKTP.CD
GDP ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
2461666314.78
4338907578.66
4766127271.58
5704202650.64
6814753580.54
7721931671.42
9739337182.88
11757405532.5
..
..
..
AGO
Angola
NY.GDP.MKTP.CD
GDP ($)
0
0
10260193360.7
12193746624.7
5779394291.76
5285600050.35
4059577145.36
5039534776.49
7526446605.52
7675412589.46
6445192203.75
6154480286.74
9129180360.52
8936023211.53
11431738445.4
13956268299.1
19775218958.0
30632364953.8
45163239832.4
60451594399.4
84178512502.4
75492890278.3
84390572976.7
..
ALB
Albania
NY.GDP.MKTP.CD
GDP ($)
0
0
2101624960
1139166679.07
709452572.658
1228071037.41
1985673025.89
2424498952.88
3013217852.57
2196223713.81
2727745453.08
3434402453.41
3686649387.03
4091020249.37
4449373455.57
5652325081.6
7464446950.03
8376483740.48
9132562332.43
10704660840.3
12968653524.8
12044881925.4
11786099137.9
..
ARE
United Arab Emirates
NY.GDP.MKTP.CD
GDP ($)
0
0
33653227968.3
33919640390.0
35412694052.6
35745300971.6
38268046815.0
42806864571.4
47993462223.6
51209479652.6
48500477900.0
55193466518.7
70591424755.7
68676925038.7
75284685608.6
88578899739.2
1.03784073761e+11
1.32999867652e+11
1.63296124474e+11
2.07569781287e+11
2.61347863149e+11
2.30251878599e+11
..
..
ARG
Argentina
NY.GDP.MKTP.CD
GDP ($)
0
0
1.41352368715e+11
1.89719989668e+11
2.28779382768e+11
2.3675356347e+11
257439956992
258031878144
272149757952
292858888192
298948362240
283523022848
284203745280
268696715264
1.02040334259e+11
1.29597103034e+11
1.53129481873e+11
1.83193408941e+11
2.140662312e+11
2.60768703249e+11
3.26676673165e+11
3.07081774895e+11
3.68711957358e+11
..
ARM
Armenia
NY.GDP.MKTP.CD
GDP ($)
0
0
2256838858.43
2068526521.9
1272577521.77
1201313196.46
1315158670.48
1468317350.02
1596968913.19
1639492424.38
1893726437.36
1845482181.49
1911563665.39
2118467913.38
2376335048.4
2807061008.69
3576615240.42
4900436758.5
6384457744.45
9206277478.95
11662017844.9
8541111814.58
9264794733.18
..
ASM
American Samoa
NY.GDP.MKTP.CD
GDP ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ATG
Antigua and Barbuda
NY.GDP.MKTP.CD
GDP ($)
0
0
391570363.455
410388899.419
423762955.479
456537023.048
500088880.057
494185188.309
541074082.296
579851829.759
620037014.235
651851840.34
664174062.344
696251839.556
713533320.732
753107394.107
815396281.896
866818503.21
1010881463.63
1155366646.26
1203314814.81
1097688888.89
1014981481.48
..
AUS
Australia
NY.GDP.MKTP.CD
GDP ($)
0
0
3.14518661023e+11
3.29965465819e+11
3.2899177113e+11
3.15553681844e+11
3.26529920443e+11
3.71090733591e+11
4.03660849772e+11
4.37674127406e+11
4.01216848674e+11
3.90208672766e+11
4.1692331847e+11
3.80427712783e+11
3.97239430724e+11
4.68468841002e+11
6.15275999431e+11
6.96033679146e+11
7.49316412099e+11
8.56816361781e+11
1.03941509538e+12
9.24843128521e+11
..
..
AUT
Austria
NY.GDP.MKTP.CD
GDP ($)
0
0
1.64846797773e+11
1.72166366529e+11
1.9309652016e+11
1.88288650183e+11
2.01192480424e+11
2.38314109458e+11
2.34143004939e+11
2.06878199346e+11
2.12150714762e+11
2.1092962817e+11
1.91200302193e+11
1.90155281432e+11
2.05954943535e+11
2.5203423702e+11
2.89038861882e+11
3.02921137392e+11
3.22340100434e+11
3.72291309787e+11
4.14670756949e+11
3.81083737704e+11
376162107600
..
AZE
Azerbaijan
NY.GDP.MKTP.CD
GDP ($)
0
0
8858006035.92
8792365810.51
4991350457.54
3973027396.65
3313739673.55
3052467522.36
3176749593.12
3962710163.11
4446396217.63
4581222442.46
5272617196.05
5707618246.57
6236024951.2
7275766111.24
8680511918.49
13245421880.8
20982270733.2
33049380917.7
46258154819.9
43019407812.9
51092154420.9
..
BDI
Burundi
NY.GDP.MKTP.CD
GDP ($)
0
0
1132101252.52
1167398478.35
1083037670.62
938632612.059
925030590.28
1000428393.95
869033856.317
972896267.915
893770806.078
808077223.366
709062400.266
662371289.215
628096157.257
595002974.038
664493918.667
795882875.053
918823350.844
979785001.895
1168900171.2
1330790159.56
1610544922.06
..
BEL
Belgium
NY.GDP.MKTP.CD
GDP ($)
0
0
2.02563186142e+11
2.07672604017e+11
2.31616006775e+11
2.21691791045e+11
2.41582269472e+11
2.84142036125e+11
2.75433224756e+11
2.49438430311e+11
2.55267837297e+11
2.54175367569e+11
2.32371475954e+11
2.32154809843e+11
2.52452475061e+11
3.11191873589e+11
3.6110955902e+11
3.76616674128e+11
3.99113833061e+11
4.58619726869e+11
5.053737137e+11
4.71161072623e+11
4.67471523179e+11
..
BEN
Benin
NY.GDP.MKTP.CD
GDP ($)
0
0
1845041493.98
1877810375.14
1624296266.51
2106272067.69
1496845630.26
2009226253.8
2208067090.28
2156753028.13
2334564287.17
2387363924.06
2254838684.51
2371785987.12
2807357350.89
3557983482.45
4047438048.57
4287463884.07
4734839067.49
5546177809.03
6682744914.14
6638062119.59
6633055845.52
..
BFA
Burkina Faso
NY.GDP.MKTP.CD
GDP ($)
0
0
3101309668.44
3135055824.28
2240264677.01
2332018010.6
1895306626.22
2379510500.96
2586563406.93
2447666540.08
2804910748.37
3014661262.3
2610945548.7
2812839821.17
3289645662.49
4270385658.53
5108983826.56
5427438071.31
5771194544.67
6766986320.81
8045823005.29
8140859745.95
8820312673.51
..
BGD
Bangladesh
NY.GDP.MKTP.CD
GDP ($)
0
0
30128776343.6
30957444767.4
31708863730.0
33166530060.0
33768661426.8
37939752959.9
40666015641.1
42318798537.7
44091754148.2
45694072379.4
47124925462.1
46987842846.6
47571130071.4
51913661485.3
56560744012.2
60277560975.6
61901116736.2
68415421372.7
79554350677.7
89359767441.9
1.00075925463e+11
..
BGR
Bulgaria
NY.GDP.MKTP.CD
GDP ($)
0
0
20726300434.7
10943548723.8
10371900499.5
10831999516.8
9704877673.49
13069087676.7
8890314314.92
10053468883.4
13060786260.9
13228374664.8
12903546576.1
13868600612.0
15979194407.5
20668176666.4
25283228735.9
28895083539.8
33209188725.3
42113655820.5
51824867626.6
48568714011.5
47714490182.8
..
BHR
Bahrain
NY.GDP.MKTP.CD
GDP ($)
0
0
4229787378.87
4616223477.21
4751063992.47
5200266050.4
5567553552.34
5849468115.19
6101861655.74
6349202600.38
6183941092.32
6621186419.42
7970690894.22
7928934209.58
8491183200.55
9747599583.42
11235671061.4
13460198289.7
15854942950.6
18473097688.8
21902892584.0
20594899945.7
..
..
BHS
Bahamas, The
NY.GDP.MKTP.CD
GDP ($)
0
0
3166000000
3111160000
3109000000
3092000000
3259000000
3429000000
3609000000
4204761925.22
4714138318.85
5150088040.19
5528200494.7
5658890129.36
5912310096.17
5942440639.84
6031700548.47
6508774909.11
6875630000
7233960000
7297903886
7077192101
7538000000
..
BIH
Bosnia and Herzegovina
NY.GDP.MKTP.CD
GDP ($)
0
0
..
..
..
..
1255802465.44
1866572992.65
2786045391.91
3671816537.76
4116699576.18
4685729742.92
5505984455.96
5748990554.8
6651226179.02
8370020196.19
10022840634.9
10763567749.7
12254412802.3
15226731980.4
18500599161.2
17042403579.8
16887610020.3
..
BLR
Belarus
NY.GDP.MKTP.CD
GDP ($)
0
0
17369598958.1
17813389815.0
17022180272.2
16280372553.1
14931599418.4
13972637603.2
14756861538.5
14128412417.2
15222014828.3
12138485328.6
12736856485.1
12354820143.9
14594925393.0
17825436034.5
23141587717.8
30210091836.8
36961918858.7
45275711995.8
60763483146.1
49271267252.2
54713128376.3
..
BLZ
Belize
NY.GDP.MKTP.CD
GDP ($)
0
0
413049984
444720726.465
518143678.486
559759653.31
580760211.263
620031771.858
641271333.363
654198121.106
688872472.725
732607993.769
832072464.653
871840755.397
932676403.181
988199088.309
1056303706.29
1114874607.78
1213104430.03
1276751655.94
1358700000
1351500000
1431500000
..
BMU
Bermuda
NY.GDP.MKTP.CD
GDP ($)
0
0
1592400000
1634899968
1679900032
1820359936
1867160064
2030749952
2695390000
2932827000
3130748000
3324433000
3507864000
3660790000
3919849000
4168843000
4464576000
4846147000
5387377000
5860745000
6067898000
5715300000
..
..
BOL
Bolivia
NY.GDP.MKTP.CD
GDP ($)
0
0
4867582765.48
5343259488.69
5643864513.5
5734703516.15
5981218963.4
6715164449.93
7396952017.82
7925733799.38
8497499275.78
8285061590.6
8397858205.83
8141513227.14
7905485150.07
8082396474.24
8773451753.44
9549196301.7
11451297465.9
13120517443.2
16675015771.1
17339992191.2
19786162177.6
..
BRA
Brazil
NY.GDP.MKTP.CD
GDP ($)
0
0
461951782000
4.07337832905e+11
3.90566551484e+11
4.38299504406e+11
5.4623338026e+11
7.68951180305e+11
8.3968324676e+11
8.71199987488e+11
8.43826501464e+11
5.86863191445e+11
6.44701831101e+11
5.53582178386e+11
5.04221228974e+11
5.52469288268e+11
663760000000
8.82185291701e+11
1.08891727941e+12
1.36598265154e+12
1.65263222923e+12
1.59448967502e+12
2.08788955382e+12
..
BRB
Barbados
NY.GDP.MKTP.CD
GDP ($)
0
0
1710435930.61
1687167462.47
1588499968
1641226964.28
1726942730.47
1859145793.42
1982896516.45
2192363132.96
2364540276.61
2468403492.92
2558850048
2554187133.61
2476105823.73
2694879717.51
2824000000
3005000000
3190900000
3409200000
3670215312.5
3595210912.5
3203000000
..
BRN
Brunei Darussalam
NY.GDP.MKTP.CD
GDP ($)
0
0
3520551724.14
3701667052.56
4183548189.07
4105706151.75
4087337959.93
4734020036.69
5115602836.88
5197332974.14
4051147227.53
4600000000
6001153317.87
5601090584.36
5843329101.98
6557333067.39
7872333197.25
9531402829.85
11470703002.1
12247627894.6
14393099068.6
10732435033.7
..
..
BTN
Bhutan
NY.GDP.MKTP.CD
GDP ($)
0
0
281287042.963
243562708.412
238315817.745
227267326.635
253233784.05
286478236.497
300967232.393
342864384.225
355712835.241
396694740.648
427808817.307
455709385.897
507270767.637
610970025.739
702744043.34
818869145.812
897731525.053
1196077342.23
1257625054.72
1264816920.36
1516078205.36
..
BWA
Botswana
NY.GDP.MKTP.CD
GDP ($)
0
0
3791585992.34
3942012713.53
4145924376.74
4160296985.27
4339516121.66
4773730291.81
4800126339.31
5179680522.0
5190543764.48
5866964491.1
5632391130.01
6033896672.57
6091305296.51
8086707335.42
10048660849.7
10255448712.8
11255175568.2
12376435509.5
13473345712.5
11473685551.3
14857275329.7
..
CAF
Central African Republic
NY.GDP.MKTP.CD
GDP ($)
0
0
1487510977.37
1404323259.65
1434151468.48
1298847602.77
852998900.554
1121907256.03
1070076555.21
1003264949.12
1047204550.34
1051323696.61
959413050.588
967526420.207
1041975238.48
1139211629.21
1269621728.75
1350047284.99
1476870078.01
1696340453.23
1982983854.76
1980151889.3
2013014939.11
..
CAN
Canada
NY.GDP.MKTP.CD
GDP ($)
0
0
5.82722831676e+11
5.98208082395e+11
5.79531728303e+11
5.63664832184e+11
5.64493995313e+11
5.90517341883e+11
6.13761642831e+11
6.37536472627e+11
6.16766430738e+11
6.61264723699e+11
7.24918860683e+11
7.15423553719e+11
7.34661951188e+11
8.65873242452e+11
9.9222686815e+11
1.13375998548e+12
1.27861084664e+12
1.42406572945e+12
1.49910781227e+12
1.33606771061e+12
1.57405220491e+12
..
CHE
Switzerland
NY.GDP.MKTP.CD
GDP ($)
0
0
2.38212677231e+11
2.41001802287e+11
2.50982186822e+11
2.44089818242e+11
2.70221089418e+11
3.15939881871e+11
3.04751566125e+11
2.64584062462e+11
2.72632435332e+11
2.68211560893e+11
2.49918732455e+11
2.54989746187e+11
2.78620794936e+11
3.25039777288e+11
3.62990618832e+11
3.7247575539e+11
3.91233703828e+11
4.34116631637e+11
5.02447278285e+11
4.91924171371e+11
5.23772140979e+11
..
CHI
Channel Islands
NY.GDP.MKTP.CD
GDP ($)
0
0
..
..
..
..
..
..
..
..
5945677376.61
6262740656.85
6439703434.71
6232906290.49
6663669064.75
7332244897.96
8553643354.08
8827272727.27
9676172953.08
11514605842.3
..
..
..
..
CHL
Chile
NY.GDP.MKTP.CD
GDP ($)
0
0
31558927517.2
36424168146.2
44467946384.2
47693992626.9
55154226760.0
71349202308.6
75769008174.3
82808986191.6
79373597080.1
72995286764.4
75210511779.6
68568293067.1
67265403373.3
73989608414.6
95652734479.2
1.1824963026e+11
1.46772604313e+11
1.64315221642e+11
1.70741003929e+11
1.60859264563e+11
2.03442593943e+11
..
CHN
China
NY.GDP.MKTP.CD
GDP ($)
0
0
3.56936901184e+11
3.79468656246e+11
4.22660918111e+11
4.40500898965e+11
5.59224707281e+11
7.28007199936e+11
8.56084729312e+11
9.52652693079e+11
1.01945858533e+12
1.08327793036e+12
1198480321713
1.32480484841e+12
1.45382768761e+12
1.64095926437e+12
1.93164387203e+12
2.25690296914e+12
2.71295056061e+12
3.49405586592e+12
4.52182689954e+12
4.99125622255e+12
5.87862924668e+12
..
CIV
Cote d'Ivoire
NY.GDP.MKTP.CD
GDP ($)
0
0
10796040439.9
10492662390.0
11153005024.7
11045080762.0
8313627828.01
11000111579.1
12139291891.5
11722200901.2
12782574028.1
12556439824.6
10417006095.7
10545263560.0
11486664324.8
13737489762.0
15481092869.2
16363441576.5
17367306796.6
19795696265.3
23414005259.5
23041807677.5
22780280529.9
..
CMR
Cameroon
NY.GDP.MKTP.CD
GDP ($)
0
0
11151578702.9
12434368416.0
11396311478.4
13532152214.8
9220467286.24
8733227080.87
9732338099.34
9840550361.48
9629642599.84
10486456218.3
10075040330.8
9598224206.27
10879778068.6
13621809491.9
15775357312.0
16587863738.2
17956985510.8
20685921877.1
23735512829.1
22185977547.1
22393529277.6
..
COG
Congo, Rep.
NY.GDP.MKTP.CD
GDP ($)
0
0
2798754150.38
2724862285.81
2933231579.46
1918970177.75
1769380403.46
2115997195.23
2540699674.72
2322716603.56
1949481957.5
2353906123.11
3219893817.24
2794254065.26
3019985939.54
3495870612.53
4648628921.37
6087004330.12
7731262789.5
8343503640.38
11789245042.6
9579804345.35
11897620542.1
..
COK
Cook Islands
NY.GDP.MKTP.CD
GDP ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
COL
Colombia
NY.GDP.MKTP.CD
GDP ($)
0
0
40274204595.2
41239551378.2
49279585355.1
55802540101.0
81703496604.0
92507277798.2
97160111573.3
1.06659507964e+11
98443743190.8
86186156584.4
1.00363791871e+11
98745443240.0
98229102138.8
94916590095.6
1.17188202055e+11
1.46570319334e+11
1.62807996675e+11
2.07410686362e+11
2.44645672495e+11
2.35836552597e+11
2.88188988824e+11
..
COM
Comoros
NY.GDP.MKTP.CD
GDP ($)
0
0
250033056.637
246822116.509
266189632.439
263564577.418
185759948.896
231893813.725
230493348.346
212098229.583
215393481.897
222580742.961
201900820.255
220115318.855
251163102.116
324471208.993
362420491.159
387036433.174
403177193.564
464949227.987
530138454.667
535336307.675
541097513.043
..
CPV
Cape Verde
NY.GDP.MKTP.CD
GDP ($)
0
0
338690985.317
351313578.311
393844570.555
363247416.912
410804606.123
490609345.113
502176380.162
506433841.296
539517920.088
583442832.023
531386031.9
550199629.954
616209203.878
797314309.694
924644653.09
999332627.441
1107887282.28
1331215013.59
1550552391.54
1586929006.3
1648089239.78
..
CRI
Costa Rica
NY.GDP.MKTP.CD
GDP ($)
0
0
7403457319.25
7162546469.77
8573610781.23
9638291624.36
10557530521.6
11722356980.2
11843228352.0
12828976089.8
14095921303.3
15796567138.1
15946443260.8
16403603009.3
16844378717.9
17517535901.8
18596365933.7
19964893792.0
22526464348.1
26267157320.3
29663614222.9
29239504920.4
34564395711.2
..
CUB
Cuba
NY.GDP.MKTP.CD
GDP ($)
0
0
28645093043.9
24317592011.3
22085593356.8
22366986629.7
28447985651.4
30428273413.5
25017000000
25364500000
25736700000
28364900000
30565800000
31682300000
33590500000
35901100000
38203400000
42643600000
52742700000
58603800000
62704800000
..
..
..
CUW
Curacao
NY.GDP.MKTP.CD
GDP ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
NY.GDP.MKTP.CD
GDP ($)
0
0
..
..
..
..
..
..
1012444041.02
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYP
Cyprus
NY.GDP.MKTP.CD
GDP ($)
0
0
5589698801.49
5769468848.94
6913953328.7
6588738977.95
7428356891.79
9253734106.44
9350212549.57
8902508791.36
9555640647.7
9780443269.13
9316693766.43
9678423511.23
10558381390.9
13324071623.1
15822905640.3
16995655476.3
18424000903.0
21835946094.6
25371874080.6
25039094267.1
..
..
CZE
Czech Republic
NY.GDP.MKTP.CD
GDP ($)
0
0
34879966070.8
25572480861.0
29954014371.7
34380681377.5
41090290299.5
55257045968.3
62010597343.9
57134856184.4
61846680469.0
60192136074.7
56720835330.5
61842323433.3
75276073338.5
91357722712.6
1.09524878647e+11
1.24548570554e+11
1.42610569175e+11
1.74214943907e+11
2.16084641518e+11
1.9020432251e+11
1.92151584569e+11
..
DEU
Germany
NY.GDP.MKTP.CD
GDP ($)
0
0
1.714470069e+12
1.8086034178e+12
2.06214151534e+12
2.00445995505e+12
2.14629384115e+12
2.52279241163e+12
2.43849753054e+12
2.16059102188e+12
2.18448371679e+12
2.1436181547e+12
1.90022111664e+12
1.89097091723e+12
2.0169207604e+12
2.44221218962e+12
2.74521490256e+12
2.78838979257e+12
2.9185551866e+12
3.32914521281e+12
3.63452594573e+12
3.33003168747e+12
3.30966887417e+12
..
DJI
Djibouti
NY.GDP.MKTP.CD
GDP ($)
0
0
452328104.992
462422016.63
478058323.588
466048487.476
491689239.995
497723980.076
494004667.075
502675561.682
514267889.435
536080169.086
551230861.857
572417440.82
591122039.601
622044665.515
666072101.778
708843636.937
768873684.033
847918929.108
982534421.931
1049054416.75
..
..
DMA
Dominica
NY.GDP.MKTP.CD
GDP ($)
0
0
166322225.211
180437033.85
191759261.799
200418509.053
215459267.306
224037021.229
236444440.269
245781477.141
258440730.251
267740736.012
271166661.878
266151847.151
254855551.055
262833328.692
285218513.481
299255555.556
315659259.259
344366666.667
374422222.222
375748148.148
382781481.481
..
DNK
Denmark
NY.GDP.MKTP.CD
GDP ($)
0
0
1.35838154025e+11
1.36693973267e+11
1.50195490466e+11
1.40626629035e+11
1.53593214477e+11
1.81983614165e+11
1.84435821822e+11
1.70435460671e+11
1.73653295129e+11
1.73944697686e+11
1.60082641561e+11
1.60476161869e+11
1.73880831444e+11
2.12621855883e+11
2.44727978021e+11
2.57675536234e+11
2.74376889678e+11
3.11417601999e+11
3.41466969261e+11
3.0892523042e+11
3.10404822126e+11
..
DOM
Dominican Republic
NY.GDP.MKTP.CD
GDP ($)
0
0
7073674721.59
9724379019.62
11277694536.9
12976408000
14511134920.6
16358496124.0
18131813000.6
19593449903.3
21171235997.9
21709041189.3
23996656675.8
24894907435.1
26570402718.8
21268012747.3
22039232610.0
34004033803.9
35952845582.5
41314666868.6
45498608625.4
46597346434.6
51576859661.0
..
DZA
Algeria
NY.GDP.MKTP.CD
GDP ($)
0
0
62045098370.1
45715368144.0
48003297248.9
49946456681.2
42542573602.2
41764054034.7
46941496308.3
48177861890.9
48187780126.2
48640613515.1
54790058957.4
55180990395.7
57053038888.2
68018606041.4
85013944728.0
1.02339100115e+11
1.17169320524e+11
1.35803556325e+11
1.70989269622e+11
1.4057652651e+11
1.59425577394e+11
..
EAP
East Asia & Pacific
NY.GDP.MKTP.CD
GDP ($)
0
0
6.70809059806e+11
7.30965988307e+11
8.17354817725e+11
8.81474460669e+11
1.06264566112e+12
1.31314137348e+12
1.5083473978e+12
1.56333868101e+12
1.42883324716e+12
1.56946008375e+12
1.72718719687e+12
1.83860722614e+12
2.03289284847e+12
2.29657446126e+12
2.66291268445e+12
3.07269086661e+12
3.69522438798e+12
4.66752573972e+12
5.89933881585e+12
6.36642450226e+12
7.5794141816e+12
..
ECA
Europe & Central Asia
NY.GDP.MKTP.CD
GDP ($)
0
0
9.51784876978e+11
9.15106181588e+11
8.46992522719e+11
8.30626608944e+11
7.22256963663e+11
7.69118493114e+11
7.74350597762e+11
8.0794348785e+11
7.54312220786e+11
6.37560917684e+11
7.09910973025e+11
7.08077343899e+11
8.09184958755e+11
1.02114618397e+12
1.34686166189e+12
1.70118781221e+12
2.08750979115e+12
2.70012638839e+12
3.33088896806e+12
2.60907401228e+12
3.05502646982e+12
..
ECU
Ecuador
NY.GDP.MKTP.CD
GDP ($)
0
0
10355963786.8
11348439540.0
11996750826.5
15063220705.5
18581908127.5
20205685541.4
21278200686.3
23647336355.2
23266151902.6
16681996553.9
15941641913.5
21250000896
24899481000
28635909000
32642225000
37186942000
41705000000
45503600000
54208500000
52021900000
58910000000
..
EGY
Egypt, Arab Rep.
NY.GDP.MKTP.CD
GDP ($)
0
0
43130415154.5
36970555121.6
41855483504.0
46578631212.6
51897983715.6
60159244485.2
67629717779.7
78436575743.9
84828807269.5
90710703939.5
99838540997.3
97632008050.9
87850680572.8
82923680621.5
78845185709.4
89685724889.2
1.07484034648e+11
1.30472894495e+11
1.62836363636e+11
1.88984088127e+11
2.18912422332e+11
..
EMU
Euro area
NY.GDP.MKTP.CD
GDP ($)
0
0
5.68868165254e+12
5.90837740978e+12
6.51280719064e+12
5.96416192703e+12
6.30993284584e+12
7.28892229627e+12
7.37003015631e+12
6.72874039473e+12
6.90726469272e+12
6.87500659948e+12
6.26200640799e+12
6.34980373938e+12
6.90984970895e+12
8.53717126179e+12
9.77955327744e+12
10153303046270
1.07600098208e+13
1.23644637484e+13
1.35517205683e+13
1.24389005198e+13
1.21745234894e+13
..
ERI
Eritrea
NY.GDP.MKTP.CD
GDP ($)
0
0
..
..
477101651.648
467876293.707
531688311.688
578015625
693535954.19
686494476.138
745526149.499
688921325.712
633600000
687595191.093
675480056.974
870232527.976
1109048050.77
1098393404.43
1211186991.87
1317983739.84
1380162601.63
1856715447.15
2117008130.08
..
ESP
Spain
NY.GDP.MKTP.CD
GDP ($)
0
0
5.20968164871e+11
5.60395839552e+11
6.1258391045e+11
5.09818861681e+11
5.15146428394e+11
5.9675073392e+11
6.22428740313e+11
572637500000
6.00838623455e+11
6.1787982101e+11
5.8067348443e+11
6.09107829978e+11
6.86246941464e+11
8.83667042889e+11
1.0442991687e+12
1.13016962642e+12
1.23476775125e+12
1.4419411528e+12
1.59391218369e+12
1.46408869712e+12
1.40740529801e+12
..
EST
Estonia
NY.GDP.MKTP.CD
GDP ($)
0
0
5009758611.67
4784154516.12
3986615193.95
3859654597.86
3964933826.45
4353053090.87
4728686725.96
5051702326.92
5598168503.38
5705472609.73
5675782344.97
6240081240.35
7324477178.87
9845350163.1
12031313315.8
13903289149.5
16604835552.7
21383914640.5
23517187207.8
19083960202.5
18673908194.1
..
ETH
Ethiopia
NY.GDP.MKTP.CD
GDP ($)
0
0
12082576935.3
13361446739.2
14098012280.8
8763557094.07
6875170145.31
7605674115.75
8482883272.62
8890826692.79
8069437010.95
7827068144.67
8179533779.17
8168590426.73
7789548644.4
8556184065.69
10053969882.4
12306605472.9
15164485977.4
19552720846.3
26642461516.2
31962250072.0
29717009195.6
..
FIN
Finland
NY.GDP.MKTP.CD
GDP ($)
0
0
1.38844658684e+11
1.25243346567e+11
1.10128749668e+11
87322785468.9
1.00561183836e+11
1.30699891068e+11
1.28222883769e+11
1.22909174207e+11
1.29670672007e+11
1.30217344982e+11
1.21715496591e+11
1.2456196868e+11
1.35084697911e+11
1.64126410835e+11
1.88918068205e+11
1.95626274685e+11
2.0779636225e+11
2.45952167831e+11
2.70478631853e+11
2.3798939491e+11
2.38801324503e+11
..
FJI
Fiji
NY.GDP.MKTP.CD
GDP ($)
0
0
1337024782.23
1383843860.12
1531803060.55
1635426125.31
1825285158.12
1970347720.97
2129266728.43
2093994597.22
1656784779.55
1942170999.19
1684109743.49
1660102345.6
1842691481.09
2315935752.72
2727507212.93
3006725014.78
3103099942.23
3379863773.65
3565203889.59
2824829171.14
3009445285.18
..
FRA
France
NY.GDP.MKTP.CD
GDP ($)
0
0
1.24416335381e+12
1.24540588304e+12
1.37296802974e+12
1.29700393792e+12
1.36800767958e+12
1.57206071757e+12
1.57277561226e+12
1.42149213306e+12
1.46887247054e+12
1.45643010867e+12
1.32633443892e+12
1.33830255034e+12
1.45203049125e+12
1.79221489842e+12
2.05567773618e+12
2.13655536487e+12
2.25570547745e+12
2.58238973336e+12
2.83179406013e+12
2.62450423217e+12
2560002000000
..
FRO
Faeroe Islands
NY.GDP.MKTP.CD
GDP ($)
0
0
..
..
..
..
..
..
..
..
1105688872.97
1125684470.06
1062339943.83
1154899793.34
1268445919.41
1486861878.96
1683997930.26
1730894295.39
1970135198.76
2278229880.41
2412859692.83
2198138372.29
..
..
FSM
Micronesia, Fed. Sts.
NY.GDP.MKTP.CD
GDP ($)
0
0
147200000
166200000
178100000
198400000
202500000
221192336.906
218710317.017
202827970.967
213109914.712
213221020.109
225912798.174
230577191.897
235070329.633
238132902.857
239100000
248300000
251300000
255700000
261800000
276500000
287383040
..
GAB
Gabon
NY.GDP.MKTP.CD
GDP ($)
0
0
5952310992.27
5402937193.82
5592407750.92
4378645081.02
4190854791.07
4958830011.02
5694067051.12
5326811383.14
4483354803.72
4662985220.07
5067838984.24
4712839681.33
4931503861.9
6054886441.84
7178135732.85
8665738964.26
9545984815.16
11570855623.3
14532816809.5
10950127945.8
13011421194.4
..
GBR
United Kingdom
NY.GDP.MKTP.CD
GDP ($)
0
0
1.01257634943e+12
1.05584479718e+12
1.09175149175e+12
9.81097780444e+11
1.06058616468e+12
1.15711851034e+12
1.21954134165e+12
1.35902750491e+12
1.45594898973e+12
1.50255622068e+12
1.47758057195e+12
1.4708910321e+12
1.61205635492e+12
1.86080979592e+12
2.2024900216e+12
2.28011374587e+12
2.44414861809e+12
2.81097180314e+12
2.65748226911e+12
2.17315424532e+12
2.24607909675e+12
..
GEO
Georgia
NY.GDP.MKTP.CD
GDP ($)
0
0
7737994864.03
6337314651.84
3691110627.68
2701180603.9
2513870708.8
2693731879.97
3094915506.1
3510540843.58
3613500141.71
2800024342.13
3057453460.85
3219487823.05
3395778661.4
3991374539.82
5125763952.16
6411141777.63
7745401717.71
10172869673.6
12795044475.2
10766809096.2
11667377223.7
..
GHA
Ghana
NY.GDP.MKTP.CD
GDP ($)
0
0
5886003649.32
6599578348.89
6412625105.01
5965704271.66
5440519990.86
6457441706.32
6925530171.96
6884024595.94
7474018853.52
7709811561.08
4977488790.22
5309158304.0
6159567360.42
7624164925.55
8871872034.96
10720345993.4
20388317031.7
24632480407.1
28526922399.3
26169336383.8
31305891329.2
..
GIB
Gibraltar
NY.GDP.MKTP.CD
GDP ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GIN
Guinea
NY.GDP.MKTP.CD
GDP ($)
0
0
2666616176.92
3014890569.04
3284625277.16
3279063317.63
3383218922.79
3693753379.06
3869032270.92
3783788551.08
3588375984.48
3461282189.7
3112362568.48
2892340075.98
3053354383.62
3446417029.11
3666340827.63
2937072435.48
2821345794.39
4209331037.16
3778260000
4164652641.88
4510589866.06
..
GMB
Gambia, The
NY.GDP.MKTP.CD
GDP ($)
0
0
316922483.4
316778362.082
347446023.593
366381861.126
363032586.722
381945341.365
391832142.751
409636274.327
416555766.813
431935044.693
420894585.161
417921838.797
369731927.242
367172050.099
400799200.799
461032370.954
508301859.902
650934673.367
821917808.219
733483568.075
806523947.75
..
GNB
Guinea-Bissau
NY.GDP.MKTP.CD
GDP ($)
0
0
243961622.908
257150338.216
226313574.426
236880892.391
235620756.355
253960479.168
270419112.954
268550722.155
206457614.489
224446335.712
215455490.323
199034150.792
203613702.246
475221954.577
522654072.395
572851536.58
578517470.214
690721455.89
846854479.422
834691371.569
878517652.02
..
GNQ
Equatorial Guinea
NY.GDP.MKTP.CD
GDP ($)
0
0
132136515.307
130595413.306
154184144.878
152130369.832
125745167.443
163980056.856
259074043.423
497741982.027
455800102.924
872015592.009
1254223037.34
1736112613.06
2146760325.08
2952360964.27
5240842353.46
8217298403.81
9603185319.3
12574935589.7
18423399315.3
12222203056.1
14006505450.5
..
GRC
Greece
NY.GDP.MKTP.CD
GDP ($)
0
0
94200829815.1
1.01179582763e+11
1.11843279478e+11
1.0470721629e+11
1.12206191587e+11
1.31718377526e+11
1.39293479219e+11
1.35887062274e+11
1.36513785772e+11
1.34407989985e+11
1.25558321824e+11
1.3103155551e+11
1.4738864823e+11
1.94617482084e+11
2.3003933815e+11
2.42275723331e+11
2.650718964e+11
3.10788749218e+11
3.47042265251e+11
3.26483368922e+11
3.04865067454e+11
..
GRD
Grenada
NY.GDP.MKTP.CD
GDP ($)
0
0
221070360.54
241570366.104
250914816.309
250259242.988
261777773.155
276296291.417
294651846.648
304940747.207
340814808.796
379629397.74
429579259.826
422328925.313
437249042.886
480225509.75
469329346.137
553861241.834
564437837.578
610316806.549
678487940.517
614844433.586
627851840.764
..
GRL
Greenland
NY.GDP.MKTP.CD
GDP ($)
0
0
1018977225.44
1016500016.29
1037916105.23
927214127.934
1005887592.04
1208953359.0
1197515637.92
1072154406.79
1149858126.96
1131555107.05
1068024993.99
1086170638.73
1169136691.35
1426452030.1
1644951892.18
1702543476.56
1738432116.44
2121759848.42
1739579593.57
1267711816.12
..
..
GTM
Guatemala
NY.GDP.MKTP.CD
GDP ($)
0
0
7650125576.46
9406097461.11
10440842291.6
11399942820.4
12983235118.7
14656917900.2
15781579950.4
17788657193.9
19393672243.9
18317089473.1
19290566570.0
18702816768.5
20776640958.3
21917582105.1
23965280312.1
27211230373.8
30231130543.0
34113106486.1
39136286496.2
37679806311.5
41190056305.9
..
GUM
Guam
NY.GDP.MKTP.CD
GDP ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GUY
Guyana
NY.GDP.MKTP.CD
GDP ($)
0
0
396582263.899
336708410.129
368281383.485
442273443.731
540874922.208
621626786.254
705406032.261
749138004.174
717530696.527
694754983.97
712667925.077
696281468.796
722460911.623
741929343.016
785918769.749
824880550.344
1458449635.42
1740335165.86
1922600611.44
2025496445.21
2222102182.33
..
HIC
High income
NY.GDP.MKTP.CD
GDP ($)
0
0
1.8207044285e+13
1.92260402812e+13
2.06459294488e+13
20824579519265
2.23282419256e+13
2.46991908864e+13
2.48675798106e+13
2.44704770484e+13
2.45488860939e+13
2.58285530188e+13
2.63421112811e+13
2.60887404766e+13
2.72307089465e+13
3.05414237765e+13
3.39794757221e+13
35863751780669
37858917379903
4.14623604035e+13
4.40914339653e+13
41399322905400
4.30190279238e+13
..
HKG
Hong Kong SAR, China
NY.GDP.MKTP.CD
GDP ($)
0
0
76887034659.8
88833354780.6
1.04002325281e+11
1.1995811789e+11
1.35542184265e+11
1.4422996876e+11
1.58965769144e+11
1.76312232926e+11
1.66908762265e+11
1.63283016436e+11
1.69121013113e+11
1.6659310787e+11
1.63780952483e+11
1.58572061515e+11
1.65886363636e+11
1.77771729813e+11
1.89931598258e+11
2.07087259793e+11
2.15365875584e+11
2.09283263242e+11
2.24457859239e+11
..
HND
Honduras
NY.GDP.MKTP.CD
GDP ($)
0
0
3048896180.84
3068462060.12
3419474978.87
3481990761.34
3432356578.82
3911053180.4
4034037162.16
4663193916.35
5202215657.31
5372543554.01
7105541205.28
7566501475.59
7776438040.83
8233948656.82
8871111446.51
9757258851.26
10917599271.8
12392440366.2
13969292165.0
14317854031.9
15400341887.6
..
HRV
Croatia
NY.GDP.MKTP.CD
GDP ($)
0
0
24782163174.4
18156461130.3
10240621326.4
10902601513.9
14578386962.3
22045607399.3
23341405840.2
23501676219.7
25106400615.7
23044198487.6
21492679531.0
23052044812.6
26524896398.2
34143409062.0
41003558915.7
44821408830.9
49855078905.4
59319467680.8
69911233237.8
63435948447.2
60851860676.6
..
HTI
Haiti
NY.GDP.MKTP.CD
GDP ($)
0
0
..
3476346281.36
2111405825.68
1806285587.05
2124933516.03
2695499730.34
2970865202.66
3242667331.21
3757500381.23
4088703119.66
3664503845.57
3507981945.54
3214632478.63
2826481071.96
3660678111.75
4154243480.64
4879740567.55
5971284337.51
6407707284.46
6478628512.62
6709802246.4
..
HUN
Hungary
NY.GDP.MKTP.CD
GDP ($)
0
0
33056134799.5
33429035926.9
37254463739.4
38595683505.4
41521516338.2
44656306509.3
45162689435.3
45723577830.6
47049233137.2
48044272335.9
47885455753.6
53190345128.5
66502083791.2
84326267609.8
1.02076243244e+11
1.10195442987e+11
1.12790698227e+11
1.37897144102e+11
1.55443541078e+11
1.28764022899e+11
1.30418835184e+11
..
IDN
Indonesia
NY.GDP.MKTP.CD
GDP ($)
0
0
1.14426498045e+11
1.28167999847e+11
1.39116270052e+11
1.58006849879e+11
1.76892148243e+11
2.02132032844e+11
2.27369671349e+11
2.15748854647e+11
95445548017.4
1.40001352527e+11
1.65021047883e+11
1.60446947638e+11
1.95660611034e+11
2.34772458818e+11
2.56836883305e+11
2.85868610017e+11
3.64570525997e+11
4.32105253653e+11
5.10226662255e+11
5.39352374398e+11
7.06558240892e+11
..
IMY
Isle of Man
NY.GDP.MKTP.CD
GDP ($)
0
0
..
..
..
..
..
914727080.643
1023086918.63
1180919719.41
1382548249.78
1567465656.85
1563667799.62
1614595290.92
1897606791.43
2264911806.9
2758117365.05
2915710378.28
3437450711.55
4075664785.25
..
..
..
..
IND
India
NY.GDP.MKTP.CD
GDP ($)
0
0
3.17466616136e+11
2.67523504824e+11
2.45553170108e+11
2.76037365896e+11
3.23506143586e+11
3.56298991324e+11
3.88343910828e+11
4.1091516704e+11
4.16252442323e+11
4.50476199268e+11
4.60182031503e+11
4.77848859031e+11
5.07189954396e+11
5.9946138981e+11
7.21573248762e+11
8.34035801005e+11
9.51339358746e+11
1.24242625334e+12
1.21378256975e+12
1.38064084378e+12
1.72901024215e+12
..
IRL
Ireland
NY.GDP.MKTP.CD
GDP ($)
0
0
47852276158.5
48319942439.0
54270256540.8
50872394991.3
55414618700.7
67101825431.8
74057237196.3
81180205000
88007645411.0
96292879615.4
96754681824.2
1.04819388537e+11
1.22777745867e+11
1.58022711467e+11
1.85436542614e+11
2.01852365462e+11
2.2247359543e+11
2.59189260141e+11
2.63652850517e+11
2.21778533697e+11
2.0389218835e+11
..
IRN
Iran, Islamic Rep.
NY.GDP.MKTP.CD
GDP ($)
0
0
1.16035029649e+11
..
..
60088309490.6
67128216022.7
90829495171.4
1.10573439131e+11
1.05298720965e+11
1.02661888397e+11
1.04656040168e+11
1.01286514977e+11
1.15438386682e+11
1.16420833374e+11
1.35409681532e+11
1.63226579221e+11
1.92014940324e+11
2.22880533511e+11
2.86057933326e+11
3.38187289005e+11
3.31014973186e+11
..
..
IRQ
Iraq
NY.GDP.MKTP.CD
GDP ($)
0
0
..
..
..
..
..
..
..
10113863358.3
10468730246.9
17942362576.1
25857106735.8
18936094867.8
18969591211.0
..
25755086058.7
31316963994.6
45080072236.6
56989916308.0
86530068728.5
65192699145.3
82150312820.5
..
ISL
Iceland
NY.GDP.MKTP.CD
GDP ($)
0
0
6372905073.11
6807365897.52
6976080330.66
6126456175.15
6294803496.78
7018100153.5
7330965239.1
7422994705.54
8291725774.15
8742600398.42
8697298234.46
7922983042.27
8907207933.08
10967706061.9
13233600471.3
16301846837.0
16651142958.7
20428033904.2
16863767020.3
12094119523.4
12593984445.9
..
ISR
Israel
NY.GDP.MKTP.CD
GDP ($)
0
0
52490325648.2
59170288069.9
65771216221.0
65925582473.0
74669718186.6
96064819727.3
1.05370179506e+11
1.08389866534e+11
1.09886581932e+11
1.10790638718e+11
1.24749221298e+11
1.23059181587e+11
1.13010257926e+11
1.18903844887e+11
1.26842927265e+11
1.3424688057e+11
1.45843619552e+11
1.66989605901e+11
2.02101449275e+11
1.95391755461e+11
2.17332709281e+11
..
ITA
Italy
NY.GDP.MKTP.CD
GDP ($)
0
0
1.13340660407e+12
1.19526470314e+12
1.26580012097e+12
1.02098939092e+12
1.0539242243e+12
1.12604143112e+12
1.2596029803e+12
1.19232206912e+12
1.2170865295e+12
1.20082152674e+12
1.0973441312e+12
1.11735848143e+12
1.21892124788e+12
1.50717124379e+12
1.72782547292e+12
1.77769395364e+12
1.86338093637e+12
2.11620171959e+12
2.29649739425e+12
2111157906995
2.05141215337e+12
..
JAM
Jamaica
NY.GDP.MKTP.CD
GDP ($)
0
0
4592208211.54
4106205952.24
3535452385.98
4891215396.79
4938132517.81
5813471981.64
6527302707.85
7472532258.02
8742153397.26
8830909008.27
9008629729.41
9104515930.21
9676893928.79
9398942821.37
10134991341.8
11151727459.3
11989334128.6
12893737820.6
14121426276.7
12651603067.3
13994534274.7
..
JOR
Jordan
NY.GDP.MKTP.CD
GDP ($)
0
0
4020267827.01
4193336133.69
5310833151.19
5605775321.54
6237267189.0
6727454310.65
6928490840.95
7248048122.68
7914118276.95
8151541084.48
8463892909.23
8980439920
9584232160
10197756160
11411390546.9
12588665467.8
15645466528.1
17765381659.9
22696902203.6
25092339119.3
27573536000
..
JPN
Japan
NY.GDP.MKTP.CD
GDP ($)
0
0
3.05803822712e+12
3.48476950293e+12
3.7961142128e+12
4.35001232039e+12
4.77899240567e+12
5.26438024402e+12
4.64254438582e+12
4.2618420063e+12
3.8570279431e+12
4.3687347902e+12
4.6674483021e+12
4.09548428399e+12
3.91833508789e+12
4.22909685294e+12
4.60592090061e+12
4.55220018509e+12
4.36258953215e+12
4.37794384904e+12
4.87986145377e+12
5.03298275838e+12
5.49781256809e+12
..
KAZ
Kazakhstan
NY.GDP.MKTP.CD
GDP ($)
0
0
26932728898.8
24881135586.4
24906939560.1
23409027475.7
21250839258.1
20374307047.1
21035357832.8
22165932063.0
22135245413.2
16870817134.8
18291990619.1
22152689129.6
24636598581.0
30833692831.4
43151647002.6
57123671733.9
81003864915.5
1.04853480212e+11
1.33441571814e+11
1.15306081356e+11
1.4298693156e+11
..
KEN
Kenya
NY.GDP.MKTP.CD
GDP ($)
0
0
8590574252.4
8152105054.25
8220718082.65
5751786609.5
7148143144.01
9046331923.21
12045836991.7
13115729422.0
14093228424.7
12896050251.7
12691278914.2
12986519857.4
13149263398.5
14903634448.2
16096109637.5
18737922545.5
22502239913.5
27173670133.7
30031427402.6
29375775193.8
31408632915.3
..
KGZ
Kyrgyz Republic
NY.GDP.MKTP.CD
GDP ($)
0
0
2674000000
2570833333.33
2316562400
2028295454.55
1681006993.01
1661018518.52
1827570586.17
1767864035.72
1645963749.83
1249062025.14
1369691955.02
1525113501.11
1605640633.42
1919012780.97
2211535311.63
2459876151.93
2834168889.42
3802566170.82
5139957784.91
4690031791.61
4616156122.18
..
KHM
Cambodia
NY.GDP.MKTP.CD
GDP ($)
0
0
..
..
..
2533727592.03
2791435218.71
3441205624.34
3506695722.7
3443413331.64
3120425502.57
3517242477.23
3654031716.28
3979813387.84
4284028138.35
4658246906.66
5337833255.95
6293046162.11
7274424518.57
8639164917.04
10351829065.6
10457584204.1
11343440018.0
..
KIR
Kiribati
NY.GDP.MKTP.CD
GDP ($)
0
0
28413863.0864
47797290.4757
49724297.1197
48613513.7764
56200396.1471
57610362.1739
67866700.0104
69151989.7588
67096993.6868
70595807.352
68239320.705
63810762.0518
74173806.5131
93517283.9483
102405530.24
108938510.695
109671822.176
127854317.321
132506609.311
128004027.814
151175993.98
..
KNA
St. Kitts and Nevis
NY.GDP.MKTP.CD
GDP ($)
0
0
159200364.596
164574444.501
181815558.271
198341104.645
221740748.677
230740736.666
245555551.219
275089909.077
287324365.95
305008729.111
326203986.927
342746455.583
351318063.994
362654126.532
399585548.499
438718510.77
487137028.434
513233324.269
570140740.741
526214814.815
526007407.407
..
KOR
Korea, Rep.
NY.GDP.MKTP.CD
GDP ($)
0
0
2.63776986549e+11
3.08185041249e+11
3.29885864344e+11
3.62135746945e+11
4.23434190055e+11
5.17118129838e+11
5.57643607434e+11
5.1628294211e+11
3.45432412376e+11
4.45399303511e+11
5.33384027729e+11
5.04585783004e+11
5.7592890999e+11
6.43762388701e+11
7.21975255824e+11
8.44863004335e+11
9.51773478985e+11
1.04923595119e+12
9.31402204982e+11
8.34060441841e+11
1.01448315831e+12
..
KSV
Kosovo
NY.GDP.MKTP.CD
GDP ($)
0
0
..
..
..
..
..
..
..
..
..
..
1849196082.06
2535333631.89
2702427046.94
3355083116.59
3639935347.51
3743116980.19
3915494726.27
4677361256.46
5641557748.48
5434843011.95
5590728476.82
..
KWT
Kuwait
NY.GDP.MKTP.CD
GDP ($)
0
0
18427778571.1
11009955543.0
19858555904.7
23941392354.5
24848484744.5
27191687674.1
31492937200.9
30350433060.0
25946185993.6
30120888963.7
37718011468.6
34890773740.2
38138801497.2
47875837662.2
59440511981.8
80797945205.5
1.01561153806e+11
1.14721830986e+11
1.48782683751e+11
1.09462798286e+11
..
..
LAC
Latin America & Caribbean
NY.GDP.MKTP.CD
GDP ($)
0
0
1.11650686304e+12
1.18636528201e+12
1.28710479335e+12
1.40314404381e+12
1.61215307801e+12
1.77055656611e+12
1.91137710564e+12
2.08467490136e+12
2.08440815597e+12
1.85158131071e+12
2.05402201505e+12
1.99194793199e+12
1.77657152617e+12
1.90571253106e+12
2.20016744018e+12
2.66910719122e+12
3.14172735967e+12
3.70986211214e+12
4.32148414617e+12
4.01645492135e+12
4.96941611129e+12
..
LAO
Lao PDR
NY.GDP.MKTP.CD
GDP ($)
0
0
865559856.198
1028087947.26
1127806917.74
1327748654.64
1543606381.87
1763536299.22
1873671510.57
1747011884.41
1280177847.19
1454430642.02
1735155219.37
1768619058.35
1829660932.68
2148830163.56
2507094677.57
2738209638.91
3497318141.95
4262812788.85
5497625802.65
6095274080.07
7492313581.32
..
LBN
Lebanon
NY.GDP.MKTP.CD
GDP ($)
0
0
2838485397.89
4451497337.42
5545921820.96
7535259914.43
9599127189.45
11718795352.1
13690217120.6
15751867489.4
17247179483.2
17391056436.8
17260364842.5
17649751243.8
19152238806.0
20082918739.6
21801658374.8
21838805970.1
22437147595.4
25056716417.9
30079601990.0
34924709784.4
39154916945.8
..
LBR
Liberia
NY.GDP.MKTP.CD
GDP ($)
0
0
384400000
348000000
223500000
160400000
132200000
134800000
159400000
295900000
359600012.473
441800017.77
560900012.218
543000031.666
559300023.582
410200003.557
459999996.156
530200009.336
611859674.737
734933279.197
842507277.56
879464612.591
986201593.737
..
LBY
Libya
NY.GDP.MKTP.CD
GDP ($)
0
0
28904898117.7
31992732972.4
33887047909.3
30660051910.5
28610549763.5
25541379186.6
27884615384.6
30700897874.9
27251534529.6
30484399895.6
33896600870.8
28420321951.5
19842519685.0
24062500000
33384615384.6
44000000000
56484375000
71803278688.5
93167701863.4
62360446571.0
..
..
LCA
St. Lucia
NY.GDP.MKTP.CD
GDP ($)
0
0
397192573.726
431470356.824
477996270.077
492029620.94
517566663.452
560811083.429
566370360.368
604411088.585
657529594.314
692507395.177
707525925.497
687048136.014
705003691.253
738214801.777
799237022.922
858055540.402
930935634.942
957841412.225
986073137.02
954222222.222
931955555.556
..
LIC
Low income
NY.GDP.MKTP.CD
GDP ($)
0
0
1.44164613931e+11
1.45353810598e+11
1.38116415677e+11
1.31604888474e+11
1.21968668544e+11
1.39655040292e+11
1.5610572431e+11
1.62782710492e+11
1.6634995598e+11
1.65223166305e+11
1.64799150333e+11
1.65890328851e+11
1.74503007315e+11
1.92047334231e+11
2.15504106026e+11
2.38035761505e+11
2.60313951197e+11
3.0565736765e+11
3.63879925993e+11
3.83919622961e+11
4.13912655892e+11
..
LIE
Liechtenstein
NY.GDP.MKTP.CD
GDP ($)
0
0
1421508901.19
1484160640.17
1631176617.19
1673085622.79
1948128895.93
2428524749.69
2504013003.94
2298390584.38
2479698578.66
2664105901.19
2483890593.71
2491800558.78
2688617884.87
3070803431.48
3454374260.74
3658356377.81
3988775843.87
4602346923.4
4929414914.73
4826167676.36
..
..
LKA
Sri Lanka
NY.GDP.MKTP.CD
GDP ($)
0
0
8032551173.24
9000362581.58
9703011635.87
10338679635.8
11717604208.8
13029697561.0
13897738375.2
15091930835.7
15794972847.2
15656342015.9
16330810303.9
15746224409.8
17102623876.2
18881765437.2
20662525941.3
24405791044.8
28267410542.5
32351184234.3
40715249700.0
42067965895.2
49551751282.5
..
LMC
Lower middle income
NY.GDP.MKTP.CD
GDP ($)
0
0
8.70763216745e+11
8.42407065318e+11
8.38803069093e+11
8.8357413369e+11
9.5650369848e+11
1.06725383334e+12
1.16653071558e+12
1.20406971345e+12
1.08077920763e+12
1.18012436247e+12
1.25872903743e+12
1.26731485843e+12
1.35915873744e+12
1.56073949353e+12
1.81518821674e+12
2.10382024833e+12
2.51431555033e+12
3.1087590906e+12
3.49855354138e+12
3.57603156213e+12
4.3120195827e+12
..
LMY
Low & middle income
NY.GDP.MKTP.CD
GDP ($)
0
0
3.69370740416e+12
3.74193481532e+12
3.86513545096e+12
4.05468703298e+12
4.39010905053e+12
4.97136012749e+12
5.41191984178e+12
5.72293306047e+12
5.53369641663e+12
5.38161960385e+12
5.8721183874e+12
5.92520166621e+12
6.04452110605e+12
6.90432523112e+12
8.21779238491e+12
9.76187907005e+12
1.16021707563e+13
1.43510041266e+13
1.71773320767e+13
1.66871508699e+13
1.99974335796e+13
..
LSO
Lesotho
NY.GDP.MKTP.CD
GDP ($)
0
0
540781148.186
599015735.044
708187243.686
705874860.409
738211154.692
814280442.525
796081272.539
837654100.184
800117786.22
783167363.671
745832990.092
686484199.486
638601203.291
947163200.752
1234520116.55
1354859672.29
1414900686.7
1581173531.67
1600614922.77
1720263875.28
2132495560.72
..
LTU
Lithuania
NY.GDP.MKTP.CD
GDP ($)
0
0
10506695073.8
10287023246.2
8562311026.89
7424597884.35
6958636949.81
7904895790.99
8426600000
10128700000
11254050000
10971375000
11434200000
12159225000
14163949141.9
18608709856.6
22551543054.5
25962254180.8
30088510798.1
39103973050.6
47252926428.7
36846183172.3
36306384146.1
..
LUX
Luxembourg
NY.GDP.MKTP.CD
GDP ($)
0
0
12670503211.0
13716986284.7
15387195181.9
15790566791.0
17551791415.5
20676382047.1
20581889250.8
18516801984.7
19353856412.5
21187726401.0
20269578035.7
20198926174.5
22578863165.8
29158352144.5
34091250551.0
37659180221.9
42552321358.5
51312004029.4
58071556743.7
52890560858.4
55095629139.1
..
LVA
Latvia
NY.GDP.MKTP.CD
GDP ($)
0
0
7447002856.76
6756418263.69
4848056772.31
4467987271.3
5060854731.05
5235719778.67
5585292782.57
6133234179.75
6616957681.24
7288524472.5
7833068425.39
8313047743.57
9314784080.03
11186452600.7
13761569545.0
16041840426.3
19935046397.2
28765687041.7
33669367720.5
25875781250
24009680460.0
..
MAC
Macao SAR, China
NY.GDP.MKTP.CD
GDP ($)
0
0
2990177409.3
3464968016.79
4581209813.98
5280251270.79
5868533723.6
6567039082.31
6398039390.44
6513395734.33
6186444076.8
5916989914.66
6101795437.27
6187141345.62
6823847934.87
7924786814.94
10250791553.4
11507945226.0
14211125553.0
18598613720.9
21564640135.9
21736141478.5
..
..
MAF
St. Martin (French part)
NY.GDP.MKTP.CD
GDP ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
NY.GDP.MKTP.CD
GDP ($)
0
0
25820725667.7
27836559831.4
28450632466.6
26801064630.6
30351265891.6
32986182669.8
36638763638.9
33414747559.6
40021694630.9
39734023742.8
37020609825.0
37724674865.1
40416114690.1
49822651701.7
56948015336.0
59523857868.0
65637107776.3
75226318359.4
88882967741.9
91374705225.3
91196031840.3
..
MCO
Monaco
NY.GDP.MKTP.CD
GDP ($)
0
0
2481316053.85
2480497547.85
2737066955.91
2574439973.17
2720297738.94
3130270918.79
3137848783.08
2840182191.77
2934578788.86
2906009307.67
2647883820.19
2671401082.76
2905973022.17
3588988600.7
4110348444.49
4280072625.98
4663488363.1
5974371695.95
6581080163.11
6108770905.81
..
..
MDA
Moldova
NY.GDP.MKTP.CD
GDP ($)
0
0
3592856080.03
3094567110.11
2319243406.67
2371812923.88
1702314352.74
1752995313.77
1695130483.84
1930071445.21
1639497206.7
1170785047.79
1288420222.95
1480656884.38
1661818168.42
1980901553.51
2598231467.44
2988172424.47
3408454197.89
4402495921.29
6054806100.85
5439439763.81
5808796184.01
..
MDG
Madagascar
NY.GDP.MKTP.CD
GDP ($)
0
0
3081403411.64
2653082107.0
3024385657.39
3370770572.25
2977008504.17
3159853282.93
3994890762.58
3545686958.21
3738620505.53
3717416630.39
3877575177.26
4529469041.24
4397127092.24
5473940630.41
4363835956.19
5038577100.25
5515222624.39
7342683288.4
9394736595.65
8487968571.88
8720543553.67
..
MDV
Maldives
NY.GDP.MKTP.CD
GDP ($)
0
0
215089005.236
244468292.683
284853358.562
322326642.336
355884383.089
398988954.97
450382327.952
508223603.229
540096400.17
589239757.009
624337143.585
625066369.281
640703125
692421875
776484375
749765625
915390625
1054375000
1260234375
1318671875
1479781250
..
MEX
Mexico
NY.GDP.MKTP.CD
GDP ($)
0
0
2.62709785593e+11
3.14453895612e+11
3.63609268789e+11
4.03195508734e+11
4.21725049058e+11
2.86698251724e+11
3.32908981436e+11
4.01480129436e+11
4.2121480322e+11
4.81202434427e+11
5.81426421971e+11
6.22092637151e+11
6.49075575302e+11
7.00324664927e+11
7.5977747217e+11
8.48947464609e+11
9.52276430547e+11
1.0359295225e+12
1.09617633498e+12
8.82786797992e+11
1.0396615156e+12
..
MHL
Marshall Islands
NY.GDP.MKTP.CD
GDP ($)
0
0
68691000
72218800
79709200
87059000
94595000
105239000
97037000
92184200
95657000
95360000
107573000
110480000
119286000
123788000
133300000
138600000
144600000
151000000
152000000
152800000
155800000
..
MIC
Middle income
NY.GDP.MKTP.CD
GDP ($)
0
0
3.55413111333e+12
3.60111069718e+12
3.72993587687e+12
3.92424207605e+12
4.26658789369e+12
4.83015874611e+12
5.25469169129e+12
5.55864758069e+12
5.36716930435e+12
5.21671525562e+12
5.705459809e+12
5.7577070266e+12
5.86900440303e+12
6.71028091365e+12
7.99839504706e+12
9.51708495021e+12
1.13311485344e+13
1.40301674728e+13
1.67950495912e+13
1.62898433689e+13
1.95617210903e+13
..
MKD
Macedonia, FYR
NY.GDP.MKTP.CD
GDP ($)
0
0
4471828621.91
4694744806.59
2316618514.75
2550194959.24
3381270266.71
4449375525.56
4422159848.94
3735312200.73
3571043201.51
3673288165.87
3586883988.96
3436961384.81
3791306757.66
4629520342.41
5368441930.36
5814726241.34
6373113830.34
8159825620.39
9834028812.98
9276517779.8
9118253199.96
..
MLI
Mali
NY.GDP.MKTP.CD
GDP ($)
0
0
2421179436.35
2422848180.89
2846471287.8
2677991265.83
1762717928.74
2466152468.31
2619098932.87
2475182970.21
2596836146.95
2570426031.06
2422469641.47
2629733711.67
3342815644.19
4362442242.56
4874185884.19
5305318991.42
5866095675.49
7146284975.07
8738080882.52
8964687644.28
9251388616.88
..
MLT
Malta
NY.GDP.MKTP.CD
GDP ($)
0
0
2547330284.04
2750215016.02
3021944632.33
2709194765.69
2998504391.78
3574740685.33
3671847264.62
3633453447.38
3809843648.75
3907960070.7
3893057246.27
3850924288.63
4233007168.22
4994073517.59
5607279373.68
5959813556.9
6462031685.4
7547856388.87
8413230936.25
7987432157.06
..
..
MMR
Myanmar
NY.GDP.MKTP.CD
GDP ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNA
Middle East & North Africa
NY.GDP.MKTP.CD
GDP ($)
0
0
2.65377720862e+11
2.46650536566e+11
2.67264375117e+11
2.70991764732e+11
2.76725766401e+11
3.15651481425e+11
3.63141324584e+11
3.73685081217e+11
3.84372503129e+11
4.06556283162e+11
4.31288827636e+11
4.34415264443e+11
4.25245292396e+11
4.73816358564e+11
5.46288763635e+11
6.30995601394e+11
7.39795076898e+11
9.01154090376e+11
1.11897955971e+12
1.06848088007e+12
..
..
MNE
Montenegro
NY.GDP.MKTP.CD
GDP ($)
0
0
..
..
..
..
..
..
..
..
..
..
984279596.4
1159891560
1284504508.58
1707662607.75
2073255525.2
2257181942.54
2695897628.9
3668857103.75
4519731946.68
4141382328.42
4003707165.45
..
MNG
Mongolia
NY.GDP.MKTP.CD
GDP ($)
0
0
2560785662.92
2379018323.23
1317611862.78
768401665.82
925817089.528
1452165052.55
1345719435.15
1180934217.4
1124440238.13
1057408608.44
1136896162.14
1267997923.03
1396555772.04
1595297301.46
1992066758.84
2523359940.71
3395917892.19
4234894168.16
5623236707.52
4583834427.36
6083047865.24
..
MNP
Northern Mariana Islands
NY.GDP.MKTP.CD
GDP ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MOZ
Mozambique
NY.GDP.MKTP.CD
GDP ($)
0
0
2463238802.85
2695475825.13
1968901449.82
2027650517.82
2162771442.39
2246791389.0
3178648857.48
3751832732.05
4240336762.55
4448023241.58
4248747769.46
4075057668.8
4201325196.38
4666190665.52
5697991419.08
6578515375.57
7096128500.86
8030015309.93
9891264915.12
9787997621.73
9586185528.38
..
MRT
Mauritania
NY.GDP.MKTP.CD
GDP ($)
0
0
1019600783.06
1130247027.63
1464392409.33
1249945001.96
1315932677.6
1415296645.19
1442598429.57
1401946882.22
1222433071.76
1194629187.74
1081168277.75
1121565583.39
1149656447.87
1285179087.4
1547861047.51
1857837742.16
2699180938.2
2837528880.96
3588611731.81
3027018188.62
3636296936.0
..
MUS
Mauritius
NY.GDP.MKTP.CD
GDP ($)
0
0
2653485952.13
2856889162.09
3224265824.19
3263363787.83
3558143642.14
4040342059.57
4421952121.49
4187375887.66
4169672974.23
4291171395.71
4582562397.94
4536544699.06
4767303153.04
5609931858.11
6385579077.78
6283845864.32
6507112279.85
7791974522.13
9641036888.45
8865125544.59
9728729228.53
..
MWI
Malawi
NY.GDP.MKTP.CD
GDP ($)
0
0
1880785391.19
2203538071.03
1799527046.09
2070646319.84
1181801219.65
1397457933.81
2281034088.69
2663348222.11
1750585419.5
1775921700.01
1743506520.29
1716502772.12
2665159241.85
2424655975.58
2625187646.93
2755429810.91
3116942711.16
3458333168.7
4074143554.3
4727486010.93
5106263006.66
..
MYS
Malaysia
NY.GDP.MKTP.CD
GDP ($)
0
0
44024178269.5
49133852000.3
59151288903.0
66894450252.2
74480816088.4
88832452511.7
1.00851784848e+11
1.00168847815e+11
72175310308.0
79148423191.1
93789738019.0
92783948532.7
1.00845527581e+11
1.10202369804e+11
1.2474947525e+11
1.3784828496e+11
1.56523433243e+11
1.86642151163e+11
2.21828443114e+11
1.93092897727e+11
2.37803850459e+11
..
MYT
Mayotte
NY.GDP.MKTP.CD
GDP ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NAM
Namibia
NY.GDP.MKTP.CD
GDP ($)
0
0
2350307518.86
2492290810.72
2837643854.48
2846613961.57
3251945055.73
3503088568.37
3491458823.18
3635229630.8
3398703829.25
3385824193.81
3908501440.92
3546869555.12
..
4934391534.39
6605804204.82
7261676364.21
7980502215.66
8805815602.84
8967523024.72
9182440405.95
12170331921.9
..
NCL
New Caledonia
NY.GDP.MKTP.CD
GDP ($)
0
0
2529310103.84
2653781596.46
2923764926.4
3070161471.04
3038727617.04
3628440274.67
3606968433.93
3291489840.57
3158806480.26
3056999988.09
2682347064.36
..
..
..
..
..
..
..
..
..
..
..
NER
Niger
NY.GDP.MKTP.CD
GDP ($)
0
0
2480680484.0
2327993642.79
2344994701.9
1606581743.71
1563220457.87
1880797332.94
1987780224.46
1845597711.25
2076743693.02
2018190752.95
1798365122.62
1945323583.98
2170481508.87
2731417756.37
3052898739.47
3405135477.41
3645126125.95
4290510300.1
5369911346.33
5259368130.36
5548814097.97
..
NGA
Nigeria
NY.GDP.MKTP.CD
GDP ($)
0
0
28472471050.9
27313352201.8
32710369045.8
21352759381.9
23663389441.5
28108826037.5
35299150000
36229368991.9
32143818181.8
34776040200.1
45983600313.3
47999775242.5
59116847820.7
67656023323.8
87845420491.9
1.1224860925e+11
1.46867334824e+11
1.65920866365e+11
2.07117912034e+11
1.68567245571e+11
1.93668738107e+11
..
NIC
Nicaragua
NY.GDP.MKTP.CD
GDP ($)
0
0
1009455501.91
1488804123.71
1792800000
1756454281.21
2977433035.71
3191142098.27
3320533491.4
3383442173.56
3572495062.42
3742404741.74
3936327817.18
4102656986.86
4026408421.05
4102111946.13
4466767106.09
4872941601.91
5230337507.41
5661593168.5
6372242896.56
6213677112.18
6551182431.26
..
NIU
Niue
NY.GDP.MKTP.CD
GDP ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NLD
Netherlands
NY.GDP.MKTP.CD
GDP ($)
0
0
2.94871112187e+11
3.03365157944e+11
3.36214285714e+11
3.27495253916e+11
3.51190216733e+11
4.18969256108e+11
4.17980392157e+11
3.86533770047e+11
4.02648300378e+11
4.11456424462e+11
3.85074626866e+11
4.00654138702e+11
4.37807265199e+11
5.38312641084e+11
6.09889925686e+11
6.38470626275e+11
6.77691901433e+11
7.82566743038e+11
8.73367268466e+11
7.94588542224e+11
7.83413245033e+11
..
NOR
Norway
NY.GDP.MKTP.CD
GDP ($)
0
0
1.17624486796e+11
1.19657406408e+11
1.28298978196e+11
1.18168337069e+11
1.24519241669e+11
1.48919844677e+11
1.60158299482e+11
1.58223061046e+11
1.51139149912e+11
1.59045286696e+11
1.68288418278e+11
1.70922851074e+11
1.9192702723e+11
2.25110307618e+11
2.58579581446e+11
3.02012572759e+11
3.36731931773e+11
3.87535804643e+11
4.46241134752e+11
3.78614194866e+11
4.14461767544e+11
..
NPL
Nepal
NY.GDP.MKTP.CD
GDP ($)
0
0
3627559252.21
3921476084.89
3401211581.29
3660041666.67
4066775510.2
4401104417.67
4521580381.47
4918691916.54
4856255044.39
5033642384.11
5494252207.91
5595578231.29
6050875806.66
6330476434.55
7273933992.75
8130258976.03
9074827536.25
10277619341.9
12572606352.9
12896793334.8
15701058165.6
..
NRU
Nauru
NY.GDP.MKTP.CD
GDP ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NZL
New Zealand
NY.GDP.MKTP.CD
GDP ($)
0
0
44503568893.8
41820222974.3
40744409331.1
45827934439.5
54263384779.3
62795370403.8
68870620813.1
64924816049.9
55199814253.4
57698043178.2
51599748518.0
52872980328.1
65463945931.3
86737675644.3
1.02210381042e+11
1.10977590642e+11
1.1056265939e+11
1.38317139637e+11
1.17816546667e+11
1.26679321012e+11
..
..
OMN
Oman
NY.GDP.MKTP.CD
GDP ($)
0
0
11685045607.8
11341482538.8
12452275788.3
12493108040.9
12918855771.2
13802600904.5
15277763467.8
15837451381.2
14085373242.7
15710148340.1
19867880550.3
19949284974.9
20049414986.1
21542262852.5
24673602279.5
30905071770.6
36803641389.0
41901170688.9
60566970579.3
46866060195.7
..
..
PAK
Pakistan
NY.GDP.MKTP.CD
GDP ($)
0
0
40010425587.1
45451961234.0
48635242274.2
51478354558.3
51894795657.8
60636071684.2
63320170084.4
62433340468.0
62191955814.3
62973855718.9
73952374969.8
72309738921.3
72306820396.2
83244801092.7
97977766197.7
109600000000
127500000000
1.43171182643e+11
1.63891676022e+11
1.61989976156e+11
1.74799150101e+11
..
PAN
Panama
NY.GDP.MKTP.CD
GDP ($)
0
0
5313200000
5842300000
6641400000
7252700000
7733900000
7906100000
9322100000
10084000000
10932500000
11456300000
11620500000
11807500000
12272400000
12933200000
14179300000
15464700000
17137000000
19794000000
23001600000
24080100000
26777100000
..
PER
Peru
NY.GDP.MKTP.CD
GDP ($)
0
0
26294371425.1
34544482512.9
36084008138.8
34834667901.9
44909998632.4
53674086051.4
55876101187.2
59222879292.1
56751679594.3
51509515206.4
53290390318.0
53935760985.2
56772338815.4
61346725170.1
69725009964.8
79385073422.3
92303809835.5
1.07233299365e+11
1.268227396e+11
1.26923120549e+11
1.53844936637e+11
..
PHL
Philippines
NY.GDP.MKTP.CD
GDP ($)
0
0
44311595229.9
45417505303.3
52976363147.6
54368183871.7
64084543195.2
74119868201.9
82848194394.8
82344374413.9
72207022471.6
82995145600.7
81026294681.2
76261998622.9
81357657790.4
83908205719.8
91371236939.2
1.03065972408e+11
1.22210719246e+11
1.49359920006e+11
1.73602533346e+11
1.68333540385e+11
1.99589447424e+11
..
PLW
Palau
NY.GDP.MKTP.CD
GDP ($)
0
0
76888000
83855000
82451000
75907000
83527000
95237000
108203000
113213000
117320000
113485000
119863000
124656000
119455000
122728000
133560000
145428000
156614000
164289000
166394363.535
164691982.802
169665680.682
..
PNG
Papua New Guinea
NY.GDP.MKTP.CD
GDP ($)
0
0
3219730365
3787352286.67
4377984100
4974662910
5502648500
4636113480
5155485419.7
4936605080
3789428160
3477060138.33
3521348154.8
3081029665.98
2999542369.42
3536459119.88
3927114456.84
4901584516.13
5598700444.44
6329292929.29
8010370370.37
7914594202.9
9480047958.81
..
POL
Poland
NY.GDP.MKTP.CD
GDP ($)
0
0
58975894567.4
76427193688.5
84325431461.5
85850630505.6
98515947588.2
1.3906172422e+11
1.56684025073e+11
1.57153896118e+11
1.7290150774e+11
1.67958110564e+11
1.71276118424e+11
1.90420821222e+11
1.9817952319e+11
2.16800940068e+11
2.52768889229e+11
3.03912340673e+11
3.41670072522e+11
4.25321393718e+11
5.29400755437e+11
4.3064533188e+11
4.68585140962e+11
..
PRI
Puerto Rico
NY.GDP.MKTP.CD
GDP ($)
0
0
30603800576
32287000576
34630402048
36922499072
39690600448
42647330816
45340798976
48186998784
54086402048
57841000448
61044899840
67897098240
..
..
..
..
..
..
..
..
..
..
PRK
Korea, Dem. Rep.
NY.GDP.MKTP.CD
GDP ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRT
Portugal
NY.GDP.MKTP.CD
GDP ($)
0
0
77579013528.3
87947086665.7
1.06040904589e+11
93639961862.6
98251393659.4
1.16418999602e+11
1.20986223031e+11
1.15472955975e+11
1.22555765806e+11
1.26113360324e+11
1.17014464713e+11
1.20033199105e+11
1.31886034256e+11
1.61416365688e+11
1.84794844574e+11
1.91175943889e+11
2.01060414657e+11
2.31741573803e+11
2.51925293881e+11
2.34232186741e+11
2.28538145695e+11
..
PRY
Paraguay
NY.GDP.MKTP.CD
GDP ($)
0
0
5264595869.25
6248792635.07
6445510897.82
6874792180.24
6940688924.3
8065811597.55
8744408795.7
8872095650.4
7915133552.91
7292038448.91
7071265939.08
6445764900.75
5045545608.57
5551643681.11
6949760482.96
7473231061.96
9275210016.39
12222355341.3
16873155276.1
14239629907.4
18474738676.0
..
PYF
French Polynesia
NY.GDP.MKTP.CD
GDP ($)
0
0
3181206304.82
3267367609.9
3558215110.25
3694600399.89
3522272321.41
3982374845.93
3954696873.75
3567062511.87
3775160797.39
3797016068.7
3447543137.94
..
..
..
..
..
..
..
..
..
..
..
QAT
Qatar
NY.GDP.MKTP.CD
GDP ($)
0
0
7360439207.65
6883516285.13
7646153766.45
7156593446.5
7374450565.49
8137911747.88
9059340116.93
11297801801.9
10255494737.4
12393131511.0
17759889598.1
17538461033.0
19363735705.7
23533790530.6
31675273812.4
43040108649.7
60496701553.2
80750821848.6
1.10712359447e+11
98313183979.8
..
..
ROM
Romania
NY.GDP.MKTP.CD
GDP ($)
0
0
38299106119.9
28846858763.1
25090303816.8
26361161947.6
30072623842.3
35477055618.9
35333677695.3
35285888482.0
42115494069.3
35592337082.9
37052636395.2
40180746113.2
45824529874.3
59507345650.3
75489440362.1
98913392472.0
1.22641508768e+11
1.692824919e+11
2.00071062765e+11
1.61110320401e+11
1.61623662681e+11
..
RUS
Russian Federation
NY.GDP.MKTP.CD
GDP ($)
0
0
5.16814258696e+11
5.09381638906e+11
4.60205414726e+11
4.35060123491e+11
3.95086555837e+11
3.95528488656e+11
3.91721392325e+11
4.0492653414e+11
2.7095311695e+11
1.95905767669e+11
2.59708496267e+11
3.0660267398e+11
3.45110438694e+11
4.30347770733e+11
5.91016690743e+11
7.64000901161e+11
9.89930542279e+11
1.29970576482e+12
1660846387626
1.22199135371e+12
1.47981931406e+12
..
RWA
Rwanda
NY.GDP.MKTP.CD
GDP ($)
0
0
2584367370.3
1911970651.36
2037982629.6
1971348322.05
753636370.618
1293447629.55
1382334846.45
1851557080.93
1989343578.56
1931185215.71
1734921292.59
1674685045.58
1640603016.65
1846148215.56
2088892750.27
2581168602.04
3111203756.26
3741050577.82
4712306077.48
5261963315.48
5627667377.43
..
SAS
South Asia
NY.GDP.MKTP.CD
GDP ($)
0
0
4.02453380361e+11
3.59748301237e+11
3.41810243247e+11
3.77756501551e+11
4.28427857319e+11
4.76175114393e+11
5.14944029343e+11
5.40140763685e+11
5.47745788659e+11
5.84729946634e+11
6.08203400184e+11
6.2203068551e+11
6.55708286018e+11
7.65901613432e+11
9.11231649975e+11
1.04483280035e+12
1.18761776738e+12
1.50863145045e+12
1.52479171746e+12
1.70266781278e+12
2.08823601379e+12
..
SAU
Saudi Arabia
NY.GDP.MKTP.CD
GDP ($)
0
0
1.1677811198e+11
1.31335915473e+11
1.36304139411e+11
1.32151405583e+11
1.34327104601e+11
1.42457681256e+11
1.57743126867e+11
1.64993858632e+11
1.4577279959e+11
1.60957062622e+11
1.88441864875e+11
1.83012268442e+11
1.88551196399e+11
214572800000
2.50338933333e+11
3.15580048571e+11
3.56630440587e+11
3.84891141942e+11
476304800000
3.72663466667e+11
4.34666133333e+11
..
SDN
Sudan
NY.GDP.MKTP.CD
GDP ($)
0
0
12408648108.3
11379222223.4
7031931224.0
8881004944.19
12793795322.4
13830459816.3
9018315170.69
11681198236.1
11250216339.1
10682045000.4
12366140065.8
13362328043.0
14975626178.2
17780302166.6
21684761535.5
27386699507.4
36393186003.7
46533234127.0
58032057416.3
54633362293.7
62045783132.5
..
SEN
Senegal
NY.GDP.MKTP.CD
GDP ($)
0
0
5716744852.5
5617174598.71
6004926101.47
5678880068.96
3877229737.08
4879192244.85
5065832118.54
4672258968.03
5058224886.78
5150798886.58
4691828356.93
4877598732.5
5333863901.81
6871327280.44
8040528592.74
8702730297.55
9378279041.45
11334237876.9
13210074065.5
12790851243.8
12954023882.3
..
SGP
Singapore
NY.GDP.MKTP.CD
GDP ($)
0
0
38835478887.7
45184799282.2
52011315967.2
60473080791.1
73235405800.6
87063233832.9
95180444906.7
99297095552.1
85013628374.1
84880320953.4
94308601812.7
87701014385.6
90640573369.9
95956606174.2
1.12692539786e+11
1.25417500225e+11
1.45331962742e+11
1.77328659187e+11
1.89393185098e+11
1.83331828442e+11
2.22699188979e+11
..
SID
Small island developing states
NY.GDP.MKTP.CD
GDP ($)
0
0
1.47667555624e+11
1.5562998095e+11
1.64783534207e+11
1.79778686317e+11
2.0661084086e+11
2.31870360298e+11
2.42836009409e+11
2.53373516517e+11
2.48263223986e+11
2.57466282537e+11
2.76572978911e+11
2.79124770617e+11
2.90871502847e+11
3.01247222956e+11
3.387832462e+11
3.92012373196e+11
4.49201000026e+11
5.26631139469e+11
5.75300618476e+11
..
..
..
SLB
Solomon Islands
NY.GDP.MKTP.CD
GDP ($)
0
0
302515026.89
320355090.614
378778047.198
410923236.189
464756638.512
519334096.715
565163750.561
567919502.811
471177008.057
482214092.309
435101217.233
400464593.026
341663053.747
332736306.539
375109694.526
413909879.281
456735444.868
586218381.045
645796657.499
601299089.754
678625481.687
..
SLE
Sierra Leone
NY.GDP.MKTP.CD
GDP ($)
0
0
649644826.8
779995081.67
680034040.849
768817621.145
911912391.341
870768008.475
941753014.011
850231278.655
672381683.295
669392528.545
635876870.13
805663721.27
935823725.584
991113463.095
1096030169.23
1239397077.93
1422009797.58
1663712059.14
1954828246.02
1856392961.88
1905015045.14
..
SLV
El Salvador
NY.GDP.MKTP.CD
GDP ($)
0
0
4800907894.74
5310996633.42
5954671445.64
6937988505.75
8085554285.71
9500491428.57
10315542857.1
11134716450.1
12008418171.4
12464655104
13134147768
13812744074.4
14306700000
15046700000
15798300000
17070200000
18653600000
20376700000
22106800000
21100500000
21795720978.9
..
SMR
San Marino
NY.GDP.MKTP.CD
GDP ($)
0
0
..
..
..
..
..
..
..
..
..
853373879.732
773907642.415
815205233.063
879957209.924
1122981525.36
1317357834.62
1375416604.49
1469075398.32
1687653983.03
1899809579.61
..
..
..
SOM
Somalia
NY.GDP.MKTP.CD
GDP ($)
0
0
917044253.99
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SRB
Serbia
NY.GDP.MKTP.CD
GDP ($)
0
0
..
..
..
..
..
..
..
21380951575.5
16204161183.6
17632705912.6
6082791506.18
11390468618.5
15107552528.6
19675596592.2
23710517390.8
25234408773.0
29221081586.6
39385398650.2
48856609868.4
41653965783.1
39128329377.2
..
SSA
Sub-Saharan Africa
NY.GDP.MKTP.CD
GDP ($)
0
0
3.01291720665e+11
3.11158000948e+11
3.13697300892e+11
2.96193377207e+11
2.8878158668e+11
3.27607764773e+11
3.40182219248e+11
3.52508447e+11
3.32372114164e+11
3.32399838297e+11
3.42127209243e+11
3.32097244336e+11
3.49048025414e+11
4.45886023323e+11
5.54442667882e+11
6.46802482854e+11
7.55140389607e+11
8.70404840304e+11
9.93541530424e+11
9.42063843748e+11
1.09789868545e+12
..
STP
Sao Tome and Principe
NY.GDP.MKTP.CD
GDP ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
76460459.6043
90713554.5391
97993841.0158
106764516.411
113808429.627
124185330.709
143497348.607
170904224.753
189961808.273
196806609.569
..
SUR
Suriname
NY.GDP.MKTP.CD
GDP ($)
0
0
399075061.887
438220953.157
404600009.044
435194019.01
604950779.562
693609699.881
859987492.559
929607506.148
944999985.918
885444152.714
892164328.185
763465547.263
1078402171.42
1271049474.7
1484318751.33
1793410616.23
2132482915.72
2419307832.42
3065318761.38
3251876138.43
..
..
SVK
Slovak Republic
NY.GDP.MKTP.CD
GDP ($)
0
0
11716492830.0
13119169441.8
14271366595.7
16250533389.8
19833225849.8
25240261437.9
27268441064.6
27021853404.3
29258362232.9
29924856168.8
28700755481.8
30295516778.5
34613485789.6
45804232505.6
56032071020.6
61285897276.5
69057257558.7
84241814946.6
98463512523.8
87641512385.9
89034490066.2
..
SVN
Slovenia
NY.GDP.MKTP.CD
GDP ($)
0
0
17381802758.3
12673485227.1
12522536278.5
12673039187.3
14385505626.2
20814335344.5
21007770977.1
20271553550.5
21592759564.5
22157534732.8
19887999963.7
20389746601.5
23070243206.1
29058085346.6
33724037046.5
35751727924.7
38951918416.5
47314863049.6
54642842411.0
49158599387.3
47762955727.2
..
SWE
Sweden
NY.GDP.MKTP.CD
GDP ($)
0
0
2.44544875554e+11
2.57902646743e+11
2.67172776557e+11
2.02037798391e+11
2.17546397097e+11
2.53679923738e+11
2.76456158664e+11
2.53177906718e+11
2.54723204065e+11
2.5881354086e+11
2.47260155858e+11
2.27359498891e+11
2.50960758337e+11
3.14713404153e+11
3.62089648913e+11
3.70579639747e+11
3.99075661573e+11
4.6251285367e+11
4.8615860782e+11
4.0361296712e+11
4.58003597858e+11
..
SWZ
Swaziland
NY.GDP.MKTP.CD
GDP ($)
0
0
1114982000.26
1158222660.18
1285751428.1
1358867201.78
1420166988.79
1698967931.43
1613812745.58
1718172156.43
1562195983.75
1534888918.39
1489618181.42
1290582262.02
1174110115.58
1795877962.85
2281533677.2
2523979485.95
2669670497.79
2949751596.88
2836875998.64
2936025585.05
3645267040.02
..
SXM
Sint Maarten (Dutch part)
NY.GDP.MKTP.CD
GDP ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
NY.GDP.MKTP.CD
GDP ($)
0
0
368584758.942
375018939.394
433658727.06
473914075.572
487009900.99
508234503.541
503060037.089
562954169.782
608358684.515
622976165.074
614879764.78
622262057.192
697518248.175
705704816.042
699800000
883818181.818
967806221.353
1018952362.68
920991413.949
788102778.125
936609214.451
..
SYR
Syrian Arab Republic
NY.GDP.MKTP.CD
GDP ($)
0
0
12308624284.0
12981833333.3
13253565901.1
13695962017.2
10122020000
11396706586.8
13789560878.2
14505233969.8
15200846139.1
15873875969.0
19325894913.1
21099833783.5
21582248881.7
22396829912.6
25012613861.4
28859003831.4
33332825024.4
40404985983.2
52581935483.9
53934534350.5
59102566137.5
..
TCA
Turks and Caicos Islands
NY.GDP.MKTP.CD
GDP ($)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TCD
Chad
NY.GDP.MKTP.CD
GDP ($)
0
0
1738610589.75
1877144030.24
1881853364.35
1463316169.19
1179847942.57
1445915335.09
1607352991.07
1544687914.87
1744651916.44
1536917961.53
1385050963.93
1709344295.52
1987873833.5
2736667928.42
4414969334.44
5301938221.08
6099009022.99
7016297534.48
8357142857.14
6838983050.85
7587673160.68
..
TGO
Togo
NY.GDP.MKTP.CD
GDP ($)
0
0
1628432255.15
1602293605.39
1692964166.22
1233508156.39
982632621.162
1309378704.23
1465311925.47
1498949402.1
1587350761.33
1576092231.45
1329110396.46
1328031238.67
1476122551.81
1758946962.64
2061009613.09
2115154592.61
2202809610.79
2523461504.25
3163383040.42
3156613950.27
3153400897.32
..
THA
Thailand
NY.GDP.MKTP.CD
GDP ($)
0
0
85343189319.7
98234713406.8
1.11452745857e+11
1.25010690989e+11
1.44308067332e+11
1.68018557308e+11
1.819476319e+11
1.50891449495e+11
1.11859654864e+11
1.22629741698e+11
1.22725247706e+11
1.1553640515e+11
1.2687691869e+11
1.42640079033e+11
1.61339790595e+11
1.7635181595e+11
2.0708892019e+11
2.46977009039e+11
2.72577816171e+11
2.63709706586e+11
3.18846998674e+11
..
TJK
Tajikistan
NY.GDP.MKTP.CD
GDP ($)
0
0
2629395066.27
2535545389.36
1909246640.81
1646693875.0
1346074460.78
1231523105.36
1043893062.61
921843115.774
1320126664.95
1086567367.91
860550294.273
1080774005.56
1221113794.73
1554125542.56
2076148710.32
2312319579.03
2830236053.84
3719497371.1
5161336170.46
4978154343.79
5640410958.9
..
TKM
Turkmenistan
NY.GDP.MKTP.CD
GDP ($)
0
0
3232066836.53
3197224007.42
3200539816.06
3179225948.58
2561118608.36
2482228439.71
2379281767.96
2450084970.25
2605688065.08
2450686659.78
2904662604.82
3534771968.51
4462028988.73
5977440582.8
6838351088.47
8104355716.88
10277598152.4
12664165103.2
17017140631.1
18476842105.3
21074000000
..
TMP
Timor-Leste
NY.GDP.MKTP.CD
GDP ($)
0
0
..
..
..
..
..
..
..
..
..
..
316200000
277300000
284100000
297800000
309300000
331915908.772
326812745.542
397567776.195
497918858.206
598000000
701000000
..
TON
Tonga
NY.GDP.MKTP.CD
GDP ($)
0
0
113563821.577
132201141.447
137066290.55
138489884.393
193770729.956
202544669.418
219586403.712
212148825.353
188683875.97
194664218.929
188628160.919
165865871.009
180853022.912
207622052.793
238546865.49
259662952.07
294944991.473
305069407.506
348011965.57
326082104.228
357480587.618
..
TTO
Trinidad and Tobago
NY.GDP.MKTP.CD
GDP ($)
0
0
5068070430.12
5362823408.94
5532117353.41
4584646145.07
4947205981.58
5329214154.85
5759537847.67
5737751324.18
6043710211.43
6808976088.6
8154315708.35
8824873155.63
9008273516.36
11235960523.1
12884712296.0
15982284589.5
18370220923.8
21738492063.5
27132936507.9
19623019762.8
20398239270.6
..
TUN
Tunisia
NY.GDP.MKTP.CD
GDP ($)
0
0
12290568181.8
13074782608.7
15497286295.8
14608946896.5
15632463424.3
18030876599.3
19587322786.1
18897006962.7
19812681127.6
20798853481.7
19443277157.7
19988392298.6
21047411855.8
24992239037.6
28129265355.3
28967848882.0
30962208865.5
35619594067.1
40844817790.8
43522180256.2
44290655120.2
..
TUR
Turkey
NY.GDP.MKTP.CD
GDP ($)
0
0
1.50676291094e+11
1.51041248184e+11
1.59095003188e+11
1.80422294772e+11
1.30690172297e+11
1.69485941048e+11
1.81475555283e+11
1.89834649111e+11
2.69287100115e+11
2.49751470869e+11
2.6656753199e+11
1.96005288838e+11
2.32534560775e+11
3.03005302818e+11
3.92166274991e+11
4.82979839238e+11
5.30900094505e+11
6.47155131629e+11
7.30337495198e+11
6.14553921823e+11
7.35263546523e+11
..
TUV
Tuvalu
NY.GDP.MKTP.CD
GDP ($)
0
0
8824723.27604
9365457.71795
9742591.70859
9631024.91568
10887223.5423
11025699.9474
12335232.3416
12701093.975
12757392.4351
13686699.571
13940040.4678
13660418.7355
14935834.7459
18628194.9011
21971685.9717
22186838.9501
23461373.3744
28157346.4316
29628076.2972
26118644.9091
31350804.1281
..
TZA
Tanzania
NY.GDP.MKTP.CD
GDP ($)
0
0
4258741084.82
4956597377.66
4601414688.39
4257702335.04
4510845976.87
5255236879.18
6496158706.99
7683883940.27
9345191090.92
9697835544.34
10185767294.3
10383580744.2
10805631194.5
11659118661.0
12825801580.9
14141919722.5
14331230929.0
16825553272.1
20715098399.5
21368198377.7
23056525009.4
..
UGA
Uganda
NY.GDP.MKTP.CD
GDP ($)
0
0
4304399516.08
3321729207.86
2857457785.71
3220439178.15
3990430537.18
5755818793.11
6044585326.94
6269333313.17
6584815846.53
5998563257.95
6193246632.33
5840503702.94
6178563467.09
6336696289.0
7940362663.2
9237336678.03
9977209198.94
11916019462.5
14440830267.2
15803499656.9
17010765766.7
..
UKR
Ukraine
NY.GDP.MKTP.CD
GDP ($)
0
0
81456431291.9
77464043753.3
73942294099.3
65648559194.6
52549555009.5
48213868185.2
44558077827.1
50150399813.1
41883241479.9
31580639053.2
31261527363.1
38009344576.6
42392896031.2
50132953288.2
64883060725.7
86142018069.4
1.07753069307e+11
1.42719009901e+11
1.80354647631e+11
1.17227769792e+11
1.37929309476e+11
..
UMC
Upper middle income
NY.GDP.MKTP.CD
GDP ($)
0
0
2.6826049459e+12
2.75844284692e+12
2.89129622813e+12
3.04082606678e+12
3.31022587043e+12
3.7629921851e+12
4.08828152378e+12
4.35456533914e+12
4.2862828419e+12
4.03663743201e+12
4.44674449887e+12
4.49040859422e+12
4.5097840444e+12
5.14955750486e+12
6.18260489695e+12
7.41257289962e+12
8.81602328858e+12
1.0920399261e+13
1.32949597526e+13
12711726164029
1.52467044171e+13
..
URY
Uruguay
NY.GDP.MKTP.CD
GDP ($)
0
0
9298839655.23
11206193313.0
12878157305.7
15002144584.4
17474578502.4
19297663096.6
20515465834.1
23969746851.5
25385928196.4
23983945190.6
22823255806.0
20898788420.1
13606494599.0
12045627411.0
13686333821.8
17362872709.7
19802235564.3
23876761050.4
31176899890.6
31322414681.6
40265470148.7
..
USA
United States
NY.GDP.MKTP.CD
GDP ($)
0
0
5750800000000
5930700000000
6261800000000
6582900000000
6993300000000
7338400000000
7751100000000
8256500000000
8741000000000
9301000000000
9898800000000
10233900000000
10590200000000
11089200000000
11812300000000
12579700000000
13336200000000
13995000000000
14296900000000
14043900000000
14582400000000
..
UZB
Uzbekistan
NY.GDP.MKTP.CD
GDP ($)
0
0
13360607990.7
13800157749.3
12953800571.0
13099928531.9
12899074347.3
13350461532.7
13948892215.6
14744603773.6
14988971210.8
17078465982.0
13760374487.5
11401351420.2
9687951055.23
10134453435.5
12030023547.9
14307509838.8
17030896203.2
22311393927.9
27917519210.7
32816828373.0
38981605338.3
..
VCT
St. Vincent and the Grenadines
NY.GDP.MKTP.CD
GDP ($)
0
0
198207403.907
212492582.914
233188878.845
238774063.931
243255557.185
266481488.627
281518501.695
293070365.195
317851822.535
331866660.806
339014808.828
349459253.088
370055549.02
386954849.833
420633353.086
445566734.411
497902361.577
555281481.481
583870370.37
585381481.481
561611111.111
..
VEN
Venezuela, RB
NY.GDP.MKTP.CD
GDP ($)
0
0
47027508385.0
51734363023.8
58470358475.9
58107555298.5
56529904239.5
74888742183.7
68258588862.8
85837385778.8
91338542541.8
97974136436.7
1.17147614566e+11
1.22909734601e+11
92889586976.2
83622191419.0
1.12451400423e+11
1.45513489652e+11
1.83477522124e+11
2.26537506288e+11
3.11130615277e+11
3.2613298463e+11
3.87851676867e+11
..
VIR
Virgin Islands (U.S.)
NY.GDP.MKTP.CD
GDP ($)
0
0
1564700032
1671200000
1770899968
1996000000
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VNM
Vietnam
NY.GDP.MKTP.CD
GDP ($)
0
0
6471740486.32
9613369553.85
9866990096.32
13180954014.1
16286434094.0
20736163915.2
24657470331.6
26843701136.7
27209601995.8
28683658004.8
31172517272.2
32506754577.1
35075432958.7
39541252948.3
45439397789.4
52931104515.6
60933124863.2
71111309691.1
90273764945.7
97146622927.8
1.03571787096e+11
..
VUT
Vanuatu
NY.GDP.MKTP.CD
GDP ($)
0
0
158397406.345
188869985.157
196142587.971
188080372.418
219260343.35
233902114.741
245177629.284
255890215.735
271052988.834
276932016.27
280776470.776
267003870.968
271626880.501
324750468.945
376357455.944
406432100.822
448572250.593
544563540.874
619283529.063
616110011.008
728953084.195
..
WBG
West Bank and Gaza
NY.GDP.MKTP.CD
GDP ($)
0
0
..
..
..
..
2828493966.94
3220099898.36
3361387738.68
3701277958.82
3944403662.12
4168899306.51
4113261232.93
3332382199.49
2832538290.43
3144395542.91
3606871947.8
4015865743.75
..
..
..
..
..
..
WLD
World
NY.GDP.MKTP.CD
GDP ($)
0
0
2.19013970203e+13
2.29722984535e+13
2.45191120239e+13
2.48839294982e+13
2.67229655458e+13
29674706377476
3.02803174568e+13
30190925380854
3.00808790076e+13
3.12101581973e+13
3.22126568202e+13
3.2012341846e+13
3.32737253761e+13
3.74435986734e+13
4.21932032611e+13
45620703700425
4.94547068698e+13
5.58048799525e+13
6.12585370641e+13
5.80784136028e+13
6.30440678703e+13
..
WSM
Samoa
NY.GDP.MKTP.CD
GDP ($)
0
0
112058888.223
111908235.967
117883207.849
118613703.553
197000394.477
200357402.765
222670196.527
254361347.161
240113812.86
230621434.543
245617502.951
243336183.691
256677700.109
301905953.023
374507187.857
412220560.26
441660283.462
493164717.055
578899186.466
496485298.05
565203177.949
..
YEM
Yemen, Rep.
NY.GDP.MKTP.CD
GDP ($)
0
0
4827824503.21
5083703647.68
5755079583.34
4900925402.1
3794476777.02
4236297071.18
5793813887.51
6936303759.17
6318571349.91
7467832877.38
9441473354.85
9459570743.57
9902721941.3
11006776814.3
13873381756.5
16736795898.3
19081645676.8
21656550140.2
26917363956.1
26365156990.2
..
..
ZAF
South Africa
NY.GDP.MKTP.CD
GDP ($)
0
0
1.12013925353e+11
1.20225327665e+11
1.30513036525e+11
1.30405952097e+11
1.3577793384e+11
1.51113089035e+11
1.43732002577e+11
1.48814150953e+11
1.34295556522e+11
1.33183580945e+11
1.32877648091e+11
1.18478978978e+11
1.11100827741e+11
1.68219302326e+11
2.19092937439e+11
2.47064310286e+11
2.61007039379e+11
2.86169133892e+11
2.75278721836e+11
2.8275444102e+11
3.63703902727e+11
..
ZAR
Congo, Dem. Rep.
NY.GDP.MKTP.CD
GDP ($)
0
0
9349764580.35
9087965281.53
8206227134.01
10707792340.0
5820383305.55
5643439262.22
5771454883.83
6090840526.87
6217806274.76
4711272704
4305797175.65
4691816706.56
5547714815.2
5673197493.84
6569986939.62
7103539716.57
8543323220.41
9977079382.54
11668379641.8
11204139344.8
13145120704.9
..
ZMB
Zambia
NY.GDP.MKTP.CD
GDP ($)
0
0
3288381745.33
3376791604.16
3182810919.62
3273505269.58
3346574626.64
3477642088.77
3270303736.9
3910384000.05
3237203900.12
3131338936.09
3237716324.83
3636936435.69
3716091408.83
4373861968.24
5439176259.82
7178556949.3
10702206685.7
11541428666.2
14640794797.9
12805027606.3
16192857209.3
..
ZWE
Zimbabwe
NY.GDP.MKTP.CD
GDP ($)
0
0
8783816665.9
8641481700.92
6751472200.86
6563813295.23
6890674988.54
7111270668.89
8553146596.98
8529571573.46
6401968164.11
6772312400.63
6606515168.83
6759128009.55
6291329827.36
5658028910.72
5671234225.95
5583363612.44
5203343319.97
5018218225.57
4416000000
5836000000
7474000000
..
ABW
Aruba
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
14940
15320
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ADO
Andorra
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
17440
18820
20540
18830
17770
17600
18710
19950
19310
19300
18790
19620
19710
22720
27840
32650
35620
37340
41750
..
..
..
AFG
Afghanistan
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
200
230
270
300
290
..
..
..
AGO
Angola
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
740
820
470
310
190
320
380
470
460
390
420
460
610
690
920
1330
1920
2660
3420
3880
3940
..
ALB
Albania
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
680
420
300
320
410
670
910
800
890
980
1170
1340
1390
1650
2090
2580
2960
3310
3820
3960
3960
..
ARE
United Arab Emirates
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
20720
19340
19430
18550
18870
19940
20250
21010
20590
18890
20630
21740
22430
25050
28340
..
..
..
..
..
..
..
ARG
Argentina
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
3180
3960
6300
7100
7570
7360
7730
8140
8010
7560
7460
6990
4040
3670
3580
4460
5170
6050
7190
7580
8500
..
ARM
Armenia
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
310
330
400
450
520
560
590
610
660
710
800
950
1150
1470
1920
2570
3340
3040
3090
..
ASM
American Samoa
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ATG
Antigua and Barbuda
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
5710
6120
6330
6770
7150
6890
7110
7610
7730
8010
7910
8290
8180
8880
9470
10100
11340
12560
12990
11730
10590
..
AUS
Australia
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
17420
18380
18890
19100
18930
19470
20690
22090
21890
21590
21260
20250
20100
21260
25670
30410
34300
37140
41760
43590
..
..
AUT
Austria
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
20080
21200
24140
24220
25530
27490
29500
28810
27100
26200
25840
24210
23910
26810
32240
36920
39260
42180
46250
46410
46690
..
AZE
Azerbaijan
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
590
440
400
400
450
510
570
610
660
720
820
950
1270
1890
2710
3790
4750
5080
..
BDI
Burundi
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
210
210
200
180
160
150
140
150
150
140
130
110
100
90
90
100
110
120
140
150
170
..
BEL
Belgium
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
18940
20190
22720
22960
24610
26550
28050
27940
26000
25530
25400
23900
23410
26350
31980
36530
38780
41350
45080
45250
45360
..
BEN
Benin
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
360
370
370
370
330
340
340
370
370
370
370
360
360
420
500
570
590
630
730
780
780
..
BFA
Burkina Faso
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
310
340
300
260
220
220
230
240
230
240
230
230
230
280
340
390
410
420
470
500
550
..
BGD
Bangladesh
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
290
300
320
320
320
330
350
360
360
370
380
380
380
400
440
480
500
520
570
640
700
..
BGR
Bulgaria
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
2260
1620
1430
1250
1250
1360
1160
1170
1240
1450
1640
1760
1900
2300
2960
3640
4080
4530
5700
6080
6250
..
BHR
Bahrain
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
7260
9860
9950
10110
9760
10470
10860
10340
10110
10030
10940
11640
12330
13830
15510
17400
18010
18670
18730
..
..
..
BHS
Bahamas, The
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
12000
11500
11650
11410
11690
12190
12410
13530
14260
16300
17650
18100
18480
18850
19840
20680
20310
20970
21660
20610
..
..
BIH
Bosnia and Herzegovina
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
..
..
..
870
1120
1430
1460
1510
1610
1760
2030
2540
3000
3330
3790
4530
4740
4790
..
BLR
Belarus
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
1670
1590
1460
1370
1450
1530
1550
1400
1380
1300
1370
1610
2150
2760
3490
4350
5590
5770
6130
..
BLZ
Belize
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
2210
2350
2600
2680
2670
2740
2780
2780
2700
2820
3110
3080
3160
3410
3520
3580
3650
3560
3740
3800
3740
..
BMU
Bermuda
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
26540
26510
27850
29830
30700
33210
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BOL
Bolivia
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
740
760
790
810
830
870
920
970
1000
990
1000
960
930
920
960
1030
1120
1240
1490
1640
1810
..
BRA
Brazil
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
2700
2870
2780
2740
3050
3730
4460
5050
4870
4130
3860
3290
3050
2950
3310
3960
4800
6110
7480
8090
9390
..
BRB
Barbados
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
6570
6350
6260
6270
6560
6860
7180
7840
8200
8620
9090
8790
8550
9350
10350
11000
10750
11060
11610
12660
..
..
BRN
Brunei Darussalam
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
12790
13940
15560
15430
15490
16090
16620
16600
14740
14330
14960
16350
17400
18040
20190
23210
27570
30720
33680
31800
..
..
BTN
Bhutan
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
580
530
500
490
530
550
620
680
640
650
720
770
810
890
1060
1220
1330
1630
1740
1840
1880
..
BWA
Botswana
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
2540
2860
3040
3090
2760
3000
2930
3150
3300
3140
3120
3320
3060
3610
4320
5070
5600
5950
6450
6300
6790
..
CAF
Central African Republic
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
470
470
460
440
360
340
300
310
290
290
280
260
250
260
300
340
360
380
420
450
470
..
CAN
Canada
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
20150
20420
20790
20570
20270
20280
20220
20690
20310
20870
22130
22420
22840
24640
28530
33110
36830
40270
43430
41950
..
..
CHE
Switzerland
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
34300
34800
37960
37840
38810
42070
44840
44530
41630
40020
40270
37790
36750
42330
49930
56870
58300
57020
56780
65280
70030
..
CHI
Channel Islands
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
..
..
..
..
..
..
..
43420
42340
41540
44160
51280
57380
62100
67960
..
..
..
..
CHL
Chile
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
2250
2500
3020
3340
3620
4330
4940
5390
5260
4920
4840
4600
4310
4330
4950
5920
6870
8140
9490
9310
9950
..
CHN
China
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
330
350
390
410
460
530
650
750
790
840
930
1000
1100
1270
1500
1760
2050
2490
3050
3650
4260
..
CIV
Cote d'Ivoire
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
740
720
750
720
660
670
700
760
740
720
650
610
580
640
770
870
900
950
1070
1160
1160
..
CMR
Cameroon
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
910
860
870
890
780
720
650
640
640
640
630
620
600
680
830
930
990
1060
1160
1210
1180
..
COG
Congo, Rep.
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
910
950
1050
840
670
430
460
580
570
490
560
630
690
700
780
980
1220
1400
1870
1950
2150
..
COK
Cook Islands
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
COL
Colombia
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
1260
1230
1320
1430
1790
2200
2530
2650
2560
2320
2350
2330
2370
2360
2600
2940
3440
4070
4640
5050
5510
..
COM
Comoros
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
530
520
610
600
490
470
440
450
410
400
380
380
380
440
520
610
620
640
690
740
750
..
CPV
Cape Verde
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
960
970
1070
1070
1110
1170
1240
1260
1270
1320
1310
1280
1260
1470
1730
2120
2340
2590
2900
3160
3270
..
CRI
Costa Rica
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
2340
2370
2610
2790
3050
3260
3310
3420
3510
3480
3710
3870
3910
4180
4430
4680
5050
5540
6060
6240
6550
..
CUB
Cuba
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
2660
2340
2130
1870
2140
2550
2710
2500
2240
2400
2620
2760
2830
3100
3490
3960
4530
4990
5520
..
..
..
CUW
Curacao
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYP
Cyprus
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
9520
9670
11230
11190
11900
12720
13600
13690
14770
13630
13440
13410
13590
15480
18410
21500
22880
24130
27460
30480
..
..
CZE
Czech Republic
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
2900
2980
3530
4470
5350
5650
5580
5600
5800
5760
6020
7330
9270
11330
12890
14380
17140
17400
17890
..
DEU
Germany
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
20630
22170
25050
25200
26590
28630
30010
29280
27170
26140
25500
24020
22980
25610
31010
35080
37400
39450
42680
42410
43290
..
DJI
Djibouti
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
840
810
810
810
790
760
730
740
750
760
780
870
950
990
1050
1100
1200
1270
..
..
DMA
Dominica
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
2300
2390
2590
2750
2830
2980
3080
3160
3360
3330
3270
3400
3220
3450
3800
4110
4580
4780
5140
5320
5410
..
DNK
Denmark
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
24120
25290
28450
28300
30090
32310
34430
34670
32960
32400
31850
30640
30070
33960
41590
48620
52250
54700
58620
58370
59210
..
DOM
Dominican Republic
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
870
1030
1320
1570
1700
1910
2130
2290
2370
2470
2620
2640
2800
2580
2470
2900
3460
4150
4460
4670
5000
..
DZA
Algeria
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
2420
2030
1930
1760
1650
1580
1540
1530
1570
1560
1600
1680
1750
1940
2280
2720
3120
3620
4260
4410
4450
..
EAP
East Asia & Pacific
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
425.059780673
449.735415496
500.270253704
548.132239361
612.399558906
700.989960917
815.936063155
885.697308895
825.902329745
842.878501412
901.773753425
966.882998331
1044.30332042
1198.06098236
1407.97739798
1631.53802394
1880.03874025
2249.51538661
2730.63765065
3182.86535923
3682.93067306
..
ECA
Europe & Central Asia
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
2287.89239601
2151.5406023
2072.16171626
1865.1063769
1896.19088993
1904.46233688
1977.61983482
1823.95100184
1699.11044367
1780.6125689
1707.18758682
1862.8604886
2202.85295085
2888.6155591
3707.95886078
4591.61562551
5705.34305296
6960.18037078
6854.52965013
7269.43073416
..
ECU
Ecuador
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
900
970
1040
1140
1350
1600
1730
1840
1820
1490
1330
1380
1540
1900
2300
2620
2870
3060
3570
4020
4290
..
EGY
Egypt, Arab Rep.
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
750
720
740
740
820
920
1030
1140
1220
1330
1440
1460
1370
1300
1240
1250
1350
1560
1880
2190
2440
..
EMU
Euro area
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
17360.1322315
18573.2620917
20847.2253443
20523.7298121
21036.2699766
22183.7669966
23436.6392221
23420.3967057
22355.8547506
21954.7973724
21735.3818267
20766.7015193
20252.784845
22855.8020932
27750.6767586
31727.51704
33780.2111503
35804.8611753
38508.3833537
38447.7737449
38570.6262299
..
ERI
Eritrea
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
..
190
190
200
210
210
200
170
180
170
180
210
250
250
260
250
290
340
..
ESP
Spain
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
11890
13340
15220
14670
14180
14550
15300
15580
15220
15230
15420
15070
15120
17570
21590
25450
27470
29390
31810
32060
31750
..
EST
Estonia
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
3190
3060
2590
2590
2690
3020
3320
3590
3820
3880
4220
4450
4790
5840
7570
9760
11430
13160
14410
14080
14370
..
ETH
Ethiopia
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
250
240
240
230
170
150
150
150
130
130
130
130
120
120
140
160
190
230
290
350
390
..
FIN
Finland
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
25210
24330
23450
20050
19590
21340
24160
25790
24840
24980
25420
24790
24640
27610
33950
38520
41100
44160
48110
46670
47160
..
FJI
Fiji
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
1790
1790
1990
2090
2230
2460
2660
2580
2300
2350
2230
2140
2170
2420
3030
3590
3630
3820
4070
3820
3580
..
FRA
France
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
20220
21020
23390
23130
23890
25210
26490
26260
25140
24770
24350
23120
22380
25220
30430
34790
36740
38960
42080
42610
42390
..
FRO
Faeroe Islands
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FSM
Micronesia, Fed. Sts.
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
2130
2130
2280
2280
2140
2040
2150
2270
2200
2240
2340
2370
2500
2500
2490
2480
2610
2700
..
GAB
Gabon
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
4930
5260
5180
4460
4140
3900
4080
4250
3920
3260
3080
3310
3410
3590
3990
5110
5480
6470
7500
7630
7740
..
GBR
United Kingdom
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
16600
17230
18980
18830
19270
19620
20770
22130
23450
24810
25910
25860
26230
29080
34610
38880
41070
44050
45610
41080
38560
..
GEO
Georgia
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
750
540
510
540
650
790
820
780
750
720
770
910
1100
1360
1680
2090
2460
2540
2690
..
GHA
Ghana
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
400
410
430
420
370
370
380
390
390
390
340
300
270
320
390
460
600
810
1150
1190
1230
..
GIB
Gibraltar
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GIN
Guinea
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
450
450
480
490
480
480
490
490
460
440
400
370
350
350
390
360
320
330
350
380
400
..
GMB
Gambia, The
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
300
310
340
340
340
340
340
340
320
330
330
310
270
260
270
270
280
330
410
440
450
..
GNB
Guinea-Bissau
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
220
230
230
220
210
220
230
230
150
160
180
160
140
180
270
410
420
450
500
550
590
..
GNQ
Equatorial Guinea
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
330
310
370
390
330
360
380
760
940
720
1270
1630
2130
2150
3270
5220
6860
9680
14410
16320
14540
..
GRC
Greece
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
8650
9520
10790
10700
11110
11850
12810
13400
13110
12760
12560
12410
12550
14900
18620
21570
23480
25370
27810
28760
27260
..
GRD
Grenada
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
2250
2430
2510
2480
2590
2670
2790
2880
2990
3340
3860
3660
3710
4230
4040
5200
5210
5470
5860
5570
5550
..
GRL
Greenland
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
15690
16510
17440
16600
17830
19470
20780
20540
20440
19740
20290
19390
18760
21060
25660
29690
30830
34060
30010
26020
..
..
GTM
Guatemala
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
950
990
1050
1170
1260
1390
1480
1580
1670
1710
1730
1660
1670
1740
1920
2070
2220
2430
2640
2660
2730
..
GUM
Guam
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GUY
Guyana
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
390
390
430
500
610
730
860
920
880
900
890
880
890
920
940
1090
1420
1950
2730
3050
3300
..
HIC
High income
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
18371.4708549
19078.4259504
20708.6789613
21206.6709741
22251.9407787
23699.3360257
24797.1835686
24915.2627345
23924.3050334
24250.4900501
25264.8409521
25207.3125478
25031.3129141
26971.7054001
30815.7045314
33919.6053458
35554.4094674
36888.8261879
38503.8012258
37719.4091178
38517.3153182
..
HKG
Hong Kong SAR, China
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
12660
14330
16570
19480
21740
23490
24040
25940
24880
25490
26570
25930
24850
25850
27500
28150
29520
31220
32950
31410
32780
..
HND
Honduras
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
700
620
610
650
630
640
660
720
750
790
940
1020
1120
1210
1300
1400
1480
1630
1780
1800
1880
..
HRV
Croatia
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
3150
2490
2600
3530
4710
5380
5360
5030
5200
5100
5370
6360
8150
9730
10850
12180
13720
13810
13780
..
HTI
Haiti
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
370
400
410
560
620
670
650
..
HUN
Hungary
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
2880
2780
3170
3490
3850
4110
4240
4310
4320
4430
4700
4850
5300
6620
8600
10260
10830
11500
13010
13080
12980
..
IDN
Indonesia
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
600
600
660
780
870
980
1080
1080
650
570
560
660
720
890
1070
1220
1370
1600
1950
2160
2500
..
IMY
Isle of Man
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
..
..
..
..
17050
18820
21340
21920
22340
23370
27120
33420
38610
43630
48910
..
..
..
..
IND
India
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
390
350
330
310
330
380
410
420
420
440
450
460
470
530
640
750
850
1000
1080
1220
1340
..
IRL
Ireland
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
12050
12590
13860
14030
14900
16190
18200
20000
20740
21890
23200
23060
23770
28760
35500
41950
45570
48590
49940
44460
40720
..
IRN
Iran, Islamic Rep.
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
2450
..
..
..
..
1250
1550
1730
1700
1630
1630
1670
1700
1920
2190
2550
2940
3520
4100
4520
..
..
IRQ
Iraq
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1150
1450
2100
2230
2340
..
ISL
Iceland
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
24150
24570
25800
25400
24980
24760
26480
27610
28400
29580
30820
29650
29470
32100
40030
49670
52400
58430
46950
39720
33990
..
ISR
Israel
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
10860
11490
12590
13070
13830
14080
16130
17180
16840
16490
17840
18030
17260
17350
18800
20250
21130
22610
24700
25630
27170
..
ITA
Italy
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
17900
19510
21960
20640
19930
19750
20840
21350
21230
20990
20890
20190
19770
22170
26760
30550
32190
33600
35360
35130
35150
..
JAM
Jamaica
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
1790
1770
1630
1810
1830
2130
2320
2540
2700
3040
3310
3310
3310
3550
3780
3910
4210
4400
4880
4730
4770
..
JOR
Jordan
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
1390
1120
1330
1370
1450
1560
1560
1580
1590
1650
1790
1840
1880
2000
2280
2490
2750
3110
3670
4000
4390
..
JPN
Japan
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
27160
27870
29740
32680
36040
40650
41430
38670
32990
32370
34620
35120
33240
33420
36690
38950
38590
37760
38000
37520
42130
..
KAZ
Kazakhstan
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
1430
1310
1280
1340
1390
1390
1290
1260
1350
1520
1800
2300
2930
3860
4970
6140
6840
7440
..
KEN
Kenya
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
380
350
330
270
260
270
340
390
440
440
420
410
390
420
460
520
580
660
740
770
790
..
KGZ
Kyrgyz Republic
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
510
450
370
350
380
390
350
300
280
280
290
340
400
450
500
620
770
870
880
..
KHM
Cambodia
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
..
..
280
300
310
280
290
290
310
310
350
400
460
520
590
660
690
760
..
KIR
Kiribati
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
730
740
880
1040
1090
1160
1120
1400
1530
1360
1380
1350
1270
1360
1610
1780
1820
1830
1960
1830
2010
..
KNA
St. Kitts and Nevis
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
3610
3750
4110
4520
5010
5460
5670
6140
6160
6320
6470
6440
6500
6790
7680
8470
9110
9480
10790
9370
9520
..
KOR
Korea, Rep.
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
6000
6980
7700
8330
9270
10770
12070
12190
9200
9220
9910
10890
11830
12680
14830
16900
18950
21200
21580
19830
19890
..
KSV
Kosovo
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2460
2670
3000
3180
3300
..
KWT
Kuwait
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
..
..
20240
20850
21890
20430
17730
18950
19600
19570
22970
28240
34650
41230
47790
..
..
..
..
LAC
Latin America & Caribbean
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
2254.41371357
2481.67223595
2783.67343312
2944.76004677
3220.65225083
3397.30838608
3723.4488832
4021.89196516
3992.71392572
3761.33669225
3817.10355373
3683.67877493
3434.54283147
3475.06310825
3853.45928891
4411.41217232
5050.5122342
5912.28198524
6837.2488078
6988.58586912
7741.25073076
..
LAO
Lao PDR
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
200
220
250
280
310
360
390
380
310
290
280
310
330
350
410
460
520
610
760
920
1040
..
LBN
Lebanon
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
1240
1620
1650
1990
2510
3160
3650
3890
4250
4560
4730
4680
4550
4190
5490
5710
5710
6240
7040
7760
9080
..
LBR
Liberia
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
..
..
..
..
120
130
120
140
140
150
110
120
130
130
150
180
190
200
..
LBY
Libya
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
4720
4790
4990
6460
8410
10470
12670
12320
..
..
LCA
St. Lucia
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
2810
2910
3290
3360
3430
3570
3770
3730
3830
4050
4130
3940
4130
4290
4650
4950
5360
5390
5430
5130
4970
..
LIC
Low income
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
287.240080263
281.664568934
275.519171353
262.075498658
240.296115443
242.458439923
255.687508176
267.691230857
267.096715635
266.298039401
264.642058489
261.740304263
258.563625283
274.681065845
308.8000731
339.334626622
361.137676312
395.526950889
441.691207888
487.6760127
523.435747063
..
LIE
Liechtenstein
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
45170
47240
53970
56370
61740
69920
78640
80450
78180
79370
79660
68880
65550
68790
78880
92780
104210
111930
119330
137070
..
..
LKA
Sri Lanka
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
460
490
550
600
640
690
740
800
820
840
880
830
850
940
1060
1190
1340
1520
1750
1950
2240
..
LMC
Lower middle income
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
520.247265088
496.256278981
493.636705065
492.084520622
507.572170402
553.837923627
600.647861174
617.715167007
568.963499809
567.636991632
575.297624061
596.758153952
607.114841788
680.35787712
795.099043502
913.628266511
1038.46403464
1211.22103555
1396.56145558
1521.72566671
1659.71657156
..
LMY
Low & middle income
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
819.921077142
846.428628551
881.337726344
901.789792026
937.355827697
1004.10270062
1097.08476996
1165.66972125
1123.24596696
1096.75785305
1131.8615806
1136.69755157
1148.7795515
1258.88244064
1473.1596544
1728.83579334
1999.17638646
2363.94850088
2781.04962062
2991.48200945
3315.05626151
..
LSO
Lesotho
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
540
550
610
620
640
640
640
640
580
550
530
480
430
490
690
840
910
940
1040
1070
1040
..
LTU
Lithuania
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
2320
2020
1900
2100
2290
2590
2850
2980
3200
3420
3760
4600
5870
7280
8410
9980
11910
11620
11390
..
LUX
Luxembourg
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
29530
33150
36760
37760
38970
43140
46010
47980
43820
43450
43660
42900
39910
42090
58630
69300
67760
78470
82210
76890
79630
..
LVA
Latvia
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
2790
2540
1840
1810
1950
2050
2260
2510
2650
2840
3220
3550
3840
4440
5460
6810
8120
10100
12020
12390
11620
..
MAC
Macao SAR, China
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
8650
9610
11950
13690
15480
16920
17530
17110
15220
14430
14640
14290
15020
17020
21460
22910
25400
35870
39160
40030
..
..
MAF
St. Martin (French part)
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
990
1060
1060
1020
1130
1090
1270
1220
1280
1290
1310
1320
1300
1470
1740
1960
2130
2240
2540
2800
2900
..
MCO
Monaco
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
75810
78040
85900
83950
86150
90220
93520
91650
86960
84370
82960
79250
77640
87840
106820
123100
134030
160180
185730
183150
..
..
MDA
Moldova
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
630
640
460
470
480
500
460
400
370
400
460
570
730
890
1030
1160
1500
1570
1810
..
MDG
Madagascar
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
250
220
240
250
240
240
250
260
260
250
250
260
240
290
300
300
290
340
400
420
430
..
MDV
Maldives
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
..
..
..
..
1830
1930
2040
2140
2140
2190
2360
2580
2580
2980
3240
3670
3830
4240
..
MEX
Mexico
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
2790
3250
3760
4170
4540
3760
3610
3660
3950
4380
5010
5450
5850
6390
7190
7820
8450
9090
9660
8680
8930
..
MHL
Marshall Islands
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
..
..
..
..
..
2030
2200
2380
2520
2830
2950
3240
3380
3540
3600
3530
3490
3450
..
MIC
Middle income
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
892.409357888
923.863200899
964.768021966
990.299776845
1034.00491085
1110.46108461
1215.58102182
1293.32659973
1246.38812472
1217.55193676
1259.05118034
1266.26456772
1281.87131944
1407.38694862
1650.40852634
1942.14943175
2252.63366938
2670.99708457
3149.11892442
3389.60157406
3763.11305417
..
MKD
Macedonia, FYR
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
1710
1410
1350
1710
2090
2120
1930
1850
1850
1710
1730
1990
2440
2830
3100
3380
4180
4540
4520
..
MLI
Mali
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
260
270
310
300
250
240
230
250
250
240
230
220
230
280
340
390
410
470
520
570
600
..
MLT
Malta
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
7470
7960
8740
8590
8620
9080
9700
10040
9750
10150
10110
9990
10130
11040
12840
14310
15320
16660
18460
18430
..
..
MMR
Myanmar
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNA
Middle East & North Africa
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
1296.4044096
1233.49166997
1252.62754081
1212.86107929
1245.5830749
1285.26832482
1436.651835
1530.03826541
1567.13614361
1583.66618976
1634.90757919
1671.11663783
1655.60410829
1750.80399177
1939.80410283
2179.81425381
2452.44888191
2846.57007715
3365.82265252
3664.23905127
3903.22722983
..
MNE
Montenegro
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
1910
2380
3030
3580
4220
5100
6370
6580
6620
..
MNG
Mongolia
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
1430
1200
800
510
420
460
550
580
520
470
460
480
530
610
750
890
1110
1390
1770
1760
1850
..
MNP
Northern Mariana Islands
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MOZ
Mozambique
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
170
180
150
150
130
130
160
180
220
240
230
230
230
230
260
290
310
340
380
440
440
..
MRT
Mauritania
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
550
500
580
600
590
610
660
590
540
520
460
410
440
450
520
590
650
790
960
970
1030
..
MUS
Mauritius
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
2440
2630
3000
3120
3230
3470
3780
3900
3780
3640
3870
3890
3880
4220
4990
5360
5530
6050
6890
7320
7750
..
MWI
Malawi
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
180
210
200
220
160
160
170
200
200
180
160
140
160
190
230
220
230
250
280
310
330
..
MYS
Malaysia
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
2370
2530
2850
3200
3560
4010
4450
4580
3610
3350
3420
3510
3740
4100
4660
5110
5610
6310
7150
7220
7760
..
MYT
Mayotte
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NAM
Namibia
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
1720
1830
1920
1870
2030
2210
2190
2160
2030
1890
1950
1890
..
..
..
3300
3760
3970
4120
4130
4500
..
NCL
New Caledonia
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
15010
15480
16350
16590
17000
18300
18290
17790
15750
14810
14020
..
..
..
..
..
..
..
..
..
..
..
NER
Niger
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
300
300
290
240
210
190
200
200
200
190
180
170
170
200
220
260
280
290
330
340
370
..
NGA
Nigeria
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
260
270
280
240
220
210
250
280
270
270
270
320
350
420
540
630
840
970
1170
1190
1180
..
NIC
Nicaragua
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
310
220
240
300
410
520
660
670
670
700
730
740
730
760
830
890
940
990
1050
1050
1090
..
NIU
Niue
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NLD
Netherlands
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
18810
19700
21790
22270
23500
25630
27370
27720
25830
26260
26580
25560
25290
28800
35430
39880
43390
46310
49000
48380
49750
..
NOR
Norway
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
26010
27310
30190
29610
30230
32030
35080
37190
35410
34870
35860
37530
39200
44030
53100
62310
68360
76190
84850
84560
85340
..
NPL
Nepal
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
210
210
200
190
200
200
210
220
210
210
220
230
220
240
270
290
320
350
400
440
480
..
NRU
Nauru
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NZL
New Zealand
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
12970
11910
11830
12130
13160
14940
16380
16750
15390
14710
13630
13410
13850
16480
20850
24670
25630
27480
27320
29050
..
..
OMN
Oman
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
5540
5870
6350
6160
6060
6200
6410
6760
6460
6360
7130
8250
8490
8800
9880
11190
13110
15230
18750
18260
..
..
PAK
Pakistan
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
410
410
430
440
440
470
480
470
450
450
470
480
490
540
620
710
780
850
940
1000
1050
..
PAN
Panama
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
2210
2290
2520
2710
2860
2890
3100
3310
3540
3620
3730
3690
3820
3920
4300
4640
4940
5550
6230
6540
6980
..
PER
Peru
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
780
1140
1440
1560
1790
2000
2200
2350
2230
2110
2060
1980
2050
2180
2400
2680
2950
3380
4070
4300
4780
..
PHL
Philippines
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
730
730
780
830
930
1030
1170
1240
1150
1030
1050
1040
1000
1040
1140
1210
1310
1510
1770
1870
2060
..
PLW
Palau
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
4810
4980
5770
6360
6370
6110
6030
6250
6470
6280
6420
7190
7770
7970
8270
6700
6230
6470
..
PNG
Papua New Guinea
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
820
870
930
1080
1130
1040
1020
930
780
690
620
550
510
500
570
680
720
940
1100
1190
1300
..
POL
Poland
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
1910
2270
2450
2970
3620
4180
4310
4390
4590
4670
4850
5470
6240
7270
8340
9800
11870
12190
12410
..
PRI
Puerto Rico
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
6220
6450
6760
7100
7370
7820
8130
8510
8690
9590
10560
10960
..
..
..
..
..
..
..
..
..
..
PRK
Korea, Dem. Rep.
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRT
Portugal
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
7050
8040
9660
9890
10240
10990
11880
12170
12040
12110
12070
11690
11640
13070
15800
17990
18650
19920
21520
21830
21850
..
PRY
Paraguay
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
1190
1260
1440
1550
1580
1680
1710
1770
1650
1490
1350
1270
1090
1030
1080
1220
1400
1660
2130
2250
2940
..
PYF
French Polynesia
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
15630
16370
17580
17660
17690
18100
17950
17410
16830
16360
15970
..
..
..
..
..
..
..
..
..
..
..
QAT
Qatar
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ROM
Romania
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
1710
1430
1240
1190
1270
1470
1590
1520
1520
1580
1690
1750
1930
2310
3010
3920
4870
6430
8290
8320
7840
..
RUS
Russian Federation
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
3420
3070
2900
2650
2650
2610
2660
2140
1760
1710
1780
2100
2590
3410
4460
5820
7590
9630
9290
9910
..
RWA
Rwanda
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
360
330
360
330
160
220
230
270
270
270
250
220
210
200
230
270
310
350
430
480
520
..
SAS
South Asia
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
376.616031853
349.317543925
336.908431646
325.95970504
339.993705088
379.133196463
409.855020596
417.016947598
416.847392407
433.631266974
442.887508683
452.393553527
459.023338488
515.322671759
607.066614106
708.302680368
793.509520307
915.836082847
999.782884599
1113.96337507
1221.80648452
..
SAU
Saudi Arabia
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
7330
8120
8620
8200
7800
7860
8250
8600
8300
8050
8390
8660
8610
9280
10530
12230
13630
14790
16790
16190
..
..
SDN
Sudan
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
510
430
330
300
310
390
380
370
330
330
320
340
360
420
480
610
760
930
1140
1230
1270
..
SEN
Senegal
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
740
740
780
740
610
580
560
560
550
550
530
510
490
570
700
800
830
900
1020
1080
1090
..
SGP
Singapore
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
12030
13400
15650
17670
20640
23450
25410
27490
23780
23140
23330
21580
21340
22760
25220
27840
31530
34980
36050
36880
41430
..
SID
Small island developing states
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
2766.72319221
2845.61651774
3058.37199103
3240.171945
3583.39310011
3997.90705201
4309.76969407
4526.42521441
4232.74290422
4299.8493287
4486.5559333
4426.69941
4459.06342664
4656.26094604
5107.91167072
5721.69559321
6493.0314419
7360.04208032
7997.65404785
8225.67805863
..
..
SLB
Solomon Islands
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
800
760
840
910
900
1450
1330
1230
1020
940
850
840
860
890
960
1020
1050
960
1030
..
SLE
Sierra Leone
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
200
190
140
170
180
200
230
200
180
160
150
180
210
220
220
230
250
280
320
340
340
..
SLV
El Salvador
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
890
940
1070
1190
1330
1550
1690
1810
1900
1990
2110
2190
2260
2420
2620
2790
2980
3200
3460
3370
3360
..
SMR
San Marino
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
..
..
..
..
..
..
..
..
26590
25990
29850
35930
40370
42770
45930
50400
..
..
..
SOM
Somalia
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
150
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SRB
Serbia
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
..
..
..
..
..
..
2190
1400
1340
1310
2050
2850
3430
3800
4450
5520
5930
5810
..
SSA
Sub-Saharan Africa
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
586.570320575
573.582674036
559.68165392
541.992792452
519.095617756
530.68855325
547.631555641
557.039157924
522.41765118
506.241456109
491.393187376
480.725666794
470.394881601
517.232194866
629.161129552
769.078233344
887.428563319
985.353134975
1103.99883681
1137.15334662
1175.78923296
..
STP
Sao Tome and Principe
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
770
840
920
1020
1120
1200
..
SUR
Suriname
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
1480
1130
1020
..
1110
1360
1690
1910
2360
1610
1930
1630
1850
2130
2800
3330
3750
4460
5310
5920
..
..
SVK
Slovak Republic
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
2060
1980
2300
2680
3280
4120
4910
5260
5260
5220
5370
5550
5840
7120
9070
10880
12470
14260
16590
16120
16210
..
SVN
Slovenia
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
6790
6660
7260
8500
9910
11020
10800
11090
11090
10740
10750
12420
15340
18080
19580
21510
24210
23820
24000
..
SWE
Sweden
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
26360
27630
29710
26860
26460
26760
28970
29780
29520
29370
29500
27680
27190
30690
37190
42950
45680
48900
52420
48590
50000
..
SWZ
Swaziland
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
1150
1250
1490
1510
1520
1740
1840
1880
1660
1640
1580
1480
1210
1300
1650
2300
2400
2590
2600
2380
2630
..
SXM
Sint Maarten (Dutch part)
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
5020
5200
5930
6350
6560
6460
6740
7330
7320
7290
7420
7380
6850
7490
8240
9680
10740
11860
10680
9420
9760
..
SYR
Syrian Arab Republic
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
920
1000
1120
1080
980
910
870
870
950
920
990
1130
1200
1240
1370
1490
1640
1880
2220
2570
2790
..
TCA
Turks and Caicos Islands
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TCD
Chad
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
260
290
330
250
220
210
200
210
220
200
180
190
200
220
340
430
460
500
550
610
620
..
TGO
Togo
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
410
410
430
350
320
310
320
360
330
320
300
280
270
300
350
340
380
370
420
470
490
..
THA
Thailand
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
1480
1650
1870
2100
2370
2720
2940
2710
2040
1930
1930
1880
1870
2030
2340
2560
2830
3200
3640
3730
4150
..
TJK
Tajikistan
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
350
290
230
200
170
170
180
180
170
170
170
210
280
340
400
470
620
730
800
..
TKM
Turkmenistan
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
770
660
610
560
530
560
620
650
750
880
1140
1470
1650
1900
2270
2830
3270
3800
..
TMP
Timor-Leste
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
330
330
480
730
950
1490
2460
2020
2220
..
TON
Tonga
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
1220
1350
1450
1530
1820
2020
2280
2250
2210
2140
2030
1900
1870
1960
2250
2470
2750
2940
3290
3370
3390
..
TTO
Trinidad and Tobago
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
3720
3910
4160
3920
3850
3870
4110
4270
4470
4680
5200
5940
6630
7920
9420
10880
12960
14840
16910
15950
15400
..
TUN
Tunisia
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
1430
1480
1700
1680
1740
1820
2010
2080
2050
2090
2090
2060
2000
2260
2650
2870
3040
3210
3540
3860
4060
..
TUR
Turkey
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
2300
2580
2930
3140
2670
2830
2900
3170
3390
3510
4170
3450
3460
3790
5040
6480
7470
8440
9260
9060
9890
..
TUV
Tuvalu
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4170
4350
4920
4720
4530
..
TZA
Tanzania
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
200
180
180
170
160
170
190
210
250
280
300
310
310
330
360
390
390
410
460
500
530
..
UGA
Uganda
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
320
240
190
170
180
230
270
290
280
280
260
250
250
250
270
300
340
380
420
470
500
..
UKR
Ukraine
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
1610
1520
1420
1230
1010
920
860
890
850
760
700
730
790
980
1270
1540
1950
2570
3210
2840
3010
..
UMC
Upper middle income
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
1206.50500082
1295.35968413
1376.46831153
1428.90775504
1500.78555013
1607.73919325
1768.8227385
1904.89248911
1863.26134015
1814.29409453
1891.33081475
1891.11874938
1917.09371805
2098.23717662
2469.91445878
2934.74993647
3433.35562383
4101.84799855
4880.42970434
5250.96916873
5876.42473496
..
URY
Uruguay
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
2840
3180
3840
4360
5040
5530
6190
7000
7280
7300
7100
6540
5170
4270
4150
4740
5440
6510
8020
8970
10590
..
USA
United States
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
23260
23460
24810
25550
26820
28090
29290
30250
30930
32630
34890
35480
35950
38320
41980
44630
46240
46840
47660
46330
47240
..
UZB
Uzbekistan
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
600
600
580
580
600
610
620
650
630
560
450
420
460
530
600
730
890
1090
1280
..
VCT
St. Vincent and the Grenadines
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
1740
1830
2120
2170
2130
2290
2450
2760
2790
2800
2920
3050
3170
3360
3760
3980
4440
4930
5130
5120
4850
..
VEN
Venezuela, RB
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
2570
2590
2760
2740
2640
2930
2980
3370
3360
3550
4100
4580
3970
3470
4080
4950
6090
7500
9160
10070
11590
..
VIR
Virgin Islands (U.S.)
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VNM
Vietnam
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
130
110
130
170
200
260
310
350
360
370
390
410
430
480
550
630
700
790
920
1020
1110
..
VUT
Vanuatu
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
1200
1090
1120
1210
1170
1270
1280
1310
2380
1820
1480
1420
1280
1400
1640
1820
2010
2180
2550
2620
2760
..
WBG
West Bank and Gaza
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
..
..
..
..
1460
1590
1700
1730
1560
1210
1030
1070
1150
1250
..
..
..
..
..
..
WLD
World
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
4079.47687115
4204.24396273
4501.72862107
4583.20231953
4773.83491699
5065.02787768
5305.8239797
5351.60801051
5112.52991809
5119.77783054
5297.3193191
5266.55926534
5224.17615927
5623.78501944
6430.67731565
7142.48269024
7617.69686251
8123.06224711
8717.14698812
8737.29885752
9116.23185598
..
WSM
Samoa
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
1070
1000
1010
1070
810
1010
1350
1360
1380
1390
1420
1450
1450
1520
1860
2090
2380
2540
2880
2780
2860
..
YEM
Yemen, Rep.
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
..
..
410
380
290
270
280
330
390
380
410
460
480
490
570
670
780
870
970
1070
..
..
ZAF
South Africa
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
3390
3320
3320
3460
3610
3740
3760
3680
3290
3150
3050
2830
2620
2860
3620
4850
5480
5770
5860
5730
6090
..
ZAR
Congo, Dem. Rep.
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
230
210
190
190
150
140
120
110
110
100
90
80
90
100
110
120
130
150
160
170
180
..
ZMB
Zambia
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
440
400
370
380
350
350
370
370
320
320
310
320
320
370
420
500
620
750
970
990
1070
..
ZWE
Zimbabwe
NY.GNP.PCAP.CD
GNI per capita (Atlas $)
0
0
860
850
690
630
620
600
670
670
590
530
480
510
460
410
420
430
410
400
320
370
460
..
ABW
Aruba
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
100.268
98.222
98.782
98.36
97.993
96.276
97.927
98.692
99.42
100.179
99.226
..
..
ADO
Andorra
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
101.457
101.432
101.34
102.83
104.081
103.246
103.437
104.224
..
..
AFG
Afghanistan
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
53.933
..
35.782
42.525
46.569
..
..
..
..
..
0
..
54.833
41.012
55.568
58.223
57.736
59.787
62.272
..
..
AGO
Angola
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
82.045
..
..
..
..
..
..
..
..
..
..
..
..
..
ALB
Albania
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
95.035
96.063
..
..
99.83
96.829
96.109
..
..
96.031
97.365
98.417
..
97.739
97.667
..
..
..
..
99.504
..
..
ARE
United Arab Emirates
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
103.86
104.111
103.977
103.984
102.649
101.39
..
100.63
100.95
100.684
100.102
99.729
100.512
100.709
100.435
100.653
101.056
100.633
..
99.758
..
..
ARG
Argentina
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
102.813
103.057
101.879
101.435
100.918
100.644
100.493
102.51
103.534
103.832
104.058
104.501
105.033
..
..
..
ARM
Armenia
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
104.068
104.878
103.245
102.077
103.038
103.534
104.232
103.518
102.533
..
..
ASM
American Samoa
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
102.761
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ATG
Antigua and Barbuda
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
..
135.315
..
..
..
..
..
..
96.246
94.358
97.117
..
..
AUS
Australia
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
100.099
99.711
99.591
99.718
101.647
102.005
99.855
99.991
98.905
98.085
98.408
97.753
97.427
96.978
97.612
97.297
97.711
..
..
AUT
Austria
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
94.231
94.832
94.859
95.3
95.579
95.503
95.883
96.34
95.873
96.424
96.711
96.749
96.286
96.22
96.206
96.535
96.893
96.95
96.734
96.75
..
..
AZE
Azerbaijan
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
100.165
100.047
98.338
95.578
107.303
106.569
103.135
99.633
99.303
96.258
94.409
94.125
94.227
95.326
95.151
95.037
96.973
99.015
101.725
..
..
BDI
Burundi
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
79.041
81.776
79.85
79.974
..
..
..
..
..
..
..
..
..
79.938
82.046
83.954
88.593
90.022
91.321
92.677
..
..
BEL
Belgium
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
101.027
101.17
100.99
103.036
103.099
103.854
103.702
..
..
103.895
105.512
106.145
106.743
105.736
98.16
98.023
97.987
98.018
98.253
98.301
..
..
BEN
Benin
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
62.355
64.21
65.477
66.999
68.163
70.306
73.497
..
..
..
..
..
..
BFA
Burkina Faso
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
68.549
70.145
71.372
72.661
73.922
76.877
78.432
80.1
81.944
84.095
85.612
87.616
..
BGD
Bangladesh
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
74.917
..
..
..
..
..
..
..
..
..
..
..
..
..
..
104.851
105.214
106.128
108.244
..
..
..
BGR
Bulgaria
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
99.242
99.435
99.49
99.225
99.711
99.466
98.812
99.114
98.289
98.053
97.775
97.732
97.78
97.697
96.706
96.562
96.614
96.63
97.411
97.347
..
..
BHR
Bahrain
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
101.455
101.639
101.894
102.353
102.058
102.843
103.575
103.997
104.013
104.128
104.676
103.986
103.74
103.343
102.968
102.283
..
101.198
100.545
..
..
BHS
Bahamas, The
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
101.89
102.081
..
100.351
..
125.767
..
98.95
95.67
96.392
103.849
102.019
100.412
100.343
100.661
101.706
101.171
..
..
..
BIH
Bosnia and Herzegovina
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
101.995
101.641
102.118
..
..
BLR
Belarus
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
101.334
102.33
101.812
102.134
101.87
101.822
100.114
100.238
100.59
101.081
..
..
101.913
..
BLZ
Belize
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
98.896
..
..
97.777
98.675
..
..
..
100.469
99.485
100.067
98.949
100.617
99.92
98.194
100.147
101.569
101.05
101.328
..
..
BMU
Bermuda
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
103.815
105.976
107.798
110.686
108.691
97.872
..
..
..
108.613
..
BOL
Bolivia
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
96.019
96.401
97.507
97.799
97.947
98.405
..
..
98.293
98.661
98.784
..
..
..
BRA
Brazil
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
102.944
102.864
103.051
103.076
103.266
101.942
102.901
..
..
102.527
..
..
..
BRB
Barbados
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BRN
Brunei Darussalam
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
100.139
101.727
102.001
100.905
..
..
..
102.108
101.952
101.721
102.118
102.227
102.958
102.163
101.84
101.542
101.254
101.122
101.175
..
..
BTN
Bhutan
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
82.834
84.511
86.049
88.138
89.581
..
..
93.885
95.24
..
97.775
100.446
..
..
BWA
Botswana
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
108.019
108.694
107.444
105.725
104.144
103.529
..
..
102.37
102.199
101.623
101.43
101.235
101.222
100.642
100.666
100.495
100.016
..
..
..
..
CAF
Central African Republic
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
59.103
60.552
62.015
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
68.645
68.651
69.426
..
CAN
Canada
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
100.029
99.439
99.289
99.083
99.09
99.412
99.397
..
99.788
..
101.128
..
100.628
..
..
98.505
98.657
98.681
..
..
..
..
CHE
Switzerland
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
96.704
97.004
97.341
95.629
96.035
96.095
96.313
..
95.517
96.074
96.662
97.217
97.2
97.151
96.617
96.734
96.618
96.948
97.26
97.576
..
..
CHI
Channel Islands
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHL
Chile
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
101.004
99.646
100.006
100.914
..
..
..
..
99.982
99.96
99.585
..
99.48
99.265
98.197
98.261
98.626
98.634
98.531
..
..
..
CHN
China
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
85.201
86.409
87.863
88.687
90.914
92.487
94.046
95.092
..
..
..
99.147
..
99.648
..
..
102.744
103.284
104.003
104.846
..
..
CIV
Cote d'Ivoire
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
69.078
69.342
70.694
68.628
..
..
..
..
..
..
..
..
..
CMR
Cameroon
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
82.329
82.979
87.268
..
..
84.753
..
85.455
80.648
82.654
..
85.336
..
84.81
84.104
82.635
82.806
..
84.248
85.609
..
..
COG
Congo, Rep.
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
88.537
..
88.629
..
..
..
87.862
..
..
..
85.671
..
88.832
86.319
91.88
..
..
..
..
..
..
..
COK
Cook Islands
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
103.242
99.65
106.344
105.382
104.3
104.5
104.456
107.771
..
105.693
..
109.682
106.169
..
COL
Colombia
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
107.596
110.494
107.22
..
105.224
101.709
..
102.787
104.287
103.708
103.529
103.64
..
103.8
103.406
104.212
104.589
104.307
104.552
..
..
COM
Comoros
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
83.784
84.116
..
82.212
82.023
84.133
84.191
..
..
..
..
..
..
CPV
Cape Verde
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
93.964
..
..
..
94.242
..
..
..
..
..
..
99.132
99.182
100.004
100.229
99.739
103.233
103.973
100.8
103.397
..
..
CRI
Costa Rica
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
100.171
100.73
100.811
101.411
101.573
101.92
102.472
102.487
102.21
101.951
101.471
102.357
101.487
101.703
101.703
101.644
102.056
101.689
102.029
102.05
..
..
CUB
Cuba
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
104.576
105.957
107.173
105.862
104.793
105.085
100.57
102.799
..
100.657
99.947
100.332
97.835
97.445
98.96
99.186
99.587
98.859
98.788
98.81
..
..
CUW
Curacao
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
90.554
99.228
96.129
100.3
..
99.686
94.173
95.734
96.896
100.857
..
..
..
CYP
Cyprus
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
99.913
100.405
100.414
100.918
100.581
100.364
107.473
101.171
..
101.296
101.198
100.584
101.154
101.033
101.149
100.908
100.742
100.612
100.065
100.186
..
..
CZE
Czech Republic
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
94.042
97.987
107.814
104.843
100.722
101.803
101.796
101.803
102.478
101.966
100.731
101.413
101.182
101.099
100.462
100.654
100.746
100.646
100.619
100.674
..
..
DEU
Germany
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
98.959
97.61
97.962
98.045
98.203
98.439
98.33
98.533
98.81
98.813
98.725
98.504
98.496
98.421
97.878
98.33
98.136
96.368
..
..
DJI
Djibouti
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
72.247
..
71.315
77.481
76.409
75.231
74.325
73.426
..
71.372
70.966
71.508
71.514
73.502
75.27
75.625
75.826
79.436
79.972
81.987
..
..
DMA
Dominica
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
103.475
..
..
..
..
..
..
..
107.101
101.578
100.682
100.262
100.575
98.822
99.197
98.869
99.282
98.227
101.998
..
..
DNK
Denmark
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
101.235
100.729
100.996
101.531
101.618
101.766
101.244
..
102.331
102.871
102.272
102.509
102.424
102.545
102.084
101.503
101.459
101.624
102.026
101.735
..
..
DOM
Dominican Republic
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
104.68
105.027
104.249
107.079
107.196
107.358
103.871
103.647
104.045
103.562
102.927
96.516
..
..
DZA
Algeria
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
81.593
82.906
84.314
85.565
87.2
88.55
89.721
92.08
..
..
..
..
97.608
98.449
99.039
99.308
..
..
..
98.411
..
..
EAP
East Asia & Pacific
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
89.3023667798
..
..
..
..
..
..
..
96.966
97.744
98.457
98.756
99.005
99.885
100.506
101.377
101.788
102.216
102.791
..
..
ECA
Europe & Central Asia
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
97.9384434446
..
..
..
..
..
..
..
95.899
96.042
95.46
95.41
95.462
95.772
96
96.443
96.658
97.064
97.146
..
..
ECU
Ecuador
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
99.581
..
..
..
..
100.932
100.659
100.09
100.556
100.066
100.398
99.858
100.094
100.208
100.314
101.607
..
..
..
EGY
Egypt, Arab Rep.
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
80.487
81.149
84.367
85.103
83.96
..
..
..
..
91.527
92.536
93.444
..
94.403
95.114
..
..
..
..
96.074
..
..
EMU
Euro area
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
99.959
100.111
100.047
99.865
100.075
99.694
99.528
99.331
99.447
99.385
98.978
..
..
ERI
Eritrea
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
82.399
78.681
78.22
79.012
78.913
..
77.821
77.38
77.853
74.317
74.727
70.666
71.699
71.998
77.745
77.213
77.317
..
..
ESP
Spain
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
102.83
103.733
104.398
104.685
104.833
104.949
105.322
102.877
103.22
103.028
102.834
102.487
102.898
102.399
102.815
102.656
102.607
102.835
102.586
101.927
..
..
EST
Estonia
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
103.027
102.636
105.459
104.676
103.599
..
100.823
100.521
100.503
99.629
99.812
100.657
100.346
99.997
100.696
101.027
101.15
..
..
..
ETH
Ethiopia
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
68.417
74.864
73.589
66.802
62.951
59.87
..
..
61.637
65.058
68.086
69.13
69.335
72.78
77.433
80.489
82.574
85.096
87.926
..
..
FIN
Finland
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
108.713
109.37
110.609
109.189
108.639
107.803
109.206
107.352
105.128
104.702
104.792
105.424
105.676
105.311
102.063
102.028
102.058
102.207
102.221
102.341
..
..
FJI
Fiji
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
98.319
99.732
..
..
..
..
..
102.673
104.473
103.295
103.087
104.16
103.279
102.309
102.33
103.606
104.074
102.764
..
..
..
FRA
France
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
102.892
102.3
102.02
101.605
98.866
98.513
98.708
99.064
99.264
99.479
99.665
99.844
99.917
100.11
99.883
99.579
99.414
99.513
99.562
99.781
..
..
FRO
Faeroe Islands
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FSM
Micronesia, Fed. Sts.
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
101.743
102.006
..
..
..
..
..
..
GAB
Gabon
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
96.628
94.924
96.461
..
..
95.938
95.868
..
..
..
..
..
..
..
..
..
..
..
GBR
United Kingdom
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
101.933
102.179
101.989
99.399
99.432
99.52
99.632
99.946
100.138
100.268
100.409
100.31
100.647
101.766
101.424
101.465
101.804
101.6
101.28
..
..
..
GEO
Georgia
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
98.242
97.108
96.484
94.113
94.318
98.267
97.147
..
98.221
98.308
99.98
99.422
98.046
97.27
96.817
100.177
..
96.46
..
..
..
GHA
Ghana
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
77.956
..
..
..
..
..
..
..
..
88.55
89.657
91.148
91.424
93.93
90.847
92.211
94.188
95.241
95.648
95.444
..
..
GIB
Gibraltar
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GIN
Guinea
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
44.026
45.004
..
45.405
47.092
..
50.719
..
..
58.119
61.503
64.353
66.996
69.43
70.447
72.725
74.553
76.28
77.066
77.154
..
..
GMB
Gambia, The
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
64.8
66.402
68.338
69.488
73.997
..
..
..
..
..
..
..
..
..
..
..
101.241
101.083
99.693
..
GNB
Guinea-Bissau
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
..
65.488
..
..
..
..
..
..
..
..
..
..
..
GNQ
Equatorial Guinea
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
81.551
86.434
..
..
..
..
67.749
81.071
..
82.524
..
..
..
..
..
..
..
..
..
GRC
Greece
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
98.447
98.71
99.077
100.657
97.991
101.711
101.846
102.543
102.698
102.602
103.486
102.796
101.277
100.859
99.742
98.661
98.589
97.291
..
..
..
..
GRD
Grenada
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
101.62
..
92.132
103.979
..
..
..
..
..
..
..
..
103.788
99.289
101.89
99.527
..
98.155
93.194
96.95
..
..
GRL
Greenland
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GTM
Guatemala
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
87.151
..
..
86.288
..
87.143
86.088
88.907
89.589
90.146
90.626
91.094
91.633
92.328
93.067
93.778
..
..
..
GUM
Guam
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GUY
Guyana
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
99.699
99.005
100.099
99.587
..
99.096
98.415
98.696
96.308
99.615
99.663
..
..
HIC
High income
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
99.9179771053
..
..
..
..
..
..
..
100.387
99.623
99.817
99.595
99.745
99.423
99.599
99.415
99.457
99.318
99.579
..
..
HKG
Hong Kong SAR, China
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
100.111
..
..
..
..
96.077
96.441
97.649
98.604
99.567
100.144
100.856
101.488
102.335
..
..
HND
Honduras
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
104.49
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
106.425
107.286
..
..
..
HRV
Croatia
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
102.583
101.746
101.521
101.211
100.722
100.524
100.695
100.956
100.895
100.944
100.809
..
101.904
101.847
102.005
102.206
102.363
..
..
HTI
Haiti
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
94.6395474283
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HUN
Hungary
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
100.447
100.334
100.322
..
101.97
102.081
101.854
101.551
100.952
100.368
99.909
99.887
99.934
99.654
98.923
98.722
98.785
98.958
98.39
98.712
..
..
IDN
Indonesia
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
92.685
93.342
94.05
92.368
93.142
93.002
93.055
..
..
..
95.968
97.712
98.039
98.246
98.569
97.302
97.87
97.581
98.036
97.658
..
..
IMY
Isle of Man
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IND
India
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
73.444
74.619
74.635
75.352
76.567
..
78.479
78.911
79.569
81.485
89.768
89.968
90.164
90.188
92.183
..
..
..
..
IRL
Ireland
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
104.613
104.333
103.982
101.827
102.221
102.844
103.638
104.131
102.317
102.259
102.87
103.072
103.419
103.131
102.788
103.35
102.702
102.672
102.842
102.664
..
..
IRN
Iran, Islamic Rep.
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
82.811
84.877
85.682
86.649
87.224
88.029
..
90.432
..
92.334
93.403
93.962
94.861
95.153
96.777
97.469
98.119
100.497
..
96.537
..
..
IRQ
Iraq
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
78.519
..
..
78.699
..
..
77.758
77.034
77.288
78.281
81.024
78.89
..
..
81.26
..
..
..
..
ISL
Iceland
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
99.128
99.146
98.566
98.92
..
100.654
101.673
102.383
102.178
102.176
102.371
100.316
99.753
100.754
102.992
101.882
101.609
..
..
ISR
Israel
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
104.748
104.529
102.884
103.059
102.345
..
..
..
99.847
99.332
99.616
99.533
99.292
99.011
100.193
100.289
100.536
100.882
101.369
101.515
..
..
ITA
Italy
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
100.112
99.505
99.599
100.639
100.983
98.94
99.267
99.528
99.065
99.257
..
98.308
97.156
99.203
99.424
99.186
99.133
99.07
99.086
..
..
..
JAM
Jamaica
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
102.602
..
100.224
..
..
..
..
..
100.564
100.979
100.459
100.144
99.665
99.408
99.269
..
100.294
100.082
..
..
..
JOR
Jordan
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
101.899
101.415
103.398
103.315
102.803
..
101.638
..
..
101.372
101.627
..
101.348
101.558
101.293
101.522
102.701
102.751
102.169
..
..
..
JPN
Japan
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
101.354
100.888
100.916
101.187
100.819
100.761
..
..
100.739
100.681
100.592
100.515
100.403
100.267
100.123
100.069
100.075
100.083
100.055
100.122
..
..
KAZ
Kazakhstan
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
106.763
103.614
100.158
101.568
98.868
99.129
100.691
99.041
98.864
98.743
99.154
98.914
98.472
98.622
..
KEN
Kenya
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
96.704
97.579
..
95.133
97.163
94.239
95.937
96.062
95.176
95.881
95.396
..
..
KGZ
Kyrgyz Republic
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
100.352
..
102.044
..
..
..
..
..
..
100.773
101.057
99.207
99.642
100.46
100.66
100.225
100.539
100.575
100.48
100.682
..
..
KHM
Cambodia
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
79.248
81.214
81.742
83.271
84.496
85.526
87.012
..
89.226
89.652
..
..
..
..
KIR
Kiribati
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
99.223
..
..
..
..
105.747
..
..
..
107.653
122.151
115.171
106.588
106.488
109.488
106.597
107.299
109.155
107.043
..
..
..
KNA
St. Kitts and Nevis
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
98.679
98.669
..
..
..
..
..
..
100.359
99.413
102.254
104.132
105.928
102.847
..
100.345
103.267
104.114
..
..
KOR
Korea, Rep.
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
98.279
98.873
99.402
100.048
99.941
101.185
101.183
100.778
99.947
99.307
98.763
98.235
97.744
97.454
97.262
97.185
97.027
96.991
97.175
97.227
..
..
KSV
Kosovo
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KWT
Kuwait
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
96.73
..
99.733
100.119
100.489
102.342
100.409
101.078
101.887
101.445
102.868
103.993
102.949
103.256
103.742
101.888
102.133
99.896
101.128
100.765
..
..
LAC
Latin America & Caribbean
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
99.1613950229
..
..
..
..
..
..
..
101.129
101.149
101.398
101.442
101.826
101.325
101.611
101.697
101.706
101.84
101.828
..
..
LAO
Lao PDR
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
77.084
..
77.133
76.291
76.345
77.827
78.195
78.815
79.869
81.15
81.309
81.909
82.342
82.968
83.805
84.124
85.046
85.989
87.222
..
..
..
LBN
Lebanon
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
101.168
..
101.3
103.216
102.547
101.819
102.005
102.026
..
..
..
..
..
..
102.924
103.659
103.321
103.634
..
..
LBR
Liberia
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
71.108
71.911
..
..
..
..
..
..
..
..
..
..
..
LBY
Libya
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
102.94
101.302
..
107.846
105.404
..
..
..
..
..
LCA
St. Lucia
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
103.44
103.002
104.03
106.275
..
..
..
101.099
..
103.668
106.528
104.25
105.97
99.952
99.492
102.89
100.556
101.33
100.134
99.429
..
..
LIC
Low income
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
79.5717034179
..
..
..
..
..
..
..
84.576
85.937
86.629
86.985
87.661
86.482
88.591
89.309
89.854
90.474
91.193
..
..
LIE
Liechtenstein
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
103.477
103.817
..
105.825
103.695
102.832
93.019
..
..
LKA
Sri Lanka
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
101.867
102.367
102.324
102.517
103.195
102.352
..
..
..
..
..
..
103.215
103.53
..
..
..
..
..
..
..
..
LMC
Lower middle income
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
81.0950842116
..
..
..
..
..
..
..
83.711
84.12
84.863
85.816
90.137
90.182
90.392
90.812
92.083
92.349
92.666
..
..
LMY
Low & middle income
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
84.2648256546
..
..
..
..
..
..
..
90.254
90.711
91.279
91.755
93.736
93.709
94.258
94.694
95.407
95.651
95.959
..
..
LSO
Lesotho
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
123.795
123.502
121.174
118.984
117.155
..
114.771
113.262
113.731
111.624
107.19
105.39
105.244
104.853
103.861
103.932
103.904
104.684
105.054
107.137
..
..
LTU
Lithuania
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
96.247
..
101.709
101.15
100.549
99.768
99.602
99.276
99.011
98.628
98.499
99.437
99.58
99.721
99.685
99.547
99.433
..
..
LUX
Luxembourg
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
102.737
103.511
103.208
103.026
102.955
102.928
103.429
102.86
102.351
102.355
..
..
..
LVA
Latvia
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
100.981
102.847
102.218
104.752
103.716
103.621
103.282
101.655
101.432
101.196
100.698
99.978
99.085
98.915
99.291
99.652
100.056
100.03
99.773
..
..
MAC
Macao SAR, China
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
98.715
100.284
102.023
102.82
..
..
..
..
..
100.205
99.181
98.885
98.512
98.369
96.899
96.377
96.567
95.465
95.178
95.192
..
..
MAF
St. Martin (French part)
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
68.838
69.634
70.066
71.093
72.328
73.667
74.657
75.826
77.586
80.247
82.444
84.508
85.954
87.093
87.401
87.351
..
88.071
..
..
..
..
MCO
Monaco
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
104.05
..
..
..
..
..
..
..
98.136
..
..
MDA
Moldova
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
105.125
105.314
105.364
105.994
105.738
102.142
..
..
..
98.731
100.997
101.457
101.644
102.112
102.932
102.45
102.707
101.683
101.387
101.138
..
..
MDG
Madagascar
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
95.578
..
..
..
..
..
..
..
96.043
..
..
..
..
..
..
95.782
96.003
96.496
96.519
96.896
..
..
MDV
Maldives
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
99.906
100.237
100.222
101.099
101.413
101.073
100.731
100.099
100.997
99.548
99.724
..
98.18
..
..
..
..
..
MEX
Mexico
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
96.518
97.324
96.342
96.994
97.038
97.436
97.215
97.417
98.147
99.03
99.797
100.438
101.089
101.956
101.382
101.1
101.165
101.275
101.509
101.698
..
..
MHL
Marshall Islands
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
101.639
..
..
98.176
105.136
99.497
115.468
100.289
99.055
103.166
101.084
..
..
MIC
Middle income
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
85.1442401543
..
..
..
..
..
..
..
91.163
91.523
92.097
92.618
94.829
95.014
95.344
95.773
96.541
96.749
97
..
..
MKD
Macedonia, FYR
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
98.958
98.948
98.689
97.833
97.84
97.324
97.673
97.737
98.217
98.957
98.836
98.718
98.703
..
98.414
98.311
98.836
..
..
MLI
Mali
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
57.617
57.733
56.579
59.082
60.343
63.829
62.973
62.448
65.683
66.931
69.491
..
..
70.512
72.721
73.898
75.215
77.182
77.617
78.439
80.083
..
MLT
Malta
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
95.445
95.247
94.897
95.222
94.146
95.274
100.353
..
..
92.398
100.364
98.368
98.925
98.95
95.68
97.077
..
101.097
98.945
..
..
..
MMR
Myanmar
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
93.296
95.152
95.516
95.4
95.948
..
..
..
..
97.916
100.465
97.151
97.446
97.664
97.424
99.37
98.875
..
..
99.651
..
..
MNA
Middle East & North Africa
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
79.5072730149
..
..
..
..
..
..
..
88.344
89.46
89.907
90.634
91.357
91.842
92.171
92.481
93.369
93.15
92.774
..
..
MNE
Montenegro
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
100.515
..
99.973
100.159
..
MNG
Mongolia
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
109.396
..
118.394
122.346
122.361
119.964
118.01
116.088
112.424
111.186
110.795
109.918
107.673
106.165
106.093
105.596
..
..
103.343
..
..
MNP
Northern Mariana Islands
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MOZ
Mozambique
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
72.728
71.492
72.219
71.13
69.608
69.355
..
..
73.148
73.509
74.907
76.547
78.308
..
82.034
83.019
84.718
85.478
86.57
88.287
88.951
..
MRT
Mauritania
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
68.903
71.465
74.865
78.47
80.936
81.825
82.955
..
93.236
95.559
95.307
94.924
97.021
99.137
100.689
102.939
101.64
102.653
..
..
..
..
MUS
Mauritius
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
100.407
101.744
..
..
..
..
101.795
..
100.935
99.704
98.578
99.177
100.552
100.137
99.505
99.686
100.333
100.438
100.465
101.335
..
..
MWI
Malawi
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
80.928
82.319
..
89.054
92.227
88.47
88.42
..
..
90.553
92.633
93.292
93.427
96.069
98.794
98.811
100.008
99.799
99.373
99.997
..
..
MYS
Malaysia
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
101.522
100.917
101.718
102.109
102.834
..
..
..
103.161
101.576
103.2
103.058
103.517
104.973
104.87
103.69
103.06
102.631
102.71
..
..
..
MYT
Mayotte
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NAM
Namibia
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
110.826
106.372
105.56
104.705
103.93
103.151
103.145
103.324
103.474
103.141
103.168
103.507
103.414
103.17
103.539
103.371
103.774
103.804
..
..
..
..
NCL
New Caledonia
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NER
Niger
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
52.989
52.697
54.279
56.374
..
59.658
60.401
62.22
63.592
64.778
65.034
65.393
65.787
67.129
67.743
69.343
70.01
70.946
73.941
75.286
77.868
..
NGA
Nigeria
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
76.523
..
..
..
..
..
..
..
..
80.99
80.226
81.483
79.986
80.92
81.775
83.017
84.204
85.107
..
..
..
..
NIC
Nicaragua
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
106.327
105.207
105.251
105.192
103.788
102.704
102.265
101.951
102.151
102.483
102.494
..
..
..
NIU
Niue
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
84.345
104.9
107.641
101.966
..
..
138.169
129.443
..
..
..
..
..
..
NLD
Netherlands
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
97.006
97.015
97.06
98.688
95.458
96.306
96.052
96.888
97.18
96.646
96.872
97.383
97.542
98.045
97.814
97.677
97.79
97.933
98.195
98.556
..
..
NOR
Norway
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
102.239
101.658
100.777
98.838
98.568
97.262
97.237
98.166
100.42
101.099
101.311
101.096
101.137
101.073
101.583
100.675
100.061
99.422
99.007
98.873
..
..
NPL
Nepal
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
56.562
59.443
62.508
63.924
66.388
68.256
70.893
..
..
75.15
77.117
80.31
82.476
..
..
..
..
..
..
..
..
..
NRU
Nauru
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
104.372970141
..
124.812
102.547
113.339
101.458
105.346
106.54
105.508
108.587
111.964
..
..
..
NZL
New Zealand
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
99.379
99.83
99.227
99.856
101.193
98.976
102.767
102.473
103.103
102.768
103.265
..
106.404
106.24
103.853
103.884
103.115
102.085
103.379
102.488
..
..
OMN
Oman
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
85.962
88.715
90.55
92.305
93.741
94.95
95.585
96.223
96.708
97.734
97.945
98.351
98.311
97.814
..
..
..
..
..
97.05
..
..
PAK
Pakistan
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
48.2912131056
..
..
..
..
..
55.6896783672
..
..
..
..
..
..
74.331
74.337
76.482
77.853
79.791
80.208
81.898
..
..
PAN
Panama
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
99.333
..
..
..
..
..
..
..
..
100.41
100.19
100.588
100.442
100.444
100.876
100.739
101.301
100.997
101.087
101.245
..
..
PER
Peru
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
96.191
..
..
..
96.165
..
..
97.179
97.297
97.012
97.149
97.058
97.34
98.732
98.714
99.006
99.085
99.38
..
..
..
PHL
Philippines
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
99.369
..
..
..
..
..
..
..
101.946
102.401
..
102.612
102.273
102.189
102.332
102.786
102.475
102.083
101.685
..
..
..
PLW
Palau
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
99.99
100.441
..
..
97.087
99.724
..
..
99.659
..
..
..
..
PNG
Papua New Guinea
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
78.241
79.609
80.253
82.248
82.567
84.009
..
..
83.531
..
..
..
..
..
..
..
..
..
..
..
..
..
POL
Poland
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
100.643
100.541
100.156
99.057
99.035
..
..
98.657
98.669
98.521
98.272
98.115
97.885
97.461
100.419
99.444
99.087
99.255
99.493
99.588
..
..
PRI
Puerto Rico
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
102.280979681
..
..
PRK
Korea, Dem. Rep.
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRT
Portugal
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
97.198
102.761
..
104.02
101.629
101.51
102.106
..
101.736
101.89
101.081
101.889
..
101.547
101.72
101.759
101.396
100.546
99.858
100.502
..
..
PRY
Paraguay
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
97.554
98.132
..
98.4
98.305
99.187
99.041
99.252
98.952
98.491
98.452
98.281
98.122
98.27
98.67
99.059
99.321
99.289
99.523
99.664
..
..
PYF
French Polynesia
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
110.986
105.128
106.088
109.39
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
QAT
Qatar
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
98.195
98.06
97.237
97.907
96.607
97.132
98.937
..
94.764
100.497
100.104
104.281
103.844
106.688
108.889
113.481
116.069
118.899
119.781
119.971
..
..
ROM
Romania
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
97.675
99.347
99.929
99.275
100.964
101.046
100.451
99.346
100.049
100.265
100.333
100.199
100.355
100.407
100.265
100.27
99.927
99.251
98.886
99.181
..
..
RUS
Russian Federation
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
101.491580116
..
104.824963862
105.41582482
105.607382835
..
..
..
..
..
..
..
..
99.608
..
98.892
98.634
98.338
98.038
..
..
..
RWA
Rwanda
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
94.758
95.241
94.401
..
..
..
..
..
..
97.714
95.957
97.929
98.898
98.702
99.974
100.191
101.79
100.121
100.146
100.306
..
..
SAS
South Asia
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
69.2854052155
..
..
..
..
..
..
..
78.725
79.455
80.418
82.213
89.032
88.375
89.393
89.651
91.41
92.237
..
..
..
SAU
Saudi Arabia
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
94.37
..
..
90.699
91.305
..
..
SDN
Sudan
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
77.534
78.811
..
..
..
..
..
..
..
..
88.016
87.641
88.077
88.201
88.878
89.289
87.596
89.114
89.4
..
..
SEN
Senegal
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
67.425
..
69.287
..
75.733
..
75.111
76.906
79.136
78.466
81.931
83.644
85.118
86.863
89.405
90.839
92.456
93.765
95.498
..
..
..
SGP
Singapore
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SID
Small island developing states
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLB
Solomon Islands
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
84.081
83.617
83.522
83.631
85.437
..
..
..
..
89.708
90.487
92.328
91.719
91.784
93.381
93.323
93.991
94.001
..
..
..
..
SLE
Sierra Leone
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
61.836
63.633
..
..
..
..
..
..
..
..
..
68.037
..
..
..
..
..
..
..
..
..
..
SLV
El Salvador
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
101.103
100.412
99.735
..
..
..
..
96.098
95.184
95.356
96.353
95.74
97.275
97.546
97.642
98.253
100.795
98.28
..
..
..
SMR
San Marino
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
102.753
..
..
SOM
Somalia
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
53.454
..
..
..
..
SRB
Serbia
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
100.39
101.077
101.12
101.645
102.382
102.1
102.167
102.435
101.898
101.752
101.433
..
..
SSA
Sub-Saharan Africa
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
81.7825518015
..
..
..
..
..
..
..
84.093
84.123
84.637
84.227
84.861
85.267
86.089
86.999
87.597
87.484
88.552
..
..
STP
Sao Tome and Principe
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
100.056
98.65
98.97
99.526
101.253
99.952
103.137
100.392
..
SUR
Suriname
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
116.03
107.426
106.139
102.488
..
..
..
..
..
..
..
106.522
112.719
110.373
..
108.52
109.323
108.701
107.411
..
..
..
SVK
Slovak Republic
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
102.345
102.363
103.228
102.188
..
101.198
101.132
100.932
100.735
100.594
100.198
100.589
100.318
100.256
100.319
100.411
100.571
..
..
SVN
Slovenia
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
103.398
103.107
102.885
102.673
102.353
102.255
101.866
103.121
101.373
100.06
99.445
99.957
99.62
99.745
99.295
99.311
99.408
..
..
SWE
Sweden
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
102.317
102.39
102.353
108.211
107.915
108.824
109.902
110.96
115.158
115.267
115.175
114.61
112.425
110.832
101.418
99.63
99.554
99.404
99.277
99.083
..
..
SWZ
Swaziland
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
96.133
96.069
95.476
96.274
95.147
96.353
94.513
95.197
95.074
92.097
..
..
..
..
SXM
Sint Maarten (Dutch part)
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
100.725
..
..
100.568
102.864
103.719
103.361
101.584
101.724
102.973
100.611
..
103.073
104.324
103.471
..
..
SYR
Syrian Arab Republic
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
84.625
85.132
86.131
87.685
88.025
88.668
89.734
90.646
91.519
91.547
92.048
92.118
92.395
93.474
93.78
94.34
95.078
96.148
96.801
97.277
..
..
TCA
Turks and Caicos Islands
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
98.2
97.01
101.12
99.527
..
..
..
..
..
..
TCD
Chad
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
40.916
..
..
..
44.065
44.202
45.194
48.156
50.476
53.263
55.816
57.714
59.133
59.843
59.649
61.013
61.351
64.174
63.611
63.62
..
..
TGO
Togo
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
58.133
59.008
59.691
..
59.934
61.293
62.02
63.565
..
67.085
69.127
70.013
71.309
72.062
73.395
74.241
75.429
75.282
..
..
..
..
THA
Thailand
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
98.526
98.894
98.734
..
..
..
..
..
..
..
97.607
98.747
98.819
101.862
100.885
102.131
102.795
102.613
102.95
..
..
TJK
Tajikistan
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
89.761
88.887
87.163
87.614
87.994
88.449
88.327
87.79
88.733
90.556
..
..
..
TKM
Turkmenistan
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TMP
Timor-Leste
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
94.876
94.768
..
..
..
..
..
..
TON
Tonga
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
99.193
100.56
..
98.115
..
..
..
..
102.974
102.784
102.285
103.115
103.818
..
101.362
..
99.887
..
..
..
..
..
TTO
Trinidad and Tobago
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
102.427
101.267
100.862
101.181
..
..
..
..
..
103.165
103.21
102.112
103.786
101.911
101.057
100.066
..
100.812
100.794
..
..
..
TUN
Tunisia
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
84.569
86.005
87.72
89.195
90.912
92.019
93.32
94.533
..
97.44
99.48
99.994
99.696
101.846
..
103.271
103.481
..
103.339
103.426
..
..
TUR
Turkey
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
80.768
80.927
81.293
81.315
82.277
81.463
..
..
..
80.894
82.854
82.729
82.676
82.78
85.808
89.36
90.077
90.963
92.875
..
..
..
TUV
Tuvalu
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
112.349
..
..
..
..
..
..
..
..
..
..
TZA
Tanzania
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
97.074
96.688
95.852
96.135
96.909
97.251
97.748
97.968
..
98.891
97.486
96.858
95.615
94.812
95.123
95.456
96.336
96.707
93.383
96.114
..
..
UGA
Uganda
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
77.929
..
76.66
..
..
..
..
85.753
89.072
90.004
92.759
95.044
97.123
96.719
97.075
97.642
98.664
98.466
98.944
98.744
..
..
UKR
Ukraine
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
101.793
101.753
101.337
104.271
104.496
..
..
..
..
101.892
100.2
99.065
100.047
99.606
98.764
94.493
98.686
99.582
98.806
98.699
..
..
UMC
Upper middle income
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
98.377275367
..
..
..
..
..
..
..
98.371
98.869
99.366
99.634
99.903
100.509
101.227
101.819
102.161
102.494
102.837
..
..
URY
Uruguay
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
106.958
107.459
..
..
112.026
106.277
105.078
104.978
104.538
105.625
105.586
105.43
105.662
97.926
103.913
..
..
..
USA
United States
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
99.301
99.663
..
98.877
99.089
100.025
99.23
..
103.071
..
99.539
100.371
99.851
100.065
99.436
100.343
100.16
100.338
100.088
101.173
..
..
UZB
Uzbekistan
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
98.932
97.993
97.728
97.352
97.336
96.573
97.137
97.437
97.984
98.288
98.657
..
..
VCT
St. Vincent and the Grenadines
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
106.551
..
..
..
..
..
..
..
..
106.233
102.196
100.903
100.898
99.928
101.418
..
..
99.762
97.699
..
..
VEN
Venezuela, RB
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
105.181
104.629
104.677
..
..
..
..
..
104.979
104.526
104.027
103.781
103.565
103.341
103.259
102.997
102.578
102.196
101.873
..
..
VIR
Virgin Islands (U.S.)
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VNM
Vietnam
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
92.539
91.723
93.107
93.223
..
..
..
..
..
..
..
..
..
..
VUT
Vanuatu
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
92.711
..
..
..
..
..
..
..
95.295
100.746
96.561
97.732
95.101
94.763
..
..
..
99.362
99.5
..
..
WBG
West Bank and Gaza
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
99.441
100.04
101.208
..
102.505
103.393
104.614
103.838
103.437
103.092
102.908
103.942
104.138
104.414
104.285
..
..
WLD
World
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
86.6817682597
..
..
..
..
..
..
..
91.752
92.015
92.52
92.881
94.596
94.508
95.005
95.356
95.972
96.16
96.457
..
..
WSM
Samoa
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
103.67
102.4
..
107.361
103.803
106.122
105.88
104.73
104.897
104.637
104.527
..
..
..
104.574
..
..
YEM
Yemen, Rep.
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
..
49.901
55.597
55.461
..
60.681
62.692
65.652
..
..
..
..
..
..
ZAF
South Africa
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
103.494
103.857
..
..
102.05
..
..
..
102.61
102.203
100.335
100.938
100.397
99.964
99.895
99.754
99.642
99.556
99.154
99.432
..
..
ZAR
Congo, Dem. Rep.
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
69.549
70.352
66.992
66.713
..
..
..
79.764
..
..
73.246
..
..
..
..
73.445
75.821
76.823
..
..
ZMB
Zambia
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
..
..
..
..
..
..
..
..
90.554
90.1091632172
91.3521189095
90.9368393433
91.5216685523
..
93.1866401464
93.3526992453
..
96.1704074427
95.4779740062
95.847629149
..
..
ZWE
Zimbabwe
SE.ENR.PRSC.FM.ZS
Ratio of girls to boys in primary & secondary school (%)
0
0
96.423
92.097
93.745
..
..
93.983
94.32
..
..
94.5639114721
94.4313816586
94.8778520998
95.277882241
96.2417375006
..
..
97.1066190566
..
..
..
..
..
ABW
Aruba
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
103.29154
99.61449
98.03774
99.2674
94.68839
95.20876
92.54328
96.40992
96.63866
94.6417
94.80519
..
..
ADO
Andorra
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
100.2994
103.0303
101.24138
..
..
..
..
..
..
..
AFG
Afghanistan
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
28.49606
..
..
..
..
..
..
..
..
..
..
..
38.82625
..
..
..
..
..
..
AGO
Angola
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
33.00903
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ALB
Albania
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
93.43178
..
..
104.07734
101.69497
101.12788
98.1445
96.98364
94.5393
..
..
..
..
89.62547
..
..
ARE
United Arab Emirates
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
96.77825
103.41157
102.01061
99.30319
98.41121
95.99852
89.19847
85.985
81.31784
80.6938
80.1001
79.60997
79.94514
85.88421
91.88312
98.04566
101.89617
104.95858
..
98.8581
..
..
ARG
Argentina
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
100.21659
..
95.66794
94.7722
102.79847
100.7241
100.20397
99.62725
103.62759
101.7269
100.50083
98.27388
100.08025
102.44285
105.40755
..
..
..
ARM
Armenia
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
105.49139
..
..
96.17703
..
..
..
..
93.73525
89.98377
101.4093
93.43613
92.95038
97.92742
..
..
..
..
ASM
American Samoa
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ATG
Antigua and Barbuda
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
102.57376
94.53755
..
..
AUS
Australia
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AUT
Austria
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
97.99956
97.82197
..
..
101.79067
104.07159
102.06882
100.66827
100.87685
102.20912
98.88993
97.05072
..
..
AZE
Azerbaijan
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
94.86178
90.35424
..
81.31244
99.15087
95.71192
92.1731
89.51351
95.16858
97.58601
92.69615
95.59543
93.43062
91.20018
97.6303
90.73683
91.77172
..
..
BDI
Burundi
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
40.92348
45.86378
49.24125
52.67726
..
..
..
..
..
22.20116
24.60217
25.38931
25.8977
30.63781
33.42115
36.37797
..
42.07774
45.20584
52.43638
..
..
BEL
Belgium
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
78.84519
..
..
..
..
..
..
..
..
..
..
..
..
..
..
86.67743
85.99731
86.04568
87.03419
..
..
BEN
Benin
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
19.45263
22.13577
22.36141
24.59586
26.7002
31.45998
33.63807
36.12607
38.98504
..
39.30972
43.28022
45.35672
49.74291
53.55036
..
..
..
65.13789
61.99449
..
..
BFA
Burkina Faso
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
19.2789
19.88965
26.54289
26.04771
26.94791
18.57056
22.61089
..
..
23.17772
25.11289
26.33401
26.98346
28.48656
29.75242
31.07963
32.18307
34.22879
37.99923
43.00613
46.90128
..
BGD
Bangladesh
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
59.45208
..
..
..
..
61.11024
57.54359
..
54.4916
60.50699
..
..
BGR
Bulgaria
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
101.06688
89.61868
86.83994
84.51189
86.23742
86.54238
90.73428
96.2179
96.76457
99.64315
99.18988
103.03049
96.80148
97.85808
98.75534
98.45855
98.0181
98.225
89.93236
93.86475
..
..
BHR
Bahrain
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
97.28821
94.36806
93.98853
91.56719
93.6
92.60355
..
92.63559
98.5408
98.30961
99.07706
103.8695
102.03321
102.70564
102.14731
..
..
97.83694
100.58123
..
..
BHS
Bahamas, The
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
90.82083
..
..
..
..
79.6616
..
..
..
93.73852
100.90061
100.40323
94.67029
97.03573
94.71387
..
..
..
BIH
Bosnia and Herzegovina
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BLR
Belarus
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
93.54663
93.57265
89.011
95.12986
96.6303
94.16433
93.9913
95.2206
..
99.59356
101.53456
103.56429
127.10957
97.98892
97.55429
94.77904
94.41496
92.41786
96.35613
..
..
..
BLZ
Belize
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
95.56341
..
..
88.17186
92.30251
..
..
91.18531
93.2565
96.27757
94.33083
95.27815
96.41977
98.24436
98.84295
102.04453
99.27465
105.54086
..
..
BMU
Bermuda
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
96.46643
101.06635
98.32335
93.19563
93.60394
93.40796
..
..
..
..
..
BOL
Bolivia
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
71.41822
..
..
..
..
..
..
..
..
97.4063
98.91833
99.14517
102.57097
101.32166
100.88015
..
100.94714
97.74269
98.82139
..
..
..
BRA
Brazil
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
92.57243
92.05111
89.70737
..
..
..
..
..
107.7467
110.49073
110.89593
108.54782
104.85617
105.84435
..
..
..
..
..
..
BRB
Barbados
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BRN
Brunei Darussalam
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
99.98132
102.32687
101.13036
103.82543
101.71318
..
113.28351
121.08063
123.79327
121.66455
126.31824
120.22115
121.57357
111.91273
106.80448
106.53567
106.69789
105.70779
103.64984
..
..
BTN
Bhutan
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
24.3195
29.02542
..
..
..
47.30874
50.82231
51.6064
51.77287
..
..
..
64.91195
73.29711
..
84.48692
88.4681
..
..
BWA
Botswana
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
89.79386
90.47725
91.17325
90.43123
94.99673
91.75381
93.45261
..
93.41664
91.14344
90.95621
93.6272
95.18105
95.38772
95.33297
95.38841
98.98571
95.46566
..
..
..
..
CAF
Central African Republic
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
30.35604
28.20449
22.64681
..
..
..
..
..
..
..
..
..
..
26.62785
23.89404
26.27101
26.38275
32.61997
35.46239
38.02067
40.12462
..
CAN
Canada
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
94.26483
95.65681
..
..
..
..
..
..
95.74914
..
..
..
..
..
CHE
Switzerland
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
51.81489
53.33814
54.94125
61.08335
61.8677
..
72.39604
..
..
94.86686
96.19535
97.64598
97.74686
97.74128
98.42696
96.25156
93.70198
93.1315
94.00919
96.03144
..
..
CHI
Channel Islands
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHL
Chile
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
90.79481
97.42306
98.11279
..
100.29066
97.21243
95.37983
..
..
94.83716
..
..
..
..
CHN
China
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
104.40326
107.01762
104.1858
105.13816
104.61568
97.82012
93.88016
94.99733
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CIV
Cote d'Ivoire
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
40.056
42.46029
39.3744
40.54588
40.5123
39.15162
40.4018
41.32551
..
41.28293
41.79893
44.8124
..
..
..
..
43.3056
44.73565
..
46.475
..
..
CMR
Cameroon
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
54.18985
53.10619
..
..
..
..
..
..
..
48.5777
49.93794
..
51.28078
57.083
59.18169
52.12551
51.83778
55.53795
72.70164
73.44308
..
..
COG
Congo, Rep.
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
58.80013
54.06832
60.82504
62.00546
52.69193
..
48.02129
..
..
..
..
55.42083
58.17074
54.98024
79.4381
69.86556
76.89744
76.69103
73.06955
74.06552
..
..
COK
Cook Islands
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
97.57282
87.92271
..
..
..
..
..
..
..
107.57576
..
..
101.74216
..
COL
Colombia
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
73.75638
72.85129
81.681
82.91804
82.78088
86.68133
87.79528
..
93.37569
94.91978
95.17455
92.69101
93.30743
..
100.77154
103.89451
109.44196
110.84049
110.47104
114.79025
..
..
COM
Comoros
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
39.63986
34.22601
40.62477
..
..
..
..
48.91692
..
..
63.70381
63.24755
68.46932
69.27707
..
70.7412
81.01795
..
..
..
CPV
Cape Verde
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
53.57103
..
..
..
67.15853
..
..
..
96.29934
105.29118
103.24041
97.22615
98.15625
98.66625
96.56277
82.3995
93.49536
87.36975
91.98827
86.62476
..
..
CRI
Costa Rica
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
74.3669
78.92543
81.1189
83.30107
82.05621
80.87615
82.2283
..
..
81.93557
86.54643
88.95544
91.16635
91.31758
92.34011
91.98694
89.03931
91.37172
92.8693
95.66762
..
..
CUB
Cuba
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
95.90835
98.9648
93.70793
89.34607
99.06008
96.31235
95.90116
..
..
100.57143
104.21542
100.86648
103.32074
97.22678
93.04966
92.67467
91.59231
93.28698
89.90873
98.24561
..
..
CUW
Curacao
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
104.9676
107.67677
107.16981
..
91.0299
86.45669
82.32628
83.25991
83.83838
..
..
..
CYP
Cyprus
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
83.39914
89.70931
89.85292
100.76701
104.23888
99.69097
97.15772
98.86197
..
100.71855
97.6595
98.04249
100.45012
101.18464
87.55183
100.0818
101.14621
99.95163
100.24621
103.16041
..
..
CZE
Czech Republic
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
91.65671
97.66095
100.99853
108.34057
..
..
100.64724
99.90568
99.51922
104.87542
101.6874
103.96087
102.78216
94.78354
94.34523
95.28029
98.82025
..
..
DEU
Germany
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
99.60576
96.043
95.51742
96.35527
99.23549
..
103.10652
104.97392
105.04838
99.80147
98.00395
97.00382
95.77988
98.86951
104.66175
103.51328
103.62746
..
..
DJI
Djibouti
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
32.00591
27.00627
29.11297
25.30852
27.65567
29.24741
26.99906
25.08939
..
24.47826
28.01833
27.67983
..
32.92695
32.71602
31.23005
35.49286
..
41.52718
35.35364
..
..
DMA
Dominica
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
114.9318
113.95864
121.15097
108.48708
103.58166
104.9169
103.38753
92.44898
93.04775
90.0149
88.88889
..
..
DNK
Denmark
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
94.72615
97.52986
97.0948
99.93484
98.257
..
..
..
103.86108
103.26447
100.97049
101.4074
104.84627
..
98.94283
99.07254
101.324
100.63938
..
96.77579
..
..
DOM
Dominican Republic
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
61.0454
..
..
..
..
70.35528
75.49602
89.08646
87.98286
85.14439
83.91774
..
81.29398
87.82856
..
89.51891
..
..
DZA
Algeria
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
80.78735
79.51017
82.2401
81.20619
79.70815
80.6904
83.62739
84.01607
..
84.57723
82.6314
89.43986
91.4818
92.90653
94.3403
95.83484
..
95.13847
113.855
90.50308
..
..
EAP
East Asia & Pacific
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
100.982091309
..
..
..
..
..
..
..
94.98336036
95.95804915
97.03175748
97.39568658
97.16090637
96.86675888
96.53069678
95.93693805
96.78582517
..
..
..
..
ECA
Europe & Central Asia
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
92.4715859878
..
..
..
..
..
..
..
95.23701624
94.1500874
94.62385654
95.22680511
94.5671291
95.6975053
97.70419215
96.12486938
95.87176361
95.36372313
94.89907342
..
..
ECU
Ecuador
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
91.10092
89.47464
89.66279
93.69799
..
96.97786
98.23046
99.49884
99.93638
100.14113
100.57836
105.64672
105.83961
105.9851
..
..
..
..
EGY
Egypt, Arab Rep.
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
84.08597
..
89.39974
87.70975
85.35203
84.46908
85.75902
88.55574
92.73478
90.18598
95.21609
..
96.04486
..
..
EMU
Euro area
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
100.740930581
..
..
..
..
..
..
..
99.736871633
100.382167499
101.133414994
99.8156012231
99.7470633811
99.1850156448
98.0290827816
98.3556109645
100.080930564
100.472803664
100.819416445
..
..
ERI
Eritrea
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
17.99719
23.43834
32.86451
36.41155
..
34.32475
36.38499
36.69372
35.28139
38.76467
43.89706
52.12279
49.66179
47.3815
46.89775
47.81285
..
..
ESP
Spain
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
103.64874
..
..
100.76796
101.34259
..
..
..
..
..
..
..
..
..
103.61432
..
97.67463
98.44514
100.21597
102.7981
..
..
EST
Estonia
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
80.61912
91.40991
..
..
88.96227
90.66922
96.45744
98.38188
102.54275
101.82638
105.67953
99.95965
100.2319
100.03059
..
..
..
ETH
Ethiopia
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
14.8653
14.97741
16.21635
..
18.17431
20.70367
22.99605
28.21368
31.60724
34.63482
37.31665
43.19766
47.43377
48.34193
52.06519
55.24707
..
..
FIN
Finland
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
101.88779
97.37717
96.08888
94.62908
95.74813
99.9015
101.39104
100.78246
98.80917
97.13453
97.07389
102.3338
101.20217
102.28741
99.82388
99.94323
96.96009
97.96161
97.85745
97.16894
..
..
FJI
Fiji
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
106.93535
104.03226
100.44201
101.54506
103.5619
103.42372
102.08741
100.92235
98.09863
90.03275
91.84866
..
..
..
FRA
France
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
100.92052
105.89089
108.60539
..
..
..
..
..
..
97.49665
98.0926
..
..
..
..
..
..
..
..
..
..
..
FRO
Faeroe Islands
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FSM
Micronesia, Fed. Sts.
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GAB
Gabon
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
61.9747
..
..
67.67458
68.0939
70.06563
..
..
..
..
72.38603
69.50329
..
..
..
..
..
..
..
..
GBR
United Kingdom
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GEO
Georgia
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
83.50063
85.82381
86.34057
..
85.76176
98.82607
100.54336
98.44515
91.3927
94.31131
85.27685
83.82326
92.4089
99.72638
107.38519
..
..
GHA
Ghana
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
63.73312
65.71759
..
..
..
..
..
..
66.52565
69.51244
65.87502
67.24051
68.20708
67.28156
73.17076
69.9261
75.92781
82.1903
82.70537
..
..
GIB
Gibraltar
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GIN
Guinea
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
18.79586
16.84482
16.6145
18.74612
19.74757
19.59533
30.05832
..
25.14494
29.01073
32.05286
34.23376
38.51183
38.97936
49.46365
56.41438
61.62752
62.10573
54.7133
61.70833
..
..
GMB
Gambia, The
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
45.07205
42.97008
41.99819
44.87308
52.69798
..
..
75.00632
74.13865
74.7348
72.00077
74.69898
72.82496
69.21573
66.80924
73.62453
79.06152
77.69691
71.69054
..
GNB
Guinea-Bissau
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
30.55846
30.72169
..
..
..
..
..
..
..
..
..
..
..
GNQ
Equatorial Guinea
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
50.84916
..
..
..
..
51.68495
..
41.8213
40.3377
35.59607
..
44.31759
..
..
43.32615
46.54668
49.64469
..
GRC
Greece
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
98.58492
..
..
..
..
..
..
..
..
..
..
..
102.12888
100.18574
103.18152
101.39291
..
..
..
..
GRD
Grenada
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
71.87613
79.41069
88.68559
97.07944
..
112.53252
..
100.04739
114.37653
125.61281
..
..
GRL
Greenland
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GTM
Guatemala
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
47.94877
..
..
53.02831
57.67767
60.33389
64.13499
65.22881
69.8247
73.66462
76.51998
77.07163
80.0144
..
..
..
GUM
Guam
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GUY
Guyana
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
87.58595
86.17661
..
75.03835
79.4532
82.54878
..
102.84193
110.5529
100.15997
101.04811
93.48753
95.08354
..
..
113.05944
109.72616
109.10572
..
..
HIC
High income
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
97.30739897
97.49731431
98.75699881
98.28623561
98.6067411
97.97321468
96.89725693
96.22684088
97.21261514
97.09385544
97.33071835
..
..
HKG
Hong Kong SAR, China
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
101.60812
102.23304
102.16669
102.93237
101.0562
98.90676
93.90185
..
..
..
..
107.52652
106.24882
103.25094
99.38972
95.31284
93.81373
94.49778
91.98462
92.74655
..
..
HND
Honduras
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
64.04711
..
68.97601
70.57528
..
..
..
..
..
..
..
..
..
80.87586
81.62271
88.46452
..
89.72504
..
..
..
HRV
Croatia
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
85.26711
81.56083
85.45772
86.24364
91.62169
90.74627
91.95601
94.68027
95.32332
91.57655
..
94.80046
96.3876
101.6332
99.70618
97.05277
..
..
HTI
Haiti
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
28.50412
27.3546
..
..
..
..
..
47.07541
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HUN
Hungary
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
89.29169
81.69128
83.4623
84.64066
..
..
..
98.59804
100.03487
97.58475
97.55286
98.58678
100.24137
97.90253
97.16907
95.9332
98.86335
94.58198
95.42391
95.00595
..
..
IDN
Indonesia
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
96.49896
93.46532
92.09279
95.86774
98.56746
98.93289
98.32027
98.88198
..
..
..
98.24275
100.44865
102.1128
102.97892
102.52914
101.84652
108.09848
106.39789
109.26258
..
..
IMY
Isle of Man
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IND
India
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
73.93256
..
..
..
69.91877
72.39823
72.58727
75.56977
79.67671
84.19118
85.30403
86.11162
93.55821
94.83933
..
..
..
IRL
Ireland
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
103.12651
103.79368
102.08586
101.25689
..
..
96.3107
97.95776
97.09979
94.43144
96.42607
99.38047
99.66365
96.64938
..
..
..
..
..
..
IRN
Iran, Islamic Rep.
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
83.87
87.61996
90.84688
96.59911
95.45689
100.10478
..
100.21155
..
..
101.90413
106.50744
106.25058
100.71946
109.10984
109.13419
98.85293
94.40931
97.05721
100.84746
..
..
IRQ
Iraq
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
57.63112
..
..
..
..
..
55.91351
54.78091
59.11392
..
77.68007
76.71575
..
..
63.59485
..
..
..
..
ISL
Iceland
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
90.16355
90.99357
98.33294
107.96314
103.18013
107.92214
97.81746
99.39538
99.05983
96.36441
94.61738
98.23982
..
..
ISR
Israel
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
101.23006
101.40066
104.89362
101.19483
100.62975
102.19229
99.14138
102.12082
..
..
ITA
Italy
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
99.11876
97.59248
98.81157
..
100.49462
99.38979
100.55599
97.33796
..
101.32692
101.73953
104.42933
102.77268
103.2111
101.75198
99.71721
99.22782
100.9037
104.00944
..
..
..
JAM
Jamaica
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
95.37825
94.09861
..
91.88435
..
..
..
..
..
..
87.30358
81.82393
86.80127
..
83.95519
81.44995
..
89.21934
..
..
..
..
JOR
Jordan
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
97.58322
100.96084
102.46196
101.61264
104.71858
..
97.74668
..
..
94.56614
96.10992
..
91.3914
93.3833
93.20708
96.16368
94.13996
98.43885
98.77776
..
..
..
JPN
Japan
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
100.56772
102.30989
102.39432
..
99.88868
..
..
..
101.95862
..
..
..
..
..
..
..
..
..
..
102.29323
..
..
KAZ
Kazakhstan
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
102.84735
..
..
100.94001
97.86627
..
94.3629
94.9912
95.72685
97.47176
105.3418
107.17506
103.58872
100.59292
104.25219
104.8106
107.92363
..
KEN
Kenya
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
87.58949
89.9512
..
..
..
..
..
..
KGZ
Kyrgyz Republic
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
102.72886
99.08198
..
..
95.1854
94.64111
93.26531
93.05147
89.96312
92.07901
96.23036
98.72493
93.91579
92.10039
94.32807
..
..
KHM
Cambodia
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
45.40557
42.51023
..
15.92179
30.82667
40.12083
..
51.11937
59.50574
65.47382
76.00082
85.18317
86.65442
85.0017
79.47861
..
..
..
KIR
Kiribati
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
101.04809
..
..
..
..
110.08086
..
..
..
107.20379
99.1624
116.62849
109.54319
114.80984
115.49358
118.14198
..
..
..
..
..
..
KNA
St. Kitts and Nevis
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
118.37607
..
..
..
..
..
..
..
100.84211
102.90635
108.81057
98.9819
109.25926
107.52056
..
95.37037
86.74157
95.54832
..
..
KOR
Korea, Rep.
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
99.24641
99.38285
111.605
111.54499
113.87273
111.41367
..
..
96.5563
100.46647
102.96109
103.93344
99.47961
105.15857
102.92032
98.75708
97.59703
98.90253
98.69321
101.23273
..
..
KSV
Kosovo
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KWT
Kuwait
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
56.91407
..
80.59048
73.40615
102.90638
101.95781
..
99.11366
95.60268
82.26281
86.46052
90.05613
91.66479
100.26525
90.83097
98.15858
..
93.45291
..
..
LAC
Latin America & Caribbean
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
84.3370662913
..
..
..
..
..
..
96.79278
96.03835713
97.49091521
98.26297797
99.44823882
98.63875099
98.00342661
98.91282017
100.0152872
101.0055488
101.1616112
101.5710287
..
..
LAO
Lao PDR
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
44.57584
..
41.33403
44.24655
49.23298
..
57.55508
60.6623
65.07289
70.71545
69.28832
69.60473
70.08476
69.49866
69.53152
70.87775
72.87888
73.69591
74.70247
..
..
..
LBN
Lebanon
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
82.98293
86.76549
100.0679
..
..
..
..
..
..
84.18021
85.06922
86.60485
84.90559
..
..
LBR
Liberia
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
63.50789
57.6253
..
..
..
LBY
Libya
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LCA
St. Lucia
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
123.79919
116.23397
..
119.9628
..
..
..
..
..
102.92515
96.01253
103.68899
105.16459
104.40967
103.54996
99.36361
106.71554
107.34109
97.50152
96.44417
..
..
LIC
Low income
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
43.919159086
..
..
..
..
..
..
..
49.08061516
50.67076698
51.87129561
53.51246757
54.61336273
55.79904626
57.93946999
59.16198245
59.99910413
61.92965066
65.34841202
..
..
LIE
Liechtenstein
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
101.54242
97.91667
..
88.49558
113.93643
97.03872
107.41688
..
..
LKA
Sri Lanka
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
97.64117
101.17116
102.16995
..
..
..
..
..
94.88108
..
..
107.30043
..
..
..
111.74274
108.99321
104.94613
98.37907
97.493
..
..
LMC
Lower middle income
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
68.095977404
..
..
..
..
..
..
..
72.45846229
73.84496531
74.58250578
76.17232759
78.71940439
81.76331498
83.15694709
83.49234512
87.246552
87.92339331
88.1568831
..
..
LMY
Low & middle income
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
77.5229415957
..
..
..
..
..
..
..
79.00118297
80.01018129
80.70347569
81.72824291
82.48831721
83.77470127
84.44904419
84.26901119
86.1442634
86.8648006
87.41766082
..
..
LSO
Lesotho
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
58.3981
58.83195
61.18897
60.93181
63.20631
..
64.10361
..
62.83587
61.45215
60.09797
62.03212
63.20941
65.14043
67.18096
62.03267
77.99756
72.73372
69.4536
69.01324
..
..
LTU
Lithuania
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
93.01717
97.09637
99.26663
..
98.40859
98.57562
103.64322
103.85522
105.49303
99.01541
91.33201
93.16379
95.89187
92.16383
96.10237
..
..
LUX
Luxembourg
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
82.4042165011
..
83.9622641509
85.1498127341
83.6095428884
82.6773049645
79.4356932664
84.3776532518
82.1924686192
83.6727935089
..
..
..
LVA
Latvia
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
73.32841
73.57036
88.1862
..
96.12776
96.75903
98.12149
95.48567
98.99862
94.64202
92.14334
92.07687
95.36065
95.0592
92.99867
..
..
MAC
Macao SAR, China
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
97.19178
..
93.88978
93.32248
..
..
..
..
..
96.3848
97.38815
98.37595
98.03534
96.02717
101.60377
95.62607
102.49581
101.21773
101.28383
98.79451
..
..
MAF
St. Martin (French part)
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
51.4097
48.09258
46.482
46.54732
46.25614
47.80473
48.59091
49.73952
51.95748
53.77917
56.74184
58.77883
61.72132
66.63429
74.94308
80.29981
84.02233
83.37731
81.32207
80.39394
..
..
MCO
Monaco
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
132.16783
..
..
MDA
Moldova
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
94.29102
..
..
..
94.35631
97.78653
97.26115
97.1417
95.3809
96.22394
99.48995
98.03026
92.91347
91.37655
92.81584
..
..
MDG
Madagascar
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
36.98835
35.79379
33.08806
34.34937
31.59293
31.39812
31.86628
..
31.83048
34.75139
37.59303
36.80989
36.77008
40.70781
46.90306
59.90484
59.1789
64.06795
71.24424
78.77721
..
..
MDV
Maldives
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
148.12077
150.3645
137.89447
128.72957
..
112.91121
119.40759
..
..
MEX
Mexico
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
88.37978
88.44861
90.27639
91.57968
93.42359
96.62655
98.75018
99.20725
..
99.43802
99.90545
100.16758
100.87482
100.07887
101.32152
101.87681
102.46101
103.82303
104.08986
103.77555
..
..
MHL
Marshall Islands
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
91.95259
..
..
106.78322
93.88679
..
99.11972
105.53539
106.76759
101.2605
93.71606
..
..
MIC
Middle income
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
82.6633275797
..
..
..
..
..
..
..
84.0680994651
85.0196471831
85.6954535061
86.7144859725
87.5497183315
88.9993230938
89.5500758394
89.2377058263
91.4484266917
92.0325751346
92.0783730711
..
..
MKD
Macedonia, FYR
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
98.13894
98.43694
96.84371
99.06728
99.46043
103.14306
102.7012
99.53824
98.66789
100.3036
96.76824
95.71147
96.36753
93.38436
92.30041
91.81624
91.50198
..
..
MLI
Mali
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
30.8169
35.01651
35.95699
39.19938
41.42747
43.50517
49.49686
53.20825
56.76499
59.44978
63.93497
..
MLT
Malta
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
102.03976
99.67213
102.11813
104.85287
104.01033
99.68955
100.60627
99.38993
101.3003
104.04614
107.39544
105.79684
106.31443
104.38924
101.66983
98.0888
..
98.3501
100.47374
..
..
..
MMR
Myanmar
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
73.35114
79.89367
79.40437
80.8285
83.90068
87.20969
..
95.45943
96.89467
99.05288
98.89856
..
..
MNA
Middle East & North Africa
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
83.12123545
82.64231842
84.35944071
85.30461659
87.05193465
90.23451836
91.64049592
88.7009643
88.25909906
90.08151587
88.07330814
..
..
MNE
Montenegro
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNG
Mongolia
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
74.36489
81.49537
80.22063
92.08221
90.04595
90.06145
93.64528
98.26318
99.08717
96.3057
95.16086
110.12269
110.36026
93.31725
..
..
..
MNP
Northern Mariana Islands
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MOZ
Mozambique
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
26.44571
26.35531
24.65316
24.77678
25.42419
25.9277
..
..
..
14.01281
16.11645
18.83106
22.21672
..
29.4975
41.6146
41.32047
45.90877
59.24422
56.62175
60.56968
..
MRT
Mauritania
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
29.09925
32.74554
31.5508
33.07501
32.76346
33.83683
34.75887
39.17319
44.79621
..
..
46.73652
44.36374
..
..
44.94421
46.23424
58.48698
64.23913
..
..
..
MUS
Mauritius
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
113.66083
114.9046
111.28031
104.00638
99.01
95.84995
92.41965
91.08556
93.82926
99.92553
102.76879
103.6368
101.12365
98.19791
97.07322
94.76106
89.75323
90.69973
90.13782
89.36794
..
..
MWI
Malawi
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
28.06842
30.9326
34.45391
36.88964
39.70374
52.47961
62.73746
..
..
67.1623
65.41429
65.29297
66.99166
59.0047
56.14538
54.95064
53.78412
54.00996
57.91126
59.17295
..
..
MYS
Malaysia
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
89.85924
91.00715
91.06227
91.93928
..
..
..
..
95.5639
94.03736
..
..
91.89068
91.52056
95.07717
98.2685
96.3842
96.00489
97.33081
..
..
..
MYT
Mayotte
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NAM
Namibia
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
74.41135
..
72.26017
69.34292
77.50519
..
96.88005
95.50492
91.58662
94.10098
92.52382
92.7472
85.39489
86.19173
83.73215
83.64709
80.79235
87.0775
..
..
NCL
New Caledonia
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NER
Niger
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
15.77937
17.11075
17.80582
15.69471
..
13.40276
13.94114
17.5963
..
18.7797
17.92173
19.07678
20.6361
19.99717
26.20166
29.27967
32.42571
39.27647
37.87114
40.32455
40.68732
..
NGA
Nigeria
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
74.65546
76.79378
79.96901
85.58271
79.1588
..
..
..
..
NIC
Nicaragua
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
39.15882
42.07599
44.12913
48.1973
53.42187
49.22826
..
..
..
67.06262
65.79172
66.16393
72.69291
71.14107
71.11513
74.02732
73.79092
74.60368
74.54399
..
..
..
NIU
Niue
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
97.91667
85.41667
..
105
..
..
115.38462
126.08696
..
..
..
..
..
..
NLD
Netherlands
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
98.12478
96.76267
97.24283
100.02915
..
..
..
..
..
..
..
..
..
NOR
Norway
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
95.52897
99.98661
101.86281
101.44293
..
..
..
..
97.95387
97.87969
98.07549
101.4931
102.25185
102.41707
101.09002
98.6047
96.30168
96.47805
97.57057
99.79204
..
..
NPL
Nepal
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
51.07456
56.20079
..
..
..
..
..
..
63.21523
65.83118
65.4972
70.00927
..
..
..
..
..
..
..
..
..
NRU
Nauru
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
86.97318
73.22835
78.45528
..
..
..
97.27273
..
..
..
..
NZL
New Zealand
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
OMN
Oman
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
64.80889
..
74.10844
..
72.97608
76.02731
78.04217
79.69813
81.23328
82.90198
81.53622
82.8042
86.53295
89.30028
..
..
..
..
..
79.77935
..
..
PAK
Pakistan
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
60.7667
60.17338
60.45398
60.34669
61.10245
..
..
PAN
Panama
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
92.05843
94.09161
94.28936
95.08488
95.96256
96.64347
96.64557
94.46991
98.81523
101.85214
101.5211
..
..
PER
Peru
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
89.39818
..
..
98.69495
103.45042
101.72232
96.8532
96.37971
101.23282
100.95171
100.49154
100.92511
102.57974
100.96242
..
..
..
PHL
Philippines
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
87.73448
..
..
..
..
..
..
..
85.46415
87.46199
..
101.45084
94.92706
95.2722
93.9566
93.95111
91.98985
92.31526
93.67477
..
..
..
PLW
Palau
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
99.40299
98.83721
..
..
..
104.45026
..
..
..
..
..
..
..
PNG
Papua New Guinea
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
48.49321
46.49862
47.03604
48.57127
52.30378
51.71683
..
..
50.67648
..
53.38716
..
..
..
..
..
..
..
..
..
..
..
POL
Poland
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
97.53768
95.67113
96.53241
98.18399
94.31573
..
..
98.51456
96.39662
95.98975
95.23419
97.09929
97.61377
99.63877
100.2653
97.44591
96.78376
96.32341
..
95.31675
..
..
PRI
Puerto Rico
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRK
Korea, Dem. Rep.
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRT
Portugal
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
103.12328
..
..
..
..
..
..
..
PRY
Paraguay
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
65.15605
68.30803
71.59116
74.59634
74.95214
76.61143
80.5713
..
91.30691
88.71995
91.87028
93.5469
93.58715
95.87085
94.41692
94.77238
93.93098
94.52211
94.17187
93.39952
..
..
PYF
French Polynesia
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
QAT
Qatar
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
69.70839
71.18779
65.88085
66.19965
67.72649
63.49225
53.2572
..
86.15336
86.82714
..
..
..
99.38435
..
117.85215
124.21731
123.52308
115.44132
107.65976
..
..
ROM
Romania
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
96.1641
..
..
77.74243
..
85.88133
91.23428
99.34608
..
103.37397
102.02046
95.00439
87.69729
89.66986
93.02344
98.88764
100.74086
120.38068
96.00964
96.24977
..
..
RUS
Russian Federation
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
92.38722
90.98548
..
..
..
95.95165
93.95698
92.58416
..
..
..
..
..
94.20056
95.23701
..
..
..
RWA
Rwanda
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
49.15425
50.05336
53.33695
..
..
..
..
..
..
28.49177
22.27664
23.86841
29.28494
39.03161
39.68805
..
..
..
53.97523
..
..
..
SAS
South Asia
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
61.6871054287
..
..
..
..
..
..
..
65.47067694
67.6615058
67.98400584
70.40198676
73.47237645
77.43772797
78.91446474
79.01884603
84.2358896
84.87983422
85.50788239
..
..
SAU
Saudi Arabia
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
88.64238
..
93.35718
95.15082
88.19544
..
..
SDN
Sudan
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
35.76787
35.77601
37.55557
39.39399
42.27101
..
..
..
47.61548
50.13814
57.1738
..
..
SEN
Senegal
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
41.94876
..
39.36847
..
38.8543
..
40.7274
40.88825
43.07136
42.56112
39.06047
43.38949
45.55143
45.21984
46.90336
51.4625
48.28609
49.4704
56.25593
56.85934
..
..
SGP
Singapore
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SID
Small island developing states
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLB
Solomon Islands
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
61.22904
72.06845
68.26945
68.46532
69.93178
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLE
Sierra Leone
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLV
El Salvador
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
65.02401
66.17841
68.73751
..
70.42995
75.42964
..
79.19728
88.24287
87.73058
86.34142
84.99894
84.20766
84.82419
85.70737
84.89209
88.11564
89.35034
..
..
..
SMR
San Marino
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
91.61677
..
..
SOM
Somalia
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SRB
Serbia
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
100.51979
104.3832
96.41524
..
..
SSA
Sub-Saharan Africa
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
51.2540954132
..
..
..
..
..
..
..
50.72980316
51.252918
52.36153628
53.63432868
54.89667231
56.49375118
58.37917926
60.42303738
61.06689256
64.38419223
66.90585208
..
..
STP
Sao Tome and Principe
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
77.87431
..
..
..
..
..
..
..
..
46.36488
..
..
61.77309
60.20123
73.22835
74.24202
72.62838
70.86438
74.25912
83.24861
84.89708
..
SUR
Suriname
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
97.44576
..
..
..
83.0284
91.67779
78
88.2705
..
..
..
SVK
Slovak Republic
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
95.41129
97.34995
97.99834
97.13656
96.2963
98.69357
98.20144
96.97227
101.06437
99.00383
100.58511
99.16842
93.9303
93.21293
94.08965
95.64045
97.32276
..
..
SVN
Slovenia
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
95.01097
93.89746
95.27649
95.18826
96.655
100.92652
100.8086
96.97802
95.85296
94.97587
98.91624
..
..
..
..
96.22861
95.62326
..
..
SWE
Sweden
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
96.65098
96.3309
100.9458
107.26466
105.58794
..
..
..
..
101.63399
100.39957
102.48699
101.86308
103.9967
100.44794
97.52523
94.49009
94.52652
94.07067
94.62419
..
..
SWZ
Swaziland
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
62.66899
60.53029
60.41849
60.75277
61.81882
63.36361
60.71734
61.17872
62.45402
59.38831
60.32397
57.22584
59.6063
57.73828
60.70885
64.29176
65.09772
71.97336
..
..
..
..
SXM
Sint Maarten (Dutch part)
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
106.68467
114.15989
107.24932
112.13756
110.10033
108.687
103.44143
112.04258
..
109.43789
110.3078
105.081
..
..
SYR
Syrian Arab Republic
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
88.75812
89.44642
92.54657
83.85679
84.90525
83.59468
84.70073
84.58283
84.79441
86.01852
86.28305
88.07366
90.53968
104.24643
107.44921
112.04713
115.11867
114.11537
113.56463
112.17324
..
..
TCA
Turks and Caicos Islands
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
99.41691
84.35754
96.28647
91.74757
..
..
..
..
..
..
TCD
Chad
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
16.25256
17.79202
..
..
17.83527
14.13906
14.75906
15.36848
0
20.13421
22.40717
24.81148
27.75389
32.93603
34.8331
31.56451
31.23423
30.92138
..
33.47436
..
..
TGO
Togo
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
34.99741
34.96774
35.73677
..
27.78702
39.76047
46.32635
..
..
54.86811
63.17552
69.02273
..
68.24727
69.66416
68.84767
68.55069
..
61.86793
61.43578
..
..
THA
Thailand
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
87.02201
..
..
..
..
..
..
..
..
..
..
..
..
TJK
Tajikistan
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
99.41643
..
76.0393
..
95.08875
95.08667
97.77363
97.51099
95.06127
91.82906
101.76647
106.11752
94.82763
97.72262
..
..
..
TKM
Turkmenistan
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TMP
Timor-Leste
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
79.77389
..
..
..
TON
Tonga
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
127.7707
98.87359
..
114.21744
..
..
..
..
96.875
98.43499
..
105.19427
107.47126
..
..
110.53711
104.86907
..
..
..
..
..
TTO
Trinidad and Tobago
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
101.61756
102.22414
99.78147
..
..
86.85804
85.54817
..
92.85666
86.49196
80.71976
..
84.58371
91.15001
89.30844
..
94.50224
91.78207
92.93699
..
..
TUN
Tunisia
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
80.26254
74.29983
69.12489
73.98386
81.1327
91.63359
89.0526
91.51737
..
89.59294
88.49833
88.91571
92.96702
95.96875
98.93021
101.5533
..
102.25525
92.82462
90.14953
..
..
TUR
Turkey
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
87.69755
90.0654
96.0079
90.45053
90.98428
89.41201
..
..
..
..
..
..
..
..
90.86654
94.55265
91.67677
91.05292
93.42516
..
..
..
TUV
Tuvalu
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
109.87124
101.68776
92
96.08696
100
106.30252
99.17012
..
..
..
..
..
TZA
Tanzania
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
55.26166
58.14029
..
..
..
58.30937
48.33308
57.2304
..
54.8997
58.97807
..
57.88066
55.01881
72.15448
82.63931
..
102.2704
..
..
UGA
Uganda
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
58.24793
60.24039
60.47983
56.34656
55.2015
..
51.32991
56.13398
72.79982
..
..
UKR
Ukraine
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
94.25483
92.22884
94.61944
99.23018
95.0644
..
..
..
98.31402
96.10643
92.30811
95.2321
97.01942
..
..
116.69521
104.92923
101.54652
98.8861
95.4619
..
..
UMC
Upper middle income
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
97.2581045877
..
..
..
..
..
..
..
96.81976212
97.29973075
98.03620298
98.68622282
97.91448498
97.8144371
97.66402247
96.79101756
97.12530676
97.69968723
97.57342464
..
..
URY
Uruguay
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
94.57053
93.80223
91.56297
93.30056
93.73979
94.31418
95.70461
..
96.84434
96.67206
97.3498
95.27861
94.76143
91.8909
92.52882
95.49328
99.14592
103.61576
106.00034
..
..
..
USA
United States
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
99.71396
98.3409
97.98197
100.08979
99.68697
99.58954
98.25661
96.8785
94.94584
95.89833
95.4828
96.20816
..
..
UZB
Uzbekistan
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
79.87893
98.22833
..
..
..
96.22522
95.58318
100.45233
102.46704
97.65845
96.6158
98.31766
99.08239
96.37362
94.68316
91.63676
..
..
VCT
St. Vincent and the Grenadines
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
89.66565
92.86029
93.39875
102.56641
102.4069
..
..
109.16745
..
..
..
VEN
Venezuela, RB
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
78.84991
80.76147
83.74149
83.01157
..
..
80.59389
80.99751
..
81.61457
83.41944
84.58694
90.9215
88.86864
89.29193
91.38995
95.55922
97.7427
95.38287
95.10748
..
..
VIR
Virgin Islands (U.S.)
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VNM
Vietnam
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
96.16986
96.3762
102.33891
..
..
..
..
..
..
..
..
..
..
VUT
Vanuatu
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
83.39376
..
..
..
..
..
..
85.24624
86.18685
99.40828
97.47867
92.03051
86.46165
..
..
79.29365
78.18632
82.85416
..
..
WBG
West Bank and Gaza
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
87.90931
88.70761
89.08663
..
101.12141
102.99889
105.77333
102.43045
106.09559
96.03909
95.31593
..
82.79306
82.10409
81.71523
..
..
WLD
World
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
79.2033541835
..
..
..
..
..
..
..
81.00032354
81.8962035
82.63818075
83.50326204
84.22535366
85.31482111
85.80757954
85.57617501
87.35007405
87.97033092
88.47803154
..
..
WSM
Samoa
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
101.39809
98.17429
102.17755
98.75994
95.27397
94.44568
91.84699
95.92537
98.77792
96.20489
..
..
100.13955
..
93.46367
..
..
YEM
Yemen, Rep.
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
..
53.92539
55.33629
57.64344
57.38693
60.89215
60.40571
60.34978
..
..
60.90959
..
..
..
ZAF
South Africa
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
75.94589
..
..
..
..
..
..
90.02802
85.01729
86.58075
..
92.01089
95.44485
99.6741
92.53142
83.21089
85.76191
92.49449
93.17519
..
..
ZAR
Congo, Dem. Rep.
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
48.4336
44.68725
51.24989
43.07592
..
..
..
..
30.8911
..
..
37.46234
..
..
..
..
48.62446
53.23827
55.85471
..
..
ZMB
Zambia
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
..
..
..
..
..
..
..
..
66.68031
64.03845
61.41153
..
61.01657
..
72.61378
84.27078
85.31785
89.00949
92.97974
87.07664
..
..
ZWE
Zimbabwe
SE.PRM.CMPT.ZS
Primary completion rate, total (% of relevant age group)
0
0
93.55472
97.4014
90.08988
..
..
..
..
..
..
90.8475774116
..
89.6619235039
83.2390428537
81.3853370356
..
..
..
..
..
..
..
..
ABW
Aruba
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ADO
Andorra
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
8.8
8.2
7.6
7.2
6.7
6.3
6
5.7
5.4
5.1
4.9
4.7
4.5
4.3
4.1
4.1
4
3.9
3.9
3.8
3.8
..
AFG
Afghanistan
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
208.7
197.6
186.9
176
167.7
158.9
153.4
152.4
151.4
150.8
151.1
150.4
149.6
150.6
150.1
150.5
150.5
150.2
149.6
149.4
149.2
..
AGO
Angola
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
243
239.1
235.3
231.1
226.3
221.5
217
212.4
207.9
203.3
199.6
195.1
190.7
187.5
183.2
179.1
174.9
171.1
168.2
164.3
160.5
..
ALB
Albania
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
41.1
39.8
38.6
37.3
36.2
35.1
34
32.4
31.1
29.8
28.6
27.4
26.1
25.2
24.1
22.8
22
21
19.9
19.3
18.4
..
ARE
United Arab Emirates
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
21.5
20.5
19.4
18.3
17.4
16.3
15.5
14.6
13.8
13.1
12.4
11.7
11.1
10.5
9.9
9.4
8.9
8.4
7.9
7.5
7.1
..
ARG
Argentina
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
26.9
25.8
24.9
24.2
23.4
22.7
22
21.2
20.6
20
19.6
19
18.4
17.7
17.1
16.6
15.9
15.3
14.8
14.2
13.8
..
ARM
Armenia
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
54.5
52.5
50.5
48.2
46
43.4
41.3
39.1
37.3
35.3
33.3
31.8
30.1
28.5
26.8
25.6
24.3
22.9
21.7
20.6
19.6
..
ASM
American Samoa
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ATG
Antigua and Barbuda
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
26.2
24.8
23.8
22.4
21.1
19.7
18.7
17.7
16.6
15.7
14.9
14
13.2
12.4
11.5
11
10.3
9.6
9
8.5
8.1
..
AUS
Australia
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
9.1
8.6
8.2
7.8
7.4
7.1
6.9
6.7
6.5
6.4
6.2
6.1
6
5.9
5.7
5.6
5.5
5.3
5.2
5
4.9
..
AUT
Austria
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
9.4
8.9
8.4
7.9
7.4
6.9
6.5
6.2
5.9
5.7
5.6
5.4
5.3
5.2
5
4.9
4.7
4.6
4.5
4.4
4.2
..
AZE
Azerbaijan
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
92.9
91.1
89.4
87.8
84.7
81.7
78.7
75.7
72.7
70.3
67.4
65
62.6
60.4
58
55.6
53.7
51.5
49.8
48.1
45.9
..
BDI
Burundi
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
183.2
182.6
181.8
180.6
178.1
175.8
173.3
170.6
168.4
165.7
163.8
161.5
158.7
157.7
155.5
153.9
150.5
148.4
145.3
143.1
141.9
..
BEL
Belgium
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
10
9.6
9.1
8.6
8.1
7.6
7.1
6.7
6.4
6.1
5.8
5.6
5.4
5.2
5.1
5
4.8
4.7
4.6
4.5
4.4
..
BEN
Benin
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
177.7
173.9
170.2
166.7
163
159.8
156.3
153.1
149.7
146.6
143.4
140.3
137.4
134.4
131.5
128.6
125.9
123.2
120.8
118.1
115.4
..
BFA
Burkina Faso
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
204.5
203.7
202.4
201.2
199.7
198.3
196.5
195.3
193.7
192.1
190.8
189.2
187.6
186.2
184.7
183.5
181.7
180.9
179.6
178
176.2
..
BGD
Bangladesh
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
143.4
137.9
132.1
125.6
119.5
113.9
107.3
101.5
96.3
91.2
85.7
80.6
76.1
72
67.9
64.2
60.4
57.1
53.9
50.7
47.8
..
BGR
Bulgaria
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
22.2
22.3
22.5
22.8
23
22.9
22.7
22.4
22
21.4
20.7
19.8
18.9
17.9
16.9
16
15.3
14.6
13.9
13.3
12.7
..
BHR
Bahrain
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
17
16.2
15.6
15
14.5
14
13.7
13.2
12.8
12.5
12.2
12
11.7
11.5
11.3
11.1
10.9
10.7
10.5
10.4
10.2
..
BHS
Bahamas, The
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
22
21.2
20.2
19.2
18.5
17.7
17.3
17.2
17.1
16.9
16.8
16.8
16.6
16.5
16.4
16.4
16.4
16.3
16.3
16.2
16.1
..
BIH
Bosnia and Herzegovina
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
18.8
17.6
16.4
15.4
14.3
13.3
12.4
11.7
10.9
10.1
9.6
9.3
9
8.8
8.8
8.7
8.7
8.6
8.6
8.4
8.4
..
BLR
Belarus
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
17.2
17
17
16.9
16.9
16.8
16.5
16.1
15.4
14.6
13.7
12.8
11.9
11
10.1
9.3
8.5
7.8
7.2
6.6
6
..
BLZ
Belize
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
44
42
39.9
38
36.2
34.5
32.8
31.3
29.9
28.4
27
25.6
24.4
23.3
22.2
21.3
20
19.2
18.2
17.4
16.5
..
BMU
Bermuda
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BOL
Bolivia
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
120.8
116.7
112.9
109.2
105.3
101.1
97
93.1
89.2
85.6
82.2
78.8
75.8
72.6
69.8
66.7
63.9
61.5
59
56.7
54.2
..
BRA
Brazil
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
59.3
57.1
54.7
52.7
50.3
48.1
45.5
42.7
40.2
37.8
35.7
33.6
31.6
29.7
28
26.3
24.8
23.4
22
20.6
19.4
..
BRB
Barbados
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
17.9
17.3
16.8
16.8
16.6
16.5
16.5
16.7
16.8
17
17.1
17.2
17.6
17.6
17.9
18.1
18.4
18.7
18.9
19.2
19.6
..
BRN
Brunei Darussalam
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
12.2
11.8
11.4
11
10.7
10.4
10.2
9.9
9.7
9.5
9.3
9.1
8.8
8.6
8.4
8.2
8
7.9
7.7
7.5
7.3
..
BTN
Bhutan
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
138.5
132.6
127
121.8
116.4
111.4
106.6
101.8
97.4
93.3
89
85.2
81.4
77.6
74.4
70.8
67.5
64.5
61.7
58.9
56.1
..
BWA
Botswana
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
58.7
60.6
63.2
66.6
70.9
76.1
81.7
87.2
91.9
94.9
95.9
95.4
93.1
87.9
70.4
60.9
54.9
52.4
51.8
49.4
47.7
..
CAF
Central African Republic
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
165.2
166.7
169
171.6
174
175.9
177
177.4
177.4
176.7
175.9
174.6
173.2
171.7
170.1
168.3
166.5
164.1
162.3
160.5
158.8
..
CAN
Canada
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
8.3
8
7.7
7.5
7.2
7
6.8
6.6
6.4
6.3
6.2
6.2
6.2
6.1
6.1
6.1
6
6
6
5.9
5.9
..
CHE
Switzerland
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
8.1
7.8
7.4
7.1
6.7
6.4
6.2
6
5.9
5.8
5.7
5.6
5.5
5.3
5.2
5.1
5
4.8
4.7
4.7
4.6
..
CHI
Channel Islands
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHL
Chile
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
18.7
17.5
16.4
15.3
14.4
13.6
12.9
12.3
11.8
11.3
10.8
10.4
10.1
9.7
9.5
9.3
9.2
9.1
9
8.9
8.8
..
CHN
China
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
48.3
47.4
46.5
45.6
44.3
42.5
40.5
38.5
36.6
34.7
33
31.2
29.5
27.9
26.4
24.9
23.5
22.2
20.9
19.6
18.4
..
CIV
Cote d'Ivoire
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
151.4
152.7
154.2
154.5
154.5
154.2
153.7
152.8
151.4
149.7
147.7
145.4
142.7
140.3
137.8
135.4
132.8
130.4
127.7
125.3
123
..
CMR
Cameroon
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
136.6
137.6
139.3
141.8
144.7
147.1
148.1
148.4
148.3
148
147.5
146.6
145.5
144.2
143.2
142.1
141
139.9
138.7
137.6
136.2
..
COG
Congo, Rep.
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
116.3
114.8
113.8
112.4
111
110
109.1
107.3
106
105.1
104.2
103
101.5
100.2
99.4
98.1
97
96.6
95
93.6
93.4
..
COK
Cook Islands
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
19.6
19
18.2
17.5
16.8
16.1
15.4
14.9
14.4
13.9
13.3
12.9
12.4
11.9
11.5
11.1
10.7
10.4
10
9.6
9.4
..
COL
Colombia
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
36.6
35.4
34.3
33.4
32.5
31.6
30.7
29.7
28.7
27.8
26.8
25.9
25.1
24.2
23.5
22.7
21.9
21.2
20.5
19.7
19.1
..
COM
Comoros
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
125.2
122.8
120.4
118.8
116.6
114.6
112.5
110.3
108.2
106.5
104.3
102.4
101
99.2
97.1
95.4
94.5
91.8
89.9
87.4
85.6
..
CPV
Cape Verde
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
59.2
57.8
56.5
55
53.5
52.2
51
49.6
48.3
47.1
46
44.7
43.7
42.4
41.6
40.4
39.1
38.2
37.6
36.5
35.6
..
CRI
Costa Rica
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
17.2
16.7
16.2
15.8
15.6
15.2
14.8
14.4
14
13.5
12.9
12.3
11.7
11.2
11
10.7
10.6
10.4
10.3
10.2
10.1
..
CUB
Cuba
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
13.4
12.7
12.1
11.5
11
10.6
10.2
9.8
9.3
8.9
8.5
8.1
7.7
7.4
7.1
6.9
6.7
6.5
6.3
6.1
5.9
..
CUW
Curacao
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYP
Cyprus
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
11
10.8
10.5
10.1
9.6
9
8.4
7.9
7.4
6.9
6.5
6.1
5.8
5.5
5.2
4.9
4.7
4.4
4.2
4
3.8
..
CZE
Czech Republic
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
14.3
13.5
12.8
11.9
11
10.1
9.2
8.4
7.7
7.2
6.7
6.3
6
5.7
5.5
5.2
5
4.7
4.5
4.3
4
..
DEU
Germany
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
8.5
8.1
7.6
7.2
6.8
6.5
6.2
6
5.7
5.6
5.4
5.2
5.1
5
4.9
4.7
4.6
4.5
4.4
4.2
4.1
..
DJI
Djibouti
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
122.7
120.5
118.7
117.2
115.3
114.2
112.2
110.5
108.9
107.1
105.6
104.2
102.7
101.1
99.4
98.1
96.5
95
94.5
92.7
91.1
..
DMA
Dominica
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
17.4
17.6
17.5
17.3
17.1
16.8
16.3
16
15.6
15.2
14.9
14.7
14.4
14.2
13.9
13.6
13.4
13.1
12.9
12.6
12.4
..
DNK
Denmark
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
8.7
8.3
7.8
7.4
7
6.6
6.2
6
5.8
5.7
5.6
5.5
5.4
5.2
5.1
4.9
4.7
4.5
4.3
4.1
3.9
..
DOM
Dominican Republic
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
62.2
59.5
56.9
54.5
52.3
50.1
48.1
46
44.1
42.4
40.6
38.9
37.2
35.8
34.2
32.8
31.5
30.2
28.8
27.7
26.5
..
DZA
Algeria
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
67.6
65.2
62.9
60.8
58.9
57.1
55.5
53.9
52
50.6
48.9
47.2
46
44.5
43
42.1
40.8
39.1
38.1
37.1
36
..
EAP
East Asia & Pacific
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
56.3085347777
54.9163384289
53.5718366472
52.2345299369
50.7089336047
48.8407032694
46.9340630153
45.0396285986
43.0985315519
41.1494849882
39.3443402359
37.4765742772
35.6775550027
34.0486069
32.4944159248
30.9816714662
29.5635263334
28.2218509981
26.8872570023
25.5909203688
24.34319334
..
ECA
Europe & Central Asia
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
51.0241942931
50.5023566725
49.9733105946
49.3484883146
48.5613663576
47.2644909604
45.6905351023
43.9161494017
41.9279042108
39.8943490463
37.9036430096
35.8932423477
34.0138732558
32.2366211756
30.470600884
28.8538435101
27.490806736
26.0917025432
24.8351382891
23.6676991613
22.6106112645
..
ECU
Ecuador
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
52.3
49.8
47.4
45.3
43.2
41.2
39.4
37.5
35.8
34.2
32.7
31.1
29.7
28.2
27
25.6
24.5
23.3
22.3
21.1
20.1
..
EGY
Egypt, Arab Rep.
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
93.5
88.4
83
77.3
72
67.3
62.6
58.2
54
50.1
46.5
43.1
39.9
37
34.4
31.9
29.6
27.3
25.5
23.6
21.8
..
EMU
Euro area
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
9.7123000368
9.2604685717
8.7780972365
8.2825226923
7.8226794569
7.4174595176
7.03213658
6.7076411294
6.3716359081
6.1414334902
5.9285888776
5.6845487022
5.502517442
5.300627747
5.1343426865
4.9657004774
4.7924814441
4.6365990804
4.4942090294
4.3286843966
4.1925976643
..
ERI
Eritrea
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
140.6
135.3
129.9
124.6
119.6
114.7
110
105.4
101.2
96.9
92.7
88.9
84.9
81.6
78.1
75.1
72
69.1
66.2
63.2
60.8
..
ESP
Spain
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
10.9
10.4
9.9
9.3
8.8
8.3
7.9
7.5
7.1
6.8
6.6
6.4
6.2
6
5.8
5.7
5.5
5.3
5.1
5
4.8
..
EST
Estonia
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
21.1
20.9
20.5
19.9
19.1
18.3
17.4
16.3
15.1
14
13
12.1
11.1
10.2
9.4
8.6
7.8
7.2
6.6
6
5.4
..
ETH
Ethiopia
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
184.1
179.6
174.7
170.1
165.7
161.3
157
152.8
148.5
144.5
140.7
136.3
132.6
128.8
125
121.7
118.3
115.2
111.9
108.8
105.9
..
FIN
Finland
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
6.7
6.4
6
5.7
5.4
5.2
4.9
4.7
4.5
4.4
4.3
4.2
4.1
3.9
3.8
3.7
3.6
3.4
3.3
3.1
3
..
FJI
Fiji
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
29.5
28.8
27.9
27.1
26.5
25.8
25.1
24.4
23.8
23.2
22.6
21.9
21.5
20.9
20.3
19.8
19.2
18.7
18.2
17.9
17.4
..
FRA
France
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
8.8
8.4
8
7.5
7
6.6
6.3
6
5.7
5.5
5.4
5.2
5.1
4.9
4.8
4.7
4.5
4.4
4.3
4.2
4.1
..
FRO
Faeroe Islands
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FSM
Micronesia, Fed. Sts.
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
56.4
55.5
54.6
53.9
53
52.4
51.6
51.1
50.3
49.6
48.7
48.3
47.5
47
45.6
45.3
45
44.4
43.8
43.4
42.1
..
GAB
Gabon
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
92.6
91.7
90.9
90.3
89.8
89.4
89
88.7
88.5
88
87.5
86.7
85.6
84.4
83.1
81.7
80.3
78.5
76.5
74.9
73.5
..
GBR
United Kingdom
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
9.3
8.8
8.3
7.9
7.6
7.3
7.1
7
6.8
6.7
6.6
6.5
6.3
6.2
6.1
6
5.9
5.7
5.6
5.5
5.4
..
GEO
Georgia
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
46.8
45.3
44.2
43
41.7
40.6
39.3
37.7
36.2
34.7
33.4
32
30.6
29.4
28.4
27.3
26.1
25.1
24.1
23
22.4
..
GHA
Ghana
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
121.7
118.5
116
113.8
112.5
110.9
108.9
107
104.7
101.8
99.1
96.5
93.8
91
88.4
86
83.4
81.1
78.8
76.6
74.4
..
GIB
Gibraltar
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GIN
Guinea
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
229.2
224.3
219.4
213.8
208.3
202.5
196.7
191.1
185.5
180.1
175
170
164.9
159.9
155.5
150.8
146.1
142.2
138.4
134.2
129.9
..
GMB
Gambia, The
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
165.2
160.6
156.6
152.7
148.7
144.9
141.2
137.7
133.8
130.8
127.5
124.3
120.9
118.2
115.1
112.1
109.3
106.3
103.8
101.1
98.1
..
GNB
Guinea-Bissau
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
209.9
206.1
202.9
199.3
195.9
192.6
189.4
186.3
183.2
180
176.8
173.8
170.6
167.7
165.1
162.2
159.4
157
154.2
151.6
149.5
..
GNQ
Equatorial Guinea
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
189.5
186.6
182.2
178.2
174.2
170.2
166.1
163
159.4
155.6
152.3
148.8
145.7
142.4
138.7
136
133.7
130.7
127.3
124.8
120.8
..
GRC
Greece
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
12.7
12.1
11.5
11
10.5
10.1
9.6
9.2
8.7
8.2
7.7
7.2
6.8
6.3
5.9
5.5
5.2
4.9
4.6
4.3
4.1
..
GRD
Grenada
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
21.2
20.4
19.7
19.1
18.5
17.9
17.3
16.6
16.1
15.6
15.1
14.6
14.2
13.8
13.4
13
12.5
12.2
11.9
11.5
11.1
..
GRL
Greenland
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GTM
Guatemala
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
77.9
73.9
70
66.4
62.9
60
57.2
54.9
52.6
50.5
48.5
46.5
44.5
42.8
41
39.4
37.8
36.2
34.6
33.3
31.8
..
GUM
Guam
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GUY
Guyana
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
65.8
65.3
63.7
61.9
59.3
57.1
55.1
52.7
50.6
48.5
46.8
44.8
43.1
40.9
39.4
37.7
36.2
34.5
33
31.5
30.4
..
HIC
High income
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
12.2557184058
11.73441739
11.2041344244
10.6870439987
10.2098294347
9.7891941713
9.38467572
9.0411855769
8.7078121581
8.417355209
8.1821232291
7.9520295536
7.7576201479
7.553643034
7.3799555369
7.2166411858
7.039590883
6.8774341725
6.7366858455
6.5780631879
6.435736646
..
HKG
Hong Kong SAR, China
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HND
Honduras
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
58.1
55.2
52.9
50.7
48.8
46.9
44.9
42.9
40.9
39.1
37.4
35.9
34.2
32.8
31.3
30
28.6
27.4
26.1
25.1
24
..
HRV
Croatia
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
12.9
12.1
11.4
10.9
10.5
10
9.6
9.3
9
8.7
8.4
8
7.7
7.4
7
6.8
6.5
6.2
6
5.7
5.5
..
HTI
Haiti
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
150.5
146.4
142
137.6
133.1
128.8
124.8
120.6
116.9
113
109
105.6
102
98.5
95
91.6
88.6
85.8
82.9
80.1
164.8
..
HUN
Hungary
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
18.7
17.7
16.8
15.9
15
14.1
13.4
12.7
12.1
11.5
11
10.4
9.8
9.3
8.8
8.4
7.9
7.5
7.1
6.8
6.4
..
IDN
Indonesia
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
85
81
77.1
73.3
69.9
66.6
63.9
61.5
58.8
56.3
54
51.7
49.5
47.5
45.5
43.7
41.9
40.3
38.5
36.8
35.3
..
IMY
Isle of Man
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IND
India
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
114.8
111.9
108.7
105.6
102.6
99.5
96.6
93.6
90.9
88.2
85.5
82.9
80.5
78
75.6
73.2
70.9
68.7
66.8
64.7
62.7
..
IRL
Ireland
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
9
8.5
8.2
7.8
7.5
7.4
7.3
7.3
7.3
7.2
7
6.7
6.3
5.9
5.6
5.3
4.9
4.7
4.4
4.1
3.9
..
IRN
Iran, Islamic Rep.
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
64.8
62.1
59.5
56.9
54.1
51.7
49.5
48.4
47.7
46.3
43.9
41.1
39
37.1
34.9
33.2
31.4
30
28.5
27.2
25.8
..
IRQ
Iraq
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
46.1
45.4
45.3
45.2
45
44.8
44.3
44
43.7
43.2
42.8
42.4
42
41.6
41.2
40.7
40.4
39.7
39.5
39.2
38.6
..
ISL
Iceland
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
6.3
6.1
5.9
5.6
5.3
5
4.8
4.5
4.3
4.1
3.9
3.7
3.5
3.3
3.2
3
2.9
2.8
2.6
2.5
2.4
..
ISR
Israel
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
11.5
10.9
10.4
9.8
9.2
8.7
8.3
7.8
7.5
7.2
6.9
6.6
6.4
6.1
5.8
5.6
5.3
5.1
4.9
4.7
4.5
..
ITA
Italy
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
9.6
9.2
8.8
8.3
7.9
7.5
7
6.6
6.2
5.9
5.6
5.3
5
4.8
4.6
4.4
4.3
4.1
4
3.8
3.7
..
JAM
Jamaica
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
38
37.1
36.4
35.6
34.7
33.8
33.2
32.5
31.7
30.9
30.3
29.6
28.9
28.2
27.5
26.8
26.3
25.7
25.1
24.5
23.8
..
JOR
Jordan
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
38.3
37.2
36.3
35.5
34.8
33.7
32.8
31.9
31
30.2
29.4
28.4
27.6
26.8
26
25.2
24.5
23.8
23.1
22.3
21.7
..
JPN
Japan
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
6.4
6.2
6.1
6
5.8
5.6
5.4
5.2
5
4.7
4.5
4.3
4.2
4
3.9
3.8
3.6
3.5
3.4
3.3
3.2
..
KAZ
Kazakhstan
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
57.4
55.9
54.6
53.2
51.6
50.2
48.9
47.6
46.4
45.1
43.9
42.8
41.6
40.3
39.4
38.2
37.4
36.2
35.1
34.1
33.2
..
KEN
Kenya
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
99.4
102.7
105.4
108.3
111.6
114.2
116.3
117.2
116.4
114
111.1
108.1
105.3
102.7
100.1
97.5
94.6
92.1
89.3
87
84.7
..
KGZ
Kyrgyz Republic
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
71.8
69.3
67
64.9
62.9
60.8
59
57
55.2
53.7
51.9
50
48.6
47.3
45.6
44.1
42.9
41.7
40.3
39.1
37.7
..
KHM
Cambodia
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
121
120.8
120.9
120.6
120.8
120.5
120.3
119.3
114.6
108.7
103.1
96.2
89.8
83.8
78.2
72.7
67.8
62.8
58.5
54.6
51
..
KIR
Kiribati
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
87.4
84.9
82.4
80
77.8
75.6
73.4
71.2
69.1
67.1
65.2
63.3
61.5
59.6
58
56.2
54.7
53.1
51.5
50.1
48.6
..
KNA
St. Kitts and Nevis
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
28.3
27.2
26.2
25.3
24.2
22.9
21.4
20
18.7
17.5
16.2
15.2
14.1
13.2
12.2
11.4
10.6
9.8
9.1
8.5
8
..
KOR
Korea, Rep.
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
7.5
7
6.6
6.4
6.2
6.1
6
6
5.9
5.8
5.8
5.7
5.6
5.5
5.4
5.3
5.2
5.1
5.1
5
4.9
..
KSV
Kosovo
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KWT
Kuwait
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
15.4
14.8
14.1
14
13.7
13.6
13.6
13.5
13.2
12.9
12.6
12.3
12
11.9
11.8
11.7
11.6
11.5
11.3
11.2
11.1
..
LAC
Latin America & Caribbean
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
54.4279205988
52.3704872311
50.2488107293
48.2629225314
46.20261636
44.2280647329
42.19735902
40.1008517628
38.13933973
36.2599727826
34.5282753986
32.8504237793
31.2349935904
29.6895904425
28.2666724704
26.878364064
25.6080918152
24.4285720607
23.2681485071
22.150756237
23.2991575472
..
LAO
Lao PDR
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
144.8
137.2
129.7
123.7
117.5
112.8
107.8
101.9
97.6
92.8
88.1
84
80.4
76.6
72.9
68.9
66
62.8
60.1
57
53.8
..
LBN
Lebanon
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
38.3
37.3
36.3
35.5
34.5
33.7
32.7
31.7
30.9
30.1
29.3
28.3
27.6
26.8
26.1
25.4
24.8
24.4
23.5
22.8
22.1
..
LBR
Liberia
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
226.6
225.1
223.3
218.6
214.9
210.7
202.4
194.1
185.7
176.7
168.9
160.8
153.9
145.9
138.6
131.8
125.7
119.5
113.6
108.9
102.6
..
LBY
Libya
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
44.5
42.1
40.2
38.3
36.3
34.7
33
31.5
30
28.6
27.2
25.8
24.7
23.5
22.5
21.3
20.4
19.4
18.5
17.7
16.9
..
LCA
St. Lucia
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
22.5
21.7
20.9
20.2
19.8
19.4
19.1
18.9
18.7
18.4
18.1
17.9
17.7
17.4
17.1
17
16.7
16.5
16.2
16.1
15.9
..
LIC
Low income
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
164.550384191
162.29837964
159.834487075
157.413634398
155.86130839
152.791759193
149.326179535
146.343439171
143.113319155
139.819127416
136.507431588
133.151700773
130.050606818
127.201137384
124.294191321
121.59379959
118.542676411
115.552510456
112.539956617
109.756271121
107.868600354
..
LIE
Liechtenstein
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
10
9.6
9.2
8.8
8.4
8
7.6
7.2
6.8
6.4
6
5.5
5
4.5
4
3.5
3
2.5
2.1
2.1
2.1
..
LKA
Sri Lanka
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
31.5
30.5
29.4
28.6
27.6
26.7
25.8
25
24.2
23.4
22.7
22
21.3
20.7
20.2
19.5
18.9
18.4
17.6
17.1
16.5
..
LMC
Lower middle income
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
112.941681627
110.767190616
108.505969888
106.267088615
104.112660675
101.727467258
99.3756232038
96.9322853434
94.5317209904
92.1611955298
89.8504886919
87.6017996811
85.4013910539
83.2042685361
81.0544866924
78.9111691008
76.8617746233
74.8562919222
73.1227676041
71.2000462012
69.4375821751
..
LMY
Low & middle income
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
98.0179341465
96.7623028308
95.4473939273
94.1362392609
92.8920021843
91.1153189093
89.1883327315
87.2867513847
85.3598124647
83.4140168367
81.4953438393
79.5380384153
77.6368423946
75.7644176003
73.8749903999
72.0041521206
70.1006399257
68.2269190463
66.5060729575
64.7480138852
63.3019755511
..
LSO
Lesotho
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
89.3
88.1
87.9
89.5
93.3
99.4
107.1
114.9
121
124.9
126.8
127.1
126.4
125.1
123.3
121.1
117.7
111.8
99.1
92
85
..
LTU
Lithuania
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
17.4
17.6
17.6
17.4
16.9
16.1
15.1
14.1
13.2
12.4
11.8
11.2
10.8
10.3
9.7
9.1
8.5
8
7.5
7
6.5
..
LUX
Luxembourg
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
8.4
7.9
7.4
7.1
6.7
6.4
6.1
5.8
5.5
5.2
5
4.7
4.5
4.3
4.1
3.9
3.7
3.6
3.4
3.2
3.1
..
LVA
Latvia
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
20.6
21.3
22
22.7
22.9
22.5
21.7
20.7
19.6
18.4
17.3
16.1
15.1
14.1
13.4
12.6
12
11.3
10.6
10.1
9.6
..
MAC
Macao SAR, China
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAF
St. Martin (French part)
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
85.9
82.1
78.6
75.3
72.2
68.9
66
63
60.3
57.6
55.3
52.8
50.5
48.4
46.3
44.2
42.2
40.3
38.6
37
35.5
..
MCO
Monaco
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
8.5
7.9
7.4
6.9
6.5
6.1
5.8
5.5
5.3
5.2
5
4.9
4.7
4.6
4.5
4.4
4.4
4.4
4.3
4.3
4.3
..
MDA
Moldova
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
37.1
36.1
34.8
33.4
32.5
31.3
30.2
29.3
28.3
27.2
26.4
25.6
24.6
23.9
23.1
22.3
21.6
20.8
20.2
19.6
19
..
MDG
Madagascar
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
158.8
154
147.8
142
135.8
129.4
123.1
117.2
112
106.7
101.5
96.7
92.4
87.6
83.3
79.3
75.2
71.9
68.3
65.4
62.1
..
MDV
Maldives
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
101.6
96.4
91.5
86.7
81.5
75.9
71
64.5
57.6
51.8
46.6
41.7
37.3
33.5
29.7
26.7
23.7
20.9
18.8
17.1
15
..
MEX
Mexico
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
48.6
46.6
44.5
42.2
40.3
38.3
36.4
34.5
32.6
30.8
29.1
27.6
26.1
24.7
23.3
22
20.8
19.7
18.6
17.6
16.7
..
MHL
Marshall Islands
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
51.1
49.4
47.9
46.2
44.8
43.3
41.7
40.4
39.3
37.8
36.8
35.6
34.2
33.1
32.3
30.9
30
28.9
28.3
27.1
26.3
..
MIC
Middle income
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
84.695508841
83.3258890631
81.9155744905
80.506178766
79.0032494859
77.2063691674
75.3448447429
73.4286523849
71.5609101637
69.7102736825
67.9277207179
66.1424864115
64.3965940107
62.6508325864
60.9202142199
59.1738520782
57.4829490361
55.8124039168
54.3338294925
52.7374810549
51.283063551
..
MKD
Macedonia, FYR
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
39.1
36
32.7
29.5
26.7
24.3
22.1
19.9
18.2
16.9
16
15.4
14.8
14.2
13.7
13.3
13
12.7
12.3
11.9
11.7
..
MLI
Mali
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
255.4
250.6
246.1
241.6
237.5
233.3
229.1
225
220.8
217
213.2
209.5
205.8
202.2
198.6
195.2
191.7
188.6
184.8
181.6
178.1
..
MLT
Malta
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
11.3
10.8
10.4
9.9
9.5
9.2
8.8
8.5
8.2
7.9
7.7
7.5
7.3
7.1
6.9
6.8
6.6
6.5
6.3
6.2
6
..
MMR
Myanmar
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
111.7
109.1
106.4
103.7
101.2
98.6
96.1
93.6
91.2
88.8
86.7
84.6
81.9
79.9
77.9
75.9
73.8
71.9
70.2
68.9
66.2
..
MNA
Middle East & North Africa
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
74.4701936851
71.3630693128
68.4434760995
65.521776438
62.6837143917
60.1165162999
57.6116560282
55.4371188352
53.3959042194
51.3428373102
49.2206507784
47.0987650001
45.2113776575
43.458620039
41.7581523569
40.1629652753
38.7166796639
37.2438642839
36.0021814304
34.8206252603
33.5996552854
..
MNE
Montenegro
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
17.6
17
16.5
16
15.5
14.9
14.5
14.1
13.7
13.1
12.6
12.1
11.6
11.1
10.6
10.1
9.7
9.2
8.8
8.4
8
..
MNG
Mongolia
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
106.9
101.7
97.1
92.5
87.9
83.3
78.5
74
69.4
65
60.9
57.1
53.5
50.1
46.9
43.9
41.1
38.6
36.1
33.7
31.6
..
MNP
Northern Mariana Islands
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MOZ
Mozambique
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
218.7
213.5
208.6
203.8
199.3
195
191
187.1
183.5
180
176.7
173.3
169.8
166.1
162.3
158.4
154.3
149.1
144.1
139.6
135
..
MRT
Mauritania
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
124.1
122.7
121.5
120.4
119.3
118.6
118.2
117.5
116.8
116
115.6
115.2
114.4
114.2
113.8
113.5
113.5
112.7
112.4
111.5
111.2
..
MUS
Mauritius
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
23.9
23
22.4
22
21.9
21.8
21.6
21.1
20.4
19.5
18.6
17.7
16.9
16.4
16
15.9
15.7
15.6
15.4
15.3
15.1
..
MWI
Malawi
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
222.1
218.1
214.7
212.5
209.3
205.1
199.4
191.1
182.6
174.5
166.5
158.7
150.9
143.4
135.7
128.1
120.4
112.4
104.7
98.1
92.1
..
MYS
Malaysia
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
17.9
17.1
16.1
15.3
14.5
13.8
13
12.4
11.8
11.2
10.6
10
9.5
9.1
8.6
8.1
7.7
7.3
7
6.6
6.3
..
MYT
Mayotte
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NAM
Namibia
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
73.1
71.4
70.1
69.2
68.7
68.8
69.3
70.3
71.5
72.8
73.9
74.6
74.5
73.7
71.9
58.1
53.9
50.4
46.8
44.1
40.1
..
NCL
New Caledonia
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NER
Niger
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
311
305.9
296.6
287.1
276.2
266.9
257.4
247.4
237.1
227.4
217.8
208.5
200.3
192.2
184.1
176.5
169.7
162.5
155.9
150
143.3
..
NGA
Nigeria
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
212.6
213
213
212.2
210.8
207.6
204
199.8
195.3
190.8
186
181.6
177.2
172.8
168.1
163.5
159.1
154.6
151
146.7
142.9
..
NIC
Nicaragua
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
68
65.1
62.5
59.6
56.5
53.6
51
48.8
46.6
44.6
42.7
40.7
38.7
37.2
35.5
34.1
32.4
30.9
29.5
28.3
26.9
..
NIU
Niue
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
14.2
14.6
14.5
14.6
14.9
15.8
17.2
19.5
22.5
26.1
29.4
31.7
31
29.9
29.1
27.8
26.4
25.3
24.2
23
21.9
..
NLD
Netherlands
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
8.3
8
7.7
7.4
7.2
6.9
6.7
6.5
6.4
6.3
6.2
6
5.9
5.7
5.5
5.3
5.1
4.9
4.7
4.5
4.3
..
NOR
Norway
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
8.5
7.8
7.2
6.6
6.2
5.8
5.5
5.3
5.1
5
4.9
4.7
4.5
4.3
4.2
4
3.9
3.7
3.6
3.5
3.4
..
NPL
Nepal
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
140.9
134.4
128.1
121.8
115.7
109.7
104.3
98.9
93.8
89.1
84.4
80.1
75.9
72.1
68.2
64.8
61.4
58
55
52.2
49.5
..
NRU
Nauru
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
40
40
40
40
40
40
40
40
40
40
40
40
40
40
40
40
40
40
40
40
40
..
NZL
New Zealand
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
11.1
10.5
10
9.5
9.1
8.7
8.4
8.1
7.8
7.6
7.4
7.2
7
6.9
6.8
6.6
6.5
6.4
6.2
6.1
6
..
OMN
Oman
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
47.2
44.2
41.4
38.7
35.6
32.7
30.1
27.6
25.2
23.3
21.5
19.8
18.2
16.8
15.4
14.2
13.1
12
10.9
10.1
9.3
..
PAK
Pakistan
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
123.6
122
120.3
118.7
117.2
114.6
111.2
108
104.6
102
100.5
99.3
97.8
96.3
95
93.6
92.3
90.7
89.6
87.9
86.5
..
PAN
Panama
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
33.2
32.4
31.6
30.7
29.9
29.2
28.4
27.8
27
26.4
25.7
25.1
24.5
24
23.4
22.9
22.3
21.7
21.2
20.7
20.2
..
PER
Peru
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
77.6
74.6
71
67.3
63
58.8
54.9
51
47.3
43.8
40.6
37.7
35
32.4
30.2
28
25.9
24.1
22.4
20.7
19.2
..
PHL
Philippines
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
59.4
56.8
54.3
51.9
49.7
47.7
46.1
44.6
43.1
41.8
40.4
39.2
37.8
36.7
35.6
34.5
33.4
32.4
31.3
30.4
29.4
..
PLW
Palau
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
32.6
31.2
30.6
29.8
29
28.2
28
27.2
26.3
25.5
25
24.1
23.4
22.6
22.6
21.7
21.3
20.6
20.2
19.4
19
..
PNG
Papua New Guinea
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
89.5
88.1
86.1
84.3
82.8
81.2
79.8
78
76.6
75.4
73.9
72.4
71
69.5
68.4
67.2
65.7
64.3
63.2
62.1
60.8
..
POL
Poland
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
17.3
16.8
16.3
15.6
14.7
13.9
12.9
12
11.1
10.3
9.6
9
8.6
8.2
7.9
7.6
7.2
6.9
6.6
6.3
6
..
PRI
Puerto Rico
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRK
Korea, Dem. Rep.
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
45
50.7
57.4
64.5
71.3
76.2
78.4
77.3
73.1
66.2
57.7
48.9
41.5
36.1
32.9
31.8
32.1
31.7
33.1
33.3
33.2
..
PRT
Portugal
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
14.6
13.5
12.4
11.5
10.7
10
9.3
8.7
8.2
7.7
7.2
6.6
6.1
5.6
5.2
4.9
4.6
4.4
4.1
3.9
3.7
..
PRY
Paraguay
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
50.1
49.3
48.1
46.4
44.4
42.7
41.1
39.3
38.1
36.7
35.3
34.1
32.7
31.5
30.5
29.4
28.4
27.4
26.2
25.4
24.6
..
PYF
French Polynesia
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
QAT
Qatar
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
20.8
19.7
18.5
17.6
16.8
16
15.3
14.5
13.9
13.3
12.7
12.2
11.6
11.1
10.7
10.2
9.8
9.4
9
8.6
8.2
..
ROM
Romania
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
37.4
36.3
35.1
34
33.1
32.2
31.2
30.2
29
27.9
26.8
25.7
24.5
23.3
21.9
20.5
18.9
17.4
16
14.8
13.6
..
RUS
Russian Federation
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
26.5
26.3
26.2
26.2
26.1
25.9
25.7
25.2
24.5
23.6
22.7
21.6
20.4
19.2
17.9
16.6
15.5
14.4
13.4
12.5
11.6
..
RWA
Rwanda
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
162.8
175.3
185.2
205.9
289.1
253.9
209.4
204.7
199.3
188
176.7
166.3
156.6
147.1
137.6
127.8
119.6
111.9
104.1
97.5
91.1
..
SAS
South Asia
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
120.325536054
117.190717058
113.808465284
110.434946831
107.23947348
103.861579663
100.515047224
97.3085158369
94.3476623045
91.5035320924
88.7745957961
86.1659287257
83.7278462295
81.3387671673
79.0179265926
76.7832530286
74.6337726954
72.5675322473
70.7891390032
68.8135268838
66.9727801015
..
SAU
Saudi Arabia
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
44.6
42.3
39.7
37.2
35
33.3
31.6
29.8
28.4
27.1
25.8
24.7
23.7
22.7
21.8
21
20.2
19.5
18.9
18.1
17.5
..
SDN
Sudan
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
124.9
123.6
122.8
121.5
120
119
117.6
116.5
115.6
114.3
113.5
112.5
111.5
110.3
109.5
108.5
107.2
106.1
105.7
104.2
103.3
..
SEN
Senegal
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
138.6
136.9
135.4
134.8
134.4
133.9
133.4
131.3
127.3
123.8
118.8
113.6
108.7
103.8
99.5
95
90.6
86.3
82.3
78.5
75.2
..
SGP
Singapore
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
7.5
6.9
6.4
5.9
5.5
5.2
5
4.7
4.4
4.2
3.9
3.7
3.4
3.2
3.1
3
2.9
2.8
2.8
2.7
2.6
..
SID
Small island developing states
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
80.692633861
78.7894896156
76.8892407487
75.068580602
73.3309361005
71.6233956456
70.0558470859
68.297407031
66.6399485808
65.0110842876
63.2918273861
61.7177896058
60.1477651003
58.6797548033
57.2472385644
55.869067381
54.5307304541
53.2262154108
51.8685549016
50.5682945472
68.9141744522
..
SLB
Solomon Islands
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
44.9
43.7
42.4
41.4
40.4
39.4
38.3
37.4
36.3
35.5
34.5
33.6
32.9
32.1
31.2
30.6
29.6
29
28.1
27.4
26.7
..
SLE
Sierra Leone
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
276
275.3
276.1
276.2
274.9
270.9
262.8
254.5
244.5
238.5
232.8
226.3
219.6
213
207.5
201.5
195.6
190.4
185.4
180
174
..
SLV
El Salvador
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
61.9
59.4
56.6
53.7
50.6
47.6
44.9
42
39.2
36.5
34
31.5
29.3
27.2
25.2
23.4
21.8
20.2
18.8
17.5
16.2
..
SMR
San Marino
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
11.9
11.3
10.6
10
9.4
8.7
7.9
7.1
6.5
5.8
5.3
4.8
4.3
3.9
3.5
3.2
2.9
2.6
2.4
2.1
1.9
..
SOM
Somalia
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
180
180
180
180
180
180
180
180
180
180
180
180
180
180
180
180
180
180
180
180
180
..
SRB
Serbia
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
28.6
26.6
24.5
22.6
20.7
19
17.4
16
14.7
13.6
12.7
11.9
11.1
10.5
9.8
9.3
8.8
8.3
7.8
7.4
7.1
..
SSA
Sub-Saharan Africa
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
174.604545756
173.796586945
172.812585836
171.815948993
171.318399856
169.127103189
166.506382927
163.92615869
160.996456353
157.940404578
154.798508177
151.58260913
148.405629965
145.226968482
141.929938097
138.639126519
135.002197044
131.361886818
127.909172033
124.472179823
121.227210408
..
STP
Sao Tome and Principe
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
93.8
93.1
92.4
91.4
91
90.5
89.7
89
88.5
87.9
87
86.1
85.4
85.6
84.3
83.3
82.8
81.8
81.1
80.8
79.9
..
SUR
Suriname
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
51.8
50.6
49.3
47.8
46.8
45.5
44.3
43.1
41.8
40.8
39.8
38.6
37.6
36.9
35.8
34.7
33.4
32.9
32
31
30.5
..
SVK
Slovak Republic
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
17.6
17
16.3
15.7
15
14.4
13.7
13.1
12.5
12
11.6
11.2
10.9
10.5
10.2
9.9
9.6
9.2
8.9
8.5
8.2
..
SVN
Slovenia
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
10.4
9.7
8.9
8.3
7.8
7.3
6.8
6.3
5.9
5.6
5.4
5.2
5
4.8
4.5
4.2
3.9
3.7
3.4
3.1
2.9
..
SWE
Sweden
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
6.7
6.4
6
5.6
5.2
4.9
4.6
4.4
4.3
4.2
4.1
4
3.9
3.8
3.7
3.6
3.5
3.3
3.2
3.1
3
..
SWZ
Swaziland
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
96.1
95
94.5
94.5
95.7
97.6
100.3
103.6
107.4
111
114
116.2
117.4
117.6
117.1
115.9
109.1
96.5
85.8
81.8
77.7
..
SXM
Sint Maarten (Dutch part)
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
16.6
16
15.5
15.1
14.8
14.4
14.3
14
13.8
13.9
13.8
13.7
13.6
13.6
13.6
13.5
13.6
13.5
13.5
13.5
13.5
..
SYR
Syrian Arab Republic
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
38.2
35.8
33.8
31.8
29.8
28.4
27
25.7
24.8
23.9
23
22.2
21.4
20.6
19.9
19.2
18.5
17.8
17.2
16.6
16
..
TCA
Turks and Caicos Islands
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TCD
Chad
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
207.3
205.3
203.4
201.7
199.9
198.1
196.4
194.6
192.9
191.1
189.5
187.8
186.3
184.5
182.8
181.3
179.8
178.4
176.7
175.1
173.4
..
TGO
Togo
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
147.1
144.3
141.9
139.5
136.8
134.7
132.3
130.2
127.6
125.6
123.7
121.5
119.3
117.3
115.2
113.3
111.3
109.2
107.5
105.7
103.4
..
THA
Thailand
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
31.8
28.9
27.1
25
23.1
21.1
19.7
19.2
18.6
18.2
17.7
17
16.5
16.1
15.5
15.1
14.9
14.3
13.9
13.5
13
..
TJK
Tajikistan
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
116.4
115.5
115
114.1
112.8
111.1
108.1
104.5
100.8
97
93.4
89.7
86.1
82.9
79.2
76.2
73.2
70.4
67.3
65.3
62.6
..
TKM
Turkmenistan
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
98.3
95.6
92.9
90.2
87.6
85.2
82.9
80.6
78.3
76.1
74
71.6
69.9
67.9
65.9
64
62.4
60.4
58.9
56.9
55.5
..
TMP
Timor-Leste
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
168.7
161.7
155.4
149
143
136.8
131
124.9
117.1
110
103.5
97.1
91.2
85.9
80.6
75.7
70.8
66.6
62.3
58.5
54.8
..
TON
Tonga
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
24.5
24
23.4
22.9
22.4
21.9
21.4
21
20.5
20.1
19.7
19.2
18.8
18.4
17.9
17.6
17.2
16.9
16.4
16.1
15.6
..
TTO
Trinidad and Tobago
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
36.6
36.1
35.6
35.2
34.6
34
33.5
32.8
32.6
32
31.6
31.1
30.6
30.1
29.7
29.2
28.7
28.4
27.7
27.6
27.1
..
TUN
Tunisia
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
49.3
46.1
43.5
41.3
39.2
37.3
35.5
33.6
31.8
30.1
28.4
26.9
25.4
24
22.7
21.5
20.3
19.2
18.1
17.2
16.1
..
TUR
Turkey
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
79.8
76.8
73.4
70.1
67.2
63.1
58.8
54.9
50.6
46.5
42.7
39
35.7
32.7
29.9
27.3
25.1
22.8
21
19.1
17.6
..
TUV
Tuvalu
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
57
55.7
54.3
52.6
51.2
49.8
48.5
47.2
45.9
44.7
43.6
42.1
41
39.8
38.9
37.7
36.5
35.5
34.4
33.4
32.5
..
TZA
Tanzania
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
154.8
154.6
154.6
154.9
155.2
154.6
151.8
147.4
141.4
136
130.2
124.5
119
113.6
108.2
102.8
97.4
91.7
85.4
80.4
75.8
..
UGA
Uganda
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
174.9
174.4
173.1
171.3
169.6
166.9
164
160
155.1
149.7
144.3
139.1
134.2
129.6
125
120.3
115.3
110.2
106.5
102.6
98.9
..
UKR
Ukraine
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
20.7
20.4
20.2
20
19.8
19.6
19.3
18.9
18.5
18.1
17.6
17.1
16.7
16.2
15.8
15.4
14.9
14.4
14
13.6
13.2
..
UMC
Upper middle income
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
48.9215573361
47.6349503893
46.3623482661
45.1395058602
43.6927269393
41.9894092897
40.1916726853
38.4546127598
36.799437616
35.1622146923
33.6309511208
32.0325045308
30.5107248367
29.0457230711
27.6042499682
26.1684312202
24.7756645105
23.4011624363
22.1037243865
20.8195982078
19.6398851397
..
URY
Uruguay
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
23.1
22.4
21.9
21.4
20.9
20.3
19.7
19
18.2
17.6
17.1
16.6
16.1
15.5
14.6
13.9
13.3
12.6
12
11.4
10.8
..
USA
United States
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
11.3
10.9
10.5
10.1
9.8
9.5
9.2
9
8.8
8.6
8.5
8.4
8.3
8.2
8.1
8
7.9
7.8
7.7
7.6
7.5
..
UZB
Uzbekistan
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
77.3
75.4
74.1
72.7
71.2
69.7
68.4
66.8
65.5
64.2
62.9
61.6
60.5
59.3
57.8
56.7
55.9
55
53.6
52.4
51.5
..
VCT
St. Vincent and the Grenadines
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
26.5
25.5
24.7
23.9
23.3
22.7
22.4
22.1
22
21.9
21.9
21.9
21.7
21.7
21.6
21.4
21.4
21.4
21.4
21.3
21.2
..
VEN
Venezuela, RB
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
33.3
32.3
31.3
30.5
29.6
28.7
27.8
27
26.2
25.4
24.8
24
23.3
22.6
21.9
21.2
20.7
20
19.4
18.8
18.3
..
VIR
Virgin Islands (U.S.)
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VNM
Vietnam
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
51.2
49.7
47.9
46.1
44.4
42.6
41
39.4
38
36.4
35
33.7
32.3
31.1
29.9
28.5
27.4
26.3
25.2
24.2
23.3
..
VUT
Vanuatu
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
38.6
36.7
34.8
32.9
31.2
29.7
28.2
26.9
25.6
24.3
23.2
21.8
20.8
19.9
18.8
17.8
16.8
16.1
15.3
14.5
13.9
..
WBG
West Bank and Gaza
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
44.7
42.8
41.4
40
38.4
36.7
34.9
33.5
32.5
31.6
30.6
29.7
28.8
27.9
27
26.2
25.4
24.6
23.8
23
22.3
..
WLD
World
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
89.8716396205
88.692497258
87.4585314556
86.2359617522
85.0869005655
83.4696514765
81.7227773843
80.0029627079
78.2540964515
76.4830878634
74.730972838
72.9327675711
71.1793477595
69.444209803
67.6914641425
65.9540585455
64.185779928
62.4479519021
60.8540182981
59.2287195228
57.8912745323
..
WSM
Samoa
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
27.1
26.2
25.5
25.2
25.2
24.3
23.8
24
23.7
23.5
23.1
22.8
22.5
22.2
21.8
21.7
21.4
21.2
20.8
20.5
20.2
..
YEM
Yemen, Rep.
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
128
124.6
121.9
119.1
116.2
113.3
110.4
107.7
104.8
102.1
99.5
97.1
94.5
92.2
90
87.3
85.5
83.5
81.1
79.1
77
..
ZAF
South Africa
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
59.8
58.3
57.6
57.9
58.9
60.9
63.7
67.2
71
74.7
77.9
80.5
81.6
82
81.4
79.9
75.8
70.3
65.6
60.9
56.6
..
ZAR
Congo, Dem. Rep.
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
181.4
181.4
181.4
181.4
181.4
181.4
181.4
181.4
181.4
181.4
181.4
181.4
181.4
181.4
181.4
181.4
179
176.7
174.4
172.1
169.9
..
ZMB
Zambia
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
182.8
184.1
184.7
183.3
180.7
177.4
173.8
169.7
165.5
161.3
157.3
153.4
149.6
145.9
142.4
138.2
133.2
128.3
121.8
116.1
111
..
ZWE
Zimbabwe
SH.DYN.MORT
Under-five mortality rate (per 1,000)
0
0
77.6
81.6
87.3
93.7
99.7
105.8
110.8
113.9
115.5
115.9
115
113.1
110.5
107.4
103.9
100.2
96.5
92
87.5
83
79.8
..
ABW
Aruba
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
ADO
Andorra
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
AFG
Afghanistan
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
3
..
..
..
..
21
..
..
..
..
41
..
..
48
..
..
..
AGO
Angola
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
36
..
..
..
..
36
..
..
..
..
41
..
..
..
..
47
..
..
50
..
..
..
ALB
Albania
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
96
..
..
..
..
97
..
..
..
..
97
..
..
97
..
..
..
ARE
United Arab Emirates
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
ARG
Argentina
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
94
..
..
..
..
95
..
..
..
..
96
..
..
..
..
96
..
..
97
..
..
..
ARM
Armenia
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
92
..
..
..
..
93
..
..
..
..
95
..
..
96
..
..
..
ASM
American Samoa
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ATG
Antigua and Barbuda
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
91
..
..
..
..
91
..
91
..
91
..
..
..
..
..
..
..
AUS
Australia
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
AUT
Austria
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
AZE
Azerbaijan
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
70
..
..
..
..
71
..
..
..
..
74
..
..
..
..
77
..
..
80
..
..
..
BDI
Burundi
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
70
..
..
..
..
71
..
..
..
..
72
..
..
..
..
72
..
..
72
..
..
..
BEL
Belgium
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
BEN
Benin
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
56
..
..
..
..
61
..
..
..
..
66
..
..
..
..
72
..
..
75
..
..
..
BFA
Burkina Faso
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
41
..
..
..
..
49
..
..
..
..
60
..
..
..
..
70
..
..
76
..
..
..
BGD
Bangladesh
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
78
..
..
..
..
78
..
..
..
..
79
..
..
..
..
80
..
..
80
..
..
..
BGR
Bulgaria
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
BHR
Bahrain
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BHS
Bahamas, The
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
96
..
..
..
..
96
..
97
..
97
..
..
..
..
..
..
..
BIH
Bosnia and Herzegovina
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
97
..
..
..
..
97
..
..
..
..
98
..
..
99
..
..
..
BLR
Belarus
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
BLZ
Belize
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
75
..
..
..
..
82
..
..
..
..
89
..
91
..
91
96
..
..
99
..
..
..
BMU
Bermuda
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BOL
Bolivia
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
70
..
..
..
..
75
..
..
..
..
79
..
..
..
..
84
..
..
86
..
..
..
BRA
Brazil
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
88
..
..
..
..
91
..
..
..
..
93
..
..
..
..
95
..
..
97
..
..
..
BRB
Barbados
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
100
..
100
100
..
..
100
..
..
..
BRN
Brunei Darussalam
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
99
..
..
..
..
..
..
..
BTN
Bhutan
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
91
..
..
..
..
91
..
..
92
..
..
..
BWA
Botswana
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
93
..
..
..
..
94
..
..
..
..
94
..
..
..
..
95
..
..
95
..
..
..
CAF
Central African Republic
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
58
..
..
..
..
60
..
..
..
..
63
..
..
..
..
65
..
..
67
..
..
..
CAN
Canada
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
CHE
Switzerland
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
CHI
Channel Islands
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHL
Chile
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
90
..
..
..
..
92
..
..
..
..
94
..
..
..
..
96
..
..
96
..
..
..
CHN
China
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
67
..
..
..
..
74
..
..
..
..
80
..
..
..
..
86
..
..
89
..
..
..
CIV
Cote d'Ivoire
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
76
..
..
..
..
77
..
..
..
..
78
..
..
..
..
79
..
..
80
..
..
..
CMR
Cameroon
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
50
..
..
..
..
57
..
..
..
..
64
..
..
..
..
71
..
..
74
..
..
..
COG
Congo, Rep.
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
70
..
..
..
..
71
..
..
71
..
..
..
COK
Cook Islands
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
94
..
..
..
..
94
..
..
..
..
95
..
..
..
..
94
..
..
..
..
..
..
COL
Colombia
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
88
..
..
..
..
90
..
..
..
..
91
..
..
..
..
92
..
..
92
..
..
..
COM
Comoros
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
87
..
..
..
..
90
..
..
..
..
92
..
..
..
..
95
..
..
95
..
..
..
CPV
Cape Verde
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
82
..
..
..
..
83
..
..
..
..
84
..
..
84
..
..
..
CRI
Costa Rica
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
93
..
..
..
..
94
..
..
..
..
95
..
..
..
..
96
..
..
97
..
..
..
CUB
Cuba
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
82
..
..
..
..
86
..
..
..
..
90
..
..
..
..
92
..
..
94
..
..
..
CUW
Curacao
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
93
..
..
..
..
93
..
..
..
..
95
..
..
95
..
..
..
CYP
Cyprus
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
CZE
Czech Republic
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
DEU
Germany
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
DJI
Djibouti
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
77
..
..
..
..
78
..
..
..
..
84
..
..
..
..
89
..
..
92
..
..
..
DMA
Dominica
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
95
..
..
..
..
95
..
97
..
97
95
..
..
..
..
..
..
DNK
Denmark
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
DOM
Dominican Republic
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
88
..
..
..
..
88
..
..
..
..
87
..
..
..
..
87
..
..
86
..
..
..
DZA
Algeria
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
94
..
..
..
..
93
..
..
..
..
89
..
..
..
..
85
..
..
83
..
..
..
EAP
East Asia & Pacific
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
68.7436855789
..
..
..
..
74.7388599217
..
..
..
..
80.1463872138
..
..
..
..
85.4831368066
..
..
87.8959378544
..
..
..
ECA
Europe & Central Asia
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
91.0960416799
..
..
..
..
92.2069493783
..
..
..
..
93.5081658268
..
..
..
..
95.0611056444
..
..
95.4788948902
..
..
..
ECU
Ecuador
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
72
..
..
..
..
79
..
..
..
..
86
..
..
..
..
92
..
..
94
..
..
..
EGY
Egypt, Arab Rep.
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
90
..
..
..
..
93
..
..
..
..
96
..
..
..
..
98
..
..
99
..
..
..
EMU
Euro area
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
99.7215805025
..
..
..
..
99.8223974767
..
..
..
..
99.9241865413
..
..
..
..
99.9529858416
..
..
99.9534932151
..
..
..
ERI
Eritrea
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
43
..
..
..
..
46
..
..
..
..
54
..
..
..
..
60
..
..
61
..
..
..
ESP
Spain
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
EST
Estonia
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
98
..
..
..
..
98
..
..
..
..
98
..
..
..
..
98
..
..
98
..
..
..
ETH
Ethiopia
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
17
..
..
..
..
22
..
..
..
..
28
..
..
..
..
35
..
..
38
..
..
..
FIN
Finland
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
FJI
Fiji
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FRA
France
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
FRO
Faeroe Islands
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FSM
Micronesia, Fed. Sts.
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
89
..
..
..
..
90
..
..
..
..
92
..
..
..
..
94
..
..
..
..
..
..
GAB
Gabon
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
84
..
..
..
..
85
..
..
..
..
86
..
..
87
..
..
..
GBR
United Kingdom
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
GEO
Georgia
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
81
..
..
..
..
82
..
..
..
..
89
..
..
..
..
96
..
..
98
..
..
..
GHA
Ghana
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
54
..
..
..
..
63
..
..
..
..
71
..
..
..
..
78
..
..
82
..
..
..
GIB
Gibraltar
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GIN
Guinea
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
52
..
..
..
..
58
..
..
..
..
62
..
..
..
..
68
..
..
71
..
..
..
GMB
Gambia, The
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
74
..
..
..
..
79
..
..
..
..
84
..
..
..
..
89
..
..
92
..
..
..
GNB
Guinea-Bissau
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
52
..
..
..
..
55
..
..
..
..
58
..
..
61
..
..
..
GNQ
Equatorial Guinea
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
43
..
..
..
..
43
..
..
..
..
43
..
..
..
..
..
..
GRC
Greece
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
96
..
..
..
..
98
..
..
..
..
99
..
..
..
..
100
..
..
100
..
..
..
GRD
Grenada
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
94
..
..
..
..
94
..
95
..
95
..
..
..
..
..
..
..
GRL
Greenland
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GTM
Guatemala
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
82
..
..
..
..
86
..
..
..
..
89
..
..
..
..
92
..
..
94
..
..
..
GUM
Guam
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
GUY
Guyana
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
87
..
..
..
..
89
..
83
..
83
92
..
..
94
..
..
..
HIC
High income
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
99.3219781725
..
..
..
..
98.9004961889
..
..
..
..
99.2628526972
..
..
..
..
99.4266199169
..
..
99.5575196382
..
..
..
HKG
Hong Kong SAR, China
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HND
Honduras
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
72
..
..
..
..
76
..
..
..
..
80
..
..
..
..
84
..
..
86
..
..
..
HRV
Croatia
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
99
..
..
..
..
99
..
..
..
..
99
..
..
99
..
..
..
HTI
Haiti
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
47
..
..
..
..
52
..
..
..
..
55
..
..
..
..
60
..
..
63
..
..
..
HUN
Hungary
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
96
..
..
..
..
97
..
..
..
..
99
..
..
..
..
100
..
..
100
..
..
..
IDN
Indonesia
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
71
..
..
..
..
74
..
..
..
..
77
..
..
..
..
80
..
..
80
..
..
..
IMY
Isle of Man
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IND
India
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
72
..
..
..
..
76
..
..
..
..
81
..
..
..
..
85
..
..
88
..
..
..
IRL
Ireland
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
IRN
Iran, Islamic Rep.
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
91
..
..
..
..
92
..
..
..
..
93
..
..
..
..
..
..
..
..
..
..
..
IRQ
Iraq
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
81
..
..
..
..
80
..
..
..
..
80
..
..
..
..
80
..
..
79
..
..
..
ISL
Iceland
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
ISR
Israel
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
ITA
Italy
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
JAM
Jamaica
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
93
..
..
..
..
93
..
..
..
..
93
..
93
..
93
93
..
..
94
..
..
..
JOR
Jordan
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
97
..
..
..
..
96
..
..
..
..
96
..
..
..
..
96
..
..
96
..
..
..
JPN
Japan
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
KAZ
Kazakhstan
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
96
..
..
..
..
96
..
..
..
..
96
..
..
..
..
96
..
..
95
..
..
..
KEN
Kenya
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
43
..
..
..
..
48
..
..
..
..
52
..
..
..
..
56
..
..
59
..
..
..
KGZ
Kyrgyz Republic
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
78
..
..
..
..
82
..
..
..
..
87
..
..
90
..
..
..
KHM
Cambodia
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
35
..
..
..
..
37
..
..
..
..
46
..
..
..
..
56
..
..
61
..
..
..
KIR
Kiribati
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
48
..
..
..
..
54
..
..
..
..
62
..
..
..
..
61
..
..
..
..
..
..
KNA
St. Kitts and Nevis
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
99
..
..
..
..
99
..
..
..
..
99
..
99
..
100
99
..
..
99
..
..
..
KOR
Korea, Rep.
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
90
..
..
..
..
93
..
..
..
..
96
..
..
98
..
..
..
KSV
Kosovo
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KWT
Kuwait
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
99
..
..
..
..
99
..
..
..
..
99
..
..
..
..
99
..
..
99
..
..
..
LAC
Latin America & Caribbean
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
85.0404039435
..
..
..
..
87.8057109261
..
..
..
..
89.8830679431
..
..
..
..
92.0878155709
..
..
93.3902965958
..
..
..
LAO
Lao PDR
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
44
..
..
..
..
48
..
..
..
..
54
..
..
57
..
..
..
LBN
Lebanon
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
LBR
Liberia
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
58
..
..
..
..
61
..
..
..
..
65
..
..
..
..
67
..
..
68
..
..
..
LBY
Libya
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
54
..
..
..
..
54
..
..
..
..
54
..
..
..
..
..
..
..
..
..
..
..
LCA
St. Lucia
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
98
..
..
..
..
98
..
..
..
..
98
..
98
..
98
98
..
..
98
..
..
..
LIC
Low income
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
54.9440935442
..
..
..
..
54.4935052874
..
..
..
..
57.9604938476
..
..
..
..
61.6125884678
..
..
63.1124608231
..
..
..
LIE
Liechtenstein
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LKA
Sri Lanka
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
67
..
..
..
..
73
..
..
..
..
80
..
..
..
..
86
..
..
90
..
..
..
LMC
Lower middle income
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
71.3576221836
..
..
..
..
75.4000684445
..
..
..
..
79.1682377194
..
..
..
..
82.4189906157
..
..
84.3233695316
..
..
..
LMY
Low & middle income
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
71.8875894035
..
..
..
..
75.4782103059
..
..
..
..
79.2343407353
..
..
..
..
82.6082783846
..
..
84.3632722587
..
..
..
LSO
Lesotho
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
61
..
..
..
..
64
..
..
..
..
74
..
..
..
..
83
..
..
85
..
..
..
LTU
Lithuania
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LUX
Luxembourg
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
LVA
Latvia
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
99
..
..
..
..
99
..
..
..
..
99
..
..
..
..
99
..
..
99
..
..
..
MAC
Macao SAR, China
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAF
St. Martin (French part)
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
74
..
..
..
..
76
..
..
..
..
78
..
..
..
..
80
..
..
81
..
..
..
MCO
Monaco
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
MDA
Moldova
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
93
..
..
..
..
92
..
..
..
..
90
..
..
90
..
..
..
MDG
Madagascar
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
31
..
..
..
..
34
..
..
..
..
37
..
..
..
..
40
..
..
41
..
..
..
MDV
Maldives
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
90
..
..
..
..
90
..
..
..
..
91
..
..
..
..
90
..
..
91
..
..
..
MEX
Mexico
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
85
..
..
..
..
88
..
..
..
..
90
..
..
..
..
93
..
..
94
..
..
..
MHL
Marshall Islands
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
95
..
..
..
..
95
..
..
..
..
95
..
..
..
..
95
..
..
94
..
..
..
MIC
Middle income
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
74.0438175229
..
..
..
..
78.4465933115
..
..
..
..
82.3769032725
..
..
..
..
85.9258823371
..
..
87.8400613416
..
..
..
MKD
Macedonia, FYR
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
MLI
Mali
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
29
..
..
..
..
36
..
..
..
..
44
..
..
..
..
51
..
..
56
..
..
..
MLT
Malta
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
MMR
Myanmar
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
57
..
..
..
..
60
..
..
..
..
66
..
..
..
..
71
..
..
71
..
..
..
MNA
Middle East & North Africa
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
86.9223619389
..
..
..
..
87.0462260629
..
..
..
..
87.74412599
..
..
..
..
87.3219166366
..
..
87.1862886409
..
..
..
MNE
Montenegro
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
98
..
..
..
..
98
..
..
98
..
..
..
MNG
Mongolia
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
58
..
..
..
..
59
..
..
..
..
66
..
..
..
..
73
..
..
76
..
..
..
MNP
Northern Mariana Islands
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
98
..
..
..
..
98
..
..
..
..
98
..
..
..
..
98
..
..
98
..
..
..
MOZ
Mozambique
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
36
..
..
..
..
38
..
..
..
..
42
..
..
..
..
45
..
..
47
..
..
..
MRT
Mauritania
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
30
..
..
..
..
36
..
..
..
..
40
..
..
..
..
45
..
..
49
..
..
..
MUS
Mauritius
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
99
..
..
..
..
99
..
..
..
..
99
..
..
..
..
99
..
..
99
..
..
..
MWI
Malawi
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
40
..
..
..
..
51
..
..
..
..
63
..
..
..
..
74
..
..
80
..
..
..
MYS
Malaysia
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
88
..
..
..
..
92
..
..
..
..
97
..
..
..
..
100
..
..
100
..
..
..
MYT
Mayotte
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NAM
Namibia
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
64
..
..
..
..
73
..
..
..
..
81
..
..
..
..
88
..
..
92
..
..
..
NCL
New Caledonia
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NER
Niger
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
35
..
..
..
..
39
..
..
..
..
42
..
..
..
..
45
..
..
48
..
..
..
NGA
Nigeria
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
47
..
..
..
..
50
..
..
..
..
53
..
..
..
..
57
..
..
58
..
..
..
NIC
Nicaragua
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
74
..
..
..
..
77
..
..
..
..
80
..
..
..
..
83
..
..
85
..
..
..
NIU
Niue
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
NLD
Netherlands
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
NOR
Norway
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
NPL
Nepal
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
76
..
..
..
..
80
..
..
..
..
83
..
..
..
..
86
..
..
88
..
..
..
NRU
Nauru
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
90
..
..
90
..
..
..
NZL
New Zealand
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
OMN
Oman
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
80
..
..
..
..
81
..
..
..
..
83
..
..
..
..
86
..
..
88
..
..
..
PAK
Pakistan
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
86
..
..
..
..
87
..
..
..
..
88
..
..
..
..
89
..
..
90
..
..
..
PAN
Panama
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
84
..
..
..
..
87
..
..
..
..
90
..
..
..
..
93
..
..
93
..
..
..
PER
Peru
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
75
..
..
..
..
77
..
..
..
..
79
..
..
..
..
81
..
..
82
..
..
..
PHL
Philippines
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
84
..
..
..
..
87
..
..
..
..
88
..
..
..
..
90
..
..
91
..
..
..
PLW
Palau
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
81
..
..
..
..
81
..
..
..
..
83
..
..
..
..
84
..
..
..
..
..
..
PNG
Papua New Guinea
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
41
..
..
..
..
41
..
..
..
..
39
..
..
..
..
41
..
..
40
..
..
..
POL
Poland
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
PRI
Puerto Rico
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRK
Korea, Dem. Rep.
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
PRT
Portugal
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
96
..
..
..
..
97
..
..
..
..
99
..
..
..
..
99
..
..
99
..
..
..
PRY
Paraguay
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
52
..
..
..
..
64
..
..
..
..
74
..
..
..
..
83
..
..
86
..
..
..
PYF
French Polynesia
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
QAT
Qatar
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
ROM
Romania
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
RUS
Russian Federation
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
93
..
..
..
..
94
..
..
..
..
95
..
..
..
..
96
..
..
96
..
..
..
RWA
Rwanda
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
68
..
..
..
..
67
..
..
..
..
67
..
..
..
..
66
..
..
65
..
..
..
SAS
South Asia
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
73.9859004527
..
..
..
..
76.0243935358
..
..
..
..
80.4366991503
..
..
..
..
84.0952443745
..
..
86.6424117694
..
..
..
SAU
Saudi Arabia
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
89
..
..
..
..
90
..
..
..
..
..
..
..
..
95.7
..
..
..
..
..
..
..
SDN
Sudan
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
65
..
..
..
..
63
..
..
..
..
61
..
..
..
..
59
..
..
57
..
..
..
SEN
Senegal
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
61
..
..
..
..
63
..
..
..
..
65
..
..
..
..
68
..
..
69
..
..
..
SGP
Singapore
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
SID
Small island developing states
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
75.4445077483
..
..
..
..
77.1874200907
..
..
..
..
77.6752245982
..
..
..
..
78.9471641215
..
..
79.8435657935
..
..
..
SLB
Solomon Islands
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
69
..
..
..
..
70
..
..
..
..
69
..
..
..
..
..
..
SLE
Sierra Leone
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
57
..
..
..
..
55
..
..
..
..
51
..
..
49
..
..
..
SLV
El Salvador
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
74
..
..
..
..
78
..
..
..
..
82
..
..
..
..
86
..
..
87
..
..
..
SMR
San Marino
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SOM
Somalia
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
21
..
..
..
..
23
..
..
..
..
28
..
..
30
..
..
..
SRB
Serbia
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
99
..
..
..
..
99
..
..
99
..
..
..
SSA
Sub-Saharan Africa
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
48.8392109991
..
..
..
..
51.2556919514
..
..
..
..
54.5894283127
..
..
..
..
58.1032774571
..
..
59.7246337024
..
..
..
STP
Sao Tome and Principe
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
75
..
..
..
..
79
..
..
..
..
85
..
..
89
..
..
..
SUR
Suriname
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
91
..
..
..
..
91
..
92
..
92
92
..
..
93
..
..
..
SVK
Slovak Republic
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
SVN
Slovenia
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
99
..
..
99
..
..
..
SWE
Sweden
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
SWZ
Swaziland
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
53
..
..
..
..
55
..
..
..
..
64
..
..
69
..
..
..
SXM
Sint Maarten (Dutch part)
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYR
Syrian Arab Republic
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
85
..
..
..
..
86
..
..
..
..
87
..
..
..
..
89
..
..
89
..
..
..
TCA
Turks and Caicos Islands
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
TCD
Chad
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
38
..
..
..
..
42
..
..
..
..
45
..
..
..
..
49
..
..
50
..
..
..
TGO
Togo
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
49
..
..
..
..
52
..
..
..
..
55
..
..
..
..
58
..
..
60
..
..
..
THA
Thailand
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
91
..
..
..
..
94
..
..
..
..
96
..
..
..
..
98
..
..
98
..
..
..
TJK
Tajikistan
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
58
..
..
..
..
60
..
..
..
..
67
..
..
70
..
..
..
TKM
Turkmenistan
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
83
..
..
..
..
..
..
..
..
..
..
..
TMP
Timor-Leste
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
52
..
..
..
..
63
..
..
69
..
..
..
TON
Tonga
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
TTO
Trinidad and Tobago
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
88
..
..
..
..
90
..
..
..
..
91
..
77
..
91
93
..
..
94
..
..
..
TUN
Tunisia
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
81
..
..
..
..
86
..
..
..
..
90
..
..
..
..
94
..
..
94
..
..
..
TUR
Turkey
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
85
..
..
..
..
89
..
..
..
..
93
..
..
..
..
97
..
..
99
..
..
..
TUV
Tuvalu
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
90
..
..
..
..
92
..
..
..
..
94
..
..
..
..
96
..
..
97
..
..
..
TZA
Tanzania
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
55
..
..
..
..
54
..
..
..
..
54
..
..
..
..
54
..
..
54
..
..
..
UGA
Uganda
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
43
..
..
..
..
50
..
..
..
..
57
..
..
..
..
64
..
..
67
..
..
..
UKR
Ukraine
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
96
..
..
..
..
97
..
..
..
..
98
..
..
98
..
..
..
UMC
Upper middle income
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
76.2883929377
..
..
..
..
81.1967999535
..
..
..
..
85.3786628512
..
..
..
..
89.4480560948
..
..
91.5048879093
..
..
..
URY
Uruguay
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
96
..
..
..
..
96
..
..
..
..
98
..
..
..
..
100
..
..
100
..
..
..
USA
United States
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
99
..
..
..
..
99
..
..
..
..
99
..
..
..
..
99
..
..
99
..
..
..
UZB
Uzbekistan
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
90
..
..
..
..
90
..
..
..
..
89
..
..
..
..
88
..
..
87
..
..
..
VCT
St. Vincent and the Grenadines
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VEN
Venezuela, RB
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
90
..
..
..
..
91
..
..
..
..
92
..
..
..
..
93
..
..
..
..
..
..
VIR
Virgin Islands (U.S.)
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VNM
Vietnam
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
58
..
..
..
..
68
..
..
..
..
79
..
..
..
..
88
..
..
94
..
..
..
VUT
Vanuatu
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
57
..
..
..
..
64
..
..
..
..
72
..
..
..
..
78
..
..
83
..
..
..
WBG
West Bank and Gaza
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
95
..
..
..
..
93
..
..
..
..
91
..
..
91
..
..
..
WLD
World
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
76.7820194216
..
..
..
..
79.5718452988
..
..
..
..
82.5563036804
..
..
..
..
85.352891496
..
..
86.8208637646
..
..
..
WSM
Samoa
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
91
..
..
..
..
90
..
..
..
..
89
..
..
..
..
88
..
..
..
..
..
..
YEM
Yemen, Rep.
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
..
..
..
..
..
67
..
..
..
..
65
..
..
..
..
63
..
..
62
..
..
..
ZAF
South Africa
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
83
..
..
..
..
84
..
..
..
..
86
..
..
..
..
89
..
..
91
..
..
..
ZAR
Congo, Dem. Rep.
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
45
..
..
..
..
44
..
..
..
..
44
..
..
..
..
45
..
..
46
..
..
..
ZMB
Zambia
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
49
..
..
..
..
51
..
..
..
..
54
..
..
..
..
58
..
..
60
..
..
..
ZWE
Zimbabwe
SH.H2O.SAFE.ZS
Access to improved water source (% of total pop.)
0
0
78
..
..
..
..
79
..
..
..
..
80
..
..
..
..
82
..
..
82
..
..
..
ABW
Aruba
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ADO
Andorra
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.87
4.18
..
..
..
..
AFG
Afghanistan
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.5
..
..
..
0.5
..
..
AGO
Angola
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.35
..
..
..
..
..
..
..
ALB
Albania
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4.05
4.03
..
..
..
..
ARE
United Arab Emirates
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
3.52
..
4.568
..
..
4.09
..
..
..
..
ARG
Argentina
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
0.8
..
..
..
..
..
0.48
..
..
..
..
..
..
..
ARM
Armenia
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4.92
4.87
..
..
..
..
ASM
American Samoa
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ATG
Antigua and Barbuda
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
3.28
..
..
..
..
..
..
..
..
..
..
..
..
AUS
Australia
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
9.71
..
..
..
..
10.907
..
..
9.59
..
..
AUT
Austria
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
6.55
6.642
7.84
..
..
..
AZE
Azerbaijan
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
8.41
8.42
..
..
..
..
BDI
Burundi
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.19
..
..
..
..
..
..
..
BEL
Belgium
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
14.2
..
..
0.527
0.3
..
..
..
BEN
Benin
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.84
..
..
..
0.77
..
..
..
BFA
Burkina Faso
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.49
..
..
..
0.73
..
..
..
BGD
Bangladesh
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.28
..
0.27
..
..
..
..
BGR
Bulgaria
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4.57
4.68
4.72
..
..
..
BHR
Bahrain
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
6.07
..
5.798
3.73
..
..
..
BHS
Bahamas, The
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
4.47
..
..
..
..
..
..
..
..
..
..
..
..
..
BIH
Bosnia and Herzegovina
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4.69
..
..
..
..
..
..
BLR
Belarus
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
12.51
12.56
..
..
..
..
BLZ
Belize
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
1.26
..
..
..
..
..
..
..
..
1.96
..
..
BMU
Bermuda
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BOL
Bolivia
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
2.13
..
..
..
..
..
..
..
..
..
..
BRA
Brazil
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
3.84
..
..
..
..
..
2.909
6.5
..
..
..
..
BRB
Barbados
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
3.7
..
..
..
..
..
4.86
..
..
..
..
..
..
BRN
Brunei Darussalam
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
6.06
..
..
..
..
..
4.88
..
..
..
BTN
Bhutan
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.32
..
..
..
..
BWA
Botswana
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.65
..
2.84
..
..
..
..
..
CAF
Central African Republic
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.41
..
..
..
..
..
..
..
CAN
Canada
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
10.05
..
..
..
..
..
CHE
Switzerland
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
11.03
..
..
..
..
..
..
..
15.96
..
..
..
CHI
Channel Islands
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHL
Chile
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
0.63
..
..
..
..
..
..
..
..
CHN
China
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
0.96
..
..
..
..
..
1.38
..
..
CIV
Cote d'Ivoire
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.6
..
..
..
0.48
..
..
..
CMR
Cameroon
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.6
..
..
..
..
..
..
..
COG
Congo, Rep.
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.96
..
..
0.82
..
..
..
..
COK
Cook Islands
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4.71
..
..
..
..
..
..
..
COL
Colombia
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
0.55
..
..
..
..
..
..
..
..
..
COM
Comoros
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.74
..
..
..
..
..
..
..
CPV
Cape Verde
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.87
..
..
..
1.32
..
..
..
CRI
Costa Rica
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
0.93
..
..
..
..
..
..
..
..
..
..
..
CUB
Cuba
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
7.44
..
..
..
..
8.64
..
..
..
..
CUW
Curacao
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYP
Cyprus
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.98
..
..
..
..
..
CZE
Czech Republic
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
8.93
8.954
8.55
..
..
..
DEU
Germany
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
8.01
7.991
..
10.82
..
..
..
DJI
Djibouti
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.42
0.568
..
..
0.8
..
..
..
DMA
Dominica
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
4.17
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DNK
Denmark
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
10.06
..
9.756
14.54
..
..
..
..
DOM
Dominican Republic
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
1.84
..
..
..
..
..
..
..
..
..
..
..
DZA
Algeria
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
2.23
..
..
..
..
1.95
..
..
..
..
EAP
East Asia & Pacific
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.6676885988
..
..
ECA
Europe & Central Asia
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
6.767527727
..
..
ECU
Ecuador
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
1.66
..
..
..
..
..
..
..
..
..
..
..
EGY
Egypt, Arab Rep.
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.35
..
..
..
3.52
..
..
EMU
Euro area
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
7.5176875597
..
..
ERI
Eritrea
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.58
..
..
..
..
..
..
..
ESP
Spain
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
7.58
..
..
5.16
..
..
EST
Estonia
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
6.98
..
6.82
..
..
..
ETH
Ethiopia
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
0.22
..
..
..
0.24
..
..
..
..
FIN
Finland
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
8.92
15.52
..
..
..
..
FJI
Fiji
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
1.98
..
..
..
..
..
..
..
..
FRA
France
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
8
..
8.093
8.94
..
..
FRO
Faeroe Islands
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FSM
Micronesia, Fed. Sts.
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
2.29
..
2.26
..
..
..
..
..
..
GAB
Gabon
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
5.02
..
..
..
..
..
..
..
GBR
United Kingdom
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
12.75
..
..
..
..
..
0.628
..
..
..
..
..
10.3
..
..
GEO
Georgia
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4.03
3.89
..
..
..
..
GHA
Ghana
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.92
..
..
..
0.975
1.05
..
..
GIB
Gibraltar
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GIN
Guinea
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.51
0.04
..
..
..
..
..
..
GMB
Gambia, The
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
1.32
..
..
..
..
0.57
..
..
..
GNB
Guinea-Bissau
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.7
..
..
..
0.55
..
..
..
GNQ
Equatorial Guinea
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.53
..
..
..
..
..
..
..
GRC
Greece
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.6
3.476
..
3.66
..
..
..
GRD
Grenada
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
3.98
..
..
..
..
..
..
..
..
..
..
..
..
..
GRL
Greenland
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GTM
Guatemala
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
4.05
..
..
..
..
..
..
..
..
..
..
..
..
GUM
Guam
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GUY
Guyana
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
2.29
..
..
..
..
..
..
..
..
..
..
..
HIC
High income
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
7.8718317634
..
..
HKG
Hong Kong SAR, China
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HND
Honduras
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
1.32
..
..
..
..
..
..
..
..
..
..
..
HRV
Croatia
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
5.46
5.58
..
..
..
..
HTI
Haiti
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
0.11
..
..
..
..
..
..
..
..
..
..
..
..
..
HUN
Hungary
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
9.15
9.207
6.33
..
..
..
IDN
Indonesia
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
0.82
..
..
..
2.04
..
..
..
..
IMY
Isle of Man
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IND
India
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.27
1.3
..
..
..
..
..
..
IRL
Ireland
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
19.45
15.759
..
15.67
..
..
IRN
Iran, Islamic Rep.
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.6
..
..
..
..
..
..
IRQ
Iraq
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.32
..
1.049
..
1.38
..
..
ISL
Iceland
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
10.14
..
..
..
16.48
..
..
..
ISR
Israel
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
6.22
6.15
..
..
..
..
ITA
Italy
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
6.932
..
..
6.52
..
..
JAM
Jamaica
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
1.65
..
..
..
..
..
..
..
..
JOR
Jordan
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.23
3.179
..
..
4.03
..
..
JPN
Japan
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
9.47
..
4.14
..
..
..
..
..
KAZ
Kazakhstan
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
7.64
7.83
..
..
..
..
KEN
Kenya
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
1.18
..
..
..
..
..
..
..
..
..
KGZ
Kyrgyz Republic
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
5.79
5.66
..
..
..
..
KHM
Cambodia
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
0.85
..
..
..
..
..
..
..
0.79
..
..
..
KIR
Kiribati
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.02
..
..
..
..
..
..
..
KNA
St. Kitts and Nevis
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
4.71
..
..
..
..
..
..
..
..
..
..
..
KOR
Korea, Rep.
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
1.93
4.393
..
..
..
5.29
..
..
..
KSV
Kosovo
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KWT
Kuwait
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.7
..
..
..
4.55
..
..
LAC
Latin America & Caribbean
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4.7536285439
..
..
LAO
Lao PDR
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.97
0.97
..
..
..
..
..
..
LBN
Lebanon
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.32
..
..
..
2.23
..
..
LBR
Liberia
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.3
..
..
..
0.27
..
..
..
LBY
Libya
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4.8
..
..
..
..
6.8
..
..
LCA
St. Lucia
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
2.28
..
..
2.16
..
..
..
..
..
..
..
..
..
LIC
Low income
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.5097896622
..
..
LIE
Liechtenstein
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LKA
Sri Lanka
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.73
..
..
1.93
..
..
..
..
LMC
Lower middle income
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.8365758347
..
..
LMY
Low & middle income
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.0410440349
..
..
LSO
Lesotho
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
0.62
..
..
..
..
..
..
..
..
LTU
Lithuania
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
7.65
7.567
7.32
..
..
..
LUX
Luxembourg
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
9.63
10.366
11.32
..
..
..
..
..
LVA
Latvia
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
5.59
5.652
..
4.84
..
..
MAC
Macao SAR, China
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAF
St. Martin (French part)
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.78
..
..
..
..
0.89
..
..
MCO
Monaco
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
14.5
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MDA
Moldova
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
6.2
6.65
..
..
..
..
MDG
Madagascar
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.32
..
..
..
..
..
..
..
MDV
Maldives
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.7
..
..
4.45
..
..
..
..
MEX
Mexico
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
0.9
..
..
..
3.98
..
..
..
..
..
..
..
MHL
Marshall Islands
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
2.98
..
..
..
..
..
..
..
2.53
..
..
..
MIC
Middle income
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.2783230279
..
..
MKD
Macedonia, FYR
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4.34
..
..
..
..
..
MLI
Mali
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.62
..
..
0.201
0.3
..
..
..
MLT
Malta
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
5.98
6.272
..
6.63
..
..
MMR
Myanmar
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.98
..
..
..
0.8
..
..
..
MNA
Middle East & North Africa
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.1892255213
..
..
MNE
Montenegro
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
5.65
5.54
..
..
..
..
MNG
Mongolia
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
3.45
..
..
..
..
..
3.5
..
..
..
MNP
Northern Mariana Islands
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MOZ
Mozambique
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.32
..
0.31
..
..
..
..
..
MRT
Mauritania
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.64
..
..
..
..
0.67
..
..
MUS
Mauritius
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.73
..
..
..
..
..
..
..
MWI
Malawi
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.59
..
..
..
0.28
..
..
..
MYS
Malaysia
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
1.81
..
..
..
..
..
2.73
..
..
..
MYT
Mayotte
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NAM
Namibia
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.06
..
..
2.78
..
..
..
..
NCL
New Caledonia
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NER
Niger
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.23
..
..
..
0.14
..
..
..
NGA
Nigeria
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
1.7
..
..
..
..
1.61
..
..
..
NIC
Nicaragua
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
1.07
..
..
..
..
..
..
..
..
NIU
Niue
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
11
..
15
..
..
..
..
..
NLD
Netherlands
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
14.61
15.145
0.15
..
..
..
NOR
Norway
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
16.22
16.329
14.76
..
..
..
NPL
Nepal
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.46
..
..
..
..
..
..
..
NRU
Nauru
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4.85
..
..
..
4.93
..
..
..
NZL
New Zealand
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
8.715
..
8.91
..
..
..
10.87
..
..
..
..
OMN
Oman
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.7
..
3.896
4.11
..
..
..
PAK
Pakistan
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.45
..
0.381
..
0.56
..
..
PAN
Panama
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
2.77
..
..
..
..
..
..
..
..
..
..
..
PER
Peru
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
0.67
..
..
..
..
..
..
..
..
..
1.27
..
..
PHL
Philippines
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
6.12
..
6
..
..
..
..
..
..
..
PLW
Palau
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
6
..
5.9
..
..
..
..
..
PNG
Papua New Guinea
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
0.53
..
..
..
..
..
..
..
0.51
..
..
..
POL
Poland
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
5.18
5.187
..
5.73
..
..
..
PRI
Puerto Rico
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRK
Korea, Dem. Rep.
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
4.12
..
..
..
..
..
..
..
..
PRT
Portugal
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4.59
4.832
..
5.33
..
..
..
PRY
Paraguay
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
1.79
..
..
..
..
..
..
..
..
..
PYF
French Polynesia
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
QAT
Qatar
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
6
7.37
..
..
..
..
..
ROM
Romania
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4.19
..
..
..
..
..
RUS
Russian Federation
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
8.52
..
..
..
..
..
RWA
Rwanda
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.43
0.45
..
..
..
..
..
..
SAS
South Asia
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.0907350924
..
..
SAU
Saudi Arabia
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.97
..
..
3.632
2.1
..
..
..
SDN
Sudan
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.9
..
0.84
..
..
..
SEN
Senegal
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.32
..
..
..
0.42
..
..
..
SGP
Singapore
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
4.4
..
..
..
..
..
5.9
..
..
SID
Small island developing states
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLB
Solomon Islands
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
1.37
..
1.45
..
..
..
..
..
..
SLE
Sierra Leone
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.49
..
..
..
0.17
..
..
..
SLV
El Salvador
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
0.8
..
..
..
..
..
0.41
..
..
..
SMR
San Marino
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
95.48
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SOM
Somalia
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
0.19
..
..
..
..
..
..
..
..
0.11
..
..
..
..
..
SRB
Serbia
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4.28
4.43
..
..
..
..
SSA
Sub-Saharan Africa
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.0163580313
..
..
STP
Sao Tome and Principe
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.87
..
..
..
..
..
..
..
SUR
Suriname
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
1.62
..
..
..
..
..
..
..
..
..
..
..
SVK
Slovak Republic
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
6.62
..
..
6.58
..
..
..
SVN
Slovenia
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
7.99
7.813
..
8.16
..
..
..
SWE
Sweden
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
10.94
..
..
..
11.57
..
..
..
..
..
SWZ
Swaziland
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
6.3
..
..
..
..
..
..
..
SXM
Sint Maarten (Dutch part)
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
7.93
..
..
..
..
..
..
..
SYR
Syrian Arab Republic
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.4
..
1.86
..
..
..
TCA
Turks and Caicos Islands
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TCD
Chad
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.28
..
..
..
..
..
..
..
TGO
Togo
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.39
..
..
..
0.27
..
..
..
THA
Thailand
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
2.83
..
1.362
..
1.52
..
..
..
..
..
..
..
TJK
Tajikistan
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
5.03
..
..
..
..
..
TKM
Turkmenistan
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4.7
4.52
..
..
..
..
TMP
Timor-Leste
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.19
..
..
..
..
..
..
..
TON
Tonga
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
3.4
..
..
..
..
2.93
..
..
..
..
TTO
Trinidad and Tobago
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
2.87
..
..
..
..
..
..
..
..
..
3.56
..
..
..
..
TUN
Tunisia
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.87
..
..
..
..
3.28
..
..
TUR
Turkey
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.93
..
1.89
..
..
..
TUV
Tuvalu
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
4.546
..
..
..
..
5.82
..
..
..
TZA
Tanzania
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
0.37
..
..
..
0.24
..
..
..
..
..
UGA
Uganda
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.71
1.31
..
..
..
..
..
..
UKR
Ukraine
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
8.45
..
..
..
..
..
UMC
Upper middle income
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.7335183629
..
..
URY
Uruguay
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
0.85
..
..
..
..
..
5.55
..
..
..
USA
United States
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
9.37
..
..
..
..
9.82
..
..
..
..
..
..
UZB
Uzbekistan
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
10.91
..
10.81
..
..
..
..
VCT
St. Vincent and the Grenadines
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
3.79
..
..
..
..
..
..
..
..
..
..
..
VEN
Venezuela, RB
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
1.13
..
..
..
..
..
..
..
..
..
..
VIR
Virgin Islands (U.S.)
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VNM
Vietnam
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
0.77
..
0.663
..
..
..
1.01
..
..
..
VUT
Vanuatu
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.66
..
..
..
1.7
..
..
..
WBG
West Bank and Gaza
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
WLD
World
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.0098987932
..
..
WSM
Samoa
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
1.74
..
0.94
..
..
..
..
..
..
YEM
Yemen, Rep.
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.66
..
..
..
..
..
..
..
ZAF
South Africa
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4.08
..
..
..
..
..
..
..
ZAR
Congo, Dem. Rep.
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.53
..
..
..
..
..
..
..
ZMB
Zambia
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.01
..
0.71
..
..
..
..
..
ZWE
Zimbabwe
SH.MED.NUMW.P3
Nurses and midwives (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.72
..
..
..
..
..
..
..
ABW
Aruba
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
..
1.12
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ADO
Andorra
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
..
2.231
..
2.435
2.47
2.594
2.549
2.594
..
3.697
..
..
3.64
3.716
..
..
..
..
AFG
Afghanistan
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.1092000008
..
..
0.1428000033
..
..
..
0.11
..
..
..
0.186
..
..
..
0.2
..
..
..
0.21
..
..
AGO
Angola
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.0421000011
..
..
..
..
..
..
0.077
..
..
..
..
..
..
0.08
..
..
..
..
..
..
..
ALB
Albania
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
1.3740999699
1.4702999592
1.6500999928
1.4254000187
1.3153990507
1.306
1.354
1.295
1.289
1.282
1.389
..
1.305
..
..
..
1.15
1.146
..
..
..
..
ARE
United Arab Emirates
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.8274999857
..
0.8399999738
..
..
..
..
1.81
..
..
..
2.023
1.69
..
..
1.545
..
1.93
..
..
..
..
ARG
Argentina
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
2.6800000668
..
2.6840000153
..
..
2.68
..
..
3.01
..
..
..
..
..
3.155
3.21
..
..
..
..
..
..
ARM
Armenia
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
3.9244000912
3.701499939
3.5969998837
3.3454999924
3.1221001148
3.042
3.591
3.156
3.156
3.051
2.987
3.526
..
3.588
..
..
3.7
3.697
..
..
..
..
ASM
American Samoa
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
0.781
..
..
..
..
..
..
..
..
..
..
..
..
ATG
Antigua and Barbuda
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.7599999905
0.9185000062
..
3.030299902
..
0.76
1.141
..
..
0.17
..
..
..
..
..
..
..
..
..
..
..
..
AUS
Australia
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
2.2
2.3
2.4
2.4
2.4
2.4
2.4
2.4
2.4
2.4
2.5
2.47
2.5
..
..
..
0.963
..
..
2.991
..
..
AUT
Austria
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
2.2
2.3
2.4
2.5
2.6
2.7
2.8
2.9
3.1
3.1
3.2
3.3
3.3
3.4
..
..
3.66
3.794
..
4.749
..
..
AZE
Azerbaijan
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
3.9172000885
3.9163999557
3.8812999725
3.9277000427
3.8961000443
3.925
3.899
3.831
3.602
3.521
3.607
3.536
..
3.547
..
..
3.63
3.794
..
..
..
..
BDI
Burundi
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.0581
0.058699999
..
0.056499999
..
0.055
..
..
..
..
0.052
..
..
..
0.03
..
..
..
..
..
..
..
BEL
Belgium
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
3.3
3.3
3.4
3.4
3.5
3.5
3.6
3.7
3.7
3.8
3.9
3.9
3.9
..
..
..
4.23
..
2.987
..
..
..
BEN
Benin
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.0505000018
0.0421999991
0.0551000014
0.057
0.060800001
0.058
..
..
..
..
..
..
..
..
0.04
..
..
..
0.059
..
..
..
BFA
Burkina Faso
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
..
0.034
0.035
0.038
..
..
..
0.04
..
..
0.05
..
..
..
0.064
..
..
..
BGD
Bangladesh
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.176699996
0.1884000003
..
..
..
0.201
..
0.2
..
..
..
0.231
..
..
0.257
0.3
..
0.295
..
..
..
..
BGR
Bulgaria
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
3.1696000099
2.9793000221
3.1661000252
3.3587999344
3.3273000717
3.458
3.539
3.447
3.449
3.463
3.399
3.384
..
3.562
..
..
3.66
3.665
3.635
..
..
..
BHR
Bahrain
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
1.3150000572
..
0.1098999977
..
..
..
1
..
..
..
1.596
..
..
1.087
2.72
..
2.965
1.442
..
..
..
BHS
Bahamas, The
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
1.2900999784
..
..
1.4457000494
..
1.49
1.518
..
1.05
..
..
..
..
..
..
..
..
..
..
..
..
..
BIH
Bosnia and Herzegovina
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
1.570299983
1.5551999807
..
..
..
..
..
..
1.427
1.401
1.422
1.338
..
1.34
..
1.4179
..
..
..
..
..
..
BLR
Belarus
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
3.5604000092
3.5764000416
3.6382000446
4.0762000084
4.1424999237
4.155
4.286
4.365
4.431
4.551
4.579
4.497
4.52589255046
4.55
4.62240181223
4.68
4.78
4.869
4.98
5.11
..
..
BLZ
Belize
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.6391999722
..
..
0.4927000105
..
0.6
0.548
..
..
..
1.05
..
..
..
..
..
..
..
..
0.828
..
..
BMU
Bermuda
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
..
1.2
..
1.766
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BOL
Bolivia
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.4499999881
..
..
0.4259000123
..
0.34
..
1.299
..
..
..
1.22
..
..
..
..
..
..
..
..
..
..
BRA
Brazil
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
1.3600000143
..
..
..
..
1.31
1.272
1.308
..
1.396
1.15
..
..
..
..
..
1.694
1.72
..
..
..
..
BRB
Barbados
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
1.1395000219
..
..
1.2539999485
..
1.28
..
..
..
1.21
..
..
..
..
..
1.811
..
..
..
..
..
..
BRN
Brunei Darussalam
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
0.7462000251
..
..
..
..
0.848
..
..
..
1.006
..
1.14
..
..
..
..
..
1.417
..
..
..
BTN
Bhutan
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.3332999945
..
..
..
0.1703999937
0.16
..
..
..
0.051
..
..
..
..
0.051
..
..
0.023
..
..
..
..
BWA
Botswana
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
0.1941000074
0.2380000055
..
..
..
..
0.288
..
..
..
..
0.4
..
0.336
..
..
..
..
..
CAF
Central African Republic
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.0384000018
..
..
0.0551999994
..
0.035
..
..
..
..
..
..
..
..
0.08
..
..
..
..
..
..
..
CAN
Canada
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
2.1
2.1
2.1
2.2
2.1
2.1
2.1
2.1
2.1
2.1
2.1
2.1
2.1
2.1
..
..
1.9132
..
..
..
..
..
CHE
Switzerland
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
3
3
3
3.1
3.1
3.2
3.2
3.3
3.3
3.4
3.5
3.5
3.6
..
..
..
3.97
..
..
4.07
..
..
CHI
Channel Islands
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHL
Chile
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
1.1000000238
1.0663000345
..
..
1.1030000448
1.08
..
..
1.153
..
..
..
..
1.09
..
..
1.2836970475
..
..
..
..
..
CHN
China
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
1.5499999523
1.5499999523
1.5499999523
1.5499999523
1.5800000429
1.59
1.59
1.61
1.61
1.67
1.64
1.055
1.642
1.42
..
1.51
..
..
..
1.415
..
..
CIV
Cote d'Ivoire
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.0877000019
..
..
..
..
..
0.09
..
..
..
..
..
..
..
0.12
..
..
..
0.144
..
..
..
CMR
Cameroon
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.0824000016
..
0.0837000012
0.0728999972
..
..
0.074
..
..
..
..
..
..
..
0.19
..
..
..
..
..
..
..
COG
Congo, Rep.
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.2761000097
..
..
..
..
0.251
..
..
..
..
..
..
..
..
0.2
..
..
0.095
..
..
..
..
COK
Cook Islands
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
0.7777778
..
..
1.1764
..
..
..
..
..
..
..
COL
Colombia
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
1.0900000334
..
..
0.9049999714
..
0.99
..
1.16
1.27
1.088
1.32
1.34
1.35
1.37
1.38
1.39
1.41
1.42
1.43
..
..
..
COM
Comoros
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.1133999974
..
0.1274999976
..
..
..
..
0.074
..
..
..
..
..
..
0.15
..
..
..
..
..
..
..
CPV
Cape Verde
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
0.233799994
..
..
..
0.171
..
..
..
..
..
..
..
0.49
..
..
..
0.572
..
..
..
CRI
Costa Rica
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
1.2599999905
..
..
0.8826000094
0.8453999758
0.854
0.864
0.872
0.901
1.719
1.32
..
..
..
..
..
..
..
..
..
..
..
CUB
Cuba
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
3.6414000988
..
..
..
..
5.18
..
5.304
..
..
5.897
..
5.91
..
..
..
..
6.399
..
..
..
..
CUW
Curacao
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
1.7000000477
..
..
..
..
1.7
..
1.939
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYP
Cyprus
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
1.7605999708
..
..
..
..
..
2.55
..
..
2.119
2.983
..
2.342
..
..
..
2.3
..
..
..
..
..
CZE
Czech Republic
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
2.7
2.7
2.7
2.9
2.9
3
3
3.1
3
3.1
3.4
3.4
3.5
3.5
..
..
3.58
3.61
3.625
..
..
..
DEU
Germany
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
2.8
2.8
2.9
3
3.1
3.1
3.1
3.2
3.2
3.3
3.3
3.3
3.4
..
..
3.44
3.483
3.531
..
..
..
DJI
Djibouti
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.162499994
..
..
..
..
0.191
0.14
..
..
0.133
..
..
..
..
0.181
0.18
0.229
..
..
..
..
..
DMA
Dominica
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.4600000083
0.5278000236
..
..
..
0.47
0.493
0.5
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DNK
Denmark
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
2.5
2.4
2.6
2.6
2.6
2.6
2.6
2.7
2.8
2.8
2.8
2.8
2.9
..
3.59
..
3.163
3.419
..
..
..
..
DOM
Dominican Republic
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
1.4900000095
..
..
1.0539000034
..
1.5
..
2.156
..
..
1.88
..
..
..
..
..
..
..
..
..
..
..
DZA
Algeria
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.9416000247
..
..
0.82099998
..
0.846
..
..
1
..
..
..
1.13
..
..
..
..
1.207
..
..
..
..
EAP
East Asia & Pacific
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
1.1723798385
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.1701290142
..
..
ECA
Europe & Central Asia
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
3.3353337403
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.1513063451
..
..
ECU
Ecuador
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
1.5332000256
..
..
..
..
1.33
1.325
1.696
..
1.397
1.48
..
..
..
..
..
..
..
..
..
..
..
EGY
Egypt, Arab Rep.
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.7595000267
..
..
..
1.8400000334
..
2.02
1.6
..
..
2.118
..
..
..
..
2.43
..
..
..
2.83
..
..
EMU
Euro area
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
2.8517635065
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.7671111472
..
..
ERI
Eritrea
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
0.0188999996
..
..
0.03
..
..
..
..
..
..
..
0.05
..
..
..
..
..
..
..
ESP
Spain
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
..
2.5
2.8
2.9
2.8
2.9
3.2
3.1
2.9
3.3
..
..
..
3.757
..
3.705
..
..
EST
Estonia
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
3.5037999153
3.5355000496
3.263999939
3.2072000504
3.2000000477
3.191
3.148
3.114
3.11
3.206
4.475
3.16
..
..
..
..
3.33
..
3.409
..
..
..
ETH
Ethiopia
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
0.0285
..
0.025
0.023
0.021
0.02
0.021
0.028
0.029
0.03
..
..
..
0.022
..
..
..
..
FIN
Finland
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
2
2
2.1
2.1
2.2
2.2
2.3
2.4
2.4
2.5
2.6
2.6
2.6
2.6
..
..
3.3
3.319
2.735
..
..
..
FJI
Fiji
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
0.472299993
..
0.3763000071
..
..
0.476
0.357
0.337
..
..
..
0.4529
..
..
..
..
..
..
..
..
FRA
France
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
3.1
3.1
3.1
3.2
3.2
3.2
3.2
3.3
3.3
3.3
3.3
3.3
3.3
3.4
3.367
..
3.41
3.736
3.497
..
..
..
FRO
Faeroe Islands
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FSM
Micronesia, Fed. Sts.
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
0.4508000016
..
..
..
..
..
0.573
0.598
..
..
0.55
..
0.564
..
..
..
..
..
..
GAB
Gabon
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
0.2150599957
0.256990999
0.289
..
..
..
..
..
..
..
..
0.29
..
..
..
..
..
..
..
GBR
United Kingdom
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
1.6
1.6
1.6
1.7
1.7
1.7
1.8
2.3
1.9
1.9
1.9
2
2.3
2.2
..
..
..
..
..
2.739
..
..
GEO
Georgia
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
4.9256000519
4.897600174
4.7255001068
5.00330019
4.898900032
4.792
4.457
5.192
5.042
3.768
4.731
4.295
3.907
4.089
..
..
4.65
4.538
..
..
..
..
GHA
Ghana
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
..
..
0.062
..
..
..
..
..
0.09
..
0.15
..
..
..
0.11
0.085
..
..
GIB
Gibraltar
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GIN
Guinea
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.1342999935
..
..
..
0.1521999985
0.13
..
..
..
..
0.094
..
..
..
0.11
0.1
..
..
..
..
..
..
GMB
Gambia, The
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
0.0163000003
..
..
..
0.035
..
..
..
..
..
0.11
..
..
..
..
0.038
..
..
..
GNB
Guinea-Bissau
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
0.1765999943
..
0.166
..
..
..
..
..
..
..
0.12
..
..
..
0.045
..
..
..
GNQ
Equatorial Guinea
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.2813000083
..
..
..
..
0.208
0.246
..
..
..
..
..
..
..
0.3
..
..
..
..
..
..
..
GRC
Greece
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
3.4
3.6
3.7
3.8
3.8
3.9
3.9
4
4.1
4.2
4.3
4.4
..
..
..
5
5.35
..
6.043
..
..
..
GRD
Grenada
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.5
..
..
0.5777999759
..
0.65
..
0.5
0.9756
..
..
..
..
..
..
..
..
..
..
..
..
..
GRL
Greenland
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GTM
Guatemala
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.7799999714
..
..
0.2500999868
..
1.1
..
0.933
..
0.9
..
..
..
..
..
..
..
..
..
..
..
..
GUM
Guam
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
1.084
..
..
..
..
..
..
..
..
..
..
..
..
GUY
Guyana
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.1700000018
..
..
0.1118000001
..
0.33
..
0.181
..
..
0.48
..
..
..
..
..
..
..
..
..
..
..
HIC
High income
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
2.0234117765
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.8597245083
..
..
HKG
Hong Kong SAR, China
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
1.203799963
1.2707999945
1.319
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HND
Honduras
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.6999999881
0.4106999934
..
..
..
0.65
..
0.832
..
..
0.57
..
..
..
..
..
..
..
..
..
..
..
HRV
Croatia
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
2.1247000694
1.9436999559
1.975200057
2.0283999443
2.0111000538
2.036
2.25
2.259
2.288
2.352
2.383
2.374
2.4
2.444
2.4
2.5
2.47
2.59
2.66117938888
2.67474939041
..
..
HTI
Haiti
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.0799999982
..
0.0839999989
0.0921000019
..
0.16
..
..
0.25
..
..
..
..
..
..
..
..
..
..
..
..
..
HUN
Hungary
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
2.8
2.9
2.9
2.9
2.9
3
3
3
3.1
3.1
..
..
3.2
3.2
..
..
3.04
2.783
3.097
..
..
..
IDN
Indonesia
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.1441999972
0.1476999968
0.1501999944
0.1615999937
0.1599999964
..
..
..
..
..
0.162
..
..
0.13
..
..
0.13
0.288
..
..
..
..
IMY
Isle of Man
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IND
India
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
0.4799999893
0.4066999853
..
..
..
..
0.513
..
..
..
..
..
0.6
0.599
..
..
..
..
..
..
IRL
Ireland
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
2
2
2
2.1
2.1
2.1
2.2
2.3
2.2
2.4
2.4
2.6
2.786
..
2.94
3.08
3.187
..
..
..
IRN
Iran, Islamic Rep.
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
0.3183000088
..
..
0.85
..
1.049
..
..
..
..
..
0.45
0.89
..
..
..
..
..
..
IRQ
Iraq
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.6029000282
..
..
0.6028000116
..
..
..
..
0.55
..
..
0.543
..
..
0.658
0.66
..
0.528
..
0.69
..
..
ISL
Iceland
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
2.8
2.8
3
3
3
3
3.1
3.3
3.3
3.4
3.4
3.5
3.6
3.6
3.616
..
3.77
..
3.934
..
..
..
ISR
Israel
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
3.2070000172
3.3029000759
3.6565001011
3.6960000992
3.7309000492
3.736
3.766
3.793
3.775
3.915
3.766
3.91
..
3.82
..
..
3.67
3.633
..
..
..
..
ITA
Italy
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
3.8
3.7
3.9
4.1
4
4.1
4.2
4.2
4.4
4.4
4.1
4.203
..
3.7
..
4.242
..
..
..
JAM
Jamaica
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.5699999928
..
..
0.4720000029
..
0.57
1.401
1.401
..
..
..
..
..
0.85
..
..
..
..
..
..
..
..
JOR
Jordan
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
1.3478000164
..
..
1.6254999638
..
..
1.66
..
..
..
2.05
..
..
2.03
2.36
..
2.561
..
2.45
..
..
JPN
Japan
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
1.7
..
1.7
..
1.8
..
1.8
..
1.9
..
1.9
..
2
..
2.12
..
2.063
..
..
..
..
..
KAZ
Kazakhstan
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
3.9758999348
3.8389000893
3.9075000286
3.7658998966
3.6036999226
3.635
3.639
3.301
3.528
3.201
3.292
3.302
3.612
3.539
3.6
3.7
3.88
3.877
3.7
3.8
..
..
KEN
Kenya
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.0450999998
..
..
0.1377999932
..
0.132
..
..
..
..
..
..
0.14
..
0.139
..
..
..
..
..
..
..
KGZ
Kyrgyz Republic
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
3.3740999699
3.4124000072
3.3494999409
3.1184000969
3.0964000225
3.208
3.293
3.058
3.01
2.875
2.823
2.679
2.6
2.6
2.5
..
2.39
2.301
..
..
..
..
KHM
Cambodia
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
0.1067000031
0.1037999988
0.1048000008
..
..
..
0.297
0.296
0.16
..
..
..
..
..
..
..
0.227
..
..
..
KIR
Kiribati
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.1934999973
0.1761000007
0.185800001
0.1300999969
..
..
..
..
0.296
..
..
..
..
..
0.23
..
0.297
..
..
..
..
..
KNA
St. Kitts and Nevis
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.8999999762
..
..
..
..
1.07
..
1.186
..
..
1.0952
..
..
..
..
..
..
..
..
..
..
..
KOR
Korea, Rep.
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.8
0.9
1
1
1.1
1.1
1.2
1.2
1.3
1.3
1.3
1.4
1.5
1.57
1.71
..
..
..
1.967
..
..
..
KSV
Kosovo
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KWT
Kuwait
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.1831
..
..
..
..
1.783
..
1.89
..
..
..
1.525
..
..
..
1.8
..
..
..
1.793
..
..
LAC
Latin America & Caribbean
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
1.3525143022
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.1606023485
..
..
LAO
Lao PDR
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.2343000025
..
..
..
..
..
0.586
..
..
..
..
..
..
..
0.35
0.272
..
..
..
..
..
..
LBN
Lebanon
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
1.3258999586
..
1.8622000217
..
..
..
2.1
..
..
..
3.253
..
..
..
2.36
3.254
..
..
3.54
..
..
LBR
Liberia
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
..
..
..
0.023
..
..
..
..
..
..
0.03
..
..
..
0.014
..
..
..
LBY
Libya
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
1.07099998
..
..
1.4407999516
..
..
..
1.29
..
..
..
..
..
..
1.25
..
..
..
..
1.9
..
..
LCA
St. Lucia
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.349999994
0.3932999969
..
0.5440000296
..
0.56
..
0.473
..
5.17
..
..
0.473
..
..
..
..
..
..
..
..
..
LIC
Low income
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.1514050229
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.187723948
..
..
LIE
Liechtenstein
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LKA
Sri Lanka
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
0.1460999995
0.2302999943
..
..
..
..
0.365
0.428
..
..
..
0.55
..
0.492
..
..
..
..
..
LMC
Lower middle income
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.5876413373
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.7616996169
..
..
LMY
Low & middle income
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
1.0477324994
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.0958195044
..
..
LSO
Lesotho
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.0430000015
..
..
0.0504000001
..
0.054
..
..
..
..
..
..
..
0.05
..
..
..
..
..
..
..
..
LTU
Lithuania
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
4.0269999504
3.904900074
3.9279999733
3.9776000977
4.0911002159
4.061
4.099
4.128
4.12
4.151
4.01
4.027
..
3.973
..
..
3.95
4.034
3.664
..
..
..
LUX
Luxembourg
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
2
2
2.1
2.1
2.2
2.2
2.3
2.4
2.4
2.5
2.5
2.5
2.6
2.7
2.73
2.852
..
2.862
..
..
..
..
LVA
Latvia
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
4.1177000999
4.0462999344
3.6017000675
3.1974999905
3.060199976
2.976
2.994
2.96
3.061
3.177
3.204
2.914
..
3.008
..
..
3.14
3.039
..
2.988
..
..
MAC
Macao SAR, China
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAF
St. Martin (French part)
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
0.2143999934
0.3628000021
..
..
0.46
..
..
..
0.483
..
..
0.51
..
..
0.564
..
0.62
..
..
MCO
Monaco
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
3
..
..
5.81
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MDA
Moldova
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
3.5501999855
3.4841001034
3.5095999241
3.5553998947
3.5643000603
3.513
3.562
3.582
3.631
3.245
3.18
2.694
..
2.636
..
..
2.66
2.668
..
..
..
..
MDG
Madagascar
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.1196999997
..
..
..
..
0.272
0.107
..
..
..
..
0.087
0.14
..
0.29
..
..
0.161
..
..
..
..
MDV
Maldives
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.0697999969
..
..
0.1914000064
..
0.4
..
..
..
..
0.777
..
..
..
0.92
..
..
1.595
..
..
..
..
MEX
Mexico
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
1
1.1
1.3
1.4
1.5
1.6
1.6
1.4
1.2
1.7
1.98
1.5
1.5
1.5
2.893
..
..
..
..
..
..
..
MHL
Marshall Islands
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
..
..
0.422
..
..
..
0.47
..
..
..
..
..
..
..
0.559
..
..
..
MIC
Middle income
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
1.1565425614
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.2422992488
..
..
MKD
Macedonia, FYR
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
2.1677000523
2.342400074
2.3710000515
2.3429000378
2.3150999546
2.297
2.251
2.249
2.246
2.211
2.201
2.191
..
..
..
..
2.5463
..
..
..
..
..
MLI
Mali
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.0513999984
..
..
..
0.0469999984
0.043
0.063
..
..
..
0.044
..
..
..
0.08
..
..
0.074
0.049
..
..
..
MLT
Malta
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
2.2592000961
2.446199894
2.4217998981
2.4525260925
..
..
..
2.465
2.607
2.591
2.654
2.926
..
3.183
..
..
3.88
3.351
..
3.073
..
..
MMR
Myanmar
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.0784000009
..
..
..
..
0.293
..
..
..
0.297
0.302
..
..
..
0.36
..
..
..
0.457
..
..
..
MNA
Middle East & North Africa
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.5753573683
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.4578958995
..
..
MNE
Montenegro
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.03
1.986
..
..
..
..
MNG
Mongolia
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
2.5383999348
2.6949000359
2.6180000305
..
..
..
..
..
2.433
2.54
..
..
2.63
..
..
..
..
..
2.763
..
..
..
MNP
Northern Mariana Islands
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
0.445
..
..
..
..
..
..
..
..
..
..
..
..
MOZ
Mozambique
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.0121790003
..
..
..
..
..
..
..
..
..
0.024
..
..
..
0.03
..
0.027
..
..
..
..
..
MRT
Mauritania
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.0627000034
..
..
0.0634000003
..
0.138
..
..
..
..
..
..
..
..
0.11
..
..
..
..
0.13
..
..
MUS
Mauritius
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.8108000159
0.8350999951
0.8474000096
0.8440999985
0.8454999924
0.85
..
..
..
..
..
..
..
..
1.06
..
..
..
..
..
..
..
MWI
Malawi
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.0219000001
..
..
0.0277999993
..
..
..
..
..
..
..
..
..
0.011
0.02
..
..
..
0.019
..
..
..
MYS
Malaysia
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.391900003
0.3928000033
0.4113999903
0.4309999943
0.4492000043
0.478
0.496
0.658
..
0.683
0.702
..
0.71
..
..
..
..
..
0.941
..
..
..
MYT
Mayotte
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NAM
Namibia
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
0.2313999981
0.2316000015
..
..
..
..
0.295
..
..
..
..
..
..
0.3
..
..
0.374
..
..
..
..
NCL
New Caledonia
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
1.982
..
..
..
..
..
..
..
..
..
..
..
..
NER
Niger
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.0184000004
..
0.0272000004
..
0.0225000009
..
0.024
0.035
0.033
..
..
..
0.033
..
0.02
..
..
..
0.019
..
..
..
NGA
Nigeria
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
0.1850000024
0.1920000017
..
..
..
..
..
..
0.269
..
..
0.28
..
..
..
..
0.395
..
..
..
NIC
Nicaragua
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.6571000218
..
..
..
..
0.82
..
0.856
..
..
..
..
..
0.37
..
..
..
..
..
..
..
..
NIU
Niue
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
..
..
1.5
..
..
..
..
..
..
..
2
..
4
..
..
..
..
..
NLD
Netherlands
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
2.5
2.6
..
..
..
..
..
..
2.9
3.1
3.2
3.3
3.1
3.1
..
3.71
..
3.921
..
..
..
..
NOR
Norway
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
2.6
2.6
2.6
2.7
2.8
2.8
2.5
2.7
2.8
2.9
3
3.1
3.1
..
..
3.77
3.889
4.076
..
..
..
NPL
Nepal
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.0507000014
0.0621000007
0.0756999999
0.0737000033
..
0.04
0.04
0.04
0.04
..
..
0.052
..
..
0.21
..
..
..
..
..
..
..
NRU
Nauru
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
..
1.454545
..
..
..
..
..
..
..
..
0.77
..
..
..
0.714
..
..
..
NZL
New Zealand
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
1.9
1.9
1.9
1.9
2
2
2
2.2
2.2
2.2
2.2
2.2
2.13
2.2
..
..
..
2.384
..
..
..
..
OMN
Oman
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.6108999848
..
..
0.8841999769
..
..
..
1.3
1.33
..
..
..
1.257
..
1.319
1.67
..
1.84
1.901
..
..
..
PAK
Pakistan
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.461800009
0.4796999991
0.503099978
0.5181000233
0.5953999758
..
..
0.57
..
..
..
0.662
..
..
0.739
0.8
..
0.777
..
0.813
..
..
PAN
Panama
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
1.6399999857
..
..
1.779399991
..
1.668
1.17
..
..
..
1.5
..
..
..
..
..
..
..
..
..
..
..
PER
Peru
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
1.0644999743
..
1.0299999714
..
..
0.98
..
0.932
..
1.17
..
..
..
..
..
..
..
..
..
0.92
..
..
PHL
Philippines
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.1186999977
..
0.1084000021
..
..
..
1.23
1.24
..
..
0.585
..
1.15
..
1.153
..
..
..
..
..
..
..
PLW
Palau
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
1.111
..
1.58
..
..
..
..
..
1.3
..
..
..
..
..
PNG
Papua New Guinea
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.0727000013
..
..
..
..
..
..
..
0.073
..
0.05
..
..
..
..
..
..
..
0.053
..
..
..
POL
Poland
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
2.1
2.2
2.2
2.2
2.3
2.3
2.4
2.4
2.3
2.3
2.2
2.3
2.3
2.5
..
1.97
2.012
..
2.144
..
..
..
PRI
Puerto Rico
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
..
1.75
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRK
Korea, Dem. Rep.
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
..
2.97
..
..
..
..
..
..
..
3.29
..
..
..
..
..
..
..
..
PRT
Portugal
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
2.8
2.8
2.9
2.9
2.9
2.9
3
3
3.1
3.1
3.2
3.2
3.3
3.3
..
3.44
..
..
..
3.755
..
..
PRY
Paraguay
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.6499999762
0.8126999736
..
..
0.280099988
0.73
..
1.098
..
..
1.17
..
1.11
..
..
..
..
..
..
..
..
..
PYF
French Polynesia
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
1.697
..
..
..
..
..
..
..
..
..
..
..
QAT
Qatar
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
1.5
..
..
..
..
..
1.26
1.26
..
..
..
2.217
..
..
..
2.64
2.757
..
..
..
..
..
ROM
Romania
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
1.8018000126
1.8158999681
1.8659000397
1.7695000172
1.7647999525
1.768
1.81
1.791
1.836
1.909
1.889
1.887
..
1.905
..
..
1.9166
..
..
..
..
..
RUS
Russian Federation
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
4.070400238
4.0455999374
3.8717000484
3.9723000526
3.8350999355
3.859
4.096
4.155
4.209
4.194
4.213
4.172
4
4.252
4
4
4.3089
..
..
..
..
..
RWA
Rwanda
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
0.0401000008
..
..
..
..
..
..
..
..
0.019
..
0.05
0.024
..
..
..
..
..
..
SAS
South Asia
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.4286056467
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.5745911128
..
..
SAU
Saudi Arabia
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
1.4334000349
..
..
1.3351000547
..
..
..
1.66
..
..
..
1.397
..
..
1.37
..
..
1.622
0.939
..
..
..
SDN
Sudan
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
0.1048000008
..
0.09
..
..
..
0.158
..
..
..
0.22
..
0.3
..
0.28
..
..
..
SEN
Senegal
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.0549000017
..
0.0675999969
..
0.0956000015
0.075
0.093
0.093
0.095
..
..
..
..
..
0.06
..
..
..
0.059
..
..
..
SGP
Singapore
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
1.2657999992
1.320299983
1.3478000164
1.3847999573
1.410599947
..
..
..
1.627
1.348
..
1.4
..
1.5
..
..
..
..
..
1.833
..
..
SID
Small island developing states
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
1.4254364999
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLB
Solomon Islands
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
0.1569000036
..
..
0.14
..
..
..
0.127
..
..
..
0.13
..
0.186
..
..
..
..
..
..
SLE
Sierra Leone
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
..
..
0.073
..
..
..
..
..
..
..
0.03
..
..
..
0.016
..
..
..
SLV
El Salvador
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.8399999738
..
..
0.6600999832
..
0.91
..
1.071
..
..
1.211
..
1.24
..
..
..
1.5
..
1.596
..
..
..
SMR
San Marino
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
47.35
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SOM
Somalia
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
0.0421999991
..
..
..
0.04
..
..
..
..
..
..
..
..
0.035
..
..
..
..
..
SRB
Serbia
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.99
2.035
..
..
..
..
SSA
Sub-Saharan Africa
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.1362355673
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.1890254383
..
..
STP
Sao Tome and Principe
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.5303999782
..
0.3278999925
..
..
..
0.467
..
..
..
..
..
..
..
0.49
..
..
..
..
..
..
..
SUR
Suriname
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.75
..
..
0.7620000243
..
0.75
0.252
..
..
..
0.45
..
..
..
..
..
..
..
..
..
..
..
SVK
Slovak Republic
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
3.2
3.1
3.1
3.1
3.12
..
..
3
..
..
..
..
SVN
Slovenia
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
1.9901000261
2.0785999298
2.0906999111
2.030299902
2.1895000935
2.121
2.135
2.147
2.178
2.135
2.17
2.194
2.253
..
..
2.4
2.424
..
2.473
..
..
..
SWE
Sweden
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
2.9
..
2.7
2.7
2.8
2.9
2.9
2.9
3
3
3.1
3.2
3.3
..
3.28
..
3.583
..
..
..
..
..
SWZ
Swaziland
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.1077999994
..
..
..
..
..
0.151
..
..
..
0.176
..
..
..
0.16
..
..
..
..
..
..
..
SXM
Sint Maarten (Dutch part)
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
5.7887001038
..
1.0274000168
..
..
1.324
..
..
..
..
..
..
..
1.51
..
..
..
..
..
..
..
SYR
Syrian Arab Republic
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.834800005
..
..
..
..
..
..
1.1
1.44
1.3
..
1.399
..
..
..
..
0.53
..
1.5
..
..
..
TCA
Turks and Caicos Islands
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TCD
Chad
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
0.0329999998
..
..
..
..
..
..
0.025
..
..
0.04
..
..
..
..
..
..
..
TGO
Togo
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
0.0878000036
..
..
0.056400001
0.076
..
..
..
..
..
0.057
..
..
0.04
..
..
..
0.053
..
..
..
THA
Thailand
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.2252999991
0.2266000062
0.2337000072
0.233099997
..
0.24
0.365
..
..
0.301
0.37
..
0.305
..
0.298
..
..
..
..
..
..
..
TJK
Tajikistan
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
2.5508999825
2.4191999435
2.2657001019
2.1767001152
2.2541000843
2.136
2.086
2.023
2.086
2.102
2.13
2.18
..
2.033
..
..
2.0128
..
..
..
..
..
TKM
Turkmenistan
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
3.613699913
3.6728000641
3.5887000561
3.5697999001
3.53489995
3.17
3.222
3.171
..
..
..
..
4.179
..
..
..
2.49
2.438
..
..
..
..
TMP
Timor-Leste
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.1
..
..
..
..
..
..
..
TON
Tonga
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
0.5083000064
..
..
..
..
..
0.44
..
..
0.499
0.343
0.2912
..
..
..
..
..
..
..
..
..
TTO
Trinidad and Tobago
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.7200000286
0.7315999866
..
0.6577000022
0.7879999876
0.79
..
0.79
..
..
..
..
..
..
..
..
..
1.175
..
..
..
..
TUN
Tunisia
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.5282999873
0.5368999839
0.6453999877
0.6506000161
0.5673000216
0.663
..
0.7
..
..
..
..
..
..
1.34
..
..
..
..
1.19
..
..
TUR
Turkey
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.9
1
1
1
1.1
1.1
1.1
1.2
1.2
1.2
1.3
1.3
1.4
1.4
1.3
1.3
1.56
..
1.451
1.64
..
..
TUV
Tuvalu
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
0.5454546
0.91
..
..
..
..
0.636
..
..
..
TZA
Tanzania
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
0.0419000015
0.041
..
..
..
..
..
..
0.02
..
..
..
0.008
..
..
..
..
..
UGA
Uganda
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
0.0399999991
..
..
..
..
..
..
..
..
0.047
..
0.08
0.117
..
..
..
..
..
..
UKR
Ukraine
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
4.2895002365
4.3452000618
4.2971000671
4.3418002129
4.3141999245
4.407
2.992
2.97
2.99
2.986
2.978
2.974
..
2.951
..
..
3.1254
..
..
..
..
..
UMC
Upper middle income
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
1.637839778
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.7244132818
..
..
URY
Uruguay
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
3.6800000668
..
3.2260000706
..
..
3.56
3.703
..
..
3.745
..
..
3.65
..
..
..
..
4.181
3.736
..
..
..
USA
United States
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
1.8
1.9
1.9
1.9
..
2
2
2.1
2.1
2.2
2.56
2.2
2.3
..
2.672
..
..
..
..
..
..
..
UZB
Uzbekistan
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
3.3875000477
3.4249999523
3.3210000992
3.3378000259
3.2950000763
3.239
3.171
3.115
3.085
2.975
2.946
2.885
..
2.745
..
2.65
..
2.617
..
..
..
..
VCT
St. Vincent and the Grenadines
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.4600000083
0.1345999986
..
..
..
0.46
..
0.871
..
..
0.7542
..
..
..
..
..
..
..
..
..
..
..
VEN
Venezuela, RB
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
1.5643999577
..
..
..
..
1.94
..
2.029
..
..
..
1.94
..
..
..
..
..
..
..
..
..
..
VIR
Virgin Islands (U.S.)
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
1.6499999762
..
..
..
..
1.645
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VNM
Vietnam
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.4038999975
0.4065999985
0.4372000098
..
..
..
..
0.569
0.48
0.515
..
0.534
0.56
..
..
..
..
..
1.224
..
..
..
VUT
Vanuatu
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
0.0989999995
..
..
..
..
..
0.11
..
..
..
..
..
..
0.14
..
..
..
0.116
..
..
..
WBG
West Bank and Gaza
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
..
..
..
..
..
..
0.5
..
..
0.837
..
..
..
..
..
..
..
..
..
..
WLD
World
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
1.2145923873
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.3843603293
..
..
WSM
Samoa
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
0.3646999896
..
..
..
0.344
..
0.33
0.702
..
..
..
0.28
..
0.27
..
..
..
..
..
..
YEM
Yemen, Rep.
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.0070000002
..
..
..
..
0.247
0.23
..
0.2
..
..
0.219
..
..
0.33
..
..
..
..
0.3
..
..
ZAF
South Africa
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
..
..
0.6243000031
..
..
..
0.593
..
..
..
..
0.692
..
..
0.77
..
..
..
..
..
..
..
ZAR
Congo, Dem. Rep.
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.0661000013
..
..
..
..
..
0.069
..
..
..
..
..
..
..
0.11
..
..
..
..
..
..
..
ZMB
Zambia
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.0916000009
..
..
..
..
0.069
..
..
..
..
..
..
..
..
0.12
..
0.055
..
..
..
..
..
ZWE
Zimbabwe
SH.MED.PHYS.ZS
Physicians (per 1,000 people)
0
1
0.1353999972
..
..
..
..
0.139
..
..
..
..
..
..
0.057
..
0.16
..
..
..
..
..
..
..
ABW
Aruba
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ADO
Andorra
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AFG
Afghanistan
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2428
..
..
..
AGO
Angola
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
21593
..
..
..
ALB
Albania
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ARE
United Arab Emirates
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ARG
Argentina
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
..
ARM
Armenia
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
..
ASM
American Samoa
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ATG
Antigua and Barbuda
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AUS
Australia
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AUT
Austria
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AZE
Azerbaijan
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1
..
..
..
BDI
Burundi
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
48475
..
..
..
BEL
Belgium
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BEN
Benin
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
35555
..
..
..
BFA
Burkina Faso
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
45322
..
..
..
BGD
Bangladesh
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1510
..
..
..
BGR
Bulgaria
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BHR
Bahrain
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BHS
Bahamas, The
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BIH
Bosnia and Herzegovina
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BLR
Belarus
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BLZ
Belize
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
210
..
..
..
BMU
Bermuda
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BOL
Bolivia
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
365
..
..
..
BRA
Brazil
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
210
..
..
..
BRB
Barbados
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BRN
Brunei Darussalam
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BTN
Bhutan
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
100
..
..
..
BWA
Botswana
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
587
..
..
..
CAF
Central African Republic
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
35786
..
..
..
CAN
Canada
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHE
Switzerland
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHI
Channel Islands
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHL
Chile
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHN
China
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3
..
..
..
CIV
Cote d'Ivoire
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
36482
..
..
..
CMR
Cameroon
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
27818
..
..
..
COG
Congo, Rep.
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
34298
..
..
..
COK
Cook Islands
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
COL
Colombia
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
394
..
..
..
COM
Comoros
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
24619
..
..
..
CPV
Cape Verde
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
23
..
..
..
CRI
Costa Rica
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
51
..
..
..
CUB
Cuba
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CUW
Curacao
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYP
Cyprus
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CZE
Czech Republic
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DEU
Germany
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DJI
Djibouti
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
467
..
..
..
DMA
Dominica
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DNK
Denmark
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DOM
Dominican Republic
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
46
..
..
..
DZA
Algeria
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
EAP
East Asia & Pacific
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
524.931927006
..
..
..
ECA
Europe & Central Asia
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ECU
Ecuador
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
63
..
..
..
EGY
Egypt, Arab Rep.
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
..
EMU
Euro area
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ERI
Eritrea
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
762
..
..
..
ESP
Spain
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
EST
Estonia
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ETH
Ethiopia
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
11509
..
..
..
FIN
Finland
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FJI
Fiji
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FRA
France
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FRO
Faeroe Islands
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FSM
Micronesia, Fed. Sts.
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GAB
Gabon
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
29451
..
..
..
GBR
United Kingdom
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GEO
Georgia
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
..
GHA
Ghana
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
31179
..
..
..
GIB
Gibraltar
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GIN
Guinea
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
40585
..
..
..
GMB
Gambia, The
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
31925
..
..
..
GNB
Guinea-Bissau
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
34043
..
..
..
GNQ
Equatorial Guinea
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
27726
..
..
..
GRC
Greece
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRD
Grenada
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRL
Greenland
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GTM
Guatemala
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
184
..
..
..
GUM
Guam
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GUY
Guyana
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2194
..
..
..
HIC
High income
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HKG
Hong Kong SAR, China
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HND
Honduras
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
335
..
..
..
HRV
Croatia
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HTI
Haiti
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1891
..
..
..
HUN
Hungary
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IDN
Indonesia
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1645
..
..
..
IMY
Isle of Man
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IND
India
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1124
..
..
..
IRL
Ireland
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IRN
Iran, Islamic Rep.
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
18
..
..
..
IRQ
Iraq
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
..
ISL
Iceland
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ISR
Israel
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ITA
Italy
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
JAM
Jamaica
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
JOR
Jordan
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
JPN
Japan
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KAZ
Kazakhstan
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KEN
Kenya
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
30307
..
..
..
KGZ
Kyrgyz Republic
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
..
KHM
Cambodia
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1798
..
..
..
KIR
Kiribati
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KNA
St. Kitts and Nevis
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KOR
Korea, Rep.
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
8
..
..
..
KSV
Kosovo
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KWT
Kuwait
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LAC
Latin America & Caribbean
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
205.896141998
..
..
..
LAO
Lao PDR
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
327
..
..
..
LBN
Lebanon
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LBR
Liberia
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
29994
..
..
..
LBY
Libya
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LCA
St. Lucia
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LIC
Low income
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
16658.5344967
..
..
..
LIE
Liechtenstein
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LKA
Sri Lanka
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
21
..
..
..
LMC
Lower middle income
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4873.82684268
..
..
..
LMY
Low & middle income
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4665.09645087
..
..
..
LSO
Lesotho
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LTU
Lithuania
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LUX
Luxembourg
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LVA
Latvia
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAC
Macao SAR, China
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAF
St. Martin (French part)
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MCO
Monaco
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MDA
Moldova
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MDG
Madagascar
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3735
..
..
..
MDV
Maldives
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MEX
Mexico
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3
..
..
..
MHL
Marshall Islands
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MIC
Middle income
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2573.56897631
..
..
..
MKD
Macedonia, FYR
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MLI
Mali
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
25366
..
..
..
MLT
Malta
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MMR
Myanmar
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
7943
..
..
..
MNA
Middle East & North Africa
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNE
Montenegro
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNG
Mongolia
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNP
Northern Mariana Islands
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MOZ
Mozambique
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
32555
..
..
..
MRT
Mauritania
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
17325
..
..
..
MUS
Mauritius
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MWI
Malawi
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
33773
..
..
..
MYS
Malaysia
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
75
..
..
..
MYT
Mayotte
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NAM
Namibia
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4589
..
..
..
NCL
New Caledonia
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NER
Niger
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
37958
..
..
..
NGA
Nigeria
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
38259
..
..
..
NIC
Nicaragua
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
26
..
..
..
NIU
Niue
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NLD
Netherlands
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NOR
Norway
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NPL
Nepal
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
103
..
..
..
NRU
Nauru
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NZL
New Zealand
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
OMN
Oman
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PAK
Pakistan
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
881
..
..
..
PAN
Panama
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
35
..
..
..
PER
Peru
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
478
..
..
..
PHL
Philippines
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
96
..
..
..
PLW
Palau
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PNG
Papua New Guinea
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
18012
..
..
..
POL
Poland
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRI
Puerto Rico
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRK
Korea, Dem. Rep.
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
284
..
..
..
PRT
Portugal
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRY
Paraguay
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
16
..
..
..
PYF
French Polynesia
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
QAT
Qatar
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ROM
Romania
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
RUS
Russian Federation
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
RWA
Rwanda
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
11429
..
..
..
SAS
South Asia
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1127.29278164
..
..
..
SAU
Saudi Arabia
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
7
..
..
..
SDN
Sudan
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
12805
..
..
..
SEN
Senegal
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
7077
..
..
..
SGP
Singapore
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SID
Small island developing states
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLB
Solomon Islands
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
13718
..
..
..
SLE
Sierra Leone
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
36141
..
..
..
SLV
El Salvador
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1
..
..
..
SMR
San Marino
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SOM
Somalia
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
8711
..
..
..
SRB
Serbia
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SSA
Sub-Saharan Africa
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
26113.2792407
..
..
..
STP
Sao Tome and Principe
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1961
..
..
..
SUR
Suriname
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
681
..
..
..
SVK
Slovak Republic
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SVN
Slovenia
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SWE
Sweden
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SWZ
Swaziland
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
57
..
..
..
SXM
Sint Maarten (Dutch part)
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYR
Syrian Arab Republic
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TCA
Turks and Caicos Islands
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TCD
Chad
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
39508
..
..
..
TGO
Togo
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
30388
..
..
..
THA
Thailand
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
322
..
..
..
TJK
Tajikistan
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
9
..
..
..
TKM
Turkmenistan
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
..
TMP
Timor-Leste
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
46380
..
..
..
TON
Tonga
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TTO
Trinidad and Tobago
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TUN
Tunisia
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TUR
Turkey
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
..
TUV
Tuvalu
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TZA
Tanzania
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
24088
..
..
..
UGA
Uganda
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
36233
..
..
..
UKR
Ukraine
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
UMC
Upper middle income
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
80.1339891949
..
..
..
URY
Uruguay
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
USA
United States
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
UZB
Uzbekistan
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0
..
..
..
VCT
St. Vincent and the Grenadines
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VEN
Venezuela, RB
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
263
..
..
..
VIR
Virgin Islands (U.S.)
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VNM
Vietnam
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
55
..
..
..
VUT
Vanuatu
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
6036
..
..
..
WBG
West Bank and Gaza
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
WLD
World
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4601.31325031
..
..
..
WSM
Samoa
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
YEM
Yemen, Rep.
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1106
..
..
..
ZAF
South Africa
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
80
..
..
..
ZAR
Congo, Dem. Rep.
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
37400
..
..
..
ZMB
Zambia
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
13456
..
..
..
ZWE
Zimbabwe
SH.MLR.INCD
Malaria incidence rate (per 100,000 people)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
7480
..
..
..
ABW
Aruba
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ADO
Andorra
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
AFG
Afghanistan
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
29
..
..
..
..
32
..
..
..
..
35
..
..
37
..
..
..
AGO
Angola
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
25
..
..
..
..
30
..
..
..
..
40
..
..
..
..
50
..
..
57
..
..
..
ALB
Albania
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
87
..
..
..
..
90
..
..
..
..
96
..
..
98
..
..
..
ARE
United Arab Emirates
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
97
..
..
..
..
97
..
..
..
..
97
..
..
..
..
97
..
..
97
..
..
..
ARG
Argentina
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
90
..
..
..
..
91
..
..
..
..
91
..
..
..
..
90
..
..
90
..
..
..
ARM
Armenia
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
88
..
..
..
..
89
..
..
..
..
89
..
..
90
..
..
..
ASM
American Samoa
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ATG
Antigua and Barbuda
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
95
..
..
..
..
95
..
95
..
95
..
..
..
..
..
..
..
AUS
Australia
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
AUT
Austria
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
AZE
Azerbaijan
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
44
..
..
..
..
44
..
..
..
..
45
..
..
45
..
..
..
BDI
Burundi
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
44
..
..
..
..
45
..
..
..
..
45
..
..
..
..
46
..
..
46
..
..
..
BEL
Belgium
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
BEN
Benin
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
5
..
..
..
..
8
..
..
..
..
9
..
..
..
..
11
..
..
12
..
..
..
BFA
Burkina Faso
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
6
..
..
..
..
7
..
..
..
..
8
..
..
..
..
11
..
..
11
..
..
..
BGD
Bangladesh
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
39
..
..
..
..
42
..
..
..
..
46
..
..
..
..
50
..
..
53
..
..
..
BGR
Bulgaria
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
99
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
BHR
Bahrain
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BHS
Bahamas, The
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
100
..
100
100
..
..
100
..
..
..
BIH
Bosnia and Herzegovina
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
95
..
..
..
..
95
..
..
..
..
95
..
..
95
..
..
..
BLR
Belarus
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
93
..
..
..
..
93
..
..
..
..
93
..
..
93
..
..
..
BLZ
Belize
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
74
..
..
..
..
78
..
..
..
..
82
..
47
..
47
87
..
..
90
..
..
..
BMU
Bermuda
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BOL
Bolivia
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
19
..
..
..
..
21
..
..
..
..
23
..
..
..
..
24
..
..
25
..
..
..
BRA
Brazil
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
69
..
..
..
..
72
..
..
..
..
75
..
..
..
..
78
..
..
80
..
..
..
BRB
Barbados
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
99
..
100
100
..
..
100
..
..
..
BRN
Brunei Darussalam
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BTN
Bhutan
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
62
..
..
..
..
64
..
..
65
..
..
..
BWA
Botswana
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
36
..
..
..
..
44
..
..
..
..
50
..
..
..
..
57
..
..
60
..
..
..
CAF
Central African Republic
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
11
..
..
..
..
15
..
..
..
..
22
..
..
..
..
29
..
..
34
..
..
..
CAN
Canada
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
CHE
Switzerland
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
CHI
Channel Islands
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHL
Chile
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
84
..
..
..
..
88
..
..
..
..
92
..
..
..
..
96
..
..
96
..
..
..
CHN
China
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
41
..
..
..
..
45
..
..
..
..
49
..
..
..
..
53
..
..
55
..
..
..
CIV
Cote d'Ivoire
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
20
..
..
..
..
21
..
..
..
..
22
..
..
..
..
23
..
..
23
..
..
..
CMR
Cameroon
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
47
..
..
..
..
48
..
..
..
..
47
..
..
..
..
47
..
..
47
..
..
..
COG
Congo, Rep.
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
30
..
..
..
..
30
..
..
30
..
..
..
COK
Cook Islands
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
96
..
..
..
..
97
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
COL
Colombia
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
68
..
..
..
..
70
..
..
..
..
72
..
..
..
..
74
..
..
74
..
..
..
COM
Comoros
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
17
..
..
..
..
22
..
..
..
..
28
..
..
..
..
35
..
..
36
..
..
..
CPV
Cape Verde
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
40
..
..
..
..
45
..
..
..
..
52
..
..
54
..
..
..
CRI
Costa Rica
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
93
..
..
..
..
94
..
..
..
..
95
..
..
..
..
95
..
..
95
..
..
..
CUB
Cuba
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
80
..
..
..
..
83
..
..
..
..
86
..
..
..
..
89
..
..
91
..
..
..
CUW
Curacao
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
96
..
..
..
..
96
..
..
..
..
96
..
..
..
..
96
..
..
96
..
..
..
CYP
Cyprus
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
CZE
Czech Republic
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
100
..
..
..
..
99
..
..
..
..
98
..
..
..
..
98
..
..
98
..
..
..
DEU
Germany
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
DJI
Djibouti
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
66
..
..
..
..
66
..
..
..
..
63
..
..
..
..
58
..
..
56
..
..
..
DMA
Dominica
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
81
..
..
..
..
81
..
83
..
84
81
..
..
..
..
..
..
DNK
Denmark
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
DOM
Dominican Republic
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
73
..
..
..
..
76
..
..
..
..
79
..
..
..
..
81
..
..
83
..
..
..
DZA
Algeria
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
88
..
..
..
..
90
..
..
..
..
92
..
..
..
..
94
..
..
95
..
..
..
EAP
East Asia & Pacific
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
42.2489814318
..
..
..
..
46.9366637369
..
..
..
..
51.9157146227
..
..
..
..
56.6514079972
..
..
58.9836523634
..
..
..
ECA
Europe & Central Asia
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
87.4681318423
..
..
..
..
87.1292532156
..
..
..
..
87.7451369875
..
..
..
..
88.5861661444
..
..
89.0104915183
..
..
..
ECU
Ecuador
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
69
..
..
..
..
76
..
..
..
..
83
..
..
..
..
90
..
..
92
..
..
..
EGY
Egypt, Arab Rep.
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
72
..
..
..
..
79
..
..
..
..
86
..
..
..
..
93
..
..
94
..
..
..
EMU
Euro area
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
99.5407986326
..
..
..
..
99.6342692776
..
..
..
..
99.7948610761
..
..
..
..
99.8356605586
..
..
99.8754010896
..
..
..
ERI
Eritrea
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
9
..
..
..
..
10
..
..
..
..
11
..
..
..
..
13
..
..
14
..
..
..
ESP
Spain
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
EST
Estonia
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
95
..
..
..
..
95
..
..
..
..
95
..
..
95
..
..
..
ETH
Ethiopia
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
4
..
..
..
..
5
..
..
..
..
8
..
..
..
..
10
..
..
12
..
..
..
FIN
Finland
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
FJI
Fiji
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FRA
France
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
FRO
Faeroe Islands
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FSM
Micronesia, Fed. Sts.
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
29
..
..
..
..
28
..
..
..
..
26
..
..
..
..
27
..
..
..
..
..
..
GAB
Gabon
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
36
..
..
..
..
36
..
..
..
..
33
..
..
33
..
..
..
GBR
United Kingdom
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
GEO
Georgia
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
96
..
..
..
..
96
..
..
..
..
95
..
..
..
..
95
..
..
95
..
..
..
GHA
Ghana
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
7
..
..
..
..
8
..
..
..
..
9
..
..
..
..
11
..
..
13
..
..
..
GIB
Gibraltar
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GIN
Guinea
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
9
..
..
..
..
12
..
..
..
..
15
..
..
..
..
17
..
..
19
..
..
..
GMB
Gambia, The
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
60
..
..
..
..
63
..
..
..
..
65
..
..
67
..
..
..
GNB
Guinea-Bissau
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
16
..
..
..
..
18
..
..
..
..
20
..
..
21
..
..
..
GNQ
Equatorial Guinea
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
51
..
..
..
..
51
..
..
..
..
51
..
..
..
..
..
..
GRC
Greece
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
97
..
..
..
..
97
..
..
..
..
98
..
..
..
..
98
..
..
98
..
..
..
GRD
Grenada
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
97
..
..
..
..
97
..
..
..
..
97
..
97
..
96
97
..
..
97
..
..
..
GRL
Greenland
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GTM
Guatemala
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
65
..
..
..
..
69
..
..
..
..
74
..
..
..
..
78
..
..
81
..
..
..
GUM
Guam
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
99
..
..
..
..
99
..
..
..
..
99
..
..
..
..
99
..
..
99
..
..
..
GUY
Guyana
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
79
..
..
..
..
79
..
70
..
70
80
..
..
81
..
..
..
HIC
High income
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
99.8069945101
..
..
..
..
99.7914620335
..
..
..
..
99.4235563709
..
..
..
..
99.4757662015
..
..
99.5209919964
..
..
..
HKG
Hong Kong SAR, China
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HND
Honduras
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
44
..
..
..
..
51
..
..
..
..
59
..
..
..
..
66
..
..
71
..
..
..
HRV
Croatia
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
99
..
..
..
..
99
..
..
..
..
99
..
..
99
..
..
..
HTI
Haiti
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
26
..
..
..
..
25
..
..
..
..
22
..
..
..
..
19
..
..
17
..
..
..
HUN
Hungary
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
IDN
Indonesia
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
33
..
..
..
..
38
..
..
..
..
44
..
..
..
..
49
..
..
52
..
..
..
IMY
Isle of Man
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IND
India
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
18
..
..
..
..
21
..
..
..
..
25
..
..
..
..
28
..
..
31
..
..
..
IRL
Ireland
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
99
..
..
..
..
99
..
..
..
..
99
..
..
..
..
99
..
..
99
..
..
..
IRN
Iran, Islamic Rep.
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
83
..
..
..
..
83
..
..
..
..
83
..
..
..
..
..
..
..
..
..
..
..
IRQ
Iraq
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
67
..
..
..
..
69
..
..
..
..
71
..
..
73
..
..
..
ISL
Iceland
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
ISR
Israel
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
ITA
Italy
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
JAM
Jamaica
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
83
..
..
..
..
82
..
..
..
..
82
..
80
..
80
83
..
..
83
..
..
..
JOR
Jordan
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
97
..
..
..
..
98
..
..
..
..
98
..
..
98
..
..
..
JPN
Japan
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
KAZ
Kazakhstan
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
96
..
..
..
..
96
..
..
..
..
97
..
..
..
..
97
..
..
97
..
..
..
KEN
Kenya
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
26
..
..
..
..
27
..
..
..
..
29
..
..
..
..
30
..
..
31
..
..
..
KGZ
Kyrgyz Republic
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
93
..
..
..
..
93
..
..
..
..
93
..
..
93
..
..
..
KHM
Cambodia
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
9
..
..
..
..
11
..
..
..
..
17
..
..
..
..
24
..
..
29
..
..
..
KIR
Kiribati
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
26
..
..
..
..
28
..
..
..
..
33
..
..
..
..
31
..
..
..
..
..
..
KNA
St. Kitts and Nevis
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
96
..
..
..
..
96
..
..
..
..
96
..
96
..
95
96
..
..
96
..
..
..
KOR
Korea, Rep.
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
KSV
Kosovo
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KWT
Kuwait
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
LAC
Latin America & Caribbean
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
68.6060548511
..
..
..
..
72.1811022392
..
..
..
..
75.1242916128
..
..
..
..
78.3206309834
..
..
79.3922718149
..
..
..
LAO
Lao PDR
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
18
..
..
..
..
26
..
..
..
..
43
..
..
53
..
..
..
LBN
Lebanon
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
98
..
..
..
..
98
..
..
..
..
98
..
..
..
..
..
..
LBR
Liberia
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
11
..
..
..
..
13
..
..
..
..
14
..
..
..
..
16
..
..
17
..
..
..
LBY
Libya
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
97
..
..
..
..
97
..
..
..
..
97
..
..
..
..
97
..
..
97
..
..
..
LCA
St. Lucia
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
89
..
..
..
..
89
..
89
..
89
..
..
..
..
..
..
..
LIC
Low income
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
22.4606205366
..
..
..
..
28.721480036
..
..
..
..
32.0077464956
..
..
..
..
34.0988449431
..
..
35.4703925669
..
..
..
LIE
Liechtenstein
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LKA
Sri Lanka
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
70
..
..
..
..
76
..
..
..
..
82
..
..
..
..
88
..
..
91
..
..
..
LMC
Lower middle income
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
31.6288613861
..
..
..
..
35.5042897225
..
..
..
..
39.4176864798
..
..
..
..
42.7298394698
..
..
45.4389937967
..
..
..
LMY
Low & middle income
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
42.8575552083
..
..
..
..
46.1421365091
..
..
..
..
49.4604627663
..
..
..
..
51.9417531115
..
..
53.5944653883
..
..
..
LSO
Lesotho
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
32
..
..
..
..
31
..
..
..
..
29
..
..
..
..
28
..
..
29
..
..
..
LTU
Lithuania
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LUX
Luxembourg
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
LVA
Latvia
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
78
..
..
..
..
78
..
..
78
..
..
..
MAC
Macao SAR, China
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAF
St. Martin (French part)
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
53
..
..
..
..
59
..
..
..
..
64
..
..
..
..
68
..
..
69
..
..
..
MCO
Monaco
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
MDA
Moldova
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
79
..
..
..
..
79
..
..
79
..
..
..
MDG
Madagascar
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
8
..
..
..
..
9
..
..
..
..
10
..
..
..
..
11
..
..
11
..
..
..
MDV
Maldives
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
69
..
..
..
..
70
..
..
..
..
81
..
..
..
..
92
..
..
98
..
..
..
MEX
Mexico
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
66
..
..
..
..
72
..
..
..
..
76
..
..
..
..
82
..
..
85
..
..
..
MHL
Marshall Islands
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
64
..
..
..
..
67
..
..
..
..
69
..
..
..
..
71
..
..
73
..
..
..
MIC
Middle income
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
45.0891209158
..
..
..
..
48.5938367419
..
..
..
..
52.0253598291
..
..
..
..
54.6488369628
..
..
56.4486217501
..
..
..
MKD
Macedonia, FYR
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
88
..
..
..
..
89
..
..
89
..
..
..
MLI
Mali
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
26
..
..
..
..
29
..
..
..
..
32
..
..
..
..
35
..
..
36
..
..
..
MLT
Malta
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
MMR
Myanmar
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
49
..
..
..
..
65
..
..
..
..
81
..
..
81
..
..
..
MNA
Middle East & North Africa
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
72.7492097171
..
..
..
..
76.1957480427
..
..
..
..
79.5991062389
..
..
..
..
82.9213631836
..
..
84.1592175778
..
..
..
MNE
Montenegro
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
92
..
..
..
..
92
..
..
92
..
..
..
MNG
Mongolia
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
49
..
..
..
..
49
..
..
..
..
49
..
..
50
..
..
..
MNP
Northern Mariana Islands
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
84
..
..
..
..
89
..
..
..
..
92
..
..
..
..
94
..
..
..
..
..
..
MOZ
Mozambique
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
11
..
..
..
..
12
..
..
..
..
14
..
..
..
..
15
..
..
17
..
..
..
MRT
Mauritania
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
16
..
..
..
..
18
..
..
..
..
21
..
..
..
..
24
..
..
26
..
..
..
MUS
Mauritius
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
91
..
..
..
..
91
..
..
..
..
91
..
..
..
..
91
..
..
91
..
..
..
MWI
Malawi
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
42
..
..
..
..
47
..
..
..
..
50
..
..
..
..
54
..
..
56
..
..
..
MYS
Malaysia
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
84
..
..
..
..
88
..
..
..
..
92
..
..
..
..
96
..
..
96
..
..
..
MYT
Mayotte
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NAM
Namibia
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
25
..
..
..
..
27
..
..
..
..
29
..
..
..
..
31
..
..
33
..
..
..
NCL
New Caledonia
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NER
Niger
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
5
..
..
..
..
5
..
..
..
..
7
..
..
..
..
9
..
..
9
..
..
..
NGA
Nigeria
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
37
..
..
..
..
36
..
..
..
..
34
..
..
..
..
32
..
..
32
..
..
..
NIC
Nicaragua
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
43
..
..
..
..
46
..
..
..
..
48
..
..
..
..
50
..
..
52
..
..
..
NIU
Niue
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
NLD
Netherlands
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
NOR
Norway
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
NPL
Nepal
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
11
..
..
..
..
16
..
..
..
..
23
..
..
..
..
28
..
..
31
..
..
..
NRU
Nauru
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
50
..
..
50
..
..
..
NZL
New Zealand
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
OMN
Oman
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
85
..
..
..
..
87
..
..
..
..
87
..
..
..
..
..
..
..
..
..
..
..
PAK
Pakistan
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
28
..
..
..
..
33
..
..
..
..
37
..
..
..
..
41
..
..
45
..
..
..
PAN
Panama
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
58
..
..
..
..
62
..
..
..
..
65
..
..
..
..
68
..
..
69
..
..
..
PER
Peru
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
54
..
..
..
..
59
..
..
..
..
62
..
..
..
..
66
..
..
68
..
..
..
PHL
Philippines
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
58
..
..
..
..
63
..
..
..
..
69
..
..
..
..
73
..
..
76
..
..
..
PLW
Palau
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
69
..
..
..
..
72
..
..
..
..
80
..
..
..
..
83
..
..
..
..
..
..
PNG
Papua New Guinea
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
47
..
..
..
..
47
..
..
..
..
46
..
..
..
..
47
..
..
45
..
..
..
POL
Poland
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
90
..
..
..
..
90
..
..
90
..
..
..
PRI
Puerto Rico
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRK
Korea, Dem. Rep.
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
59
..
..
..
..
59
..
..
..
..
..
..
..
..
..
..
..
PRT
Portugal
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
92
..
..
..
..
95
..
..
..
..
98
..
..
..
..
99
..
..
100
..
..
..
PRY
Paraguay
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
37
..
..
..
..
48
..
..
..
..
58
..
..
..
..
68
..
..
70
..
..
..
PYF
French Polynesia
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
98
..
..
..
..
98
..
..
..
..
98
..
..
..
..
98
..
..
98
..
..
..
QAT
Qatar
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
ROM
Romania
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
71
..
..
..
..
72
..
..
..
..
72
..
..
..
..
72
..
..
72
..
..
..
RUS
Russian Federation
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
87
..
..
..
..
87
..
..
..
..
87
..
..
..
..
87
..
..
87
..
..
..
RWA
Rwanda
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
23
..
..
..
..
32
..
..
..
..
40
..
..
..
..
49
..
..
54
..
..
..
SAS
South Asia
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
21.7235108125
..
..
..
..
25.0998555047
..
..
..
..
29.1864385334
..
..
..
..
32.4828376731
..
..
35.5661840806
..
..
..
SAU
Saudi Arabia
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
98.6
..
..
..
..
..
..
..
SDN
Sudan
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
34
..
..
..
..
33
..
..
..
..
34
..
..
..
..
34
..
..
34
..
..
..
SEN
Senegal
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
38
..
..
..
..
41
..
..
..
..
45
..
..
..
..
49
..
..
51
..
..
..
SGP
Singapore
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
99
..
..
..
..
99
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
SID
Small island developing states
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
67.2849058933
..
..
..
..
66.4313358958
..
..
..
..
66.3335340184
..
..
..
..
66.6625167622
..
..
67.3890020184
..
..
..
SLB
Solomon Islands
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
29
..
..
..
..
31
..
..
..
..
29
..
..
..
..
..
..
SLE
Sierra Leone
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
10
..
..
..
..
11
..
..
..
..
12
..
..
13
..
..
..
SLV
El Salvador
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
75
..
..
..
..
79
..
..
..
..
83
..
..
..
..
85
..
..
87
..
..
..
SMR
San Marino
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SOM
Somalia
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
21
..
..
..
..
22
..
..
..
..
22
..
..
23
..
..
..
SRB
Serbia
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
92
..
..
..
..
92
..
..
92
..
..
..
SSA
Sub-Saharan Africa
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
27.3161826212
..
..
..
..
27.9452065908
..
..
..
..
29.2108719031
..
..
..
..
30.2972551421
..
..
31.3627140396
..
..
..
STP
Sao Tome and Principe
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
20
..
..
..
..
21
..
..
..
..
24
..
..
26
..
..
..
SUR
Suriname
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
82
..
..
..
..
83
..
93
..
94
84
..
..
84
..
..
..
SVK
Slovak Republic
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
SVN
Slovenia
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
SWE
Sweden
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
SWZ
Swaziland
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
48
..
..
..
..
49
..
..
..
..
53
..
..
55
..
..
..
SXM
Sint Maarten (Dutch part)
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYR
Syrian Arab Republic
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
83
..
..
..
..
84
..
..
..
..
89
..
..
..
..
93
..
..
96
..
..
..
TCA
Turks and Caicos Islands
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
96
..
..
..
..
96
..
..
..
..
..
..
..
..
..
..
..
TCD
Chad
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
6
..
..
..
..
6
..
..
..
..
7
..
..
..
..
9
..
..
9
..
..
..
TGO
Togo
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
13
..
..
..
..
13
..
..
..
..
12
..
..
..
..
12
..
..
12
..
..
..
THA
Thailand
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
80
..
..
..
..
86
..
..
..
..
93
..
..
..
..
96
..
..
96
..
..
..
TJK
Tajikistan
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
89
..
..
..
..
90
..
..
..
..
93
..
..
94
..
..
..
TKM
Turkmenistan
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
98
..
..
..
..
98
..
..
..
..
98
..
..
..
..
98
..
..
98
..
..
..
TMP
Timor-Leste
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
32
..
..
..
..
44
..
..
50
..
..
..
TON
Tonga
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
96
..
..
..
..
96
..
..
..
..
96
..
..
..
..
96
..
..
96
..
..
..
TTO
Trinidad and Tobago
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
93
..
..
..
..
92
..
..
..
..
92
..
100
..
100
92
..
..
92
..
..
..
TUN
Tunisia
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
74
..
..
..
..
78
..
..
..
..
81
..
..
..
..
85
..
..
85
..
..
..
TUR
Turkey
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
84
..
..
..
..
85
..
..
..
..
87
..
..
..
..
89
..
..
90
..
..
..
TUV
Tuvalu
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
80
..
..
..
..
81
..
..
..
..
83
..
..
..
..
83
..
..
84
..
..
..
TZA
Tanzania
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
24
..
..
..
..
24
..
..
..
..
24
..
..
..
..
24
..
..
24
..
..
..
UGA
Uganda
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
39
..
..
..
..
42
..
..
..
..
44
..
..
..
..
47
..
..
48
..
..
..
UKR
Ukraine
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
95
..
..
..
..
95
..
..
..
..
95
..
..
..
..
95
..
..
95
..
..
..
UMC
Upper middle income
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
56.6721797433
..
..
..
..
60.3023460505
..
..
..
..
63.7036325434
..
..
..
..
66.5018061464
..
..
67.8299537972
..
..
..
URY
Uruguay
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
94
..
..
..
..
94
..
..
..
..
96
..
..
..
..
99
..
..
100
..
..
..
USA
United States
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
100
..
..
..
..
100
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
UZB
Uzbekistan
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
84
..
..
..
..
85
..
..
..
..
91
..
..
..
..
97
..
..
100
..
..
..
VCT
St. Vincent and the Grenadines
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VEN
Venezuela, RB
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
82
..
..
..
..
86
..
..
..
..
89
..
..
..
..
91
..
..
..
..
..
..
VIR
Virgin Islands (U.S.)
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VNM
Vietnam
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
35
..
..
..
..
47
..
..
..
..
57
..
..
..
..
68
..
..
75
..
..
..
VUT
Vanuatu
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
34
..
..
..
..
41
..
..
..
..
47
..
..
52
..
..
..
WBG
West Bank and Gaza
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
..
..
..
..
..
89
..
..
..
..
89
..
..
..
..
89
..
..
89
..
..
..
WLD
World
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
52.4090125847
..
..
..
..
54.5800893935
..
..
..
..
57.2901914608
..
..
..
..
59.2740122254
..
..
60.6185462908
..
..
..
WSM
Samoa
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
98
..
..
..
..
99
..
..
..
..
100
..
..
..
..
100
..
..
100
..
..
..
YEM
Yemen, Rep.
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
18
..
..
..
..
28
..
..
..
..
37
..
..
..
..
46
..
..
52
..
..
..
ZAF
South Africa
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
69
..
..
..
..
71
..
..
..
..
73
..
..
..
..
75
..
..
77
..
..
..
ZAR
Congo, Dem. Rep.
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
9
..
..
..
..
12
..
..
..
..
16
..
..
..
..
20
..
..
23
..
..
..
ZMB
Zambia
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
46
..
..
..
..
47
..
..
..
..
47
..
..
..
..
47
..
..
49
..
..
..
ZWE
Zimbabwe
SH.STA.ACSN
Access to improved sanitation (% of total pop.)
0
0
43
..
..
..
..
43
..
..
..
..
44
..
..
..
..
44
..
..
44
..
..
..
ABW
Aruba
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ADO
Andorra
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AFG
Afghanistan
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
44.9
..
..
..
..
..
..
32.9
..
..
..
..
..
..
..
AGO
Angola
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
37
..
..
..
..
27.5
..
..
..
..
..
..
..
..
..
..
ALB
Albania
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
7.1
..
17
..
..
..
..
6.6
..
..
..
..
..
..
ARE
United Arab Emirates
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ARG
Argentina
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
1.7
..
4.7
..
..
..
..
..
..
..
..
2.3
..
..
..
..
..
..
ARM
Armenia
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
2.7
..
..
2.6
..
..
..
4.2
..
..
..
..
..
..
ASM
American Samoa
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ATG
Antigua and Barbuda
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AUS
Australia
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AUT
Austria
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AZE
Azerbaijan
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
8.8
..
..
..
14
5.9
..
..
..
..
8.4
..
..
..
..
..
BDI
Burundi
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
38.9
..
..
..
..
..
..
..
..
..
..
..
BEL
Belgium
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BEN
Benin
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
26.8
..
..
..
..
21.5
..
..
..
..
20.2
..
..
..
..
..
BFA
Burkina Faso
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
29.6
..
..
..
..
..
33.7
..
..
..
35.2
..
..
37.4
..
..
26
..
..
BGD
Bangladesh
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
61.5
64.3
63.7
59
61
58
56.7
52.5
53.3
52
48.2
45.4
43.1
40.9
42.7
39.2
39.8
41.3
..
..
..
..
BGR
Bulgaria
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.6
..
..
..
..
..
..
..
BHR
Bahrain
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
7.6
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BHS
Bahamas, The
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BIH
Bosnia and Herzegovina
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
4.2
..
..
..
..
..
1.6
..
..
..
..
..
BLR
Belarus
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.3
..
..
..
..
..
..
BLZ
Belize
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
5.4
..
..
..
..
..
..
..
..
..
..
..
..
..
4.9
..
..
..
..
..
BMU
Bermuda
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BOL
Bolivia
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
9.7
10.2
10.5
..
12.6
..
..
..
5.9
..
..
..
..
..
5.9
..
..
..
4.5
..
..
..
BRA
Brazil
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
4.5
..
..
..
..
..
..
3.7
..
..
..
2.2
..
..
..
..
BRB
Barbados
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BRN
Brunei Darussalam
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BTN
Bhutan
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
14.1
..
..
..
..
..
..
..
..
12
..
..
..
BWA
Botswana
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
15.1
..
..
..
10.7
..
..
..
..
..
..
..
..
..
..
..
CAF
Central African Republic
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
23.3
..
..
..
..
21.8
..
..
..
..
..
..
..
..
..
..
..
CAN
Canada
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHE
Switzerland
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHI
Channel Islands
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHL
Chile
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
0.8
0.8
0.7
..
0.7
0.7
..
0.7
0.7
0.6
0.6
..
..
0.6
0.5
..
..
..
CHN
China
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
12.6
..
15.3
..
..
10.7
..
..
6.9
..
7.4
..
6.8
..
..
4.5
..
..
..
..
..
..
CIV
Cote d'Ivoire
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
20.9
..
..
..
..
18.2
..
..
..
..
..
..
16.7
..
..
..
..
..
CMR
Cameroon
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
18
..
..
..
..
..
..
17.8
..
..
..
..
..
15.1
..
16.6
..
..
..
..
..
COG
Congo, Rep.
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
11.8
..
..
..
..
..
..
COK
Cook Islands
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
COL
Colombia
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
6.3
..
..
..
..
4.9
..
..
..
..
5.1
..
..
..
..
..
..
COM
Comoros
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
16.2
..
..
..
22.3
..
..
..
25
..
..
..
..
..
..
..
..
..
..
..
CPV
Cape Verde
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
11.8
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CRI
Costa Rica
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
2.5
2.2
2
2
1.9
..
4.5
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CUB
Cuba
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
3.4
..
..
..
..
..
..
..
..
..
..
..
CUW
Curacao
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYP
Cyprus
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CZE
Czech Republic
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
0.9
..
..
..
..
..
..
..
..
..
..
2.1
..
..
..
..
..
..
..
..
..
DEU
Germany
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.1
..
..
..
..
..
DJI
Djibouti
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
16
..
..
..
..
..
25.4
..
..
..
29.6
..
..
..
..
..
DMA
Dominica
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DNK
Denmark
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DOM
Dominican Republic
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
8.4
..
..
..
..
4.7
..
..
..
3.5
..
4.2
..
..
..
..
3.4
..
..
..
..
DZA
Algeria
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
9.2
..
..
11.3
..
..
..
..
5.4
..
11.1
..
..
3.7
..
..
..
..
..
..
EAP
East Asia & Pacific
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
18.0605251601
..
..
..
..
..
..
..
..
..
14.0089396597
..
..
..
..
..
..
..
..
9.0195056013
..
..
ECA
Europe & Central Asia
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ECU
Ecuador
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
12.5
..
..
..
..
..
6.2
..
..
..
..
..
..
..
EGY
Egypt, Arab Rep.
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
10.5
..
8.2
..
..
10.8
..
10.2
..
4.3
..
..
8.7
..
5.4
..
..
6.8
..
..
..
EMU
Euro area
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ERI
Eritrea
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
36.9
..
..
38.3
..
..
..
..
..
34.5
..
..
..
..
..
..
..
..
..
ESP
Spain
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
EST
Estonia
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ETH
Ethiopia
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
42
..
..
..
..
34.6
..
..
..
..
..
..
FIN
Finland
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FJI
Fiji
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
6.9
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FRA
France
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FRO
Faeroe Islands
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FSM
Micronesia, Fed. Sts.
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GAB
Gabon
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
8.8
..
..
..
..
..
..
..
..
..
..
GBR
United Kingdom
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GEO
Georgia
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
2.7
..
..
..
..
..
2.3
..
..
..
..
..
..
GHA
Ghana
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
25.1
..
..
..
..
20.3
..
..
..
18.8
..
..
13.9
..
14.3
..
..
..
GIB
Gibraltar
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GIN
Guinea
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
21.2
..
..
..
21.2
29.1
..
..
..
..
22.5
..
..
20.8
..
..
..
GMB
Gambia, The
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
23.2
..
..
..
15.4
..
..
..
..
..
15.8
..
..
..
..
..
GNB
Guinea-Bissau
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
21.9
..
..
..
..
..
17.4
..
..
..
..
..
GNQ
Equatorial Guinea
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
13.8
..
..
15.7
..
..
..
10.6
..
..
..
..
..
..
..
GRC
Greece
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRD
Grenada
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRL
Greenland
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GTM
Guatemala
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
21.7
..
..
..
20.3
19.6
..
17.7
..
..
..
..
..
..
..
..
..
GUM
Guam
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GUY
Guyana
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
16.1
..
..
..
10.3
..
..
11.9
..
..
..
..
..
..
10.8
..
..
..
..
HIC
High income
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HKG
Hong Kong SAR, China
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HND
Honduras
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
15.8
..
16.1
..
19.2
..
..
..
..
12.5
..
..
..
..
8.6
..
..
..
..
..
HRV
Croatia
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
0.6
0.5
0.5
..
..
..
..
..
..
..
..
..
..
0.5
0.6
1
..
..
HTI
Haiti
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
23.7
..
..
..
..
24
..
..
..
..
13.9
..
..
..
..
..
18.9
..
..
..
..
..
HUN
Hungary
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IDN
Indonesia
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
29.8
..
..
27.4
..
..
25.8
22.8
24.8
23.4
23
23.1
19.7
24.4
..
19.6
..
..
17.5
..
IMY
Isle of Man
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IND
India
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
59.5
..
56.6
50.7
..
..
..
41.1
..
44.4
..
..
..
..
..
..
43.5
..
..
..
..
..
IRL
Ireland
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IRN
Iran, Islamic Rep.
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
13.8
..
..
9.5
..
..
..
..
..
..
..
..
..
..
..
..
..
IRQ
Iraq
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
10.4
..
..
..
..
..
..
..
..
12.9
..
..
..
..
..
7.1
..
..
..
..
..
ISL
Iceland
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ISR
Israel
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ITA
Italy
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
JAM
Jamaica
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
4
7
8.9
4.5
4
5.6
3.5
3.4
2.3
3.8
4.1
2.6
..
3.1
..
5.3
2.2
..
..
..
..
JOR
Jordan
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
4.8
..
..
..
..
..
..
3.8
..
..
..
..
3.6
..
..
..
..
..
..
1.9
..
..
JPN
Japan
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KAZ
Kazakhstan
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
6.7
..
..
..
3.8
..
..
..
..
..
..
4.9
..
..
..
..
..
KEN
Kenya
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
20.1
19.8
..
..
..
17.6
..
17.5
..
..
16.5
..
..
..
..
..
16.4
..
..
KGZ
Kyrgyz Republic
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
8.2
..
..
..
..
..
..
..
..
2.7
..
..
..
..
..
KHM
Cambodia
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
42.6
..
..
..
39.5
..
..
..
..
..
28.4
..
28.8
..
..
..
KIR
Kiribati
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KNA
St. Kitts and Nevis
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KOR
Korea, Rep.
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KSV
Kosovo
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KWT
Kuwait
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
9.2
..
1.5
..
..
..
2.2
2.1
2.3
2.8
2.7
2.7
2.9
2.3
1.7
..
..
LAC
Latin America & Caribbean
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.8119945586
..
..
LAO
Lao PDR
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
39.8
35.9
..
..
..
..
..
36.4
..
..
..
..
..
31.6
..
..
..
..
..
LBN
Lebanon
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
3.5
..
..
..
..
..
..
..
4.2
..
..
..
..
..
..
..
LBR
Liberia
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
22.8
..
..
..
..
..
..
20.4
..
..
..
..
LBY
Libya
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
4.2
..
..
..
..
..
..
..
..
..
..
..
5.6
..
..
..
..
LCA
St. Lucia
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LIC
Low income
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
33.6649538485
..
..
..
..
..
..
..
..
28.3302210852
..
..
LIE
Liechtenstein
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LKA
Sri Lanka
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
22.8
..
..
..
..
..
..
21.1
..
21.6
..
..
LMC
Lower middle income
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
45.1607065101
..
..
..
..
..
..
..
..
..
33.5073169085
..
..
..
..
..
..
..
..
31.695201896
..
..
LMY
Low & middle income
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
32.6790506323
..
..
..
..
..
..
..
..
..
25.5133719344
..
..
..
..
..
..
..
..
22.5222931005
..
..
LSO
Lesotho
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
13.8
..
..
..
..
..
..
..
15
..
..
..
..
16.6
..
..
..
..
..
..
LTU
Lithuania
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LUX
Luxembourg
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LVA
Latvia
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAC
Macao SAR, China
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAF
St. Martin (French part)
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
8.1
..
..
..
..
7.7
..
..
..
..
..
..
9.9
..
..
..
..
..
..
..
MCO
Monaco
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MDA
Moldova
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
3.2
..
..
..
..
..
..
MDG
Madagascar
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
35.5
..
40.9
..
..
35.5
..
..
..
..
..
..
36.8
..
..
..
..
..
..
..
MDV
Maldives
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
32.5
39
..
..
41.5
..
..
25.7
..
..
..
..
..
..
..
..
..
..
MEX
Mexico
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
6
..
..
..
..
..
..
3.4
..
..
..
..
..
MHL
Marshall Islands
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MIC
Middle income
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
31.7664280321
..
..
..
..
..
..
..
..
..
23.6793152018
..
..
..
..
..
..
..
..
20.9225580952
..
..
MKD
Macedonia, FYR
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
1.9
..
..
..
..
1.2
1.8
..
..
..
..
..
..
MLI
Mali
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
38.2
..
..
..
..
30.1
..
..
..
..
27.9
..
..
..
..
..
MLT
Malta
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MMR
Myanmar
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
28.8
32.8
..
..
27.7
38.7
..
25
..
..
30.1
..
..
29.6
..
..
..
..
..
..
..
..
MNA
Middle East & North Africa
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
7.2750929884
..
..
..
..
..
..
..
..
6.7999145337
..
..
MNE
Montenegro
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
2.2
..
..
..
..
..
MNG
Mongolia
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
10.8
..
..
..
..
..
..
10.8
11.6
..
..
..
4.8
5.3
..
..
..
..
..
..
MNP
Northern Mariana Islands
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MOZ
Mozambique
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
23.9
..
28.1
..
..
..
..
..
21.2
..
..
..
..
..
..
..
..
MRT
Mauritania
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
43.3
..
..
..
..
..
20.3
..
..
..
..
30.4
..
..
..
..
..
23.2
16.7
..
..
..
MUS
Mauritius
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
13
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MWI
Malawi
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
24.4
..
..
26.5
..
..
26.3
..
21.5
..
..
..
..
18.4
15.5
..
..
..
..
..
MYS
Malaysia
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
22.1
23.1
22.6
20.5
19.7
17.7
..
..
..
16.7
..
..
..
..
..
..
..
..
..
..
..
..
MYT
Mayotte
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NAM
Namibia
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
21.5
..
..
..
..
..
..
..
20.3
..
..
..
..
..
..
17.5
..
..
..
..
NCL
New Caledonia
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NER
Niger
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
41
..
..
..
..
..
45
..
43.6
..
..
..
..
..
39.9
..
..
..
..
..
NGA
Nigeria
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
35.1
..
..
35.1
..
..
..
..
..
27.3
..
..
..
27.2
..
..
..
25.7
26.7
..
..
..
NIC
Nicaragua
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
9.6
..
..
..
..
10.3
..
..
7.8
..
..
..
4.3
..
..
..
..
..
..
NIU
Niue
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NLD
Netherlands
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NOR
Norway
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NPL
Nepal
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
44.1
42.9
..
38.2
..
..
43
..
..
..
..
38.8
..
..
..
..
..
NRU
Nauru
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NZL
New Zealand
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
OMN
Oman
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
21.4
..
..
..
10
..
..
..
11.3
..
..
..
..
..
..
..
..
..
..
..
..
PAK
Pakistan
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
39
..
..
35.3
34.2
..
..
..
..
..
31.3
..
..
..
..
..
..
..
..
..
..
PAN
Panama
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
6.3
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PER
Peru
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
8.8
..
..
..
5.7
..
..
..
5.2
..
..
..
..
5.4
..
..
..
..
..
..
PHL
Philippines
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
29.8
26.3
..
..
..
..
28.3
..
..
..
..
20.7
..
..
..
..
..
..
..
..
PLW
Palau
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PNG
Papua New Guinea
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
18.1
..
..
..
..
..
..
POL
Poland
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRI
Puerto Rico
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRK
Korea, Dem. Rep.
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
24.7
..
17.8
..
20.6
..
..
..
..
..
..
..
PRT
Portugal
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRY
Paraguay
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
2.8
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PYF
French Polynesia
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
QAT
Qatar
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
4.8
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ROM
Romania
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
5
..
..
..
..
..
..
..
3.4
3.7
3.8
3.5
..
..
..
..
..
..
..
..
..
RUS
Russian Federation
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
RWA
Rwanda
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
24.3
..
..
..
24.2
..
..
..
20.3
..
..
..
..
18
..
..
..
..
..
..
SAS
South Asia
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
57.239332397
..
..
..
..
..
..
..
..
..
42.9524994769
..
..
..
..
..
..
..
..
42.4832694527
..
..
SAU
Saudi Arabia
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
13.5
..
..
..
..
..
..
..
..
..
..
5.3
..
..
..
..
..
..
SDN
Sudan
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
31.8
..
..
..
..
..
..
38.4
..
..
..
..
..
31.7
..
..
..
..
..
SEN
Senegal
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
19
21.9
..
..
19.6
..
..
..
20.3
..
..
..
..
14.5
..
..
..
..
..
..
SGP
Singapore
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
3.3
..
..
..
..
..
..
..
..
..
..
..
SID
Small island developing states
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
9.6889966889
..
..
..
..
..
..
..
..
..
..
..
SLB
Solomon Islands
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
11.5
..
..
..
..
SLE
Sierra Leone
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
25.4
..
..
..
..
..
..
..
..
..
24.7
..
..
..
..
28.3
..
..
21.3
..
..
..
SLV
El Salvador
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
7.2
..
..
..
..
10.3
..
..
..
..
6.1
..
..
..
..
..
..
..
..
SMR
San Marino
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SOM
Somalia
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
22.8
..
..
..
..
..
32.8
..
..
..
..
..
SRB
Serbia
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.8
..
..
..
..
..
SSA
Sub-Saharan Africa
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
27.3210046682
..
..
..
..
..
..
..
..
24.5819653953
..
..
STP
Sao Tome and Principe
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
10.1
..
..
..
..
..
..
..
..
13.1
..
..
SUR
Suriname
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
11.4
..
..
..
..
..
7.5
..
..
..
..
..
SVK
Slovak Republic
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SVN
Slovenia
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SWE
Sweden
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SWZ
Swaziland
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
9.1
..
..
..
..
..
..
6.1
..
..
..
..
SXM
Sint Maarten (Dutch part)
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYR
Syrian Arab Republic
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
11.5
..
11.3
..
..
..
..
6
11.1
..
..
..
..
10
..
..
..
..
..
TCA
Turks and Caicos Islands
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TCD
Chad
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
34.3
..
..
29.4
..
..
..
33.9
..
..
..
..
..
..
..
TGO
Togo
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
16.7
..
23.2
..
..
..
..
..
..
..
22.3
..
..
..
..
..
THA
Thailand
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
16.3
..
15.4
..
..
..
..
..
..
..
..
..
..
7
..
..
..
..
..
TJK
Tajikistan
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
14.9
..
..
..
..
..
..
TKM
Turkmenistan
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
10.5
..
..
..
..
..
..
..
..
..
..
..
TMP
Timor-Leste
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
40.6
41.5
..
..
..
..
..
..
..
..
TON
Tonga
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TTO
Trinidad and Tobago
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
4.4
..
..
..
..
..
..
..
..
..
..
..
TUN
Tunisia
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
8.1
..
3.3
..
..
3.5
..
..
..
..
..
3.3
..
..
..
..
..
TUR
Turkey
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
8.7
..
9
..
..
7
..
..
..
..
..
3.5
..
..
..
..
..
..
..
TUV
Tuvalu
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.6
..
..
..
..
TZA
Tanzania
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
25.1
..
..
..
26.9
..
..
25.3
..
..
..
..
..
16.7
..
..
..
..
..
..
UGA
Uganda
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
21.5
..
..
..
..
..
19
..
..
..
..
16.4
..
..
..
..
..
UKR
Ukraine
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
4.1
..
0.9
..
..
..
..
..
..
..
..
..
UMC
Upper middle income
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
12.2720607042
..
..
..
..
..
..
..
..
..
7.3159501956
..
..
..
..
..
..
..
..
4.1358329059
..
..
URY
Uruguay
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
5.4
..
6
..
..
..
..
..
..
..
USA
United States
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
0.9
..
..
..
..
..
..
..
1.1
..
1.3
..
..
..
..
..
..
..
UZB
Uzbekistan
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
15.3
..
..
..
..
..
7.1
..
..
..
4.4
..
..
..
..
..
VCT
St. Vincent and the Grenadines
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VEN
Venezuela, RB
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
6.7
5.4
4.5
4
3.9
4.1
4.4
4.5
4.6
4.1
3.9
..
..
..
..
..
..
3.7
..
..
..
..
VIR
Virgin Islands (U.S.)
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VNM
Vietnam
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
36.9
40.6
..
..
..
35.8
31.1
26.7
..
23.4
24.6
23.8
22.7
20.2
22.6
20.2
..
..
..
VUT
Vanuatu
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
10.6
..
..
..
..
..
..
..
..
..
..
11.7
..
..
..
..
WBG
West Bank and Gaza
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
3.6
..
..
..
..
..
..
..
..
..
..
2.2
..
..
..
..
WLD
World
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
..
24.5458977869
..
..
..
..
..
..
..
..
21.3720383071
..
..
WSM
Samoa
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
..
..
..
..
1.7
..
..
..
..
..
..
..
..
..
..
..
..
YEM
Yemen, Rep.
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
29.6
..
..
..
34.2
47.6
..
..
..
..
..
43.1
..
..
..
..
..
..
..
..
ZAF
South Africa
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
31.5
8
..
..
..
10.1
..
..
..
..
..
..
..
..
..
..
..
..
ZAR
Congo, Dem. Rep.
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
..
30.7
..
..
..
..
..
33.6
..
..
..
..
..
28.2
..
..
..
..
ZMB
Zambia
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
21.2
..
..
..
..
19.6
..
19.6
..
..
23.3
..
..
..
..
14.9
..
..
..
..
ZWE
Zimbabwe
SH.STA.MALN.ZS
Child malnutrition, underweight (% of under age 5)
0
1
..
..
..
..
11.7
..
..
..
..
11.5
..
..
..
..
..
..
14
..
..
..
..
..
ABW
Aruba
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ADO
Andorra
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AFG
Afghanistan
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AGO
Angola
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
54.31
..
..
..
..
..
..
..
..
..
..
..
ALB
Albania
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
0.2
..
..
..
..
0.57
..
0.53
0.85
..
..
0.62
..
..
..
ARE
United Arab Emirates
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ARG
Argentina
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
0.13
..
..
..
1.57
..
1.78
..
..
..
9.92
..
6.62
..
..
..
..
0.87
..
..
ARM
Armenia
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
17.5
..
..
18.03
..
10.99
14.97
10.63
..
..
..
..
1.28
..
..
..
ASM
American Samoa
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ATG
Antigua and Barbuda
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AUS
Australia
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AUT
Austria
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
AZE
Azerbaijan
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
16.26
..
..
..
..
..
6.32
..
..
..
0.03
..
..
1.04
..
..
..
BDI
Burundi
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
84.24
..
..
..
..
..
86.43
..
..
..
..
..
..
..
81.32
..
..
..
..
..
BEL
Belgium
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BEN
Benin
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
47.33
..
..
..
..
..
..
..
..
BFA
Burkina Faso
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
71.17
..
..
..
70.03
..
..
..
..
56.54
..
..
..
..
..
..
..
..
BGD
Bangladesh
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
66.77
..
..
..
59.35
..
..
..
57.82
..
..
..
..
49.64
..
..
..
..
..
..
BGR
Bulgaria
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
0
..
0.22
2.02
..
0.32
..
..
..
2.64
..
0
..
..
..
1.04
..
..
..
..
BHR
Bahrain
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BHS
Bahamas, The
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BIH
Bosnia and Herzegovina
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
0.13
..
..
0.16
..
..
0.04
..
..
..
..
BLR
Belarus
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
0.02
..
0.36
..
2.66
0.93
..
0.33
0.46
0.3
..
0.18
0.18
..
..
0.1
..
..
..
BLZ
Belize
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
14.03
..
..
..
12.36
..
..
..
..
..
..
..
..
..
..
..
..
BMU
Bermuda
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BOL
Bolivia
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
4.03
..
..
..
..
..
18.54
..
26.27
..
..
22.81
..
..
19.62
..
13.64
..
..
..
..
BRA
Brazil
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
15.49
..
13.29
12.97
..
10.51
11.43
11.98
11.03
11.15
..
10.96
9.81
10.43
11.68
7.76
..
..
4.25
3.8
..
..
BRB
Barbados
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BRN
Brunei Darussalam
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
BTN
Bhutan
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
26.23
..
..
..
..
..
..
..
..
BWA
Botswana
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
31.23
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CAF
Central African Republic
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
83.15
..
..
..
..
..
..
..
..
..
..
62.43
..
..
..
..
62.83
..
..
..
CAN
Canada
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHE
Switzerland
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHI
Channel Islands
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CHL
Chile
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
4.37
..
..
..
2.6
..
0.43
..
0.68
..
1.03
..
..
1.1
..
..
0.19
..
..
0
..
..
CHN
China
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
60.18
..
63.8
53.69
58.9
54.05
36.37
47.3
47.49
35.63
..
..
28.36
..
..
15.92
..
..
..
..
..
..
CIV
Cote d'Ivoire
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
17.79
..
21.09
..
..
24.06
..
..
..
23.34
..
..
..
..
..
23.75
..
..
..
CMR
Cameroon
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
51.46
..
..
..
..
32.81
..
..
..
..
..
9.56
..
..
..
..
COG
Congo, Rep.
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
54.1
..
..
..
..
..
..
COK
Cook Islands
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
COL
Colombia
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
8.27
..
..
..
11.73
13.79
..
15.85
17.15
16.64
..
..
15.36
..
..
16.01
..
..
..
..
..
COM
Comoros
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
46.11
..
..
..
..
..
..
..
CPV
Cape Verde
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
21.02
..
..
..
..
..
..
..
..
..
CRI
Costa Rica
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
9.39
..
8.67
7.9
..
..
7.08
4.52
3.96
..
4.41
3.53
..
4.83
..
2.37
..
..
..
0.65
..
..
CUB
Cuba
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CUW
Curacao
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYP
Cyprus
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CZE
Czech Republic
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
0
..
..
0.13
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DEU
Germany
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DJI
Djibouti
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
4.66
..
..
..
..
..
18.84
..
..
..
..
..
..
..
..
..
DMA
Dominica
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DNK
Denmark
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
DOM
Dominican Republic
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
4.6
..
..
..
5.87
6.76
..
..
4.41
..
..
6.12
..
4.98
3.96
4.29
..
..
..
..
DZA
Algeria
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
6.79
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
EAP
East Asia & Pacific
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
54.72
..
..
50.77
..
..
36
..
..
35.51
..
..
27.59
..
..
16.78
..
..
..
..
..
..
ECA
Europe & Central Asia
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
1.75
..
..
3.84
..
..
4.45
..
..
5.13
..
..
4.61
..
..
3.67
..
..
..
..
..
..
ECU
Ecuador
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
15.93
..
..
..
14.51
..
..
..
..
11.47
..
9.78
..
4.69
..
4.43
..
..
EGY
Egypt, Arab Rep.
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
4.46
..
..
..
..
2.46
..
..
..
1.81
..
..
..
..
1.99
..
..
..
..
..
..
EMU
Euro area
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ERI
Eritrea
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ESP
Spain
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
EST
Estonia
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
0.79
..
0.25
..
..
0.05
..
0.64
0.53
0.51
0
0.46
..
..
..
..
..
..
..
ETH
Ethiopia
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
60.52
..
..
..
..
55.58
..
..
..
..
39.04
..
..
..
..
..
..
FIN
Finland
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FJI
Fiji
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FRA
France
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FRO
Faeroe Islands
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
FSM
Micronesia, Fed. Sts.
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
31.15
..
..
..
..
..
..
..
..
..
..
..
GAB
Gabon
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4.84
..
..
..
..
..
..
GBR
United Kingdom
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GEO
Georgia
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
4.71
4.58
7.85
9.43
9.59
9.98
15.73
17.65
..
14.09
..
..
15.27
..
..
..
GHA
Ghana
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
51.07
..
..
..
..
..
39.12
..
..
..
..
..
..
..
29.99
..
..
..
..
..
GIB
Gibraltar
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GIN
Guinea
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
92.55
..
..
36.77
..
..
..
..
..
..
..
..
70.13
..
..
..
43.34
..
..
..
..
GMB
Gambia, The
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
66.68
..
..
..
..
34.34
..
..
..
..
..
..
..
..
GNB
Guinea-Bissau
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
41.31
..
52.11
..
..
..
..
..
..
..
..
48.83
..
..
..
..
..
..
..
..
..
GNQ
Equatorial Guinea
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRC
Greece
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRD
Grenada
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GRL
Greenland
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GTM
Guatemala
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
16.39
..
13.79
..
16.92
..
..
..
11.7
..
..
..
..
..
GUM
Guam
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GUY
Guyana
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
6.91
..
..
..
..
8.7
..
..
..
..
..
..
..
..
..
..
..
..
..
HIC
High income
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HKG
Hong Kong SAR, China
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
HND
Honduras
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
43.5
..
33.33
..
28.28
..
..
16
..
14.44
..
..
..
18.1
..
22.19
..
23.25
..
..
..
..
HRV
Croatia
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
0.06
0.19
0.07
0.06
..
..
0.06
..
..
..
0.06
..
..
..
HTI
Haiti
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
54.9
..
..
..
..
..
..
..
..
..
..
HUN
Hungary
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
0.15
..
..
..
..
0.17
0.18
0.15
0.14
0.07
..
0.13
..
..
0.17
..
..
..
..
IDN
Indonesia
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
54.27
..
..
54.4
..
..
43.38
..
..
47.7
..
..
29.31
..
..
21.44
28.04
24.61
..
18.73
..
..
IMY
Isle of Man
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IND
India
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
49.4
..
..
..
..
..
..
..
..
..
..
41.64
..
..
..
..
..
..
IRL
Ireland
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
IRN
Iran, Islamic Rep.
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
3.85
..
..
..
1.42
..
..
..
1.26
..
..
..
..
..
..
1.45
..
..
..
..
..
..
IRQ
Iraq
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
4.02
..
..
..
..
ISL
Iceland
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ISR
Israel
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ITA
Italy
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
JAM
Jamaica
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
0.18
..
..
3.82
..
..
1.74
..
..
1.26
..
..
0.36
..
0.24
..
..
..
..
..
..
..
JOR
Jordan
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
2.77
..
..
..
..
1.51
..
..
..
..
..
1.16
..
..
0.38
..
..
..
..
..
JPN
Japan
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KAZ
Kazakhstan
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
4.21
..
..
4.98
..
..
..
..
0.51
5.15
3.12
..
..
..
0.17
..
..
..
..
KEN
Kenya
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
38.42
..
28.5
..
..
19.57
..
..
..
..
..
..
..
19.72
..
..
..
..
..
..
KGZ
Kyrgyz Republic
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
18.61
..
..
..
..
31.84
15.5
..
..
34.03
..
21.81
..
..
1.9
..
..
..
..
KHM
Cambodia
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
48.55
..
..
..
..
..
..
..
..
..
40.19
..
..
28.27
..
..
..
..
KIR
Kiribati
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KNA
St. Kitts and Nevis
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KOR
Korea, Rep.
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KSV
Kosovo
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KWT
Kuwait
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LAC
Latin America & Caribbean
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
11.33
..
..
10.16
..
..
11.03
..
..
11.02
..
..
10.7
..
..
8.12
..
..
..
..
..
..
LAO
Lao PDR
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
55.68
..
..
..
..
49.32
..
..
..
..
43.96
..
..
..
..
..
33.88
..
..
..
LBN
Lebanon
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LBR
Liberia
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
83.65
..
..
..
..
LBY
Libya
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LCA
St. Lucia
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
20.93
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LIC
Low income
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LIE
Liechtenstein
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LKA
Sri Lanka
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
15.01
..
..
..
..
16.32
..
..
..
..
..
13.95
..
..
..
..
7.04
..
..
..
..
LMC
Lower middle income
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LMY
Low & middle income
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
41.67
..
..
39.16
..
..
34.44
..
..
33.74
..
..
30.53
..
..
25.18
..
..
..
..
..
..
LSO
Lesotho
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
56.43
46.15
..
..
..
..
..
..
..
..
43.41
..
..
..
..
..
..
..
..
LTU
Lithuania
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
2.18
..
..
0
..
0.32
..
0.3
0.43
0.42
..
0.43
..
..
..
0.16
..
..
..
LUX
Luxembourg
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
LVA
Latvia
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
0
..
0
0.42
0.56
0
..
..
..
0
..
0.34
..
..
..
..
..
..
..
MAC
Macao SAR, China
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAF
St. Martin (French part)
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
2.45
..
..
..
..
..
..
..
6.76
..
6.25
..
..
..
..
..
2.5
..
..
..
..
MCO
Monaco
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MDA
Moldova
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
16.97
..
..
..
..
15.11
..
44.18
..
33.02
17.08
..
8.14
..
..
..
1.86
..
..
..
MDG
Madagascar
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
72.49
..
..
..
72.04
..
82.32
..
76.34
..
..
..
67.83
..
..
..
..
..
..
MDV
Maldives
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
28.15
..
..
..
..
..
1.48
..
..
..
..
..
..
..
MEX
Mexico
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
14.57
..
7.78
7.69
14.43
..
11.11
..
6.58
..
5.39
..
2.41
..
1.02
..
1.79
..
..
..
MHL
Marshall Islands
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MIC
Middle income
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MKD
Macedonia, FYR
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
0
..
4.28
..
0.55
0.47
..
..
..
..
0.29
..
..
..
MLI
Mali
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
86.08
..
..
..
..
..
..
61.18
..
..
..
..
51.43
..
..
..
..
..
MLT
Malta
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MMR
Myanmar
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MNA
Middle East & North Africa
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
4.44
..
..
4.14
..
..
4.11
..
..
4.22
..
..
3.56
..
..
3.64
..
..
..
..
..
..
MNE
Montenegro
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.09
..
..
..
MNG
Mongolia
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
18.79
..
..
34.15
..
..
..
15.47
..
..
22.38
..
..
..
..
..
..
MNP
Northern Mariana Islands
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MOZ
Mozambique
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
81.34
..
..
..
..
..
..
74.69
..
..
..
..
59.58
..
..
..
MRT
Mauritania
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
42.79
..
..
23.4
..
..
..
21.16
..
..
..
..
..
..
..
..
..
..
..
MUS
Mauritius
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MWI
Malawi
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
83.07
..
..
..
..
..
73.86
..
..
..
..
..
..
..
MYS
Malaysia
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
1.62
..
..
2.08
..
0.54
..
..
..
..
..
..
0.54
..
..
..
..
0
..
..
MYT
Mayotte
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NAM
Namibia
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
49.14
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NCL
New Caledonia
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NER
Niger
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
72.79
..
78.17
..
..
..
..
..
..
..
..
..
..
65.88
..
43.09
..
..
..
..
NGA
Nigeria
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
49.19
..
..
..
68.51
..
..
..
..
..
..
..
64.41
..
..
..
..
..
..
..
NIC
Nicaragua
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
32.5
..
..
..
..
22.33
..
..
19.42
..
..
..
15.81
..
..
..
..
..
..
NIU
Niue
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NLD
Netherlands
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NOR
Norway
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NPL
Nepal
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
68.44
..
..
..
..
..
..
..
55.12
..
..
..
..
..
..
..
NRU
Nauru
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NZL
New Zealand
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
OMN
Oman
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PAK
Pakistan
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
64.71
..
23.87
..
..
..
48.14
..
29.05
..
..
35.87
..
..
22.59
22.58
..
..
..
..
..
PAN
Panama
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
16.88
..
..
..
11.47
12.44
7.17
..
..
11.5
13.81
10.79
..
9.2
..
9.48
..
..
2.37
..
..
PER
Peru
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
1.29
..
..
..
5.74
..
9.34
..
..
..
..
15.13
12.55
..
..
8.18
7.94
..
..
5.9
..
..
PHL
Philippines
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
30.68
..
..
28.11
..
..
21.61
..
..
22.45
..
..
21.99
..
..
22.62
..
..
..
..
..
PLW
Palau
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PNG
Papua New Guinea
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
35.82
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
POL
Poland
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
0.03
4.19
..
..
1.4
..
0.11
0.09
0.14
0.12
0.11
..
0.05
0.1
..
..
0.07
..
..
..
PRI
Puerto Rico
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRK
Korea, Dem. Rep.
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRT
Portugal
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
PRY
Paraguay
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
5.85
..
..
..
..
12.69
..
..
19.63
14.33
..
..
17.09
..
..
9.02
..
6.8
5.08
..
..
..
PYF
French Polynesia
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
QAT
Qatar
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ROM
Romania
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
0.4
..
4.97
..
..
..
1.69
..
3.73
2.67
2.86
..
..
0.75
..
..
0.5
..
..
..
RUS
Russian Federation
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
1.5
..
..
2.81
..
..
2.28
..
0.89
0.32
..
..
0.16
..
..
0
..
..
..
RWA
Rwanda
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
76.56
..
..
..
..
76.79
..
..
..
..
..
..
SAS
South Asia
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
51.71
..
..
46.94
..
..
47.05
..
..
44.13
..
..
43.8
..
..
40.34
..
..
..
..
..
..
SAU
Saudi Arabia
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SDN
Sudan
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SEN
Senegal
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
65.81
..
..
54.11
..
..
..
..
..
..
44.19
..
..
..
33.5
..
..
..
..
..
..
SGP
Singapore
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SID
Small island developing states
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLB
Solomon Islands
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SLE
Sierra Leone
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
62.79
..
..
..
..
..
..
..
..
..
..
..
..
53.37
..
..
..
..
..
..
..
..
SLV
El Salvador
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
13.19
14.96
13.11
13.48
..
12.57
..
13.92
14.68
..
11.17
..
..
5.11
..
..
..
SMR
San Marino
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SOM
Somalia
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SRB
Serbia
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
0.14
..
..
..
SSA
Sub-Saharan Africa
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
57.55
..
..
56.87
..
..
58.77
..
..
58.36
..
..
54.95
..
..
50.91
..
..
..
..
..
..
STP
Sao Tome and Principe
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
29.69
..
..
..
..
..
..
..
..
..
..
SUR
Suriname
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
15.54
..
..
..
..
..
..
..
..
..
..
..
..
SVK
Slovak Republic
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
0
..
..
..
0.26
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SVN
Slovenia
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
0.03
..
..
..
..
0.02
..
..
..
0.05
0
0.06
..
..
..
..
..
..
..
SWE
Sweden
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SWZ
Swaziland
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
78.59
..
..
..
..
..
62.85
..
..
..
..
..
..
..
..
..
..
SXM
Sint Maarten (Dutch part)
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
0
..
..
..
..
..
..
0.25
..
..
..
..
SYR
Syrian Arab Republic
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
1.71
..
..
..
..
..
..
..
TCA
Turks and Caicos Islands
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TCD
Chad
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
61.94
..
..
..
..
..
..
..
..
TGO
Togo
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
38.68
..
..
..
..
..
THA
Thailand
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
5.45
..
..
..
1.89
..
0
1.53
1.43
..
0.7
..
0.4
..
..
..
..
..
..
..
TJK
Tajikistan
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
43.99
..
..
..
36.25
21.49
..
..
..
..
..
..
..
TKM
Turkmenistan
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
63.53
..
..
..
..
24.82
..
..
..
..
..
..
..
..
..
..
..
..
..
TMP
Timor-Leste
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
52.94
..
..
..
..
..
37.44
..
..
..
..
TON
Tonga
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TTO
Trinidad and Tobago
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
4.16
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TUN
Tunisia
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
5.87
..
..
..
..
6.48
..
..
..
..
2.55
..
..
..
..
..
..
..
..
..
..
..
TUR
Turkey
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
2.1
..
..
..
..
..
..
..
2
..
3.51
2.72
..
..
..
..
..
..
TUV
Tuvalu
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TZA
Tanzania
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
72.59
..
..
..
..
..
..
..
88.52
..
..
..
..
..
..
67.87
..
..
..
..
UGA
Uganda
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
70.01
..
..
..
64.39
..
..
60.49
..
..
57.37
..
..
51.53
..
..
..
37.73
..
..
UKR
Ukraine
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
0.03
..
..
..
1.93
..
..
2.03
..
..
0.51
..
..
0.1
..
..
0.04
..
..
..
UMC
Upper middle income
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
URY
Uruguay
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
0.69
..
..
..
0.7
..
0.76
..
0.28
0.04
..
0.04
..
0.09
0.02
..
..
0.03
..
..
USA
United States
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
UZB
Uzbekistan
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
31.88
..
..
..
42.33
46.28
..
..
..
..
..
..
..
..
VCT
St. Vincent and the Grenadines
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VEN
Venezuela, RB
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
2.62
..
9.35
15.2
9.57
14.24
..
..
..
..
18.62
..
10.84
2.97
..
..
..
..
..
VIR
Virgin Islands (U.S.)
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
VNM
Vietnam
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
63.74
..
..
..
..
49.65
..
..
..
40.05
..
24.18
..
21.31
..
13.07
..
..
..
VUT
Vanuatu
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
WBG
West Bank and Gaza
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
WLD
World
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
WSM
Samoa
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
YEM
Yemen, Rep.
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ZAF
South Africa
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
24.3
..
21.43
..
..
..
..
26.2
..
..
..
..
..
17.35
..
..
..
..
..
ZAR
Congo, Dem. Rep.
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
59.22
..
..
..
..
..
ZMB
Zambia
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ZWE
Zimbabwe
SI.POV.DDAY
Population living below $1.25 a day (% of total)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
ABW
Aruba
SP.POP.GROW
Population growth (annual %)
0
1
1.82025436064
3.93618078503
5.48404131996
6.08881843042
5.61167742051
4.53462798063
3.36155818948
2.48719948202
1.93740506465
1.84293367302
2.04692871909
2.29102084264
2.38887263132
2.38062958077
2.2162901011
1.94965234121
1.6838307184
1.46328044862
1.24053442842
1.02387077016
0.818313767723
..
ADO
Andorra
SP.POP.GROW
Population growth (annual %)
0
1
2.94597034437
4.12607590301
4.91572230623
4.9031663577
3.94457388658
2.48506646169
0.812774820513
-0.494883129704
-1.0205197317
-0.40707841384
1.00919072329
2.68058546086
3.91830561707
4.47520973803
4.18922911798
3.38980099031
2.51784956925
1.88020222814
1.44787760503
1.32329574243
1.40858263098
..
AFG
Afghanistan
SP.POP.GROW
Population growth (annual %)
0
1
2.0826243919
3.39120693015
3.39120693015
3.39120693015
3.39120693015
3.39120693015
2.91713780256
2.91713780256
2.91713780256
2.91713780256
2.91713780256
2.87703750046
2.87703750046
2.87703750046
2.87703750046
2.87703750046
2.8313
2.8313
2.8313
2.8313
2.8313
..
AGO
Angola
SP.POP.GROW
Population growth (annual %)
0
1
2.77131997918
3.03486600827
3.22698986167
3.29724264603
3.21217023654
3.03733523615
2.8312210009
2.68990281016
2.66904622001
2.80177607234
3.02376551056
3.26271036725
3.43101953683
3.49399919958
3.42647598563
3.27683340077
3.11281574368
2.98264512824
2.88292737413
2.82668443289
2.79953783594
..
ALB
Albania
SP.POP.GROW
Population growth (annual %)
0
1
1.02742670376
0.0672220105062
-0.753570062223
-1.29646769526
-1.41965424051
-1.21320159333
-0.911626779988
-0.667099043695
-0.416954976814
-0.20520957134
-0.02828508586
0.179599653691
0.402130794484
0.546214780196
0.582841072863
0.54060818846
0.470183247239
0.412818751532
0.369450442919
0.355374919826
0.361450678003
..
ARE
United Arab Emirates
SP.POP.GROW
Population growth (annual %)
0
1
5.65321406149
5.44285204581
5.31651551005
5.20495764206
5.11174768414
5.04564164343
5.2035969792
5.41374869098
5.36309362156
5.00910101099
4.60252658071
3.75105577296
3.28726810233
4.39601103958
7.28705809122
10.6555004214
13.6117648778
14.7823854011
13.8192409121
11.151406295
7.93294630889
..
ARG
Argentina
SP.POP.GROW
Population growth (annual %)
0
1
1.40453243247
1.37259321757
1.34001664937
1.30925604769
1.28160147235
1.25531720304
1.23166370892
1.20509541816
1.1683236749
1.11836940791
1.06077156909
1.00066270994
0.947783450094
0.909119147294
0.889494929759
0.883899219266
0.881997595035
0.878198237305
0.8756293937
0.872871186286
0.869608883863
..
ARM
Armenia
SP.POP.GROW
Population growth (annual %)
0
1
0.0557325922391
-0.925192230383
-1.78433577198
-2.33334188557
-2.39717356846
-2.06854069559
-1.59456531949
-1.18437647798
-0.824324323789
-0.596060460922
-0.471110157598
-0.335010215783
-0.154826054039
-0.0167602666418
0.0672201301579
0.10906304448
0.126796890027
0.141177834411
0.159460015054
0.191172573248
0.229656615026
..
ASM
American Samoa
SP.POP.GROW
Population growth (annual %)
0
1
3.14553117126
2.82877620847
2.54169725231
2.2957931724
2.11136916272
1.97327115635
1.83865879978
1.71614088996
1.64772807014
1.64043104983
1.6764470599
1.73411766941
1.78165632316
1.80478246902
1.78895064018
1.74797974708
1.70545914777
1.67993112752
1.65519550009
1.6401299289
1.63266527013
..
ATG
Antigua and Barbuda
SP.POP.GROW
Population growth (annual %)
0
1
0.0160779459163
0.883516743116
1.65622168216
2.22575834219
2.50821046819
2.57803663588
2.59986460603
2.62251322241
2.55009996326
2.39065821841
2.17528640244
1.92454655435
1.68098552124
1.49056839596
1.36370721844
1.29294051999
1.22700925918
1.15048054271
1.09481697196
1.05449131766
1.02883431076
..
AUS
Australia
SP.POP.GROW
Population growth (annual %)
0
1
1.47997792256
1.27457749766
1.21862740855
0.985609097723
1.06211587837
1.21547569054
1.32226206216
1.12966648925
1.04607171872
1.14681680363
1.20219139373
1.34835834227
1.22056378534
1.23399666343
1.15935216218
1.31978955436
1.47522794533
1.52042226074
2.00142923684
2.08614200114
1.70327397746
..
AUT
Austria
SP.POP.GROW
Population growth (annual %)
0
1
1.03612625624
1.13499912504
-0.210250504804
1.86148235925
0
0.306275076743
0.149503414969
0.0771833367475
0.142225172404
0.247104245169
0.117149350338
0.392621746319
0.505079955943
0.422590632931
0.70092882308
0.716845878136
0.594877280175
0.221477087872
0.434411323947
0.339464567856
0.232477439059
..
AZE
Azerbaijan
SP.POP.GROW
Population growth (annual %)
0
1
1.03904326157
1.55235262742
1.51507699838
1.51915259881
1.35173001135
1.15169437427
1.00984797957
0.961484174714
0.952327624864
0.880730348081
0.817577951158
0.774883014438
0.746167883003
0.757613291372
0.874957316099
1.02347190379
1.09858657442
1.13385546616
2.09985403259
2.07510883211
1.12011774914
..
BDI
Burundi
SP.POP.GROW
Population growth (annual %)
0
1
2.42681322059
2.15994093311
1.92133308459
1.66929372375
1.40305320253
1.15045389451
0.875231899581
0.669306723275
0.677503162234
0.96180718749
1.43287228753
1.94671364357
2.37805796681
2.70776430222
2.89349612457
2.96558885758
3.02810348812
3.07514398548
3.01091687185
2.82338029591
2.56145230622
..
BEL
Belgium
SP.POP.GROW
Population growth (annual %)
0
1
0.295397425053
0.371522392288
0.404000623754
0.39245930805
0.307919491588
0.209357966518
0.199075632917
0.236011501876
0.215855643189
0.225170182254
0.253931168377
0.340815343199
0.446169480176
0.416051330674
0.433140357618
0.552046104704
0.659558214981
0.734330830766
0.78997684548
0.80459957262
0.762758147178
..
BEN
Benin
SP.POP.GROW
Population growth (annual %)
0
1
3.10531038726
3.3161883251
3.47078954338
3.50509589942
3.39420821501
3.19909111098
2.97837972134
2.8131728613
2.74443199074
2.80001349126
2.93209776256
3.07486631343
3.17242934601
3.21933251195
3.20029541749
3.13724567021
3.06948159935
3.01401419201
2.95623697529
2.89906620896
2.84371432642
..
BFA
Burkina Faso
SP.POP.GROW
Population growth (annual %)
0
1
2.68882036527
2.70899532478
2.72754580119
2.74219710788
2.75256844716
2.76043460565
2.76744961141
2.77618153257
2.78824717949
2.80461230696
2.82387032263
2.84242609156
2.85993853757
2.87902593137
2.89983271393
2.92091719978
2.9407339263
2.95759949938
2.97068732616
2.97942620939
2.98442708563
..
BGD
Bangladesh
SP.POP.GROW
Population growth (annual %)
0
1
2.47625238581
2.35919934069
2.25410478995
2.17165978596
2.11998064013
2.0882109962
2.05699688297
2.01552858438
1.96867712534
1.9138012092
1.85158570318
1.79888405961
1.74440783614
1.66067046314
1.54002469297
1.40000262362
1.24803353164
1.11998815682
1.05136452958
1.06106991869
1.12402996554
..
BGR
Bulgaria
SP.POP.GROW
Population growth (annual %)
0
1
-1.80738071294
-0.991362523475
-1.07152194792
-0.799439899688
-0.437689202496
-0.415800988627
-0.525186182352
-0.527140865498
-0.664710885191
-0.595203663127
-1.81957307616
-1.87857735535
-0.519679189877
-0.586287647992
-0.536255685438
-0.531678822703
-0.529571958903
-0.51118741541
-0.475936534471
-0.503192495287
-0.552681733233
..
BHR
Bahrain
SP.POP.GROW
Population growth (annual %)
0
1
3.06877820771
2.76014544653
2.53545165085
2.40796838309
2.40655731852
2.48836179898
2.79475641515
3.09503255561
3.03139827192
2.50868970704
1.80690756959
0.674163541508
-0.0685048836518
0.790240795569
3.73013939056
7.60042786435
11.2868062555
13.1812381062
12.82037337
10.5608689133
7.59240107348
..
BHS
Bahamas, The
SP.POP.GROW
Population growth (annual %)
0
1
1.75546405455
1.82490416592
1.8671047471
1.84174820884
1.73040992322
1.56631444249
1.38541325769
1.2401760649
1.1609925003
1.16909975533
1.23827090652
1.31998705908
1.38130337657
1.42859108631
1.45232494782
1.45690066364
1.46344681728
1.46879703378
1.44903383968
1.39789990683
1.32672757161
..
BIH
Bosnia and Herzegovina
SP.POP.GROW
Population growth (annual %)
0
1
-1.35725875741
-3.56091629841
-5.59218497696
-6.67882042065
-6.03445702416
-3.82535642865
-0.796235471106
1.79712263386
3.35031797204
3.4219023165
2.52949140892
1.46929545817
0.7313183813
0.180827186574
-0.0359330126849
-0.00944149835428
0.0155237842802
-0.0675605815804
-0.128952019392
-0.171867755878
-0.200163938713
..
BLR
Belarus
SP.POP.GROW
Population growth (annual %)
0
1
0.186649681389
0.0490604894741
0.215580667634
0.224883972053
-0.11726766948
-0.323196970207
-0.334086955668
-0.424126465893
-0.475577999016
-0.338241447172
-0.299401402366
-0.347830040141
-0.454984055441
-0.515499168532
-0.502567781342
-0.498754119629
-0.441781441853
-0.313875067945
-1.03606397143
-0.994304073186
-0.173707110398
..
BLZ
Belize
SP.POP.GROW
Population growth (annual %)
0
1
3.11685608527
2.61111423559
2.54466640553
2.97051525393
2.88481525172
2.57324123426
2.50868328466
3.54019248168
3.62899991151
1.91035697881
2.71877163694
2.95821215962
3.0241539024
3.15483577349
3.19998542038
3.20361658383
3.23231991244
3.30075030144
3.34627181096
3.38808539555
3.39315632301
..
BMU
Bermuda
SP.POP.GROW
Population growth (annual %)
0
1
1.49877900197
0.823049861712
0
0
0.490597845926
0.650408755873
0.139319525983
0.139319525983
0.139319525983
0.139319525983
0.139319525983
0.529526323413
0.464297150176
0.462151394422
0.444162436548
0.394819962097
0.361805883278
0.313479623824
0.3125
0.311526479751
0.310559006211
..
BOL
Bolivia
SP.POP.GROW
Population growth (annual %)
0
1
2.2792264664
2.30664303809
2.32580801049
2.32481666551
2.2992428298
2.25651877349
2.2067478057
2.15927940924
2.11605955092
2.08033069509
2.0485392015
2.01938981039
1.98507187034
1.938515352
1.87665054511
1.80635761491
1.73420342149
1.67117035959
1.62428160138
1.59838121576
1.58766668356
..
BRA
Brazil
SP.POP.GROW
Population growth (annual %)
0
1
1.72649610454
1.65458052183
1.58789501308
1.54301420858
1.52522116131
1.52509042227
1.52941866746
1.52572694408
1.51100380074
1.48037724765
1.43731778284
1.39582704545
1.35449561513
1.29882799877
1.22587770991
1.14292330014
1.05430709712
0.974106131883
0.915284628933
0.885358145475
0.875786278801
..
BRB
Barbados
SP.POP.GROW
Population growth (annual %)
0
1
0.352449461429
0.327016442176
0.301062382352
0.286413169651
0.286737454381
0.296168093108
0.311189612317
0.321541863015
0.32126333351
0.306740069192
0.281880662584
0.254245493057
0.231282865828
0.21404610905
0.206921176816
0.205754536461
0.20643882028
0.204909041993
0.20669447114
0.209201258101
0.212789025521
..
BRN
Brunei Darussalam
SP.POP.GROW
Population growth (annual %)
0
1
2.82097473305
2.82804947121
2.82713340465
2.80043801025
2.74258658026
2.66419309464
2.58159332933
2.50480770061
2.42822437835
2.35439048539
2.28310957594
2.21121101457
2.14141832168
2.08189964332
2.03550592966
1.99710141726
1.96177757427
1.92456095938
1.88458073509
1.83951244552
1.79149585453
..
BTN
Bhutan
SP.POP.GROW
Population growth (annual %)
0
1
0.961275131314
-0.494146379018
-1.70423767914
-2.30715875151
-1.98207209052
-0.927644917346
0.3743581827
1.46710477245
2.29909380813
2.71395744532
2.82007861324
2.89640297447
3.01076109484
2.99212458251
2.83703275619
2.59568861089
2.30719378314
2.03929717348
1.83926263674
1.73880798865
1.70537022199
..
BWA
Botswana
SP.POP.GROW
Population growth (annual %)
0
1
2.99819330307
2.93676602583
2.86355628936
2.76783334787
2.64570046871
2.50475171804
2.37237397807
2.24316871289
2.08873473183
1.90392594156
1.70658832569
1.49755478688
1.31685452682
1.21071339786
1.20119737676
1.25701912345
1.3362560205
1.39144899503
1.4054562189
1.35933469958
1.27211776584
..
CAF
Central African Republic
SP.POP.GROW
Population growth (annual %)
0
1
2.28369965764
2.44268239183
2.54797482474
2.58895404686
2.54443371163
2.4412459152
2.33866071237
2.25178218104
2.14604940485
2.02131747192
1.89045722421
1.75299303639
1.63688477378
1.57626098655
1.58644429466
1.64615197452
1.71874538896
1.77991560546
1.83412470636
1.87397176569
1.90214010305
..
CAN
Canada
SP.POP.GROW
Population growth (annual %)
0
1
1.49359310901
1.36050604544
1.22741898187
1.0943319183
0.96124485473
0.828157791159
1.0771646812
1.05701539464
0.86561366321
0.827369318171
0.8829985769
1.00952166619
0.897131276678
0.996232738933
1.00203442433
0.985903766969
1.03755491209
0.996579676607
1.01196565949
1.27814325293
1.08728949779
..
CHE
Switzerland
SP.POP.GROW
Population growth (annual %)
0
1
0.973134349135
1.30256421952
1.09690306784
0.912190441927
0.803908958631
0.669756647315
0.467588495121
0.197712239472
0.30990303168
0.421053227063
0.617448363856
0.632521477592
0.756307909866
0.74212354138
0.6874254722
0.643052938581
0.627558473346
0.893690977823
1.27061807386
1.24948463127
1.04582638681
..
CHI
Channel Islands
SP.POP.GROW
Population growth (annual %)
0
1
0.71686434903
0.474833686233
0.265973637467
0.145100410151
0.148421459301
0.23983533406
0.361486001021
0.458064187381
0.519257201761
0.526948323549
0.498730067986
0.456535590849
0.431275252317
0.432818619923
0.474892923994
0.53921930561
0.615860815015
0.670506655247
0.671973533276
0.600022173284
0.479786520264
..
CHL
Chile
SP.POP.GROW
Population growth (annual %)
0
1
1.77279586664
1.81462518499
1.83759683507
1.81850240796
1.74710929902
1.6409792336
1.52448950982
1.4202021506
1.33288005014
1.27117952334
1.22843007976
1.18864138733
1.14560897339
1.10764234903
1.07452105306
1.0453159234
1.01892213169
0.994373144467
0.971258602945
0.948971206808
0.927236850492
..
CHN
China
SP.POP.GROW
Population growth (annual %)
0
1
1.46730321088
1.3644340084
1.22553622834
1.14961943083
1.13026063216
1.08650915089
1.04814151412
1.0234500242
0.959550406298
0.865851392993
0.787956592954
0.726380637839
0.669999567759
0.622860936134
0.593932815112
0.588124989557
0.558374367373
0.522271866392
0.512386931637
0.506395011443
..
..
CIV
Cote d'Ivoire
SP.POP.GROW
Population growth (annual %)
0
1
3.38793489321
3.36315514788
3.31179092635
3.22378883189
3.09008132078
2.9261067701
2.7731171787
2.63055183123
2.46374973181
2.26857562844
2.06416301685
1.85944410669
1.68924080906
1.58711501958
1.57070510846
1.61728544203
1.67849226019
1.73524120548
1.80828204502
1.89388600096
1.98418158155
..
CMR
Cameroon
SP.POP.GROW
Population growth (annual %)
0
1
2.87721925282
2.8255605866
2.77521597017
2.71134131786
2.63283991322
2.5474500797
2.45966992621
2.38213441418
2.3257650867
2.29612805987
2.28520584744
2.27935923751
2.27049953613
2.26140757135
2.2499704827
2.23704487319
2.22422654659
2.21300775152
2.20310294538
2.19470046232
2.18640734695
..
COG
Congo, Rep.
SP.POP.GROW
Population growth (annual %)
0
1
2.7098753465
2.68602349415
2.66425951807
2.66530225865
2.69408569825
2.73617712195
2.79341482815
2.83209879047
2.81347372724
2.72404260599
2.59530880806
2.44320679453
2.32523729522
2.29186234802
2.36671617299
2.50515254164
2.66386847613
2.77361443146
2.79462311581
2.70311643439
2.54123181312
..
COK
Cook Islands
SP.POP.GROW
Population growth (annual %)
0
1
0.193214812624
0.656407970285
1.00452596985
1.0884763433
0.808651984755
0.300883730372
-0.33376224456
-0.831022090758
-0.977405459743
-0.621380788509
0.123463734186
0.987813931232
1.67414009722
2.06471500706
2.02294549403
1.69975763686
1.31590951864
1.02227610912
0.792381277292
0.682018822877
0.652756743646
..
COL
Colombia
SP.POP.GROW
Population growth (annual %)
0
1
1.96414991681
1.92882415968
1.89434682357
1.86354624831
1.83739748597
1.81419561172
1.79240961088
1.76918372331
1.74262070268
1.71151716504
1.67758386196
1.64228053111
1.608704887
1.57901506823
1.55451644801
1.53315561386
1.51260423121
1.48962536102
1.46257940295
1.43012197877
1.3938339205
..
COM
Comoros
SP.POP.GROW
Population growth (annual %)
0
1
2.42341403907
2.4142355606
2.40934645635
2.4187445635
2.4416687303
2.4743120857
2.51144448468
2.54858699543
2.58159046225
2.6092022305
2.63089404838
2.64918943294
2.66531200442
2.67821246978
2.68891078917
2.69520195493
2.69821582797
2.69483533491
2.67993904685
2.65302846184
2.6165830622
..
CPV
Cape Verde
SP.POP.GROW
Population growth (annual %)
0
1
1.59786610935
2.12846545087
2.51879686801
2.72967822071
2.70597268121
2.52434091492
2.30766379628
2.13627948333
1.99264232507
1.8989824961
1.83729415656
1.78123199686
1.70280200381
1.59758692418
1.4572745387
1.29813766964
1.13211533508
0.989511761542
0.896136847002
0.868245439968
0.886581615772
..
CRI
Costa Rica
SP.POP.GROW
Population growth (annual %)
0
1
2.54340672426
2.48371844648
2.4293208542
2.40697462731
2.42497203179
2.46371357351
2.51014707374
2.53069634021
2.49889810284
2.40172704653
2.26250328416
2.11481417899
1.98496699733
1.87400971821
1.79058178515
1.72755249009
1.66624632512
1.60258287276
1.54918030513
1.50703275777
1.47244558563
..
CUB
Cuba
SP.POP.GROW
Population growth (annual %)
0
1
0.918338204928
0.789593504591
0.682536551301
0.591122345552
0.528281155966
0.486955616001
0.443121986268
0.392717573794
0.355426267497
0.334419461226
0.324101616444
0.322372376785
0.316066125918
0.291242003436
0.240083893786
0.171388883857
0.0966457123795
0.0316235902546
-0.0158149828388
-0.0379679423571
-0.0412866319815
..
CUW
Curacao
SP.POP.GROW
Population growth (annual %)
0
1
..
..
..
..
..
..
..
..
..
-3.55343708917
-4.07552245335
-3.89070763172
-0.443791639515
1.41294742241
1.21185043866
2.1602329177
2.22497503889
1.69548757223
1.02305957765
0.489319637162
0.489319637162
..
CYM
Cayman Islands
SP.POP.GROW
Population growth (annual %)
0
1
5.10346959894
4.9250746046
4.80537582668
4.64155169672
4.43245320608
4.21990400411
3.89954921542
3.64294425563
3.72762230344
4.21463133867
4.87105554463
5.57849952854
5.97315105523
5.80802821839
5.01287558625
3.89161754629
2.72521111108
1.78432832285
1.12027650612
0.842807848628
0.833985529051
..
CYP
Cyprus
SP.POP.GROW
Population growth (annual %)
0
1
2.0508531937
2.13267155449
2.2121041217
2.24155992564
2.21582761953
2.1528289606
2.06555497412
1.98199834515
1.92365688226
1.90290995284
1.90395509945
1.9097839118
1.89481478653
1.84635438653
1.75501291889
1.63607064343
1.5100001732
1.39774046407
1.30598278298
1.24312203894
1.200860328
..
CZE
Czech Republic
SP.POP.GROW
Population growth (annual %)
0
1
0.0096501803394
-0.522446975814
0.0872642653141
0.125914096539
0.0483863142403
-0.0483863142403
-0.154993724628
-0.105727217265
-0.0893247248035
-0.11565806594
-0.0943749615234
-0.481039863352
-0.225214279267
0.00980247941669
0.0482552440698
0.266182080535
0.324858239588
0.631221550381
0.868815999361
0.601029549304
0.360856249691
..
DEU
Germany
SP.POP.GROW
Population growth (annual %)
0
1
0.861022428467
0.728771986659
0.75947520958
0.657685602752
0.442609133705
0.154451534214
0.330166462738
0.193922589285
-0.0292472472934
0.0487406610058
0.149728863238
0.149505011029
0.212325883368
0.0399881227481
-0.0299913457148
-0.0567766954994
-0.112770821087
-0.1337185726
-0.190142844696
-0.253383410163
-0.244465076887
..
DJI
Djibouti
SP.POP.GROW
Population growth (annual %)
0
1
5.00089613415
3.38356878813
2.17613201906
1.51876378679
1.59197545355
2.14856993381
2.8164581318
3.25493228221
3.42324495006
3.23238279143
2.82068685659
2.38601861159
2.07006329688
1.85865746223
1.79211573019
1.82627313383
1.87683697715
1.89659561524
1.90945628149
1.90475775328
1.88850948159
..
DMA
Dominica
SP.POP.GROW
Population growth (annual %)
0
1
-0.441737842517
-0.118503484327
0.169247734401
0.308140637646
0.237141504935
0.0196196589612
-0.252546644877
-0.475956682493
-0.604539412389
-0.592501484098
-0.473958288344
-0.323464366736
-0.21045356169
-0.145847348255
-0.163428268964
-0.234762302413
-0.326975768156
-0.387942207777
-0.40265660986
-0.348322307484
-0.243221252132
..
DNK
Denmark
SP.POP.GROW
Population growth (annual %)
0
1
0.136279580291
0.272003259145
0.309957609456
0.366831163377
0.307870148704
0.44090934168
0.648238644705
0.421383803425
0.317046088733
0.341652518393
0.342782844727
0.332337582138
0.35803373319
0.240386807102
0.25993220193
0.274032863578
0.392399093787
0.443466054321
0.587547590259
0.535079062079
0.380294215559
..
DOM
Dominican Republic
SP.POP.GROW
Population growth (annual %)
0
1
2.02442185232
1.99752184873
1.96685765597
1.92451444511
1.86758544122
1.80203497982
1.73391523832
1.67253828476
1.62349996139
1.59075320997
1.5695568188
1.55087149058
1.52961278364
1.50805735082
1.48487478562
1.46028805752
1.43624841632
1.41225075531
1.38559990328
1.35553771752
1.32294428228
..
DZA
Algeria
SP.POP.GROW
Population growth (annual %)
0
1
2.5261152239
2.46501327286
2.39076573873
2.27800000069
2.1165121244
1.9289648124
1.7354236652
1.57185311699
1.462353891
1.42313514307
1.43428701551
1.45781468932
1.47264465628
1.48881825812
1.50085130093
1.50850618483
1.519347086
1.52948604077
1.52611669123
1.50522754568
1.47134704065
..
EAP
East Asia & Pacific
SP.POP.GROW
Population growth (annual %)
0
1
1.60117491943
1.50460955288
1.38398725309
1.31315893013
1.28816644063
1.2499092191
1.21646659715
1.191653538
1.13889627358
1.06336311904
0.992765208142
0.938053143511
0.886035433532
0.843784383012
0.813832515712
0.796021415582
0.759706805992
0.721663679563
0.705224907648
0.696127406583
0.702765847519
..
ECA
Europe & Central Asia
SP.POP.GROW
Population growth (annual %)
0
1
0.653672842609
0.549240734555
0.342137703218
0.283501617955
0.136526185239
0.0711674580073
0.0477300275382
0.0592183057926
0.0313823120257
0.00537961668789
0.14711817544
0.0178766428331
-0.0395934269291
0.0379182249077
0.0581369183839
0.105321230814
0.142363449188
0.231337110983
0.330704964158
0.379512456055
0.401207463569
..
ECU
Ecuador
SP.POP.GROW
Population growth (annual %)
0
1
2.30177254497
2.24457766795
2.18478376759
2.10263427186
1.99280516884
1.86952488042
1.73779155962
1.6262911526
1.56389972682
1.56468903235
1.60729630356
1.66298975976
1.70133384932
1.71290162986
1.68632596248
1.633456906
1.57621775895
1.52798434646
1.48369080295
1.44662305728
1.41456680835
..
EGY
Egypt, Arab Rep.
SP.POP.GROW
Population growth (annual %)
0
1
2.09082699797
1.93238229197
1.79898004917
1.70733447829
1.67147563215
1.67634053772
1.68825169034
1.69512269895
1.71361366488
1.74242385291
1.77668156477
1.81584778604
1.85044162855
1.86886551745
1.86583352745
1.84736094252
1.8231429661
1.80074208838
1.77987780104
1.76277583772
1.74699513739
..
EMU
Euro area
SP.POP.GROW
Population growth (annual %)
0
1
0.447234971504
0.474192441207
0.448104399646
0.436293542334
0.334231529342
0.248245556729
0.279616870588
0.263259947096
0.21524254264
0.245041230242
0.387931641179
0.452568527359
0.565974091383
0.618306320609
0.643420491491
0.602965961601
0.54737820598
0.562653883278
0.522438700246
0.372691162461
0.279318192811
..
ERI
Eritrea
SP.POP.GROW
Population growth (annual %)
0
1
1.45565865451
0.69840827529
0.112782752456
-0.109292719252
0.173467719515
0.826439876939
1.56015369892
2.18678336591
2.75342558844
3.20402301366
3.5436712641
3.87471065579
4.14882900033
4.22570586296
4.08483552873
3.81242235791
3.49755623491
3.23445315111
3.05705617529
2.99612705896
3.00801084176
..
ESP
Spain
SP.POP.GROW
Population growth (annual %)
0
1
0.175248732314
0.265346585642
0.330516538025
0.311382150239
0.269333033933
0.234254019919
0.231421535024
0.264070124867
0.350408262258
0.516476129815
0.843930997777
1.13565240716
1.45749862784
1.67146932211
1.63589615398
1.65489035912
1.64157112974
1.71362290409
1.49673504991
0.771622834888
0.376084113434
..
EST
Estonia
SP.POP.GROW
Population growth (annual %)
0
1
0.063755182268
-0.51118322176
-1.81000416436
-2.57695131791
-2.09679646726
-1.79315149411
-1.47216118254
-1.13637586503
-0.990604611947
-0.764032802699
-0.447094155316
-0.396187946973
-0.400809489952
-0.377622965919
-0.334623869002
-0.215095553523
-0.189616229064
-0.139653436441
-0.0743378873735
-0.0301386154781
-0.0466432364384
..
ETH
Ethiopia
SP.POP.GROW
Population growth (annual %)
0
1
3.33567829835
3.38799479617
3.40435462076
3.36795287819
3.2707265697
3.13610463467
2.99147194448
2.86354731254
2.75981715025
2.68914169089
2.64076300226
2.59769702511
2.54800633131
2.49374192267
2.43205108935
2.36707735118
2.30220934923
2.24459668992
2.19903188079
2.16815664406
2.14680971323
..
FIN
Finland
SP.POP.GROW
Population growth (annual %)
0
1
0.482509952726
0.560001428134
0.55688286782
0.474872251408
0.452979574135
0.372659032843
0.33225866445
0.289045257763
0.255809140015
0.241251285054
0.207916578415
0.227663360577
0.242602074134
0.238127679516
0.29015008395
0.343464745978
0.383777136305
0.425429832101
0.465549284508
0.478246393483
0.462565862186
..
FJI
Fiji
SP.POP.GROW
Population growth (annual %)
0
1
0.548737123356
0.939027924145
1.23462530183
1.41194320709
1.41305140795
1.28795793018
1.16153690862
1.0713224772
0.943634068595
0.776559439509
0.591978351182
0.376514894864
0.190789676761
0.122790656161
0.21546767431
0.420430003059
0.665579014418
0.868272581975
0.99874677519
1.0226660998
0.969098262044
..
FRA
France
SP.POP.GROW
Population growth (annual %)
0
1
0.499675624501
0.46592076876
0.437301724867
0.415742510477
0.40447860386
0.402722971578
0.398801665119
0.398320896369
0.419128120992
0.317002955526
0.677696633365
0.720719984628
0.72023322835
0.701740975636
0.729300031905
0.746729795951
0.689818961865
0.611061497352
0.565626950916
0.550778040088
0.515981854513
..
FRO
Faeroe Islands
SP.POP.GROW
Population growth (annual %)
0
1
-0.212147070125
-1.19088057214
-2.03134503709
-2.41102631876
-2.09279905538
-1.2319451847
-0.154202035182
0.757214329124
1.38928957507
1.59237608995
1.4821937848
1.3355102352
1.25615250581
1.11846615879
0.928854424726
0.713300935426
0.448658397873
0.199903206286
0.0514567414538
0.05760013325
0.170548570615
..
FSM
Micronesia, Fed. Sts.
SP.POP.GROW
Population growth (annual %)
0
1
2.32544193043
2.49156777009
2.56433279141
2.40486688778
1.95135124674
1.32172506789
0.623790585346
0.0398422991497
-0.317325088128
-0.342577670942
-0.125035007425
0.174446038278
0.407408315427
0.552643582305
0.553278496426
0.451579690662
0.337579241064
0.27560379641
0.24947962445
0.279583792547
0.349959769092
..
GAB
Gabon
SP.POP.GROW
Population growth (annual %)
0
1
3.20513791817
3.2392735123
3.24572808665
3.2007576432
3.09522707759
2.95117062032
2.80112730702
2.6649937659
2.53801527862
2.425984814
2.32692052986
2.23276683454
2.14340602939
2.06693206875
2.00536090034
1.95652489539
1.91217930925
1.8750356566
1.85624619225
1.85836190331
1.87395463665
..
GBR
United Kingdom
SP.POP.GROW
Population growth (annual %)
0
1
0.298928802068
0.309247932319
0.270432918784
0.239743702584
0.254586486859
0.264547416859
0.254626384215
0.257555038048
0.291404370665
0.333405882184
0.357300887422
0.365161650794
0.367883666177
0.404485062586
0.505061080545
0.593614117852
0.61467696841
0.643216009605
0.664933704714
0.662446025899
0.672780938833
..
GEO
Georgia
SP.POP.GROW
Population growth (annual %)
0
1
-0.027068389492
0.70347564932
0.774511050286
0.768558450631
-1.01303474624
-2.65970907472
-2.52203183425
-1.84751147321
-0.982389344112
-0.77854483944
-0.771072946016
-0.724616161382
-0.67250979724
-0.647027896537
-0.245166188116
0.988544256132
0.840264328248
-0.218519617137
-0.10715793139
0.616296225509
0.94770328871
..
GHA
Ghana
SP.POP.GROW
Population growth (annual %)
0
1
2.74666435969
2.81740972382
2.84882108709
2.83164953065
2.75184595363
2.63516210433
2.51164436551
2.41501056525
2.35708677584
2.34930110758
2.37498044835
2.40631203011
2.42596513119
2.43858789578
2.43963282969
2.43182442442
2.4230613191
2.41460606879
2.40035037223
2.37956828806
2.3537603642
..
GIB
Gibraltar
SP.POP.GROW
Population growth (annual %)
0
1
0.272454308535
0.338598675158
0.411469822287
0.417151794543
0.323660586344
0.183432438256
-0.0146622191531
-0.176114519929
-0.158033072821
0.0955847284275
0.491185328288
0.97157033016
1.34524724906
1.49296200223
1.33911061775
0.974639636117
0.555633203399
0.201595749344
-0.0307256373719
-0.102487027282
-0.0444436854549
..
GIN
Guinea
SP.POP.GROW
Population growth (annual %)
0
1
4.49111983186
5.47998906457
6.09962731254
6.07611092048
5.35544402689
4.2622909378
3.12953090684
2.23497051928
1.62161467138
1.38920738995
1.42843157047
1.52056602148
1.55293704367
1.60264980106
1.64881785459
1.69686699122
1.75951014948
1.8484814276
1.95953721562
2.09224587792
2.23253109963
..
GMB
Gambia, The
SP.POP.GROW
Population growth (annual %)
0
1
4.03562941458
3.56863591873
3.19398157486
2.93348394675
2.82047465767
2.81034200204
2.81262808912
2.79631050366
2.80533370765
2.83595371995
2.87823691606
2.93173652835
2.97701418715
2.99128948498
2.96549798711
2.91400569062
2.85708715309
2.81021329704
2.77325281023
2.75057645143
2.73672496719
..
GNB
Guinea-Bissau
SP.POP.GROW
Population growth (annual %)
0
1
2.00432397002
2.01902944717
2.04255599573
2.04979494148
2.03654858635
2.00949592856
1.98097359051
1.95915134227
1.94287146283
1.93469015154
1.93311810816
1.93180251424
1.93172178862
1.94060509511
1.95961322777
1.98499489076
2.01202001393
2.03568919432
2.05473067637
2.06707640373
2.07412788077
..
GNQ
Equatorial Guinea
SP.POP.GROW
Population growth (annual %)
0
1
3.14120136153
3.32713945624
3.38469627734
3.41416170947
3.39212906022
3.33666017791
3.28840717884
3.26225655412
3.23872038275
3.21829315037
3.1981061728
3.18018431609
3.15775982247
3.11984878166
3.06360802629
2.99721900955
2.92485641182
2.86052646808
2.81600494
2.79717695185
2.79218669637
..
GRC
Greece
SP.POP.GROW
Population growth (annual %)
0
1
0.701202769572
0.9695976627
1.06641818258
0.921488512706
0.827827121653
0.764623491067
0.702809389307
0.632972379651
0.536740103491
0.442030344665
0.317008177892
0.297229219144
0.343380563382
0.327643560211
0.346530836255
0.381946798653
0.399912003303
0.396603695973
0.395286137786
0.405562687869
0.321107330709
..
GRD
Grenada
SP.POP.GROW
Population growth (annual %)
0
1
-0.606266592585
0.17448386297
0.77010526297
1.12531585563
1.11480714099
0.852238008269
0.541645173482
0.329127020806
0.177990534388
0.133285304543
0.16561844516
0.205655093565
0.218965647053
0.236102172387
0.254092489505
0.271944570072
0.294502353585
0.320728939455
0.342844785848
0.359927248346
0.373950499057
..
GRL
Greenland
SP.POP.GROW
Population growth (annual %)
0
1
0.541029238682
-0.180018039054
-0.361011199628
-0.180995513102
0.54200671273
0.539084829468
0.17905106608
0.178731046131
0.178412168091
0
0.178094425861
0.266903914591
0.443655723159
0.291519434629
0.258962388796
0.0404132696092
-0.282778607184
-0.385739951386
-0.401379188401
-0.00887658003125
0.3746249312
..
GTM
Guatemala
SP.POP.GROW
Population growth (annual %)
0
1
2.28637933298
2.30379611151
2.31704969068
2.32103988738
2.3120409413
2.29652054682
2.27778888903
2.26839748751
2.27920992737
2.31521225255
2.36634417366
2.42244085697
2.46839751727
2.49584829348
2.49928326492
2.48711983637
2.46788918316
2.45478051339
2.45489466179
2.47286588143
2.50029983069
..
GUM
Guam
SP.POP.GROW
Population growth (annual %)
0
1
2.08027239823
1.92586711929
1.78807590771
1.6576364713
1.53656866636
1.43022181844
1.31178512222
1.21176843322
1.18931695126
1.2642742694
1.40201041189
1.56617418099
1.69623555537
1.74951047588
1.70014337031
1.58277416774
1.44824654476
1.34164715222
1.26351746306
1.22805829344
1.22427795157
..
GUY
Guyana
SP.POP.GROW
Population growth (annual %)
0
1
-0.442647297819
-0.20478072635
0.0230812342989
0.178664674416
0.22639267631
0.196214512833
0.138781286667
0.103240286863
0.0979317309253
0.14200175579
0.219173006976
0.303181593527
0.364343140418
0.39406759602
0.37961394522
0.334501895144
0.279146630111
0.233183878366
0.201112713509
0.190749570496
0.196350857044
..
HIC
High income
SP.POP.GROW
Population growth (annual %)
0
1
0.783316186248
0.797062962149
0.605206982671
0.790382224221
0.720734213119
0.872751027002
0.663773741128
0.662944223179
0.625144158162
0.61538109123
0.641350108569
0.669700689836
0.694481444583
0.688601974469
0.721758220641
0.723621544615
0.754957409532
0.808893991473
0.789625828373
0.709876231899
0.58437470524
..
HKG
Hong Kong SAR, China
SP.POP.GROW
Population growth (annual %)
0
1
0.321315033222
0.829228336446
0.839650031458
1.71777073417
2.25203043112
1.9801327773
4.43860779481
0.832512854813
0.834808807339
0.955125814332
0.881594075854
0.736962668138
0.442846827282
-0.197404126472
0.779918562307
0.436871406106
0.642270482876
0.99833956947
0.745134205125
0.371923126022
0.911067667006
..
HND
Honduras
SP.POP.GROW
Population growth (annual %)
0
1
2.82524635106
2.77407591081
2.71865191133
2.64444957084
2.54829071663
2.4404000176
2.33142008763
2.23540118364
2.15967639979
2.1099959005
2.07975849258
2.05525186207
2.03133786622
2.01448533007
2.00405659599
1.99847046009
1.9936744437
1.98996619749
1.99048708328
1.99538027011
2.00134955164
..
HRV
Croatia
SP.POP.GROW
Population growth (annual %)
0
1
0.272337010881
-5.81433893196
-0.890874432691
3.73259552572
0.215285322524
0.407769638954
-3.82017422257
1.72075721694
-1.56511516218
1.17063733308
-2.85097260127
0.315813481528
0
0
-0.0225250592235
0.0675599620338
-0.0450349028102
-0.0901306956013
-0.0450958294001
-0.111067520922
-0.111067520922
..
HTI
Haiti
SP.POP.GROW
Population growth (annual %)
0
1
2.09165382626
2.06492679368
2.03255259681
2.00431608463
1.98112749298
1.95976612063
1.94021324482
1.91509614529
1.87584787004
1.81889703362
1.75041365215
1.68103358327
1.61699828802
1.55629942195
1.50084567377
1.45076633275
1.40097066813
1.35500590031
1.32212234743
1.30517424922
1.29933670337
..
HUN
Hungary
SP.POP.GROW
Population growth (annual %)
0
1
-0.233706128943
-0.00566818303153
-0.0391365807986
-0.114045242014
-0.136873440847
-0.139219994816
-0.171771597789
-0.201458923622
-0.232679322183
-0.28326059261
-0.259764891896
-0.229379168833
-0.284751359227
-0.286433250053
-0.221939597838
-0.198878843237
-0.155716484652
-0.154915158061
-0.175097367475
-0.154908813951
-0.139251724571
..
IDN
Indonesia
SP.POP.GROW
Population growth (annual %)
0
1
1.72244074455
1.67076500086
1.61957538245
1.56925519688
1.51935791086
1.47109270282
1.42248011674
1.37801724282
1.34455911707
1.32466440891
1.3135067937
1.3073254744
1.29720215353
1.2760842172
1.23971673728
1.19345788416
1.14404036366
1.10005754357
1.06519590631
1.04299003788
1.0293478597
..
IMY
Isle of Man
SP.POP.GROW
Population growth (annual %)
0
1
1.50169753747
0.920191096244
0.480783674172
0.250719724582
0.335177119557
0.637914148058
0.999381125198
1.25938696006
1.39610342793
1.35580007593
1.19324248888
1.00272896132
0.858671839894
0.75627723817
0.72038226226
0.732732695412
0.752220344769
0.747835698903
0.730060113409
0.682280479986
0.61854494632
..
IND
India
SP.POP.GROW
Population growth (annual %)
0
1
2.01903353888
1.98311321974
1.86257314481
1.85264676569
1.80365942222
1.78404051589
1.76287306912
1.74170562236
1.7205381756
1.69937072883
1.67820328207
1.61597492096
1.55374655985
1.49151819874
1.42928983763
1.36706147652
1.38163945976
1.34038183992
1.34038183992
1.34038183992
1.34038183992
..
IRL
Ireland
SP.POP.GROW
Population growth (annual %)
0
1
-0.105483731546
0.56602579463
0.661505169139
0.39930313175
0.2074573083
1.06816590584
0.79441017213
1.00785977221
1.04853584659
1.13367752167
1.34196729188
1.60489375782
1.69942758383
1.64229070229
1.84512980164
2.20261005311
2.38548030435
2.2418706399
1.56567064065
0.748690132838
0.503067376314
..
IRN
Iran, Islamic Rep.
SP.POP.GROW
Population growth (annual %)
0
1
2.17803436907
1.6078663972
1.6078663972
1.6078663972
1.6078663972
1.6078663972
1.55741244697
1.8572348626
1.88240213606
1.79780835205
1.64176941938
1.47543987877
1.34701538797
1.25501237717
1.21446915019
1.21001585048
1.21169496599
1.20185437403
1.18810825798
1.16604190051
1.13722600943
..
IRQ
Iraq
SP.POP.GROW
Population growth (annual %)
0
1
3.01030149369
2.81599558691
2.81599558691
2.81599558691
2.81599558691
2.81599558691
3.06771797051
3.06771797051
3.06771797051
3.06771797051
3.06771797051
2.56682231274
2.56682231274
2.56682231274
2.56682231274
2.56682231274
3.0236
3.0236
3.0236
3.0236
3.0236
..
ISL
Iceland
SP.POP.GROW
Population growth (annual %)
0
1
0.827590930386
1.24806612236
1.19438907835
1.02877645781
0.830506849848
0.749067172916
0.743497848752
0.738010729762
0.732604009207
1.26928267984
1.25337361473
1.41345109349
1.04712998673
0.526735310639
0.877936157687
1.5828919778
2.34742243028
2.53008548941
1.8595721706
0.341241978971
-0.346282841464
..
ISR
Israel
SP.POP.GROW
Population growth (annual %)
0
1
3.09460281389
6.01700840351
3.45546668067
2.65809161142
2.58926268535
2.66828678823
2.61650577741
2.49839488563
2.28687854611
2.5464337259
2.64233174631
2.35711715072
2.01405839405
1.80551975888
1.76762364155
1.76289766113
1.76780587358
1.77610086918
1.77657910597
2.39020733801
1.83986871215
..
ITA
Italy
SP.POP.GROW
Population growth (annual %)
0
1
0.0828989950272
0.0698816050801
0.0686883977963
0.0617792441395
0.0209364395095
0.00255077919721
0.029373250678
0.0545023335215
0.0301393397548
0.0186238552797
0.0475102570934
0.0563507383077
0.309625166645
0.779442793705
0.985757241929
0.73941304845
0.569041311563
0.733272008187
0.766549688363
0.600742268178
0.48198984925
..
JAM
Jamaica
SP.POP.GROW
Population growth (annual %)
0
1
0.633803420645
0.668970226435
0.704137032225
0.739303838015
0.774470643804
0.809637449594
1.19936838269
0.957393761741
0.892249074484
0.682484619097
0.584824600956
0.592975993465
0.486631138321
0.31296878714
0.471143392132
0.465161092121
0.47802857567
0.475754329714
0.425135825856
0.312105477398
0.248244815234
..
JOR
Jordan
SP.POP.GROW
Population growth (annual %)
0
1
3.66247142737
11.1806565039
5.16740366874
4.52838737809
3.88937108745
3.2503547968
3.05292050348
3.05292050348
3.05391763194
1.79140155215
2.46900070701
2.47053223814
2.42089066493
2.4702295054
2.41067728858
2.27080728829
2.29265190878
2.23243488489
2.1836835902
2.18774748386
2.20707838607
..
JPN
Japan
SP.POP.GROW
Population growth (annual %)
0
1
0.341370596619
0.310355945839
0.248237080929
0.246819412581
0.340685788663
0.381789601137
0.256369567168
0.262058819351
0.252672401073
0.189678394022
0.173556370482
0.219668695799
0.232527187106
0.21398094878
0.0336622582725
0.00939209655766
-0.0133057304847
0.0115447795711
-0.0522243322061
-0.114456532576
-0.0843101632741
..
KAZ
Kazakhstan
SP.POP.GROW
Population growth (annual %)
0
1
0.604342663044
0.625030618421
-0.0693522016914
-0.663278466645
-1.45085403383
-1.75225620523
-1.51455883124
-1.57996556628
-1.72609375196
-0.952511041848
-0.300548838414
-0.170069526323
0.0041255453945
0.336408913793
0.694909484311
0.888898042702
1.05767130867
1.14385123349
1.21835922956
1.58869766275
2.4259084469
..
KEN
Kenya
SP.POP.GROW
Population growth (annual %)
0
1
3.39084976135
3.32585127865
3.25589763844
3.16051260876
3.03494915626
2.89590485637
2.75426955811
2.6365922064
2.56362862015
2.54588975777
2.56527405104
2.59760844861
2.62053437636
2.62983950917
2.61847694091
2.59525983429
2.56785025208
2.55139207745
2.55521807393
2.58433513149
2.62721132854
..
KGZ
Kyrgyz Republic
SP.POP.GROW
Population growth (annual %)
0
1
1.89438507739
1.61474690374
1.12820575068
-0.0660138653085
-0.066057472401
1.09312252895
1.45132266575
1.44960969455
1.51231615742
1.39937697995
1.03682970569
0.800401432162
0.772018309685
0.905127892335
1.06999045388
0.990561133205
0.940445802798
0.819039958226
0.819965213178
0.819965213179
0.819965213178
..
KHM
Cambodia
SP.POP.GROW
Population growth (annual %)
0
1
3.50204589787
3.46730950114
3.36316761513
3.21535625014
3.01714726457
2.78861326399
2.56001107076
2.34877957053
2.14991300381
1.96851185471
1.80404329859
1.64728654345
1.50235153299
1.38350253789
1.29522861264
1.2324339886
1.17820216011
1.13276034236
1.11149271548
1.11696085818
1.1406518529
..
KIR
Kiribati
SP.POP.GROW
Population growth (annual %)
0
1
1.39263678355
1.8178808015
1.49230178363
1.28973625362
1.26937609077
1.38170554988
1.51982318914
1.62134267972
1.70653030077
1.75911729544
1.78466792511
1.81651609614
1.84953476274
1.85199952326
1.81058000613
1.74359904995
1.66668727995
1.60044142141
1.55451388207
1.53683913353
1.53768979606
..
KNA
St. Kitts and Nevis
SP.POP.GROW
Population growth (annual %)
0
1
-0.341154627359
-0.536833976397
-0.515343114102
-0.493852251807
-0.472361389513
-0.450870527218
-0.317576912812
-0.318588677753
-1.50862265198
5.17168279091
4.68275878281
4.03829332371
1.2906741261
0
3.84917285718
1.28946892896
1.28911507982
1.28460067429
1.27417854705
1.26394433547
1.24816797959
..
KOR
Korea, Rep.
SP.POP.GROW
Population growth (annual %)
0
1
1.14724011622
0.926437776565
0.908772977372
0.896049041842
0.897089928583
1.42945725732
0.953460179447
0.937927054184
0.722024797349
0.710413734371
0.835251851876
0.739684398334
0.558019536199
0.496434865018
0.375399302148
0.205870499112
0.329756092869
0.328672275038
0.311138377787
0.287610363224
0.262236121678
..
KSV
Kosovo
SP.POP.GROW
Population growth (annual %)
0
1
1.8975901459
1.91495213329
1.77550356026
1.69365095309
1.61538091125
1.589700641
1.4677367202
1.30279285329
-5.92473348536
-10.9551494211
-3.58212764518
1.22772661672
0.925397002957
0.631278997438
0.513553197162
0.56753841326
0.564335583495
0.449186605909
0.558660670864
0.55555698446
0.552487593197
..
KWT
Kuwait
SP.POP.GROW
Population growth (annual %)
0
1
0.19835848965
-2.75265024996
..
..
..
..
0.012837715629
3.0660425477
4.93235057428
5.16692245289
4.40139149752
3.48366802749
2.95299885012
2.71522055294
2.90544363897
3.34729877107
3.78889876529
4.01686837607
4.02494678436
3.77106642066
3.36073603052
..
LAC
Latin America & Caribbean
SP.POP.GROW
Population growth (annual %)
0
1
1.86428402963
1.81302823769
1.76966489777
1.72948808742
1.69654165779
1.66786987582
1.6410692534
1.61277033727
1.57560227292
1.52959756799
1.47752625708
1.42925799901
1.38113497845
1.33546139756
1.29682695672
1.26017582825
1.22469905877
1.18921355461
1.16145689127
1.1419229097
1.12939913435
..
LAO
Lao PDR
SP.POP.GROW
Population growth (annual %)
0
1
2.82177518439
2.82058336752
2.79481196699
2.7281255734
2.61546958255
2.47304591379
2.32613111294
2.18892524175
2.05718352227
1.93541670794
1.82468874416
1.71274445585
1.60999485904
1.54042390584
1.5117431227
1.51111470953
1.52192091533
1.52578052175
1.51618521994
1.48578520701
1.44160270172
..
LBN
Lebanon
SP.POP.GROW
Population growth (annual %)
0
1
1.55453276709
2.60086201765
3.40219980411
3.73093764459
3.48024220234
2.87321871524
2.17551546635
1.63145511737
1.2931441463
1.25064963507
1.40727437831
1.60565775565
1.71031465578
1.71499957113
1.5786876565
1.35094922565
1.10523038448
0.908983535955
0.771958112758
0.71916478302
0.726614483598
..
LBR
Liberia
SP.POP.GROW
Population growth (annual %)
0
1
-1.50088134503
-1.69464281763
-1.7935926524
-1.15493710518
0.458468814339
2.64467357536
5.08289193338
6.86908941046
7.36146461417
6.48111551583
4.9063742394
3.18024321771
1.91353382127
1.37004019467
1.8045448895
2.86280199426
4.03915159499
4.81556876181
5.08157843803
4.7369354147
4.04121323593
..
LBY
Libya
SP.POP.GROW
Population growth (annual %)
0
1
1.99089068754
1.99692714751
1.97244258427
1.94677139852
1.90571188375
1.85805243172
1.81907827831
1.80182851649
1.80457683245
1.82974941246
1.86904053498
1.89585796672
1.91322551531
1.94567498236
1.99642877735
2.04711790605
2.12687853698
2.1703842282
2.07960176671
1.82158414306
1.46533956822
..
LCA
St. Lucia
SP.POP.GROW
Population growth (annual %)
0
1
1.42698619695
1.40690945606
0.842762237605
1.99025538392
1.96823717371
1.90755652316
1.11112627119
1.75518770468
1.51585358228
1.1457486673
1.4808196064
1.21125558193
0.779740884049
0.93009962054
1.12304386605
1.44062389128
1.23452773903
0.895058127133
1.10271454064
1.10271454064
1.10271454064
..
LIC
Low income
SP.POP.GROW
Population growth (annual %)
0
1
2.61479040129
2.61087569335
2.55993632287
2.51084278614
2.48343256891
2.47251204511
2.43725003573
2.41359376567
2.38642146246
2.35245640855
2.31336256011
2.27654138729
2.24594065856
2.21470086579
2.18131194594
2.14662075434
2.10846074731
2.07814118081
2.06654508677
2.07687057919
2.10088700169
..
LIE
Liechtenstein
SP.POP.GROW
Population growth (annual %)
0
1
1.30216955354
1.31607904102
1.31914647544
1.31523743918
1.30143675009
1.27502133855
1.24301011049
1.21198222022
1.19123665715
1.1772130993
1.1726478847
1.16808203371
1.15756919579
1.12374023786
1.05016249383
0.95858019595
0.858078760844
0.771413284423
0.72047438951
0.70413936031
0.724196803329
..
LKA
Sri Lanka
SP.POP.GROW
Population growth (annual %)
0
1
1.24204975975
1.18016568986
1.12273660655
1.03564599862
0.911262352743
0.769723016186
0.607591228947
0.476822957128
0.443106578782
0.538872250421
0.722654993548
0.938284805174
1.11574950656
1.22460138447
1.2352552011
1.17574759229
1.100305137
1.04229253863
0.989207809502
0.949589227808
0.91891413009
..
LMC
Lower middle income
SP.POP.GROW
Population growth (annual %)
0
1
2.23525822276
2.07589150715
1.99641108822
1.96186392453
1.89501709929
1.85606237109
1.83468792034
1.81208053428
1.78089899172
1.75306452297
1.72912132226
1.69013591642
1.64838684931
1.61477342718
1.58092898852
1.54629843679
1.54901345413
1.5264627246
1.52659056313
1.52976039744
1.52320420917
..
LMY
Low & middle income
SP.POP.GROW
Population growth (annual %)
0
1
1.92355968026
1.81545761074
1.70621678283
1.65928504739
1.61898227284
1.59049281073
1.5682032536
1.55248797555
1.52089384226
1.47885808324
1.45230801995
1.39491596043
1.34566578988
1.3152518344
1.28742654315
1.26631724116
1.25492304239
1.23542439371
1.23550998253
1.23780781232
1.24552079109
..
LSO
Lesotho
SP.POP.GROW
Population growth (annual %)
0
1
1.83415468113
1.81441922141
1.78685070484
1.78543052239
1.81373536445
1.85450617231
1.91470333818
1.94871965
1.89821374822
1.74045582825
1.51564577668
1.27023629502
1.06411115606
0.926666789941
0.884700550679
0.911608697649
0.954355903748
0.981330678474
1.00550269154
1.01899276541
1.02382112859
..
LTU
Lithuania
SP.POP.GROW
Population growth (annual %)
0
1
0.18947087975
0.162118371669
-0.108049706557
-0.460518189663
-0.681108706443
-0.713308877948
-0.746168953125
-0.695896988515
-0.700773671517
-0.677394588148
-0.895315851369
-0.522351159434
-0.351100786534
-0.429100372544
-0.541534642183
-0.621459485179
-0.594033871331
-0.545490813022
-0.519861402852
-0.557188517263
-0.564556570022
..
LUX
Luxembourg
SP.POP.GROW
Population growth (annual %)
0
1
1.13233592455
1.35242624987
1.38534787646
1.41666918898
1.42164749753
1.40171965298
1.3611439411
1.25350248369
1.24387080269
1.3506212853
1.34408299573
1.19045634529
1.04766081596
1.21520087965
1.42133256471
1.53005466341
1.59505191774
1.54438684651
1.78749663226
1.85177523044
1.60383823156
..
LVA
Latvia
SP.POP.GROW
Population growth (annual %)
0
1
-0.496760846029
-0.326289015683
-1.13337057946
-1.76317320007
-1.48035417056
-1.30359333356
-0.958856666656
-1.65962106761
-1.64612760153
-0.833338103325
-0.755988433086
-0.549568036313
-0.894193681137
-0.542879476151
-0.541198462056
-0.53354199796
-0.547636087056
-0.519189395655
-0.440580749552
-0.498128848019
-0.529955106145
..
MAC
Macao SAR, China
SP.POP.GROW
Population growth (annual %)
0
1
3.18207125219
2.68364244499
2.24607671422
1.91519445495
1.72775077356
1.64997695088
1.58910959986
1.53019809743
1.54139819493
1.62930538991
1.76957730254
1.92591478742
2.06967421904
2.19696204175
2.29596900151
2.36748814179
2.43728572031
2.49107954504
2.49072603915
2.42605200354
2.3187508428
..
MAF
St. Martin (French part)
SP.POP.GROW
Population growth (annual %)
0
1
8.18310506011
5.77297869538
3.31030179172
1.04643325967
-0.422094210858
-1.17308745344
-1.88236495713
-2.51724485829
-3.06858107034
-3.53019242763
-3.19325438012
-2.1437277152
-1.20221610197
-0.317443208941
0.550323017267
1.41467534312
1.80402619799
1.71326090846
1.61634239036
1.50012948985
1.38208843886
..
MAR
Morocco
SP.POP.GROW
Population growth (annual %)
0
1
1.91696154104
1.82673860921
1.73559147996
1.65282792678
1.58018549318
1.51540161289
1.4564221072
1.39913906325
1.34086280907
1.27986381949
1.21887016163
1.16007463704
1.10861368482
1.06844080189
1.04202493916
1.02629399946
1.0135555955
1.00178622863
0.995486481658
0.994579373181
0.996731804015
..
MCO
Monaco
SP.POP.GROW
Population growth (annual %)
0
1
1.46392585514
1.39493792779
1.31591276583
1.28016271184
1.29775644106
1.3417289774
1.41658634367
1.44979488351
1.37392906368
1.14313351504
0.817544501524
0.460136580309
0.150080023639
-0.0509453197931
-0.116139096689
-0.062374190449
0.0198505537539
0.0793628340173
0.116096344679
0.115961717349
0.084764923701
..
MDA
Moldova
SP.POP.GROW
Population growth (annual %)
0
1
0.429753798
0.258422204
0.083868751
-0.103892505
-0.304621864
-0.512908819
-0.200222133344
-0.220896906881
-0.188282302854
-0.158142001815
-0.203414919918
-0.223571715813
-0.231607464406
-0.281650307636
-0.247616695796
-0.243141083201
-0.26911034133
-0.240589056331
-0.190205445303
-0.126238330822
-0.0993593355275
..
MDG
Madagascar
SP.POP.GROW
Population growth (annual %)
0
1
2.94127314654
2.97028871957
3.00085554826
3.03311896598
3.06841986506
3.10273304462
3.13443110563
3.15617751211
3.1613684277
3.14751215435
3.12091082808
3.08982884075
3.06098270851
3.03514555846
3.01440979842
2.99679557925
2.97934865589
2.95964681391
2.93786957151
2.91354970709
2.88804756891
..
MDV
Maldives
SP.POP.GROW
Population growth (annual %)
0
1
2.9627104236
2.80127844957
2.64385351085
2.49287456164
2.35005470485
2.21812138066
2.08811737522
1.96590093752
1.86094046463
1.77780957654
1.71126065223
1.65331417758
1.59808563698
1.5464397852
1.49677425988
1.4506555694
1.4055345324
1.36661728419
1.33941603622
1.32620358244
1.32119240455
..
MEX
Mexico
SP.POP.GROW
Population growth (annual %)
0
1
1.96462562777
1.90006678514
1.84445182124
1.79628651149
1.7593545062
1.72870804236
1.70381217428
1.67248944257
1.62190358259
1.54646171523
1.45705210417
1.36119630994
1.27927451564
1.22828709076
1.21812001372
1.23576334513
1.26122258329
1.27664081233
1.27945194405
1.26311539381
1.2327842555
..
MHL
Marshall Islands
SP.POP.GROW
Population growth (annual %)
0
1
3.19288052331
2.4667854804
1.83982785238
1.34999887488
1.04369517554
0.872284581362
0.744165860834
0.597561097536
0.449690510478
0.288434004409
0.124730167286
-0.0268518164949
-0.124763685004
-0.142228396614
-0.0461716052835
0.132685948028
0.331904340297
0.529147246484
0.745967565613
0.971064125005
1.19516659911
..
MIC
Middle income
SP.POP.GROW
Population growth (annual %)
0
1
1.83209616971
1.70939908808
1.59137560428
1.54364256101
1.50047079503
1.46840169885
1.44671739933
1.43093685188
1.39753491922
1.35313460205
1.32716796219
1.26553920641
1.21223328947
1.18058020247
1.15222003207
1.13181043777
1.12319727141
1.1041014466
1.10475979394
1.10453878839
1.10835571387
..
MKD
Macedonia, FYR
SP.POP.GROW
Population growth (annual %)
0
1
0.83855331614
0.700449378257
0.595847436205
0.519672144257
0.48899376262
0.49063778588
0.497820685705
0.490917066873
0.473412602949
0.439405732356
0.394637380668
0.347017092388
0.306067350829
0.27476058464
0.257088668213
0.249069924307
0.244144000522
0.236176333127
0.224463481886
0.206604956619
0.184294153293
..
MLI
Mali
SP.POP.GROW
Population growth (annual %)
0
1
1.85655393062
2.15009454682
2.39618462583
2.57534596885
2.66144190241
2.68500813597
2.69373578125
2.72283984043
2.76884672344
2.84046984153
2.92496291629
3.00412534333
3.06337992247
3.10267804419
3.11852769876
3.11697717878
3.10942298731
3.10009962865
3.0844582365
3.06340616124
3.0385543888
..
MLT
Malta
SP.POP.GROW
Population growth (annual %)
0
1
0.836824914243
0.883151016765
0.929477119287
0.975803221809
1.02212932433
1.06845542685
0.527705676783
0.786373596396
0.520834477846
0.776200484566
0.514139950042
0.773411702697
0.745506921127
0.657732334392
0.671628454529
0.638179794943
0.634624990932
0.647981684981
0.706458480189
0.324754296373
-0.0796368215924
..
MMR
Myanmar
SP.POP.GROW
Population growth (annual %)
0
1
1.55704062559
1.48523936554
1.41805092033
1.37790598985
1.37318722103
1.38744903081
1.42042710492
1.4316968251
1.37528528338
1.23046400802
1.03064210051
0.811339540189
0.627691432196
0.512577165861
0.493012269589
0.543155725988
0.611487721467
0.664126337576
0.710426068789
0.740230578279
0.756850415562
..
MNA
Middle East & North Africa
SP.POP.GROW
Population growth (annual %)
0
1
3.4747116737
2.52102345551
2.30531239124
2.19081459386
2.10957792331
2.05186733266
2.03113697025
1.99389939256
1.95397768734
1.91418568379
1.90644453449
1.85401325321
1.84292216025
1.81334980408
1.80630697715
1.78303717795
1.78344988179
1.77636363619
1.75949348358
1.74814285058
1.73181067406
..
MNE
Montenegro
SP.POP.GROW
Population growth (annual %)
0
1
1.34254397409
1.35862966219
1.36567580126
1.24108773455
0.958227578086
0.574539942374
0.138890205867
-0.246841933623
-0.503027174681
-0.567845553827
-0.486165453999
-0.365348552131
-0.270873067448
-0.174190829129
-0.0937491100317
-0.0275993878836
0.0534369970596
0.14150990859
0.19456760201
0.198472620366
0.167204904538
..
MNG
Mongolia
SP.POP.GROW
Population growth (annual %)
0
1
2.01338029728
1.53503041947
1.13400629747
0.85671912431
0.751559702744
0.773145482936
0.830750756425
0.867017049976
0.903006297516
0.923813232148
0.937753409579
0.95529220352
0.994742299751
1.06489033276
1.17149797911
1.29904207354
1.43446400437
1.54999059826
1.62381262632
1.64286675172
1.62200912866
..
MNP
Northern Mariana Islands
SP.POP.GROW
Population growth (annual %)
0
1
6.40701615471
6.07463468611
5.67612293259
5.3251703824
5.03035599238
4.74419071431
4.51431904422
4.21897788667
3.7094570686
2.9303300036
2.00291551729
1.09290705322
0.301637585553
-0.415891081628
-1.01957846052
-1.50682233834
-2.06174320821
-2.54242530795
-2.58483097553
-1.98750301277
-0.908577211977
..
MOZ
Mozambique
SP.POP.GROW
Population growth (annual %)
0
1
1.25516890539
2.33716175884
3.19868022767
3.67797578529
3.66675714046
3.34443186967
2.96463860057
2.70182171381
2.53621646047
2.51484550051
2.58616161353
2.66091511676
2.68445842263
2.6773141411
2.62869045216
2.55388450749
2.47719299441
2.41471824299
2.36315513849
2.32667928275
2.3013565969
..
MRT
Mauritania
SP.POP.GROW
Population growth (annual %)
0
1
2.67369970722
2.71435080997
2.74829071696
2.77746113497
2.79878968045
2.81402997319
2.82293138924
2.83085029151
2.84296351884
2.86111495533
2.87908688636
2.89494047696
2.89715410044
2.87471998394
2.82316160566
2.75220618119
2.67806890357
2.60830842194
2.5380261834
2.46910286407
2.40286998621
..
MUS
Mauritius
SP.POP.GROW
Population growth (annual %)
0
1
0.767270767338
0.909367846308
1.33581533059
1.4692642636
1.44798910003
0.846096025745
1.02276454116
1.25209760994
1.05142162473
1.27124855157
0.982676166064
1.09002677244
0.855994475187
1.03699767797
0.861092603149
0.796809886713
0.779896912019
0.613047579363
0.645335433794
0.508534896834
0.460858608861
..
MWI
Malawi
SP.POP.GROW
Population growth (annual %)
0
1
3.5774746778
2.13884668918
1.01770764163
0.411187349793
0.518566464729
1.13135872159
1.87692612548
2.43781852674
2.80197303143
2.87846664397
2.76746215127
2.64168425556
2.6006027867
2.60121755049
2.6636758502
2.76584328733
2.86546781248
2.94274680936
3.01321058014
3.07382309222
3.12569461629
..
MYS
Malaysia
SP.POP.GROW
Population growth (annual %)
0
1
2.80539309751
2.70472363761
2.61839615674
2.55596243994
2.52694266669
2.51863372603
2.50820003084
2.48404301465
2.45318691721
2.41325381691
2.36476091429
2.32056615264
2.27197328664
2.19819411961
2.09390604232
1.972519576
1.845100854
1.73336659734
1.65297976727
1.61365333821
1.60294008144
..
MYT
Mayotte
SP.POP.GROW
Population growth (annual %)
0
1
5.57494956972
5.76891025968
5.84610360259
5.73168332428
5.40969080318
4.97713832569
4.54855164524
4.1929636359
3.90143522064
3.68947647695
3.5360017956
3.39313545521
3.25787114234
3.16848136576
3.12787934098
3.12005680223
3.12002269924
3.11655505735
3.11520000106
3.11310184731
3.10684118856
..
NAM
Namibia
SP.POP.GROW
Population growth (annual %)
0
1
3.90027601887
3.49830518881
3.17873441426
2.96584699287
2.89780928195
2.91780050182
2.96072697369
2.94833144157
2.85334867487
2.6525984639
2.39170827433
2.11685780456
1.89319346888
1.75475087022
1.72757284705
1.77591012209
1.84361736443
1.88572312792
1.90114194845
1.87539542592
1.82138329486
..
NCL
New Caledonia
SP.POP.GROW
Population growth (annual %)
0
1
2.28787809411
2.45009340106
2.612308708
2.77452401494
2.93673932189
3.09895462883
2.05135385386
2.32888523851
1.65173955033
2.03476724193
1.90137437804
1.9017932213
1.89881141881
1.89843031676
1.90131724938
1.86242763751
1.7198194018
1.63918664014
1.76040366662
1.45704880786
1.45704880786
..
NER
Niger
SP.POP.GROW
Population growth (annual %)
0
1
3.03448538345
3.13643691836
3.22657309625
3.30243579286
3.3594688669
3.40133061658
3.44084662958
3.47631025135
3.49522389524
3.49612589185
3.48606185356
3.47046407379
3.45947885518
3.46014438808
3.47586874386
3.50015755713
3.5253791543
3.54359154006
3.55264068224
3.55040562828
3.54119327532
..
NGA
Nigeria
SP.POP.GROW
Population growth (annual %)
0
1
2.5105027215
2.46453829076
2.42923169969
2.39844652099
2.37417527869
2.35638127808
2.33903938289
2.32617768306
2.32776105682
2.34635389436
2.37593949527
2.40927564972
2.43853941462
2.46087398134
2.47341354344
2.47921434881
2.48322599027
2.48904152951
2.49612304785
2.50532151433
2.51529302082
..
NIC
Nicaragua
SP.POP.GROW
Population growth (annual %)
0
1
2.24020589473
2.35932570636
2.43705928979
2.44302255182
2.35612479445
2.207431696
2.05176690122
1.91751752409
1.78889062143
1.6725374479
1.56877662719
1.4660508143
1.37128959331
1.30468224117
1.27283189592
1.26758273177
1.2674994424
1.26845966034
1.2844451341
1.31597650763
1.35556670197
..
NIU
Niue
SP.POP.GROW
Population growth (annual %)
0
1
-2.2044131301
-1.77301941868
-1.40599855683
-1.20188404262
-1.30720815674
-1.64688077133
-2.09749008563
-2.57647839577
-2.84332879729
-2.9265458896
-2.75127657221
-2.55877499484
-2.34919298108
-2.29252421977
-2.28842938336
-2.46058108022
-2.58350205245
-2.7770991711
-2.72773017129
-2.87038623406
-2.88707530983
..
NLD
Netherlands
SP.POP.GROW
Population growth (annual %)
0
1
0.691254680311
0.786094198907
0.714099789267
0.663867078231
0.665594586134
0.511441437218
0.368015370983
0.57833340941
0.581378377732
0.679302953428
0.759092346389
0.754800957376
0.638610035452
0.471834247968
0.347406322833
0.233663147939
0.160613668858
0.217521601194
0.3892924615
0.514284544828
0.49377637109
..
NOR
Norway
SP.POP.GROW
Population growth (annual %)
0
1
0.342445846489
0.475116114499
0.577907773304
0.595461342271
0.568879698228
0.538142607336
0.48049511676
0.525891606935
0.631502381349
0.629781618956
0.692662763651
0.488672643088
0.552426516417
0.591022164431
0.590816245429
0.680396537106
0.805392739161
1.03473451528
1.24633301535
1.26112728938
1.16357495221
..
NPL
Nepal
SP.POP.GROW
Population growth (annual %)
0
1
2.42353173583
2.44921332546
2.46817234558
2.48174522208
2.48848047276
2.48833357739
2.48299528398
2.47172649842
2.45190438222
2.4228922526
2.3856904787
2.34749025067
2.30464189816
2.24724516152
2.1731075903
2.08923110249
2.00211311977
1.92212641358
1.8559452437
1.80807862573
1.77341680038
..
NRU
Nauru
SP.POP.GROW
Population growth (annual %)
0
1
2.21949153891
2.12854451781
2.01086254919
1.81700477257
1.47076494505
1.07902020019
0.629907596973
0.24886778063
-0.0198866461827
-0.0994925960093
-0.0497834430554
0.0497834430554
0.109436413449
0.17881983704
0.188408008532
0.197941473972
0.187682180839
0.207029205902
0.255729459717
0.313848825686
0.420189214511
..
NZL
New Zealand
SP.POP.GROW
Population growth (annual %)
0
1
1.46073295517
1.35676347783
1.04173538422
1.14023110663
1.33199972773
1.46160139468
1.58266192728
1.31500284466
0.884635330473
0.525484536213
0.590156270945
0.586693850405
1.73717486434
1.97355854434
1.48621908245
1.12877350968
1.21898486028
1.03889011023
0.955616178654
1.09265243074
1.19767427293
..
OMN
Oman
SP.POP.GROW
Population growth (annual %)
0
1
3.88782337116
4.14135151781
4.24025904123
3.95831904636
3.2228453191
2.23805771297
1.18965994275
0.342040539874
-0.154544590151
-0.15792618079
0.210674809621
0.660662614214
1.03461277377
1.42680300582
1.79751453395
2.12885074352
2.48420845376
2.79391474377
2.91570532729
2.81104837003
2.55880837301
..
PAK
Pakistan
SP.POP.GROW
Population growth (annual %)
0
1
2.92422767979
2.75609977906
2.60998222602
2.52658122317
2.5225732087
2.56499118026
2.62766218552
2.65580554119
2.61149553807
2.47467085755
2.28233420573
2.07876149519
1.91258733851
1.80052880854
1.76067418347
1.77133282063
1.79157207291
1.79921512925
1.80587713743
1.80636945802
1.80134270857
..
PAN
Panama
SP.POP.GROW
Population growth (annual %)
0
1
2.04876262056
2.05484114567
2.05780824508
2.05691199312
2.05034553413
2.0387401628
2.0261227955
2.01172043225
1.99093549558
1.96283033675
1.92944154736
1.8935483744
1.85767419452
1.82232138102
1.78851207217
1.75547980429
1.72246189482
1.68816166238
1.65203338081
1.61363051673
1.57393120412
..
PER
Peru
SP.POP.GROW
Population growth (annual %)
0
1
2.05851598161
1.9929986085
1.93047614921
1.87519041002
1.82971019641
1.78969381241
1.75355793501
1.71189383335
1.6555515319
1.58017160102
1.49323590984
1.40676486784
1.32929222319
1.2602700013
1.20274999468
1.15596675758
1.1100416522
1.06971505813
1.04985271367
1.05481289386
1.07656983483
..
PHL
Philippines
SP.POP.GROW
Population growth (annual %)
0
1
2.50817202997
2.43362261661
2.36674083979
2.31549460254
2.28455424341
2.26696433031
2.25017552325
2.22782795084
2.20358528905
2.17595169346
2.14465378273
2.11741180773
2.08789693668
2.04221314465
1.97648400095
1.89963149068
1.81844861776
1.74819899968
1.70058783368
1.68244866046
1.68437725345
..
PLW
Palau
SP.POP.GROW
Population growth (annual %)
0
1
2.19096901837
2.50013022054
2.69743757811
2.79803606582
2.7694913131
2.64270473473
2.51815984068
2.39010707387
2.18325449482
1.89320591161
1.55596074332
1.19252722417
0.877491198129
0.636604222712
0.531633362723
0.518775244913
0.526092853555
0.533281435272
0.545284650559
0.581654915382
0.617376648593
..
PNG
Papua New Guinea
SP.POP.GROW
Population growth (annual %)
0
1
2.44509910831
2.46789204411
2.48619119557
2.51220893123
2.54556178297
2.58102540559
2.61781258123
2.6458120249
2.6538509536
2.63738407695
2.60414000677
2.56519051349
2.52926834793
2.49656710776
2.4697702434
2.44627334311
2.42272342502
2.39530998426
2.36324951078
2.3255754731
2.28455976991
..
POL
Poland
SP.POP.GROW
Population growth (annual %)
0
1
0.409559731629
0.328954536569
0.31406214481
0.245497265584
0.219732914734
0.114091319715
0.0787507632935
0.0828285960814
0.0417635908149
-0.021067157008
-0.529621866734
-0.527386110085
-0.0496719040025
-0.0941619585687
-0.0361359658912
-0.0438782340222
-0.0633705742927
-0.0543050208039
0.0136373796827
0.0677632270212
0.0940147496468
..
PRI
Puerto Rico
SP.POP.GROW
Population growth (annual %)
0
1
0.890307167387
0.707415569453
0.645450037357
0.842176258032
0.92887757746
0.92374987573
1.12186266889
0.929312007273
0.574788689662
0.500714523269
0.376440428598
0.610416102775
0.532846724118
0.474861036111
0.445116201379
0.43028244577
0.408857207654
0.368354221206
0.337344736968
0.321516449786
0.287289761263
..
PRK
Korea, Dem. Rep.
SP.POP.GROW
Population growth (annual %)
0
1
1.51114615178
1.59064095117
1.63834769907
1.62486854403
1.53162129141
1.38519807758
1.22346323415
1.0823341275
0.969274919108
0.898166205519
0.857250836224
0.823555053728
0.781729274555
0.736490924646
0.683904647653
0.62757945592
0.573289704121
0.526784175291
0.489138438502
0.462530082615
0.444793638896
..
PRT
Portugal
SP.POP.GROW
Population growth (annual %)
0
1
-0.413452889812
0.393324066538
0.281435488134
0.110347599158
0.240336571578
0.289638136763
0.278856850685
0.33756979886
0.395687502871
0.443284941617
0.507883058179
0.65435560942
0.72977742933
0.698915392856
0.581757319091
0.451138937019
0.330466689893
0.226408471041
0.132618992636
0.0947452410677
0.0973804328951
..
PRY
Paraguay
SP.POP.GROW
Population growth (annual %)
0
1
2.63363886136
2.56977495113
2.50489590266
2.44132054671
2.38010699876
2.32156099449
2.26358471918
2.20779547608
2.15815136381
2.11571019054
2.07859236494
2.04466319934
2.01098927185
1.97587257229
1.93822648307
1.89964300817
1.86091641447
1.8255616775
1.79682825365
1.77619702962
1.76078519662
..
PYF
French Polynesia
SP.POP.GROW
Population growth (annual %)
0
1
2.14482382602
2.06720341185
1.99388655116
1.95297891596
1.9514932902
1.97254284485
2.0066274133
2.02102468491
1.98491438621
1.88506629023
1.74293946735
1.59056216362
1.46040815479
1.36090166392
1.30607342012
1.28256498575
1.26671076504
1.24206546499
1.21548751944
1.18146673464
1.14366766784
..
QAT
Qatar
SP.POP.GROW
Population growth (annual %)
0
1
2.95050379762
1.92427810575
1.08699184835
0.656580801088
0.751311633248
1.2534070366
2.18021583097
3.14371999638
3.71993912467
3.76231691229
3.63349920807
2.852537085
2.61589459624
4.591495953
9.01441845888
13.8019339279
17.5347112383
18.5883169731
16.9672923296
13.4951794347
9.60220006239
..
ROM
Romania
SP.POP.GROW
Population growth (annual %)
0
1
0.237278726176
-0.0948439397345
-1.72275533556
-0.149306183781
-0.105526978466
-0.220206188008
-0.322374345269
-0.239139198116
-0.226380001163
-0.200200254433
-0.0667869384411
-1.39542356419
-1.49710381556
-0.280631242029
-0.263174845494
-0.233309540192
-0.216116691486
-0.18914314657
-0.154438571173
-0.154537790574
-0.17887629121
..
RUS
Russian Federation
SP.POP.GROW
Population growth (annual %)
0
1
0.385794345665
0.223632366302
0.0437249639509
-0.113724697579
-0.123965844425
-0.1315447931
-0.271731950357
-0.294872486514
-0.27532027602
-0.402445224082
-0.00410099380808
-0.241859173148
-0.446278280275
-0.483095545587
-0.519935361045
-0.487509848114
-0.455103183542
-0.281096460565
-0.105615218407
-0.070472166412
-0.0705218646999
..
RWA
Rwanda
SP.POP.GROW
Population growth (annual %)
0
1
-0.215421757325
-3.40996636117
-6.28408110093
-7.53325169002
-5.78085940862
-1.39236400963
4.10860073509
8.1671682921
9.77049549184
8.79958867871
6.57690272576
4.33311206129
2.79159001902
1.83984704245
1.69916925392
2.10944037305
2.57137259152
2.8106056954
2.97832425957
3.02437474316
2.98781066403
..
SAS
South Asia
SP.POP.GROW
Population growth (annual %)
0
1
2.17003220638
2.1357255759
2.01761886517
1.99314230632
1.94954908861
1.93534232429
1.91342541875
1.89576660918
1.87116012438
1.83727445728
1.79733824056
1.72522553162
1.6570063924
1.5905258889
1.52664597288
1.46532402353
1.46073531521
1.41635953653
1.40918090741
1.40946949102
1.41462549981
..
SAU
Saudi Arabia
SP.POP.GROW
Population growth (annual %)
0
1
3.39509447607
3.23545524751
3.06774680981
2.81442123879
2.448598826
2.04256158478
1.5806946113
1.23878825666
1.2331750926
1.65972267888
2.35398845371
3.12497406146
3.70906213702
3.97929153259
3.86187155194
3.5020023369
3.10553797584
2.80212924854
2.56430753326
2.42562898298
2.35548701239
..
SDN
Sudan
SP.POP.GROW
Population growth (annual %)
0
1
2.36243859078
2.48166920212
2.56651910189
2.61981860916
2.62694427068
2.60170653312
2.58064664204
2.56830686606
2.53758785399
2.48611036263
2.42490130532
2.35451095095
2.29859041631
2.28364386446
2.32039507493
2.3887991906
2.46455712805
2.52052281544
2.54698071438
2.53467891078
2.49607025923
..
SEN
Senegal
SP.POP.GROW
Population growth (annual %)
0
1
3.00330381824
2.99269977845
2.97477124102
2.9256642486
2.84060543451
2.73734839948
2.6266020783
2.53779357574
2.49532474779
2.51118875661
2.56502303422
2.62649824343
2.67281639641
2.70436216027
2.71443753877
2.70924103804
2.70090215503
2.69499767677
2.68664513887
2.67649826742
2.66401330158
..
SGP
Singapore
SP.POP.GROW
Population growth (annual %)
0
1
3.88138382748
2.85035714992
3.0037760518
2.53062005253
3.1343078111
3.03904715746
4.06437973418
3.35655011741
3.3978823014
0.79889847798
1.73294597902
2.69674309917
0.914127125699
-1.47636203056
1.25341253334
2.35053810166
3.12929355085
4.16522945206
5.32157794479
3.01640860384
1.77066120653
..
SLB
Solomon Islands
SP.POP.GROW
Population growth (annual %)
0
1
2.78951947357
2.81720436207
2.83592313532
2.83876281723
2.82042631615
2.78964267711
2.75597262899
2.73226181125
2.72345061888
2.73326104521
2.75453046231
2.7747255179
2.78663030368
2.79257944636
2.79070950725
2.78115826985
2.76989386577
2.75466886429
2.72806228944
2.6886240301
2.64034097765
..
SLE
Sierra Leone
SP.POP.GROW
Population growth (annual %)
0
1
1.2573800401
0.34407069196
-0.394666589094
-0.825550952594
-0.808180436699
-0.427546610936
-0.00477134729085
0.3969355397
1.01747506202
1.86814069628
2.81133994375
3.80620505775
4.57922310006
4.86272288731
4.58891639653
3.98448878377
3.31930741159
2.79362691862
2.41373225038
2.240588358
2.20987522027
..
SLV
El Salvador
SP.POP.GROW
Population growth (annual %)
0
1
1.40092038607
1.49688574304
1.56201654629
1.54404551088
1.41847938953
1.22103211818
1.00656791594
0.820261258608
0.665588091953
0.559785419815
0.492955458735
0.432073286994
0.371516522837
0.338258431634
0.336769772271
0.359640284136
0.395447938011
0.433351492171
0.470300681348
0.501138106727
0.527304762787
..
SMR
San Marino
SP.POP.GROW
Population growth (annual %)
0
1
1.19632113923
1.26813293644
1.32899072535
1.31952904188
1.21972049132
1.06492275676
0.849253771194
0.692656788623
0.741196944113
1.06017425539
1.55464844973
2.11345235703
2.53804353664
2.66151502069
2.41435069334
1.92932029347
1.37657445619
0.926652561332
0.614100475036
0.5147317022
0.556502159661
..
SOM
Somalia
SP.POP.GROW
Population growth (annual %)
0
1
0.441005922324
-0.214952259318
-0.635248055034
-0.689631994198
-0.218476485921
0.622174861438
1.57921655142
2.35687034769
2.85146471915
2.96549821008
2.82243023634
2.63935859974
2.52589205441
2.41815463886
2.33955706122
2.28626213876
2.21969306258
2.15269128231
2.1383873355
2.19038595511
2.2875335162
..
SRB
Serbia
SP.POP.GROW
Population growth (annual %)
0
1
0.065932619254
0.126942857726
0.666426140739
0.689216220474
0.457854791914
0.0561905104865
-0.389807018736
-0.771529934382
-1.07622422702
-0.361977304916
-0.319014864064
-0.17179890335
-0.0453392467155
-0.259198928644
-0.233056452358
-0.299980289842
-0.393204593401
-0.405458541826
-0.425719156657
-0.40098130017
-0.386399767825
..
SSA
Sub-Saharan Africa
SP.POP.GROW
Population growth (annual %)
0
1
2.76592588208
2.74680292631
2.72878282016
2.70818296528
2.68534733964
2.66094441111
2.64072980788
2.62329985076
2.61049323625
2.60486058864
2.60282311012
2.57003492921
2.52165922996
2.5118103485
2.50293649016
2.4975397905
2.49331523418
2.4887944122
2.49058974872
2.4937692768
2.49803466411
..
STP
Sao Tome and Principe
SP.POP.GROW
Population growth (annual %)
0
1
2.1738756351
2.0415917791
1.9411757364
1.88715780371
1.89125797982
1.93121859689
1.9843241459
2.01257689024
1.99716664503
1.92268046683
1.814100593
1.7016301457
1.61211827747
1.55007034836
1.52374834758
1.52577951777
1.52672735812
1.53109791165
1.57058582416
1.65219180447
1.75783393754
..
SUR
Suriname
SP.POP.GROW
Population growth (annual %)
0
1
1.61412707134
1.49313483462
1.39861074612
1.3345658615
1.32163967951
1.34363504146
1.36158199992
1.36226853915
1.36730428365
1.37666559564
1.38624943723
1.40067398399
1.40548874258
1.3792295017
1.31344002137
1.22073392837
1.11910365954
1.02912196296
0.961769095655
0.926642035775
0.914322064148
..
SVK
Slovak Republic
SP.POP.GROW
Population growth (annual %)
0
1
-0.26465042132
0
0.443836575747
0.340510696852
0.425416894888
0.30578000971
0.188442962777
0.175513228798
0.137814674301
0.0826644578159
-0.11821720345
-0.182785016249
0.00371816299443
0.0102239028768
0.0520252708272
0.0845078160441
0.0817931447356
0.109540274601
0.172307488875
0.221039559325
0.273976157105
..
SVN
Slovenia
SP.POP.GROW
Population growth (annual %)
0
1
-0.0650406485949
0.180009037698
-0.255108543335
-1.50378764156
1.11738648263
0.0552916614445
0.0502386313954
-0.253661463003
-0.169129556856
0.146165688027
0.176122817152
0.150715919546
0.100351231391
0.0852132884151
0.0651204779705
0.175114001678
0.319114536571
0.559207815537
0.158140843634
0.903875535211
0.642740496735
..
SWE
Sweden
SP.POP.GROW
Population growth (annual %)
0
1
0.774106561309
0.680005371936
0.585466825668
0.582059053114
0.709745610004
0.571212700569
0.135792702124
0.0727655537539
0.0266986975534
0.0632439617065
0.130878248531
0.281484151656
0.336738426928
0.357942194034
0.40109269017
0.355750125417
0.623768043674
0.741552514625
0.77903329077
0.851904412937
0.863080551655
..
SWZ
Swaziland
SP.POP.GROW
Population growth (annual %)
0
1
3.4127067436
2.80180620354
2.30470347144
1.99093232581
1.92263451637
2.01128900262
2.16010365818
2.22881335755
2.15028240331
1.87459567214
1.48278810643
1.05203841855
0.713116940449
0.547733099645
0.619264495304
0.85639653819
1.14241294149
1.36880522622
1.51858677648
1.55271894239
1.50452994955
..
SXM
Sint Maarten (Dutch part)
SP.POP.GROW
Population growth (annual %)
0
1
..
..
..
..
..
..
..
..
..
-0.500610762449
-1.83307865074
2.17030377079
4.32033307945
3.69256955009
4.4198254148
4.47939362138
3.55318731235
3.06703056033
2.49002517341
-3.33230148635
-3.33230148635
..
SYC
Seychelles
SP.POP.GROW
Population growth (annual %)
0
1
0.878784829984
1.0727766039
1.26676837781
1.46076015173
1.65475192564
1.84874369956
1.46719293383
1.17345357425
1.95568606633
1.9641962431
0.892658510434
0.0874745123256
3.02991000893
-1.08109161042
-0.362976805058
0.483676880061
2.02992044709
0.510514982843
2.23628271543
0.392530948075
-0.889416355428
..
SYR
Syrian Arab Republic
SP.POP.GROW
Population growth (annual %)
0
1
2.99042124558
2.97033069147
2.94117113993
2.87348882448
2.75731484636
2.61982661167
2.45367165498
2.32539879383
2.31454806473
2.45066486741
2.66939868937
2.91704042409
3.08717280163
3.1078733034
2.94276694981
2.66220718845
2.0386
2.0386
2.0386
2.0386
2.0386
..
TCA
Turks and Caicos Islands
SP.POP.GROW
Population growth (annual %)
0
1
4.70685540824
5.61477147834
6.25873309843
6.28069189733
5.58898773841
4.59766731963
3.37297940622
2.58930255782
2.95438885545
4.71895565636
7.13686960433
9.37531140038
10.591998861
10.6163005588
9.54343406105
7.97397828089
6.52629319716
5.41673438398
4.42343729142
3.58083347594
2.86432804886
..
TCD
Chad
SP.POP.GROW
Population growth (annual %)
0
1
3.11305622132
3.05605161618
3.02097832933
3.01038811894
3.03358138394
3.08014439465
3.10878326775
3.12964219813
3.18753754262
3.28927770576
3.40610250802
3.53217381362
3.61157953209
3.58884607969
3.4455544937
3.23079802897
3.00158583066
2.8135708178
2.68187242225
2.62466046171
2.6180444236
..
TGO
Togo
SP.POP.GROW
Population growth (annual %)
0
1
2.52440181777
2.21884529051
1.97728050368
1.94094227466
2.16482061561
2.54560678462
2.97206785902
3.28633384425
3.4089661753
3.29135165102
3.0232311006
2.72944579192
2.50140810118
2.33512231502
2.25702974615
2.23957472617
2.22837040656
2.19817646913
2.17033575052
2.14110849643
2.11143838888
..
THA
Thailand
SP.POP.GROW
Population growth (annual %)
0
1
1.3887054771
1.11421447618
0.887466832973
0.7617126129
0.773384581642
0.881435064747
1.01404383466
1.11500223183
1.18543926955
1.20620773845
1.1888770108
1.17093367801
1.15769384318
1.1188918408
1.0501542672
0.96129913293
0.862704478052
0.770059462828
0.69310234462
0.639743544982
0.603813723578
..
TJK
Tajikistan
SP.POP.GROW
Population growth (annual %)
0
1
2.53735480388
2.15702598149
1.83288689072
1.59797514464
1.48542077214
1.45737620158
1.45983878808
1.43743768803
1.37805547172
1.26266685048
1.11654790819
0.96378176677
0.850305752765
0.80673627296
0.854761123535
0.967280336963
1.10025294157
1.21551706557
1.30854805991
1.36514660576
1.39435448597
..
TKM
Turkmenistan
SP.POP.GROW
Population growth (annual %)
0
1
2.69246682956
2.80515950437
2.86453801069
2.7928037105
2.56201733645
2.23339407656
1.88470164695
1.58774912399
1.35840070922
1.22411282607
1.16173565601
1.1116237951
1.05676023285
1.0341565814
1.04571648361
1.0814315826
1.1311068409
1.17997081594
1.21821173626
1.23815643245
1.24378116816
..
TMP
Timor-Leste
SP.POP.GROW
Population growth (annual %)
0
1
2.68555984844
3.19436698533
3.49549105684
3.29050756076
2.47133746806
1.31367763815
-0.0629876209687
-1.17301909569
-1.52207718716
-0.753904198923
0.810781743829
2.66660913186
4.08842079882
4.75240063595
4.4828714372
3.66329661743
2.7533061508
2.11483668103
1.77335472114
1.84788405369
2.20020906499
..
TON
Tonga
SP.POP.GROW
Population growth (annual %)
0
1
0.223054677726
0.162768143888
0.126880282946
0.120439671672
0.156877542214
0.225472177693
0.300880483932
0.368358938309
0.428903544587
0.478403356914
0.515955814301
0.550887036034
0.584219675231
0.609929826756
0.627174528237
0.636147106841
0.649846739039
0.657387153406
0.639490588585
0.590035088884
0.519326525966
..
TTO
Trinidad and Tobago
SP.POP.GROW
Population growth (annual %)
0
1
0.623249340671
0.716394692957
0.774621792235
0.79416146258
0.753831791459
0.67156278598
0.585546277717
0.51951313062
0.464321077504
0.426358185794
0.402260550359
0.378831053054
0.355123138397
0.344296199851
0.348303378046
0.362832499094
0.381819445854
0.397114754573
0.404109087107
0.398067699195
0.382103180026
..
TUN
Tunisia
SP.POP.GROW
Population growth (annual %)
0
1
2.4292692569
1.9888226401
2.04313364178
1.95372248583
1.80857454691
1.59909781787
1.46067273264
1.37346935984
1.27560589504
1.30502352396
1.13148835367
1.14467567546
1.11332136036
0.590164644775
0.936675504286
0.967875540886
0.981309562931
0.955149009676
1.01003096662
1.06604760459
1.0434280682
..
TUR
Turkey
SP.POP.GROW
Population growth (annual %)
0
1
1.73200404185
1.71912534752
1.69831341876
1.67811569263
1.6563006953
1.63286603336
1.61323948032
1.59405961635
1.56616141108
1.52683447649
1.48077826186
1.43098663768
1.38665737383
1.35565903103
1.342324604
1.34034351745
1.34157536462
1.33648009423
1.32133518899
1.29228158932
1.2532974115
..
TUV
Tuvalu
SP.POP.GROW
Population growth (annual %)
0
1
0.612712884376
0.575859841634
0.517650806232
0.493124663738
0.436300866632
0.423568376957
0.400195223422
0.366340243775
0.386432425923
0.427625197289
0.478902634017
0.550557240328
0.621021942215
0.627617122924
0.582243275143
0.49638157764
0.391228749809
0.307787254368
0.245549540198
0.204165036211
0.213925615125
..
TZA
Tanzania
SP.POP.GROW
Population growth (annual %)
0
1
3.18441908243
3.29125996152
3.35713831921
3.32914919396
3.18787336074
2.98120529103
2.76476042602
2.59505432131
2.48905331636
2.46599967698
2.50135796401
2.5493629729
2.58792280715
2.63242080021
2.67843556936
2.7255815693
2.77483384103
2.82658809819
2.87886860969
2.93070458597
2.97984733823
..
UGA
Uganda
SP.POP.GROW
Population growth (annual %)
0
1
3.51472585091
3.41554199298
3.33463316328
3.25368196088
3.17701810973
3.10884591785
3.03780389123
2.98022525199
2.96449204575
2.99857940992
3.06377668261
3.13482295777
3.19144332089
3.23176195808
3.24973962516
3.25149607644
3.24950169127
3.2481221827
3.24123234755
3.22916323907
3.21271700211
..
UKR
Ukraine
SP.POP.GROW
Population growth (annual %)
0
1
0.229585785502
0.208811626739
0.287652501583
0.0554856974893
-0.496000604985
-0.790354088025
-0.887422999029
-0.911128913162
-0.893741564457
-0.942908045816
-1.00659704204
-1.00549490383
-0.993676542201
-0.811436362424
-0.758627911478
-0.73279073215
-0.676092034711
-0.596804887457
-0.541462210878
-0.443932416887
-0.397285236006
..
UMC
Upper middle income
SP.POP.GROW
Population growth (annual %)
0
1
1.48769149511
1.39401359762
1.24047779818
1.17861597301
1.15344217225
1.12492969642
1.10048558167
1.08832729864
1.05046221876
0.988447066239
0.957860153571
0.872446841878
0.805168369717
0.77195514993
0.745381880655
0.735205507204
0.712472278181
0.693325017176
0.691104822344
0.684098799491
0.694726997024
..
URY
Uruguay
SP.POP.GROW
Population growth (annual %)
0
1
0.678111793044
0.705678427327
0.722899276779
0.732222364785
0.730930718585
0.717933424291
0.376160655345
0.635664766685
0.538906509676
0.45842187858
0.365067433792
0.227229188744
0.0051459561697
-0.150848710942
-0.0547310845876
0.120802956217
0.264131585458
0.284407272239
0.304778367597
0.325977719376
0.347563187099
..
USA
United States
SP.POP.GROW
Population growth (annual %)
0
1
1.12965044917
1.33626065641
1.38688560496
1.31867991656
1.22629601148
1.19078701576
1.16341154656
1.20396022104
1.16571445286
1.14833997482
1.11616733644
1.02600440986
0.95028347137
0.872473664429
0.932516373979
0.919505322808
0.955679558805
0.99538788401
0.92251728992
0.861005479333
0.663516782107
..
UZB
Uzbekistan
SP.POP.GROW
Population growth (annual %)
0
1
2.34861344371
2.13215351211
2.34439170352
2.27245841546
1.96310372458
1.80687790747
1.91268599841
1.88523880812
1.60949029479
1.44065565702
1.01937681895
1.27780524121
1.21341966709
1.16406865266
1.15371284325
1.16462119936
1.20955637928
1.43198032604
1.64598642398
1.6463458808
1.40634974383
..
VCT
St. Vincent and the Grenadines
SP.POP.GROW
Population growth (annual %)
0
1
0.403796039767
0.284381522858
0.180802534128
0.09351809238
0.0351623951064
-0.00185034416407
-0.0351630458522
-0.0648064162515
-0.0667018729047
-0.0352217117685
0.0203930293625
0.0889391288859
0.150830289031
0.188449229919
0.195463827676
0.173936294836
0.149765961297
0.130288396157
0.108138831458
0.0833154085558
0.0585539032841
..
VEN
Venezuela, RB
SP.POP.GROW
Population growth (annual %)
0
1
2.33287248804
2.23805871791
2.26169812832
2.21167463925
2.16381615748
2.10891233974
2.06091029747
2.0105822347
1.95814071595
1.92053280261
1.84321711358
1.8502443223
1.82059644966
1.7841476126
1.7490455716
1.70769177193
1.69381754365
1.65832761667
1.63127512099
1.59452232161
1.57296402625
..
VIR
Virgin Islands (U.S.)
SP.POP.GROW
Population growth (annual %)
0
1
0.930607838008
0.808549693974
0.858839202934
0.815877302354
0.69193427813
0.464827410143
0.25566222068
0.242090597243
0.165982794343
0.0561872801257
0.0395884646227
0.0993624326181
0.16171271958
0.206354884273
0.18855668235
0.22470482705
0.149523194831
0.0519161156548
0.017299384094
-0.0136571597872
-0.0455373414062
..
VNM
Vietnam
SP.POP.GROW
Population growth (annual %)
0
1
1.90034520485
1.83962606206
1.78010117105
1.72987181942
1.68012551896
1.63986310253
1.60000988268
1.56000982786
1.53498665657
1.50003141446
1.34115489279
1.26732955161
1.16048563455
1.1620865106
1.1973749979
1.16682395557
1.10980491125
1.08408842578
1.06435622259
1.05442559567
1.05442559567
..
VUT
Vanuatu
SP.POP.GROW
Population growth (annual %)
0
1
2.61441961937
2.79414466227
2.92707648979
2.91141286081
2.71343445873
2.41142213248
2.07038208707
1.81023910436
1.71456900518
1.83364687586
2.09391428617
2.38654424445
2.60937118902
2.74424543123
2.75854731252
2.69206694163
2.61272544098
2.55833890644
2.5151297587
2.48978391742
2.47604218253
..
WBG
West Bank and Gaza
SP.POP.GROW
Population growth (annual %)
0
1
..
4.47787327787
4.47787327787
4.47787327787
4.47787327787
4.47787327787
4.47787327787
4.47787327787
3.47772198716
3.47772198716
3.47772198716
3.47772198716
3.47772198716
3.47772198716
3.47772198716
3.47772198716
3.47772198716
3.47772198716
2.70623584336
2.65434145225
2.65738024747
..
WLD
World
SP.POP.GROW
Population growth (annual %)
0
1
1.70991156685
1.62637876804
1.50346744776
1.50069386292
1.4561823468
1.46135110698
1.40641528156
1.39452816779
1.36297968884
1.32774143598
1.31138048075
1.2697221912
1.23391801483
1.208287374
1.1913669702
1.17458647814
1.17079153405
1.16394517597
1.16104965713
1.1499696909
1.1359968322
..
WSM
Samoa
SP.POP.GROW
Population growth (annual %)
0
1
0.690503076363
0.7387035926
0.788250264283
0.840223570185
0.898045416593
0.952476305214
1.01234950666
1.05170179435
1.02923218724
0.932581491047
0.784723603336
0.618871860103
0.473419522754
0.365183318855
0.31100236861
0.298942256768
0.29307256651
0.282287098123
0.293043731078
0.32508746128
0.372111778226
..
YEM
Yemen, Rep.
SP.POP.GROW
Population growth (annual %)
0
1
4.474804713
4.83608026495
5.05313277877
5.00856991025
4.66751815544
4.1645460847
3.64310185037
3.23618176445
2.97444920208
2.89859063528
2.94706267239
3.01681203864
3.05060929302
3.07405905212
3.07487419804
3.06123312886
3.04972189454
3.048317837
3.04959840613
3.05375449708
3.05759940036
..
ZAF
South Africa
SP.POP.GROW
Population growth (annual %)
0
1
2.03607383566
2.06130097419
2.08652811272
2.11175525125
2.13698238978
2.16220952831
2.22517827722
2.28814702613
2.35111577503
2.41408452394
2.47705327285
1.8295718226
0.962056193977
1.27269227223
1.18188382569
1.13719439372
1.12184950165
1.0966788036
1.10405721544
1.07454088225
1.35162706343
..
ZAR
Congo, Dem. Rep.
SP.POP.GROW
Population growth (annual %)
0
1
3.60319642925
3.9055283977
4.10822677261
4.06872124837
3.74684970865
3.26865113496
2.74779355478
2.34408449886
2.1426543295
2.20520368855
2.4401982763
2.70993185955
2.90297553814
3.01537513481
3.01632844197
2.94367357408
2.86331159475
2.80971546848
2.76328558929
2.73053568613
2.70661011615
..
ZMB
Zambia
SP.POP.GROW
Population growth (annual %)
0
1
2.74210904837
2.61088001643
2.50343694635
2.45936078941
2.49418470207
2.57629842215
2.68220061444
2.75785289695
2.76389886985
2.68069938415
2.54593699819
2.40443860383
2.30481364531
2.2633458094
2.29701157501
2.38321178215
2.47931167427
2.56491884078
2.65395607646
2.74190855187
1.5802416581
..
ZWE
Zimbabwe
SP.POP.GROW
Population growth (annual %)
0
1
2.90754400143
2.63018900621
2.36727175114
2.14713329026
1.98400268436
1.85559231137
1.75265047047
1.62844999138
1.43933092413
1.16346330438
0.836787550049
0.522539177789
0.260304737344
0.0409583433211
-0.119623193713
-0.216071220108
-0.326936088616
-0.387111702931
-0.238256660672
0.180128579546
0.778285137837
..
ABW
Aruba
SP.POP.TOTL
Population
0
0
62147
64642
68286
72573
76762
80323
83069
85161
86827
88442
90271
92363
94596
96875
99046
100996
102711
104225
105526
106612
107488
..
ADO
Andorra
SP.POP.TOTL
Population
0
0
52773
54996
57767
60670
63111
64699
65227
64905
64246
63985
64634
66390
69043
72203
75292
77888
79874
81390
82577
83677
84864
..
AFG
Afghanistan
SP.POP.TOTL
Population
0
0
19023678
19668810.2867
20335820.3442
21025450.093
21738466.6137
22475663
23131309.0617
23806081.2226
24500537.4173
25215251.8561
25950815.5
26697430.1936
27465525.2719
28255718.7337
29068646.3577
29904962.2143
30751661.4095
31622333.1989
32517656.3188
33438328.7222
34385068.1233
..
AGO
Angola
SP.POP.TOTL
Population
0
0
10335052
10653515
11002910
11371750
11742960
12105105
12452725
12792237
13138265
13511575
13926373
14388244
14890474
15419943
15957460
16489021
17010366
17525367
18037964
18555115
19081912
..
ALB
Albania
SP.POP.TOTL
Population
0
0
3289483
3291695
3266983
3224901
3179442
3141102
3112597
3091902
3079037
3072725
3071856
3077378
3089778
3106701
3124861
3141800
3156607
3169665
3181397
3192723
3204284
..
ARE
United Arab Emirates
SP.POP.TOTL
Population
0
0
1808642
1909812
2014095
2121704
2232980
2348539
2473983
2611610
2755497
2897038
3033491
3149440
3254691
3400959
3658042
4069349
4662728
5405541
6206623
6938815
7511690
..
ARG
Argentina
SP.POP.TOTL
Population
0
0
32642442
33093579
33540023
33982035
34420352
34855160
35287113
35714929
36134642
36541029
36930709
37302116
37657340
38001251
38340778
38681174
39023850
39368066
39714298
40062470
40412376
..
ARM
Armenia
SP.POP.TOTL
Population
0
0
3544695
3512051
3449940
3370373
3290540
3223173
3172185
3134836
3109101
3090624
3076098
3065810
3061067
3060554
3062612
3065954
3069844
3074181
3079087
3084979
3092072
..
ASM
American Samoa
SP.POP.TOTL
Population
0
0
47052
48402
49648
50801
51885
52919
53901
54834
55745
56667
57625
58633
59687
60774
61871
62962
64045
65130
66217
67312
68420
..
ATG
Antigua and Barbuda
SP.POP.TOTL
Population
0
0
62202
62754
63802
65238
66895
68642
70450
72322
74190
75985
77656
79165
80507
81716
82838
83916
84952
85935
86881
87802
88710
..
AUS
Australia
SP.POP.TOTL
Population
0
0
17065100
17284000
17495000
17667000
17855000
18072000
18311000
18517000
18711000
18926000
19153000
19413000
19651400
19895400
20127400
20394800
20697900
21072500
21498500
21951700
22328800
..
AUT
Austria
SP.POP.TOTL
Population
0
0
7710882
7798899
7782519
7928746
7928746
7953067
7964966
7971116
7982461
8002186
8011560.50891
8043015.63769
8083639.29753
8117800
8174700
8233300
8282424
8300788
8336926
8365275
8384745
..
AZE
Azerbaijan
SP.POP.TOTL
Population
0
0
7159000
7271000
7382000
7495000
7597000
7685000
7763000
7838000
7913000
7983000
8048534.78591
8111143.77878
8171892.89577
8234039.36413
8306399.79835
8391850
8484550
8581300
8763400
8947150
9047932
..
BDI
Burundi
SP.POP.TOTL
Population
0
0
5601720
5724030
5835071
5933293
6017127
6086751
6140258
6181493
6223515
6283662
6374347
6499653
6656071
6838764
7039534
7251424
7474363
7707781
7943385
8170853
8382849
..
BEL
Belgium
SP.POP.TOTL
Population
0
0
9967400
10004500
10045000
10084500
10115600
10136800
10157000
10181000
10203000
10226000
10252000
10287000
10333000
10376133
10421137
10478617
10547958
10625700
10709973
10796493
10879159
..
BEN
Benin
SP.POP.TOTL
Population
0
0
4773137
4934077
5108335
5290562
5473217
5651141
5821985
5988093
6154708
6329476
6517810
6721337
6937985
7164976
7397985
7633757
7871707
8112573
8355980
8601771
8849892
..
BFA
Burkina Faso
SP.POP.TOTL
Population
0
0
9323996
9580035
9844931
10118634
10401025
10692138
10992170
11301608
11621159
11951701
12294012
12648474
13015435
13395599
13789736
14198463
14622202
15061127
15515258
15984479
16468714
..
BGD
Bangladesh
SP.POP.TOTL
Population
0
0
105256026
107768749
110225555
112645460
115059015
117486952
119928682
122370403
124803351
127214841
129592275
131944584
134266428
136514768
138633401
140587922
142353501
143956805
145478300
147030145
148692131
..
BGR
Bulgaria
SP.POP.TOTL
Population
0
0
8718000
8632000
8540000
8472000
8435000
8400000
8356000
8312068
8257000
8208000
8060000
7910000
7869000
7823000
7781161
7739900
7699020
7659764
7623395
7585131
7543325
..
BHR
Bahrain
SP.POP.TOTL
Population
0
0
492891
506685
519696
532362
545329
559069
574914
592986
611237
626765
638193
642510
642070
647164
671760
724807
811410
925733
1052359
1169578
1261835
..
BHS
Bahamas, The
SP.POP.TOTL
Population
0
0
256128
260845
265761
270701
275426
279774
283677
287217
290571
293988
297651
301606
305801
310201
314739
319358
324066
328861
333661
338358
342877
..
BIH
Bosnia and Herzegovina
SP.POP.TOTL
Population
0
0
4308197
4157485
3931372
3677379
3462032
3332098
3305672
3365616
3480285
3601438
3693698
3748370
3775883
3782717
3781358
3781001
3781588
3779034
3774164
3767683
3760149
..
BLR
Belarus
SP.POP.TOTL
Population
0
0
10189000
10194000
10216000
10239000
10227000
10194000
10160000
10117000
10069000
10035000
10005000
9970260.0553
9925000
9873968.35117
9824469.45132
9775591.49385
9732500
9702000
9602000
9507000
9490500
..
BLZ
Belize
SP.POP.TOTL
Population
0
0
189000
194000
199000
205000
211000
216500
222000
230000
238500
243100
249800
257300
265200
273700
282600
291800
301386
311500
322100
333200
344700
..
BMU
Bermuda
SP.POP.TOTL
Population
0
0
60500
61000
61000
61000
61300
61700
61785.9601475
61872.0400543
61958.2398873
62044.5598134
62131
62460
62750
63040
63320
63570
63800
64000
64200
64400
64600
..
BOL
Bolivia
SP.POP.TOTL
Population
0
0
6658462
6813834
6974168
7138204
7304230
7470925
7637622
7804333
7971237
8138802
8307248
8476709
8646659
8815911
8982917
9146655
9306660
9463497
9618466
9773441
9929849
..
BRA
Brazil
SP.POP.TOTL
Population
0
0
149650206
152146887
154582103
156985824
159398558
161848162
164342524
166869168
169409713
171936271
174425387
176877135
179289227
181633074
183873377
185986964
187958211
189798070
191543237
193246610
194946470
..
BRB
Barbados
SP.POP.TOTL
Population
0
0
259501
260351
261136
261885
262637
263416
264237
265088
265941
266758
267511
268192
268813
269389
269947
270503
271062
271618
272180
272750
273331
..
BRN
Brunei Darussalam
SP.POP.TOTL
Population
0
0
252125
259357
266794
274371
282000
289614
297188
304726
312216
319654
327036
334348
341585
348771
355943
363123
370317
377513
384695
391837
398920
..
BTN
Bhutan
SP.POP.TOTL
Population
0
0
558500
555747
546356
533895
523417
518584
520529
528222
540507
555377
571262
588050
606024
624431
642400
659293
674681
688581
701363
713665
725940
..
BWA
Botswana
SP.POP.TOTL
Population
0
0
1382371
1423570
1464924
1506037
1546414
1585637
1623704
1660538
1695587
1728179
1757925
1784449
1808103
1830127
1852243
1875673
1900905
1927540
1954822
1981576
2006945
..
CAF
Central African Republic
SP.POP.TOTL
Population
0
0
2934777
3007347
3084958
3165869
3247456
3327710
3406451
3484027
3559604
3632287
3701607
3767068
3829238
3890075
3952281
4017880
4087534
4160940
4237961
4318128
4401051
..
CAN
Canada
SP.POP.TOTL
Population
0
0
27791000
28171681.9637
28519597.3575
28833410.3605
29111906.4041
29354000
29671900
29987200
30247900
30499200
30769700
31081900
31362000
31676000
31995000
32312000
32649000
32976000
33311400
33739900
34108752
..
CHE
Switzerland
SP.POP.TOTL
Population
0
0
6712000
6800000
6875000
6938000
6994000
7041000
7074000
7088000
7110000
7140000
7184222.2001
7229807.9693
7284694.87769
7338957.41521
7389581.08171
7437115
7483934
7551117
7647675
7743831
7825243
..
CHI
Channel Islands
SP.POP.TOTL
Population
0
0
140137
140804
141179
141384
141594
141934
142448
143102
143847
144607
145330
145995
146626
147262
147963
148763
149682
150689
151705
152618
153352
..
CHL
Chile
SP.POP.TOTL
Population
0
0
13187821
13429315
13678373
13929390
14174890
14409416
14630769
14840038
15039162
15231557
15419820
15604200
15783991
15959793
16132209
16301726
16468677
16633254
16795593
16955737
17113688
..
CHN
China
SP.POP.TOTL
Population
0
0
1135185000
1150780000
1164970000
1178440000
1191835000
1204855000
1217550000
1230075000
1241935000
1252735000
1262645000
1271850000
1280400000
1288400000
1296075000
1303720000
1311020000
1317885000
1324655000
1331380000
1338299511.5
..
CIV
Cote d'Ivoire
SP.POP.TOTL
Population
0
0
12517730
12945880
13381799
13820229
14253952
14677200
15089912
15492127
15878555
16242889
16581653
16892864
17180649
17455501
17731840
18020946
18325979
18646754
18987007
19350026
19737800
..
CMR
Cameroon
SP.POP.TOTL
Population
0
0
12180819
12529904
12882506
13236573
13589699
13940337
14287475
14631908
14976200
15324051
15678269
16039737
16408085
16783366
17165267
17553589
17948395
18350022
18758778
19175028
19598889
..
COG
Congo, Rep.
SP.POP.TOTL
Population
0
0
2388902
2453938
2520196
2588270
2658948
2732706
2810118
2890841
2973329
3055437
3135773
3213330
3288923
3365171
3445765
3533177
3628561
3730612
3836339
3941454
4042899
..
COK
Cook Islands
SP.POP.TOTL
Population
0
0
17614
17730
17909
18105
18252
18307
18246
18095
17919
17808
17830
18007
18311
18693
19075
19402
19659
19861
20019
20156
20288
..
COL
Colombia
SP.POP.TOTL
Population
0
0
33203321
33849971
34497319
35146220
35797965
36453337
37112621
37775054
38439099
39102653
39764166
40422597
41078136
41731914
42385712
43040558
43696540
44352327
45005782
45654044
46294841
..
COM
Comoros
SP.POP.TOTL
Population
0
0
437876
448576
459515
470765
482401
494486
507062
520151
533754
547864
562469
577569
593170
609271
625876
642974
660559
678602
697034
715774
734750
..
CPV
Cape Verde
SP.POP.TOTL
Population
0
0
348165
355655
364727
374820
385101
394946
404166
412893
421203
429278
437238
445096
452740
460031
466784
472883
478267
483023
487371
491621
495999
..
CRI
Costa Rica
SP.POP.TOTL
Population
0
0
3070240
3147451
3224849
3303412
3384498
3468918
3557095
3648263
3740578
3831504
3919180
4002946
4083197
4160438
4235605
4309413
4381820
4452608
4522124
4590790
4658887
..
CUB
Cuba
SP.POP.TOTL
Population
0
0
10570328
10654121
10727088
10790686
10847842
10900795
10949206
10992290
11031429
11068382
11104313
11140168
11175434
11208029
11234970
11254242
11265124
11268687
11266905
11262628
11257979
..
CUW
Curacao
SP.POP.TOTL
Population
0
0
..
..
..
..
..
..
..
..
144472
139428.419298
133860.220073
128752.125148
128182
130006
131591.063181
134464.663121
137490
139841
141279
141972
142668.399295
..
CYM
Cayman Islands
SP.POP.TOTL
Population
0
0
26048
27363
28710
30074
31437
32792
34096
35361
36704
38284
40195
42501
45117
47815
50273
52268
53712
54679
55295
55763
56230
..
CYP
Cyprus
SP.POP.TOTL
Population
0
0
766663
783189
800707
818858
837205
855424
873277
890758
908059
925504
943294
961482
979874
998134
1015806
1032562
1048272
1063027
1077001
1090473
1103647
..
CZE
Czech Republic
SP.POP.TOTL
Population
0
0
10363000
10309000
10318000
10331000
10336000
10331000
10315000
10304100
10294900
10283000
10273300
10224000
10204853
10207362
10216016
10235828
10269134
10334160
10424336
10487178
10525090
..
DEU
Germany
SP.POP.TOTL
Population
0
0
79433000
80014000
80624000
81156000
81516000
81642000
81912000
82071000
82047000
82087000
82210000
82333000
82508000
82541000
82516250
82469400
82376451
82266372
82110097
81902307
81702329
..
DJI
Djibouti
SP.POP.TOTL
Population
0
0
562290
581641
594437
603534
613219
626537
644434
665755
688940
711573
731930
749604
765283
779640
793738
808367
823682
839453
855636
872090
888716
..
DMA
Dominica
SP.POP.TOTL
Population
0
0
70926
70842
70962
71181
71350
71364
71184
70846
70419
70003
69672
69447
69301
69200
69087
68925
68700
68434
68159
67922
67757
..
DNK
Denmark
SP.POP.TOTL
Population
0
0
5140000
5154000
5170000
5189000
5205000
5228000
5262000
5284220
5301000
5319111
5337344
5355082
5374255
5387174
5401177
5415978
5437272
5461438
5493621
5523095
5544139
..
DOM
Dominican Republic
SP.POP.TOTL
Population
0
0
7194666
7339826
7485619
7631076
7774932
7916309
8054768
8190620
8324680
8458164
8591967
8726256
8860760
8995398
9129965
9264267
9398285
9531954
9664948
9796852
9927320
..
DZA
Algeria
SP.POP.TOTL
Population
0
0
25299182
25930560
26557969
27169903
27751086
28291591
28786855
29242917
29673694
30099010
30533827
30982214
31441848
31913462
32396048
32888449
33391954
33906605
34428028
34950168
35468208
..
EAP
East Asia & Pacific
SP.POP.TOTL
Population
0
0
1604404741
1628544768
1651083620
1672764972
1694312969
1715490343
1736358710
1757050090
1777061068
1795957680
1813787323
1830801612
1847023163
1862608056
1877766566
1892713990
1907093067
1920855865
1934402219
1947868123
1961557074.92
..
ECA
Europe & Central Asia
SP.POP.TOTL
Population
0
0
391814664
393966669.739
395314578.254
396435301.479
396976539.473
397259057.585
397448669.443
397684031.811
397808834.255
397830234.846
398415515.428
398486738.747
398328964.191
398480003.464
398711667.458
399131595.494
399699813
400624467
401949352
403474799.858
405093570.869
..
ECU
Ecuador
SP.POP.TOTL
Population
0
0
10260587
10493498
10725281
10953182
11173647
11384506
11584074
11774005
11959586
12148188
12345023
12552036
12767415
12987992
13208869
13426402
13639708
13849721
14056740
14261566
14464739
..
EGY
Egypt, Arab Rep.
SP.POP.TOTL
Population
0
0
56843275
57952386
59004372
60020423
61032081
62063810
63120498
64199588
65309201
66457136
67648419
68888032
70174632
71498433
72844998
74203215
75568453
76941572
78323298
79716203
81121077
..
EMU
Euro area
SP.POP.TOTL
Population
0
0
304708869
306153775.424
307525663.962
308867378.575
309899710.738
310669023
311537706
312357860
313030187
313797240.021
315014558.804
316440215.554
318231185.189
320198828.721
322259053.599
324202166
325976778
327810899
329523510
330751615
331675464.434
..
ERI
Eritrea
SP.POP.TOTL
Population
0
0
3158295
3180430
3184019
3180541
3186063
3212503
3263016
3335157
3428264
3539885
3667576
3812473
3973973
4145500
4318343
4486155
4645837
4798561
4947521
5097998
5253676
..
ESP
Spain
SP.POP.TOTL
Population
0
0
38836000
38939050
39067750
39189400
39294950
39387000
39478150
39582400
39721100
39926250
40263200
40720450
41313950
42004500
42691650
43398150
44116441
44878945
45555716
45908594
46081574
..
EST
Estonia
SP.POP.TOTL
Population
0
0
1569000
1561000
1533000
1494000
1463000
1437000
1416000
1400000
1386200
1375649.33389
1369512.6148
1364097.50497
1358641.01509
1353520.14946
1348998.51742
1346097
1343547
1341672
1340675
1340271
1339646
..
ETH
Ethiopia
SP.POP.TOTL
Population
0
0
48333261
49998845
51730288
53502211
55281054
57042197
58774378
60481739
62174171
63868806
65577897
67303731
69040669
70784012
72526620
74263861
75993403
77718436
79446419
81187751
82949541
..
FIN
Finland
SP.POP.TOTL
Population
0
0
4986000
5014000
5042000
5066000
5089000
5108000
5125000
5139835
5153000
5165446.68736
5176197.68073
5187995.41152
5200596.87632
5212995.69442
5228143.17134
5246096
5266268
5288720
5313399
5338871
5363624
..
FJI
Fiji
SP.POP.TOTL
Population
0
0
728390
735262
744396
754981
765725
775651
784713
793165
800685
806927
811718
814780
816336
817339
819102
822553
828046
835267
843651
852323
860623
..
FRA
France
SP.POP.TOTL
Population
0
0
58183174
58454894
58711078
58955673
59194619
59433490
59670985
59909141
60160764
60351778
60762169
61201676
61644062
62078165
62532556
63001253
63437350
63826178
64188219
64542729
64876618.4337
..
FRO
Faeroe Islands
SP.POP.TOTL
Population
0
0
47558
46995
46050
44953
44022
43483
43416
43746
44358
45070
45743
46358
46944
47472
47915
48258
48475
48572
48597
48625
48708
..
FSM
Micronesia, Fed. Sts.
SP.POP.TOTL
Population
0
0
96319
98749
101314
103780
105825
107233
107904
107947
107605
107237
107103
107290
107728
108325
108926
109419
109789
110092
110367
110676
111064
..
GAB
Gabon
SP.POP.TOTL
Population
0
0
929044
959631
991289
1023531
1055707
1087327
1118215
1148416
1177936
1206862
1235274
1263165
1290532
1317484
1344171
1370729
1397192
1423637
1450310
1477514
1505463
..
GBR
United Kingdom
SP.POP.TOTL
Population
0
0
57247586
57424897
57580403
57718614
57865745
58019030
58166950
58316955
58487141
58682466
58892514
59107960
59325809
59566259
59867866
60224307
60595632
60986649
61393521
61801570
62218761
..
GEO
Georgia
SP.POP.TOTL
Population
0
0
4802000
4835900
4873500
4911100
4861600
4734000
4616100
4531600
4487300
4452500
4418300
4386400
4357000
4328900
4318300
4361200
4398000
4388400
4383700
4410800
4452800
..
GHA
Ghana
SP.POP.TOTL
Population
0
0
14793415
15216133
15655847
16105502
16554855
16996901
17429209
17855250
18281113
18715676
19165490
19632265
20114361
20610897
21119911
21639806
22170556
22712403
23264176
23824402
24391823
..
GIB
Gibraltar
SP.POP.TOTL
Population
0
0
26830
26921
27032
27145
27233
27283
27279
27231
27188
27214
27348
27615
27989
28410
28793
29075
29237
29296
29287
29257
29244
..
GIN
Guinea
SP.POP.TOTL
Population
0
0
5759374
6083795
6466435
6871525
7249558
7565235
7805735
7982155
8112650
8226138
8344486
8472339
8604936
8743954
8889321
9041448
9201941
9373619
9559110
9761217
9981590
..
GMB
Gambia, The
SP.POP.TOTL
Population
0
0
966151
1001252
1033748
1064522
1094974
1126183
1158308
1191155
1225044
1260283
1297084
1335674
1376035
1417818
1460493
1503678
1547259
1591357
1636107
1681734
1728394
..
GNB
Guinea-Bissau
SP.POP.TOTL
Population
0
0
1016695
1037431
1058839
1080767
1103003
1125392
1147908
1170619
1193585
1216902
1240655
1264855
1289526
1314795
1340814
1367695
1395492
1424191
1453757
1484120
1515224
..
GNQ
Equatorial Guinea
SP.POP.TOTL
Population
0
0
373887
386536
399843
413730
428005
442527
457321
472486
488039
504001
520380
537195
554429
571999
589794
607739
625777
643936
662327
681115
700401
..
GRC
Greece
SP.POP.TOTL
Population
0
0
10161000
10260000
10370000
10466000
10553000
10634000
10709000
10777000
10835000
10883000
10917482
10949957
10987543
11023514
11061701
11103965
11148460
11192763
11237094
11282760
11319048
..
GRD
Grenada
SP.POP.TOTL
Population
0
0
96200
96368
97113
98212
99313
100163
100707
101039
101219
101354
101522
101731
101954
102195
102455
102734
103037
103368
103723
104097
104487
..
GRL
Greenland
SP.POP.TOTL
Population
0
0
55600
55500
55300
55200
55500
55800
55900
56000
56100
56100
56200
56350
56600
56765
56912
56935
56774
56555
56328
56323
56534
..
GTM
Guatemala
SP.POP.TOTL
Population
0
0
8923131
9131088
9345130
9564571
9788284
10015675
10246429
10481515
10723154
10974314
11237101
11512637
11800351
12098576
12404764
12717154
13034904
13358842
13690846
14033623
14388929
..
GUM
Guam
SP.POP.TOTL
Population
0
0
133914
136518
138981
141304
143492
145559
147481
149279
151065
152987
155147
157596
160292
163121
165918
168565
171024
173334
175538
177707
179896
..
GUY
Guyana
SP.POP.TOTL
Population
0
0
724931
723448
723615
724909
726552
727979
728990
729743
730458
731496
733101
735327
738011
740925
743743
746235
748321
750068
751578
753013
754493
..
HIC
High income
SP.POP.TOTL
Population
0
0
978884198
986686521.385
992658017.109
1000503809.62
1007714782.88
1016509624
1023256947.96
1030040570.78
1036479809.24
1042858110.0
1049546481.62
1056575301.65
1063913021.07
1071239147.14
1078970903.74
1086778569.66
1094983285
1103840539
1112556749
1120454524.93
1127002177.75
..
HKG
Hong Kong SAR, China
SP.POP.TOTL
Population
0
0
5704500
5752000
5800500
5901000
6035400
6156100
6435500
6489300
6543700
6606500
6665000
6714300
6744100
6730800
6783500
6813200
6857100
6925900
6977700
7003700
7067800
..
HND
Honduras
SP.POP.TOTL
Population
0
0
4889311
5026843
5165380
5303798
5440691
5575099
5706605
5835607
5963008
6090164
6218151
6347272
6477525
6609337
6743128
6879243
7017769
7158819
7302742
7449923
7600524
..
HRV
Croatia
SP.POP.TOTL
Population
0
0
4780000
4510000
4470000
4640000
4650000
4669000
4494000
4572000
4501000
4554000
4426000
4440000
4440000
4440000
4439000
4442000
4440000
4436000
4434000
4429078
4424161.46371
..
HTI
Haiti
SP.POP.TOTL
Population
0
0
7124877
7273530
7422881
7573160
7724690
7877569
8031903
8187204
8342233
8495358
8645371
8791931
8935252
9075399
9212634
9347262
9479136
9608453
9736332
9864241
9993247
..
HUN
Hungary
SP.POP.TOTL
Population
0
0
10373988
10373400
10369341
10357522
10343355
10328965
10311238
10290486
10266570
10237530
10210971
10187576
10158608
10129552
10107146
10087065
10071370
10055780
10038188
10022650
10008703
..
IDN
Indonesia
SP.POP.TOTL
Population
0
0
184345939
187451800
190512441
193525648
196488446
199400339
202257039
205063468
207839287
210610776
213395411
216203499
219026365
221839235
224606531
227303175
229918547
232461746
234951154
237414495
239870937
..
IMY
Isle of Man
SP.POP.TOTL
Population
0
0
70313
70963
71305
71484
71724
72183
72908
73832
74870
75892
76803
77577
78246
78840
79410
79994
80598
81203
81798
82358
82869
..
IND
India
SP.POP.TOTL
Population
0
0
849515000
866530000
882821000
899329000
915697000
932180000
948758852.891
965428183.115
982182462.141
999016010.497
1015923000
1032473426.1
1048640720.59
1064398611.55
1079721193.95
1094583000
1109811147.45
1124786997.1
1139964931.64
1155347678.03
1170938000
..
IRL
Ireland
SP.POP.TOTL
Population
0
0
3505800
3525700
3549100
3563300
3570700
3608841
3637510
3674171
3712696
3754786
3805174
3866243
3931947
3996521
4070262
4159914
4260341
4356931
4425683
4458942
4481430
..
IRN
Iran, Islamic Rep.
SP.POP.TOTL
Population
0
0
54870583
56071545
57067645
57940444
58808655
59757114
60815686
61955730
63133032
64278307
65342319
66313553
67212850
68061695
68893323
69732007
70582086
71435498
72289291
73137148
73973630
..
IRQ
Iraq
SP.POP.TOTL
Population
0
0
18194212.5
18706560.7211
19233336.6454
19774946.5566
20331808.1789
20904351
21545637.5322
22206596.9267
22887832.6912
23589966.8478
24313640.5
24937728.4494
25577835.6275
26234373.2195
26907762.9649
27598437.4286
28432903.7827
29292601.0614
30178292.1471
31090762.9885
32030823.2982
..
ISL
Iceland
SP.POP.TOTL
Population
0
0
254800
258000
261100
263800
266000
268000
270000
272000
274000
277500
281000
285000
288000
289521
292074
296734
303782
311566
317414
318499
317398
..
ISR
Israel
SP.POP.TOTL
Population
0
0
4660000
4949000
5123000
5261000
5399000
5545000
5692000
5836000
5971000
6125000
6289000
6439000
6570000
6689700
6809000
6930100
7053700
7180100
7308800
7485600
7624600
..
ITA
Italy
SP.POP.TOTL
Population
0
0
56719000
56758650
56797650
56832750
56844650
56846100
56862800
56893800
56910950
56921550
56948600
56980700
57157400
57604650
58175300
58607050
58941499
59375289
59832179
60192698
60483521
..
JAM
Jamaica
SP.POP.TOTL
Population
0
0
2390000
2406041.98766
2423043.60849
2441023.64567
2460002.05466
2480000
2509923.42513
2534068.67508
2556780.05116
2574289.36408
2589388.55138
2604788.61906
2617495.22445
2625700
2638100
2650400
2663100
2675800
2687200
2695600
2702300
..
JOR
Jordan
SP.POP.TOTL
Population
0
0
3170000
3545000
3733000
3905930.64614
4060839.76096
4195000
4325045
4459121.395
4597400
4680500
4797500
4917500
5038000
5164000
5290000
5411500
5537000
5662000
5787000
5915000
6047000
..
JPN
Japan
SP.POP.TOTL
Population
0
0
123537000
123921000
124229000
124536000
124961000
125439000
125761000
126091000
126410000
126650000
126870000
127149000
127445000
127718000
127761000
127773000
127756000
127770750
127704040
127557958
127450459
..
KAZ
Kazakhstan
SP.POP.TOTL
Population
0
0
16348000
16450500
16439095.1713
16330419.0041
16095198.9373
15815626.3822
15577894.2569
15333703.04
15071300.1251
14928425.8541
14883626
14858335
14858948
14909019
15012984
15147029
15308085
15484192
15673999
15925000
16316050
..
KEN
Kenya
SP.POP.TOTL
Population
0
0
23447177
24240108
25042330
25846436
26642887
27425720
28191597
28944780
29696410
30462154
31253701
32076186
32927864
33805301
34702176
35614576
36540948
37485246
38455418
39462188
40512682
..
KGZ
Kyrgyz Republic
SP.POP.TOTL
Population
0
0
4423000
4495000
4546000
4543000
4540000
4589900
4657000
4725000
4797000
4864600
4915300
4954800
4993200
5038600
5092802
5143500
5192100
5234800
5277900
5321354.85787
5365167.4953
..
KHM
Cambodia
SP.POP.TOTL
Population
0
0
9531928
9868226
10205755
10539239
10862069
11169233
11458858
11731187
11986128
12224414
12446949
12653684
12845222
13024171
13193961
13357574
13515884
13669857
13822644
13977903
14138255
..
KIR
Kiribati
SP.POP.TOTL
Population
0
0
71845
73163
74263
75227
76188
77248
78431
79713
81085
82524
84010
85550
87147
88776
90398
91988
93534
95043
96532
98027
99546
..
KNA
St. Kitts and Nevis
SP.POP.TOTL
Population
0
0
42025
41800
41585.1406852
41380.2778078
41185.2742759
41000
40870
40740
40130
42260
44286
46111
46710
46710
48543
49173
49811
50455
51102
51752
52402
..
KOR
Korea, Rep.
SP.POP.TOTL
Population
0
0
42869000
43268000
43663000
44056000
44453000
45093000
45525000
45954000
46287000
46617000
47008000
47357000
47622000
47859000
48039000
48138000
48297000
48456000
48607000
48747000
48875000
..
KSV
Kosovo
SP.POP.TOTL
Population
0
0
1862000
1898000
1932000
1965000
1997000
2029000
2059000
2086000
1966000
1762000
1700000
1721000
1737000
1748000
1757000
1767000
1777000
1785000
1795000
1805000
1815000
..
KWT
Kuwait
SP.POP.TOTL
Population
0
0
2087687
2031004
..
..
..
1627911
1628120
1678812
1763693
1857217
1940786
2009588
2069816
2126786
2189485
2264014
2351441
2447818
2548351
2646286
2736732
..
LAC
Latin America & Caribbean
SP.POP.TOTL
Population
0
0
436563801
444478825.988
452344611.749
460167857.923
467974797.329
475780008
483587887.425
491387049.428
499129354.948
506764025.422
514251596.959
521601579.044
528805600.9
535867595.568
542816871
549657318
556388966
563005619
569544686.56
576048447.817
582554334
..
LAO
Lao PDR
SP.POP.TOTL
Population
0
0
4192414
4312348
4434570
4557216
4677981
4795112
4907960
5016576
5120845
5220920
5317060
5408912
5496700
5582028
5667055
5753341
5841572
5931385
6022001
6112143
6200894
..
LBN
Lebanon
SP.POP.TOTL
Population
0
0
2948372
3026061
3130785
3249799
3364891
3462974
3539137
3597350
3644171
3690033
3742329
3802903
3868504
3935421
3998042
4052420
4097457
4134872
4166915
4196990
4227597
..
LBR
Liberia
SP.POP.TOTL
Population
0
0
2127098
2091355
2054179
2030591
2039922
2094591
2203809
2360511
2540835
2710963
2847290
2939296
2996082
3037412
3092721
3182539
3313718
3477197
3658460
3835929
3994122
..
LBY
Libya
SP.POP.TOTL
Population
0
0
4334459
4421885
4509970
4598629
4687106
4775009
4862665
4951076
5041233
5134324
5231189
5331311
5434293
5541062
5652797
5769709
5893738
6023053
6149620
6262667
6355112
..
LCA
St. Lucia
SP.POP.TOTL
Population
0
0
134100
136000
137151
139908
142689
145437
147062
149666
151952
153703
155996
157897
159133
160620
162434
164791
166838
168338
170204.560104
172091.816941
174000
..
LIC
Low income
SP.POP.TOTL
Population
0
0
505125668
518313871.287
531582376.344
544929574.093
558462532.614
572270586
586218251.062
600367178.223
614694469.417
629154888.856
643709522.5
658363836.194
673150297.272
688058562.734
703067266.358
718159454.214
733301564.409
748540606.199
764009535.319
779877024.58
796261359.619
..
LIE
Liechtenstein
SP.POP.TOTL
Population
0
0
28986
29370
29760
30154
30549
30941
31328
31710
32090
32470
32853
33239
33626
34006
34365
34696
34995
35266
35521
35772
36032
..
LKA
Sri Lanka
SP.POP.TOTL
Population
0
0
17337048
17542866
17740936
17925624
18089720
18229498
18340596
18428257
18510095
18610110
18745084
18921794
19134096
19369853
19610604
19842536
20062070
20272269
20473799
20669142
20859949
..
LMC
Lower middle income
SP.POP.TOTL
Population
0
0
1752202971.9
1788576804.59
1824284150.23
1860074122.86
1895322845.55
1930501219.69
1965919892.37
2001543944.06
2037189419.98
2072902664.97
2108745666.94
2144386334.84
2179734117.18
2214931884.49
2249948384.73
2284739301.43
2320130220.6
2355546143.58
2391505688.72
2428089995.65
2465074764.66
..
LMY
Low & middle income
SP.POP.TOTL
Population
0
0
4293468935.9
4371415044.46
4446000861.6
4519772689.1
4592947007.71
4665997499.67
4739169824.27
4812744865.94
4885941606.25
4958197748.63
5030206052.18
5100373199.25
5169007176.54
5236992638.25
5304415071.54
5371585794.14
5438995062.01
5506189733.78
5574219257.6
5643217379.04
5713504824.78
..
LSO
Lesotho
SP.POP.TOTL
Population
0
0
1639177
1669190
1699284
1729896
1761558
1794531
1829222
1865218
1900962
1934337
1963878
1988983
2010261
2028976
2047006
2065752
2085561
2106128
2127412
2149201
2171318
..
LTU
Lithuania
SP.POP.TOTL
Population
0
0
3698000
3704000
3700000
3683000
3658000
3632000
3605000
3580000
3555000
3531000
3499536
3481292
3469070
3454205
3435591
3414304
3394082
3375618
3358115
3339456
3320656
..
LUX
Luxembourg
SP.POP.TOTL
Population
0
0
381850
387000
392175
397475
402925
408625
414225
419450
424700
430475
436300
441525
446175
451630
458095
465158
472637
479993
488650
497783
505831
..
LVA
Latvia
SP.POP.TOTL
Population
0
0
2670700
2662000
2632000
2586000
2548000
2515000
2491000
2450000
2410000
2390000
2372000
2359000
2338000
2325342
2312819
2300512
2287948
2276100
2266094
2254834
2242916
..
MAC
Macao SAR, China
SP.POP.TOTL
Population
0
0
359709
369493
377886
385193
391906
398426
404808
411050
417435
424292
431867
440265
449472
459456
470127
481390
493267
505709
518463
531195
543656
..
MAF
St. Martin (French part)
SP.POP.TOTL
Population
0
0
30036
31821
32892
33238
33098
32712
32102
31304
30358
29305
28384
27782
27450
27363
27514
27906
28414
28905
29376
29820
30235
..
MAR
Morocco
SP.POP.TOTL
Population
0
0
24781105
25237951
25679802
26107772
26523600
26928600
27323664
27708647
28082684
28444414
28793236
29129204
29453931
29770316
30082152
30392473
30702084
31011199
31321453
31634524
31951412
..
MCO
Monaco
SP.POP.TOTL
Population
0
0
30896
31330
31745
32154
32574
33014
33485
33974
34444
34840
35126
35288
35341
35323
35282
35260
35267
35295
35336
35377
35407
..
MDA
Moldova
SP.POP.TOTL
Population
0
0
3696000
3706000
3709000
3705000
3694000
3675099
3667748
3659655
3652771
3646999
3639588
3631460
3623059
3612869
3603934
3595182
3585520
3576904
3570107
3565603
3562062
..
MDG
Madagascar
SP.POP.TOTL
Population
0
0
11280625
11620718
11974724
12343496
12728117
13129227
13547271
13981666
14430739
14892172
15364272
15846412
16338968
16842482
17357913
17885967
18426870
18980391
19546282
20124150
20713819
..
MDV
Maldives
SP.POP.TOTL
Population
0
0
219474
225709
231756
237606
243256
248712
253960
259002
263867
268600
273236
277791
282266
286665
290988
295240
299419
303539
307632
311739
315885
..
MEX
Mexico
SP.POP.TOTL
Population
0
0
84306602
85923799
87523328
89109703
90691331
92272749
93858373
95441345
97001933
98513690
99959594
101329543
102634153
103902569
105175967
106483757
107835259
109220753
110627158
112033369
113423047
..
MHL
Marshall Islands
SP.POP.TOTL
Population
0
0
47288
48469
49369
50040
50565
51008
51389
51697
51930
52080
52145
52131
52066
51992
51968
52037
52210
52487
52880
53396
54038
..
MIC
Middle income
SP.POP.TOTL
Population
0
0
3788343267.9
3853101173.18
3914418485.26
3974843115.01
4034484475.1
4093726913.67
4152951573.21
4212377687.71
4271247136.83
4329042859.78
4386496529.68
4442009363.05
4495856879.27
4548934075.52
4601347805.18
4653426339.92
4705693497.6
4757649127.58
4810209722.28
4863340354.46
4917243465.17
..
MKD
Macedonia, FYR
SP.POP.TOTL
Population
0
0
1909353
1922774
1934265
1944343
1953874
1963484
1973283
1982994
1992404
2001178
2009091
2016075
2022255
2027819
2033039
2038109
2043091
2047922
2052524
2056769
2060563
..
MLI
Mali
SP.POP.TOTL
Population
0
0
8672868
8861362
9076261
9313042
9564231
9824510
10092753
10371338
10662517
10969725
11295324
11639798
12001887
12380104
12772264
13176642
13592796
14020786
14459990
14909813
15369809
..
MLT
Malta
SP.POP.TOTL
Population
0
0
360000
363193.424486
366584.961844
370179.61981
373982.737778
378000
380000
383000
385000
388000
390000
393028
395969
398582
401268
403837
406408
409050
411950
413290
412961
..
MMR
Myanmar
SP.POP.TOTL
Population
0
0
39268304
39855885
40425088
40985963
41552659
42133199
42735941
43352191
43952526
44496687
44957660
45323903
45609292
45843675
46070248
46321162
46605278
46915826
47250315
47601374
47963012
..
MNA
Middle East & North Africa
SP.POP.TOTL
Population
0
0
225408451.903
231091051.847
236418422.5
241597911.803
246694608.013
251756454.086
256869972.5
261991701.322
267110960.708
272223960.478
277413759.294
282557047.158
287764353.595
292982527.937
298274691.781
303593040.428
309007470.149
314496566.481
320030113.075
325624696.616
331263899.869
..
MNE
Montenegro
SP.POP.TOTL
Population
0
0
608816
617144
625630
633443
639542
643227
644121
642533
639309
635689
632606
630299
628594
627500
626912
626739
627074
627962
629185
630435
631490
..
MNG
Mongolia
SP.POP.TOTL
Population
0
0
2192553
2226469
2251861
2271236
2288370
2306131
2325369
2345618
2366895
2388862
2411369
2434515
2458853
2485177
2514462
2547339
2584143
2624509
2667474
2711659
2756001
..
MNP
Northern Mariana Islands
SP.POP.TOTL
Population
0
0
43973
46727
49456
52161
54852
57517
60173
62766
65138
67075
68432
69184
69393
69105
68404
67381
66006
64349
62707
61473
60917
..
MOZ
Mozambique
SP.POP.TOTL
Population
0
0
13547076
13867422
14318167
14854590
15409381
15933452
16412893
16862385
17295521
17735992
18200656
18691461
19200021
19721009
20246287
20770013
21290952
21811326
22332900
22858607
23390765
..
MRT
Mauritania
SP.POP.TOTL
Population
0
0
1995548
2050456
2107590
2166948
2228453
2292053
2357678
2425374
2495316
2567741
2642743
2720367
2800333
2882003
2964526
3047249
3129959
3212672
3295254
3377630
3459773
..
MUS
Mauritius
SP.POP.TOTL
Population
0
0
1057000
1066655.85522
1081000
1097000
1113000
1122457
1133996
1148284
1160421
1175267
1186873
1199881
1210196
1222811
1233386
1243253
1252987
1260692
1268854
1275323
1281214
..
MWI
Malawi
SP.POP.TOTL
Population
0
0
9380892
9583696
9681728
9721620
9772164
9883350
10070605
10319125
10612353
10922265
11228756
11529337
11833102
12144945
12472794
12822587
13195329
13589404
14005113
14442290
14900841
..
MYS
Malaysia
SP.POP.TOTL
Population
0
0
18208562
18707774
19204087
19701263
20205446
20720810
21247102
21781499
22322448
22867698
23414909
23964621
24515323
25060184
25590453
26100241
26586287
27051142
27502008
27949395
28401017
..
MYT
Mayotte
SP.POP.TOTL
Population
0
0
92413
97901
103795
109918
116028
121949
127624
133089
138384
143585
148753
153887
158983
164101
169315
174681
180217
185922
191805
197870
204114
..
NAM
Namibia
SP.POP.TOTL
Population
0
0
1414830
1465201
1512524
1558055
1603865
1651352
1700975
1751872
1802579
1851034
1895839
1936399
1973408
2008342
2043339
2079951
2118653
2158984
2200422
2242078
2283289
..
NCL
New Caledonia
SP.POP.TOTL
Population
0
0
168000
172166.996378
176723.789726
181695.688344
187110.741229
193000
197000
201641.744875
205000
209214
213230
217324
221490
225735
230068
234393
238459
242400
246705
250325.927542
254000
..
NER
Niger
SP.POP.TOTL
Population
0
0
7788198
8036341
8299868
8578542
8871631
9178575
9499892
9835945
10185812
10548219
10922421
11308134
11706182
12118322
12546945
12993884
13460138
13945662
14450007
14972257
15511953
..
NGA
Nigeria
SP.POP.TOTL
Population
0
0
97552057
99986136
102444773
104931559
107452627
110014688
112618306
115268715
117983368
120784408
123688536
126704722
129832447
133067097
136399438
139823340
143338939
146951477
150665730
154488072
158423182
..
NIC
Nicaragua
SP.POP.TOTL
Population
0
0
4120797
4219176
4323263
4430182
4535802
4637040
4733164
4824799
4911886
4994730
5073704
5148635
5219724
5288271
5356012
5424336
5493527
5563654
5635577
5710230
5788163
..
NIU
Niue
SP.POP.TOTL
Population
0
0
2333
2292
2260
2233
2204
2168
2123
2069
2011
1953
1900
1852
1809
1768
1728
1686
1643
1598
1555
1511
1468
..
NLD
Netherlands
SP.POP.TOTL
Population
0
0
14952000
15070000
15178000
15279096.9549
15381133
15460000
15517000
15607000
15698000
15805000
15925513
16046180
16148929
16225302
16281779
16319868
16346101
16381696
16445593
16530388
16612213
..
NOR
Norway
SP.POP.TOTL
Population
0
0
4241500
4261700
4286400
4312000
4336600
4360000
4381000
4404100
4432000
4460000
4491000
4513000
4538000
4564855
4591910
4623291
4660677
4709153
4768212
4828726
4885240
..
NPL
Nepal
SP.POP.TOTL
Population
0
0
19081064
19554170
20042806
20546441
21064150
21594872
22137784
22691788
23255046
23825372
24400606
24980184
25562573
26143530
26717875
27281945
27833665
28373838
28905358
29432743
29959364
..
NRU
Nauru
SP.POP.TOTL
Population
0
0
9157
9354
9544
9719
9863
9970
10033
10058
10056
10046
10041
10046
10057
10075
10094
10114
10133
10154
10180
10212
10255
..
NZL
New Zealand
SP.POP.TOTL
Population
0
0
3448000
3495100
3531700
3572200
3620100
3673400
3732000
3781400
3815000
3835100
3857800
3880500
3948500
4027200
4087500
4133900
4184600
4228300
4268900
4315800
4367800
..
OMN
Oman
SP.POP.TOTL
Population
0
0
1868055
1947042
2031377
2113398
2182619
2232018
2258730
2266469
2262969
2259398
2264163
2279171
2302874
2335967
2378336
2429510
2490620
2561187
2636963
2712141
2782435
..
PAK
Pakistan
SP.POP.TOTL
Population
0
0
111844679
114970102
118010303
121029915
124121817
127346713
130737306
134255952
137808222
141261069
144522192
147557907
150407242
153139895
155860066
158645463
161513324
164445596
167442258
170494367
173593383
..
PAN
Panama
SP.POP.TOTL
Population
0
0
2415926
2466083
2517356
2569672
2622903
2676926
2731717
2787228
2843276
2899636
2956126
3012635
3069123
3125565
3181969
3238321
3294583
3350673
3406487
3461901
3516820
..
PER
Peru
SP.POP.TOTL
Population
0
0
21685537
22122065
22553275
22980182
23404523
23827163
24248671
24667356
25079136
25478577
25861887
26228274
26579252
26916342
27242033
27558769
27866387
28166078
28463338
28765162
29076512
..
PHL
Philippines
SP.POP.TOTL
Population
0
0
61628668
63146876
64659225
66173874
67703053
69255386
70831419
72427130
74040838
75669587
77309965
78964389
80630416
82293990
83936698
85546427
87116275
88652631
90173139
91703090
93260798
..
PLW
Palau
SP.POP.TOTL
Population
0
0
15089
15471
15894
16345
16804
17254
17694
18122
18522
18876
19172
19402
19573
19698
19803
19906
20011
20118
20228
20346
20472
..
PNG
Papua New Guinea
SP.POP.TOTL
Population
0
0
4157654
4261537
4368815
4479959
4595463
4715617
4840693
4970478
5104153
5240560
5378824
5518586
5659946
5803029
5948135
6095437
6244916
6396307
6549268
6703361
6858266
..
POL
Poland
SP.POP.TOTL
Population
0
0
38118800
38244400
38364700
38459000
38543600
38587600
38618000
38650000
38666145
38658000
38453757
38248076
38230364
38204570
38182222
38165445
38141267
38120560
38125759
38151603
38187488
..
PRI
Puerto Rico
SP.POP.TOTL
Population
0
0
3537000
3562110
3585176
3615497
3649237
3683103
3724655
3759430
3781101
3800081
3814413
3837768
3858272
3876637
3893931
3910722
3926744
3941235
3954553
3967288
3978702
..
PRK
Korea, Dem. Rep.
SP.POP.TOTL
Population
0
0
20143212
20466180
20804249
21145052
21471407
21770898
22038893
22278723
22495715
22698674
22894095
23083419
23264576
23436550
23597383
23745941
23882465
24008606
24126329
24238179
24346229
..
PRT
Portugal
SP.POP.TOTL
Population
0
0
9896000
9935000
9963000
9974000
9998000
10027000
10055000
10089000
10129000
10174000
10225836
10292999
10368403
10441075
10501970
10549424
10584344
10608335
10622413
10632482
10642841
..
PRY
Paraguay
SP.POP.TOTL
Population
0
0
4243860
4354331
4464780
4575121
4685320
4795365
4905150
5014650
5124050
5233615
5343539
5453921
5564709
5675754
5786836
5897816
6008597
6119295
6230242
6341892
6454548
..
PYF
French Polynesia
SP.POP.TOTL
Population
0
0
195383
199464
203481
207494
211583
215798
220172
224667
229171
233532
237638
241448
245000
248357
251622
254870
258119
261345
264541
267685
270764
..
QAT
Qatar
SP.POP.TOTL
Population
0
0
473722
482926
488204
491420
495126
501371
512422
528787
548828
569870
590957
608057
624173
653500
715146
820986
978336
1178192
1396060
1597765
1758793
..
ROM
Romania
SP.POP.TOTL
Population
0
0
23207000
23185000
22789000
22755000
22731000
22681000
22608000
22554000
22503000
22457994
22443000
22132000
21803129
21742013
21684890
21634371
21587666
21546873
21513622
21480401
21442012
..
RUS
Russian Federation
SP.POP.TOTL
Population
0
0
148292000
148624000
148689000
148520000
148336000
148141000
147739000
147304000
146899000
146309000
146303000
145949580.335
145299690.296
144599446.749
143849574.209
143150000
142500000
142100000
141950000
141850000
141750000
..
RWA
Rwanda
SP.POP.TOTL
Population
0
0
7109538
6871192
6452688
5984449
5648306
5570206
5803830
6297733
6944116
7582861
8098344
8456968
8696378
8857859
9009655
9201727
9441406
9710531
10004092
10311275
10624005
..
SAS
South Asia
SP.POP.TOTL
Population
0
0
1122835469
1146816153.29
1169954532.34
1193273391.09
1216536841.61
1240080994
1263809018.95
1287767888.34
1311864087.56
1335966631.35
1359978470.5
1383441166.3
1406364874.86
1428733472.29
1450545174.3
1471800361.21
1493299468.86
1514449958.3
1535791297.96
1557437807.75
1579469720.12
..
SAU
Saudi Arabia
SP.POP.TOTL
Population
0
0
16139053
16669764
17189075
17679720
18117969
18491845
18786467
19020639
19256649
19578923
20045276
20681576
21463072
22334371
23213767
24041116
24799436
25504176
26166639
26809105
27448086
..
SDN
Sudan
SP.POP.TOTL
Population
0
0
26494169
27159893
27865979
28605664
29367076
30141147
30929107
31733750
32549326
33368681
34187729
35002234
35816110
36643433
37503647
38410320
39368726
40373635
41415151
42478309
43551941
..
SEN
Senegal
SP.POP.TOTL
Population
0
0
7241573
7461567
7686866
7915080
8143140
8369125
8591861
8812695
9035367
9265135
9505862
9758841
10023194
10297956
10581316
10871908
11169549
11474661
11787123
12106865
12433728
..
SGP
Singapore
SP.POP.TOTL
Population
0
0
3047000
3135100
3230700
3313500
3419000
3524500
3670700
3796000
3927200
3958700
4027900
4138000
4176000
4114800
4166700
4265800
4401400
4588600
4839400
4987600
5076700
..
SID
Small island developing states
SP.POP.TOTL
Population
0
0
48211366
48976447.8253
49758294.5279
50539767.0202
51339904.6821
52119949
52938665.4251
53714767.42
54471355.0512
55126178.3641
55822056.5514
56584860.6191
57280509.2244
57874566
58580476
59319709
60080521
60875489
61727395.5601
62469891.7445
63154684
..
SLB
Solomon Islands
SP.POP.TOTL
Population
0
0
309527
318371
327529
336960
346599
356404
366363
376511
386906
397627
408732
420232
432107
444344
456919
469805
483000
496490
510221
524125
538148
..
SLE
Sierra Leone
SP.POP.TOTL
Population
0
0
3981567
3995290
3979553
3946835
3915066
3898363
3898177
3913681
3953705
4028260
4143115
4303850
4505515
4730020
4952134
5153435
5327364
5478289
5612129
5739293
5867536
..
SLV
El Salvador
SP.POP.TOTL
Population
0
0
5332842
5413269
5498489
5584047
5663820
5733401
5791403
5839103
5878097
5911094
5940305
5966027
5988233
6008523
6028792
6050513
6074487
6100868
6129628
6160423
6192993
..
SMR
San Marino
SP.POP.TOTL
Population
0
0
24134
24442
24769
25098
25406
25678
25897
26077
26271
26551
26967
27543
28251
29013
29722
30301
30721
31007
31198
31359
31534
..
SOM
Somalia
SP.POP.TOTL
Population
0
0
6599249
6585079
6543380
6498410
6484228
6524697
6628554
6786636
6982940
7193120
7399033
7596920
7791254
7981955
8170899
8359859
8547497
8733493
8922260
9119848
9330872
..
SRB
Serbia
SP.POP.TOTL
Population
0
0
7586000
7595636
7646424.34931
7699306.774
7734639.24299
7738986.59755
7708878.20505
7649630.75191
7567745
7540401
7516346
7503433
7500031
7480591
7463157
7440769
7411569
7381579
7350221
7320807
7292574
..
SSA
Sub-Saharan Africa
SP.POP.TOTL
Population
0
0
512441809
526517575.605
540885096.753
555533254.806
570451252.284
585630643
601095565.954
616864105.038
632967300.777
649455216.534
666359387
683485056
700720220
718320983
736300101
754689489
773506277
792757258
812501589
832763504
853566225
..
STP
Sao Tome and Principe
SP.POP.TOTL
Population
0
0
116117
118512
120835
123137
125488
127935
130499
133152
135838
138475
141010
143430
145761
148038
150311
152622
154970
157361
159852
162515
165397
..
SUR
Suriname
SP.POP.TOTL
Population
0
0
406890
413011
418828
424455
430102
435920
441896
447957
454124
460419
466846
473431
480132
486800
493236
499294
504913
510136
515066
519861
524636
..
SVK
Slovak Republic
SP.POP.TOTL
Population
0
0
5283000
5283000
5306500
5324600
5347300
5363676
5373793
5383233
5390657
5395115
5388720
5378867
5379056
5379607
5382438
5387001
5391409
5397318
5406626
5418590
5433456
..
SVN
Slovenia
SP.POP.TOTL
Population
0
0
1998100
2001700
1996600
1966800
1988900
1990000
1991000
1985956
1982600
1985500
1989000
1992000
1994000
1995699.87724
1996999.90986
2000474
2006868
2018122
2021316
2039669
2052821
..
SWE
Sweden
SP.POP.TOTL
Population
0
0
8559000
8617400
8668000
8718600
8780700
8831000
8843000
8849437
8851800
8857400
8869000
8894000
8924000
8956000
8991994
9024040
9080505
9148092
9219637
9298515
9379116
..
SWZ
Swaziland
SP.POP.TOTL
Population
0
0
862947
887467
908158
926420
944404
963591
984632
1006824
1028708
1048174
1063832
1075083
1082777
1088724
1095487
1104909
1117604
1133007
1150344
1168345
1186056
..
SXM
Sint Maarten (Dutch part)
SP.POP.TOTL
Population
0
0
..
..
..
..
..
..
..
..
31240
31084
30519.3964554
31189
32566
33791
35318
36936
38272
39464
40459
39133
37850.458217
..
SYC
Seychelles
SP.POP.TOTL
Population
0
0
70000
70754.9860868
71656.9890151
72711.4083424
73924.6119202
75304
76417
77319
78846
80410
81131
81202
83700
82800
82500
82900
84600
85033
86956
87298
86525
..
SYR
Syrian Arab Republic
SP.POP.TOTL
Population
0
0
12324116
12690183
13063423
13438799
13809349
14171130
14518843
14856464
15200324
15572833
15988534
16454926
16962918
17490104
18004797
18484122
18860939.3111
19245438.4199
19637775.9275
20038111.6276
20446608.5712
..
TCA
Turks and Caicos Islands
SP.POP.TOTL
Population
0
0
11549
12216
13005
13848
14644
15333
15859
16275
16763
17573
18873
20728
23044
25625
28191
30531
32590
34404
35960
37271
38354
..
TCD
Chad
SP.POP.TOTL
Population
0
0
6011224
6197766
6387856
6583079
6785842
6998108
7219081
7448585
7689836
7946982
8222327
8517944
8831199
9153893
9474792
9785902
10084087
10371839
10653762
10937089
11227208
..
TGO
Togo
SP.POP.TOTL
Population
0
0
3665509
3747750
3822591
3897510
3982804
4085492
4208738
4349349
4500173
4650754
4793504
4926142
5050919
5170252
5288273
5408044
5529908
5652811
5776837
5901859
6027798
..
THA
Thailand
SP.POP.TOTL
Population
0
0
57072058
57711519
58225969
58671177
59126690
59650157
60258113
60933752
61660383
62408639
63155029
63898879
64642931
65370277
66060383
66698483
67276383
67796451
68267982
68706122
69122234
..
TJK
Tajikistan
SP.POP.TOTL
Population
0
0
5303152
5418785
5519021
5607922
5691845
5775404
5860334
5945181
6027676
6104268
6172807
6232587
6285809
6336724
6391120
6453240
6524634
6604426
6691416
6783390
6878637
..
TKM
Turkmenistan
SP.POP.TOTL
Population
0
0
3668000
3772350
3881973
3991917
4095512
4188010
4267690
4335991
4395293
4449427
4501419
4551737
4600093
4647912
4696771
4747839
4801847
4858843
4918396
4979672
5041995
..
TMP
Timor-Leste
SP.POP.TOTL
Population
0
0
743145
767267
794561
821141
841687
852817
852280
842341
829617
823386
830089
852522
888099
931324
974024
1010367
1038572
1060770
1079749
1099887
1124355
..
TON
Tonga
SP.POP.TOTL
Population
0
0
95150
95305
95426
95541
95691
95907
96196
96551
96966
97431
97935
98476
99053
99659
100286
100926
101584
102254
102910
103519
104058
..
TTO
Trinidad and Tobago
SP.POP.TOTL
Population
0
0
1215494
1224233
1233753
1243590
1253000
1261443
1268851
1275460
1281396
1286871
1292058
1296962
1301576
1306065
1310622
1315386
1320418
1325672
1331040
1336349
1341465
..
TUN
Tunisia
SP.POP.TOTL
Population
0
0
8154400
8318200
8489900
8657400
8815400
8957500
9089300
9215000
9333300
9455900
9563500
9673600
9781900
9839800
9932400
10029000
10127900
10225100
10328900
10439600
10549100
..
TUR
Turkey
SP.POP.TOTL
Population
0
0
54130268
55068880
56012109
56959988
57911273
58864649
59821978
60783217
61742674
62692616
63627862
64544914
65446165
66339433
67235927
68143186
69063538
69992754
70923730
71846212
72752325
..
TUV
Tuvalu
SP.POP.TOTL
Population
0
0
9004
9056
9103
9148
9188
9227
9264
9298
9334
9374
9419
9471
9530
9590
9646
9694
9732
9762
9786
9806
9827
..
TZA
Tanzania
SP.POP.TOTL
Population
0
0
25478979
26331511
27230502
28152305
29064223
29943732
30783155
31592450
32388671
33197305
34038161
34917073
35832494
36788281
37786946
38831024
39923609
41068185
42267667
43524738
44841226
..
UGA
Uganda
SP.POP.TOTL
Population
0
0
17699717
18314701
18935726
19561967
20193432
20831075
21473592
22123185
22788843
23482533
24213120
24984181
25794397
26641627
27521632
28431204
29370251
30339895
31339392
32367909
33424683
..
UKR
Ukraine
SP.POP.TOTL
Population
0
0
51892000
52000469.7386
52150265.7334
52179209.7012
51921041.2931
51512298.6057
51057188.981
50594105.0195
50143939.1301
49673349.9915
49175847.6425
48683864.5779
48202500
47812950
47451600
47105150
46787750
46509350
46258200
46053300
45870700
..
UMC
Upper middle income
SP.POP.TOTL
Population
0
0
2036140296
2064524368.59
2090134335.02
2114768992.15
2139161629.55
2163225693.98
2187031680.84
2210833743.65
2234057716.85
2256140194.81
2277750862.75
2297623028.21
2316122762.09
2334002191.03
2351399420.46
2368687038.49
2385563277
2402102984
2418704033.56
2435250358.82
2452168700.5
..
URY
Uruguay
SP.POP.TOTL
Population
0
0
3109122
3131140
3153857
3177035
3200342
3223401
3235549
3256181.7531
3273776.89664
3288819.05812
3300847.40789
3308356.42479
3308526.67574
3303539.56834
3301732
3305723
3314466
3323906
3334052
3344938
3356584
..
USA
United States
SP.POP.TOTL
Population
0
0
249623000
252981000
256514000
259919000
263126000
266278000
269394000
272657000
275854000
279040000
282172000
285082000
287804000
290326000
293046000
295753000
298593000
301580000
304375000
307007000
309050816
..
UZB
Uzbekistan
SP.POP.TOTL
Population
0
0
20510000
20952000
21449000
21942000
22377000
22785000
23225000
23667000
24051000
24400000
24650000
24967000
25271800
25567700
25864386
26167369
26485800
26867800
27313700
27767100
28160361.3732
..
VCT
St. Vincent and the Grenadines
SP.POP.TOTL
Population
0
0
107449
107755
107950
108051
108089
108087
108049
107979
107907
107869
107891
107987
108150
108354
108566
108755
108918
109060
109178
109269
109333
..
VEN
Venezuela, RB
SP.POP.TOTL
Population
0
0
19750000
20197000
20659000
21121000
21583000
22043000
22502000
22959000
23413000
23867000
24311000
24765000
25220000
25674000
26127000
26577000
27031000
27483000
27935000
28384000
28834000
..
VIR
Virgin Islands (U.S.)
SP.POP.TOTL
Population
0
0
103963
104807
105711
106577
107317
107817
108093
108355
108535
108596
108639
108747
108923
109148
109354
109600
109764
109821
109840
109825
109775
..
VNM
Vietnam
SP.POP.TOTL
Population
0
0
66016700
67242400
68450100
69644500
70824500
71995500
73156700
74306900
75456300
76596700
77630900
78621000
79538700
80468400
81437700
82393500
83313000
84221100
85122300
86024600
86936464.4184
..
VUT
Vanuatu
SP.POP.TOTL
Population
0
0
146636
150791
155270
159857
164254
168263
171783
174921
177946
181239
185074
189544
194555
199968
205561
211170
216760
222377
228041
233790
239651
..
WBG
West Bank and Gaza
SP.POP.TOTL
Population
0
0
1978248.40342
2068845.12553
2163590.85444
2262675.59985
2366298.07325
2474666.0864
2587996.96809
2706518
2802299.01694
2901469.63011
3004149.79399
3110463.70815
3220539.96743
3334511.71755
3452516.81609
3574697.99932
3701203.05475
3832185
3937309
4043218
4152102
..
WLD
World
SP.POP.TOTL
Population
0
0
5272353133.9
5358101565.85
5438658878.71
5520276498.73
5600661790.6
5682507123.67
5762426772.23
5842785436.72
5922421415.49
6001055858.63
6079752533.8
6156948500.89
6232920197.61
6308231785.39
6383385975.29
6458364363.8
6533978347.01
6610030272.78
6686776006.6
6763671903.97
6840507002.54
..
WSM
Samoa
SP.POP.TOTL
Population
0
0
161308
162504
163790
165172
166662
168257
169969
171766
173543
175169
176549
177645
178488
179141
179699
180237
180766
181277
181809
182401
183081
..
YEM
Yemen, Rep.
SP.POP.TOTL
Population
0
0
11948209
12540234
13190192
13867656
14530275
15148172
15710211
16226938
16716850
17208494
17723186
18266008
18831819
19419710
20026117
20648643
21288070
21946990
22626595
23328214
24052514
..
ZAF
South Africa
SP.POP.TOTL
Population
0
0
35200000
35933107.7639
36690738.7645
37473796.3972
38283222.6723
39120000
40000246.9538
40926063.0383
41899682.7772
42923484.5341
44000000
44909738
45533292
46116494
46664771
47198469
47730946
48257282
48793022
49320150
49991300
..
ZAR
Congo, Dem. Rep.
SP.POP.TOTL
Population
0
0
36406226
37856212
39443819
41081774
42650247
44067369
45295039
46369335
47373590
48429878
49626200
50989424
52491329
54098245
55754885
57420522
59088415
60772175
62474901
64204304
65965795
..
ZMB
Zambia
SP.POP.TOTL
Population
0
0
7860053
8067972
8272498
8478471
8692599
8919456
9161931
9418120
9682058
9945115
10201562
10449825
10693471
10938261
11192422
11462365
11750105
12055384
12379612
12723746
12926409
..
ZWE
Zimbabwe
SP.POP.TOTL
Population
0
0
10469202
10748215
11005690
11244552
11469872
11684693
11891290
12086519
12261742
12405236
12509477
12575015
12607791
12612956
12597877
12570686
12529655
12481245
12451543
12473992
12571454
..
ABW
Aruba
SP.URB.GROW
Urban population growth (annual %)
0
1
1.78050083199
3.33797361728
4.8822340874
5.48336753955
5.00253848117
3.9217557865
2.49717742176
1.61528197976
1.05781824193
0.955541414151
1.15159125224
2.24818511699
2.34601854882
2.33775712567
2.17339925764
1.90674309361
1.81250326457
1.59178764129
1.36887669202
1.15204852751
0.946327439995
..
ADO
Andorra
SP.URB.GROW
Urban population growth (annual %)
0
1
2.84042943747
3.91465933378
4.7038578202
4.69085205289
3.73180784887
2.2718467647
0.534907804067
-0.77352439883
-1.29993958034
-0.68728120521
0.728200589203
2.22500380728
3.46063891433
4.01543881317
3.72733453235
2.92576303466
2.00713456997
1.36686553566
0.931892164098
0.804634076848
0.887216834783
..
AFG
Afghanistan
SP.URB.GROW
Urban population growth (annual %)
0
1
3.49218876591
4.96102539817
4.93500744563
4.9098090078
4.88539196459
4.86172052407
4.37918684787
4.35690768993
4.33527905353
4.31427285662
4.29386261061
4.32760179024
4.30569210428
4.28441694071
4.26374912809
4.24366302454
4.43773077012
4.41108310851
4.38528465149
4.36029544137
4.33607798865
..
AGO
Angola
SP.URB.GROW
Urban population growth (annual %)
0
1
6.50596596739
6.68703162668
6.75045876038
6.70077708244
6.50366698871
6.22393596093
5.0785065861
4.88779348203
4.81966674211
4.90711699212
5.08569423084
5.282981099
5.41128226645
5.43580778529
5.3312954827
5.14604670199
4.7657459388
4.60869721542
4.48296150878
4.4015201297
4.34995648954
..
ALB
Albania
SP.URB.GROW
Urban population growth (annual %)
0
1
1.74427565162
1.43149965088
0.592345275177
0.0315730715292
-0.109019489982
0.0804775097436
0.517698217019
0.742083812416
0.972645547394
1.16534541137
1.32373937213
1.65546552822
1.85653128454
1.97976534161
1.99613106558
1.93420233136
1.88864674643
1.81144294901
1.74878265615
1.7159401254
1.70375271122
..
ARE
United Arab Emirates
SP.URB.GROW
Urban population growth (annual %)
0
1
5.47637935581
5.26570408097
5.13905317422
5.02717981746
4.93365324704
4.86722946408
5.05041849635
5.26033521165
5.2094444236
4.85521536892
4.44840376571
3.72534552728
3.26155124479
4.37028756677
7.26132799974
10.6297637079
13.6889551556
14.8595161415
13.8963122069
11.2284182356
8.0098989868
..
ARG
Argentina
SP.URB.GROW
Urban population growth (annual %)
0
1
1.86536274109
1.76263615786
1.7285441636
1.69627986601
1.66713318924
1.6393682794
1.54683731515
1.51927880048
1.48152303607
1.43059089259
1.37202126456
1.2888154085
1.23510821401
1.19562072068
1.17517801605
1.1687684817
1.10057691703
1.09630083194
1.09325733596
1.09002653764
1.08629369237
..
ARM
Armenia
SP.URB.GROW
Urban population growth (annual %)
0
1
0.174321399496
-1.28138138702
-2.14179817228
-2.69208666493
-2.75720996098
-2.42987803544
-1.95721304241
-1.54834412272
-1.18962153366
-0.96269698528
-0.839095853438
-0.642702766231
-0.463468274358
-0.326358037155
-0.243339125657
-0.202463687215
0.00191395153655
0.0161387434092
0.0342643805482
0.0658200027757
0.104146714646
..
ASM
American Samoa
SP.URB.GROW
Urban population growth (annual %)
0
1
3.91486118489
3.91066529567
3.61200666702
3.35476817095
3.15924729125
3.01028257068
2.65594297537
2.52679964326
2.45186795764
2.43815607789
2.4678587655
2.29560145784
2.34000506573
2.3600309805
2.34113315861
2.29712994645
2.07716614621
2.05026158017
2.02415956489
2.00773765177
1.9989265866
..
ATG
Antigua and Barbuda
SP.URB.GROW
Urban population growth (annual %)
0
1
0.242322386313
0.0894116058343
0.855760003899
1.41883753734
1.69472544756
1.75787972454
1.47592494246
1.48579742309
1.40031422545
1.22749848685
0.998437886685
1.04844583171
0.797141383761
0.598842741809
0.46395821798
0.385022480434
0.96608282282
0.888871498806
0.832521739618
0.791506287723
0.765155845528
..
AUS
Australia
SP.URB.GROW
Urban population growth (annual %)
0
1
1.45656155408
1.43837777852
1.37692310907
1.14160202348
1.22150806268
1.37075377787
1.56901025101
1.3732670743
1.29613083184
1.39575730848
1.44488469799
1.57745351693
1.44913531343
1.4620469333
1.38688354589
1.54680440782
1.67910161431
1.99712157377
2.20447499188
2.28877631567
1.90549851554
..
AUT
Austria
SP.URB.GROW
Urban population growth (annual %)
0
1
1.09693507996
1.13499919667
-0.210250518072
1.86148247672
0
0.306275096071
0.149503424403
0.0771833416182
0.14222518138
0.246799444643
0.117080784032
0.604392929896
0.715897862803
0.633340516989
0.909677056218
0.925036985194
0.925158319043
0.550670861141
0.762524966563
0.666505144763
0.55845194611
..
AZE
Azerbaijan
SP.URB.GROW
Urban population growth (annual %)
0
1
1.11355897887
0.99212717052
0.951695322163
0.952578941108
0.781927985189
0.578626976049
0.625970412582
0.576127303791
0.56548000717
0.492380401021
0.427713961187
0.892001952385
0.863149811242
0.874458532612
0.991666196077
1.14004467783
1.37006240529
1.40459630065
2.36986383984
2.34439154917
1.38867728136
..
BDI
Burundi
SP.URB.GROW
Urban population growth (annual %)
0
1
5.98130696253
4.97702862978
4.6612305034
4.33611843197
4.00060184286
3.68223469294
3.88503501531
3.59116132319
3.5164034885
3.72233379668
4.11923651448
4.79726294336
5.14959795147
5.40455694497
5.51946758293
5.52436385242
6.13716219512
6.09044780255
5.93795510187
5.66717382796
5.32660543927
..
BEL
Belgium
SP.URB.GROW
Urban population growth (annual %)
0
1
0.399185724937
0.454475551971
0.486885030289
0.47527507254
0.390666723023
0.29203677733
0.261039914735
0.297937414094
0.277743229699
0.287019492323
0.31574225055
0.382001526739
0.487338714348
0.457713038096
0.473923583962
0.591174129721
0.680111087317
0.754879479765
0.810521272876
0.825139780148
0.783294136571
..
BEN
Benin
SP.URB.GROW
Urban population growth (annual %)
0
1
5.27357581822
4.6407110001
4.77799770012
4.79543638301
4.66811079275
4.45696933166
3.79029216519
3.61854634201
3.54337099408
3.5926200185
3.71847140858
3.95867762921
4.04849781952
4.0877926319
4.06127819875
3.99087877244
4.06451468467
3.99924383631
3.93185446982
3.86525730013
3.80065942804
..
BFA
Burkina Faso
SP.URB.GROW
Urban population growth (annual %)
0
1
4.88671103715
4.57552474671
4.55987331619
4.54155361268
4.52011956304
4.49728521381
4.73472617128
4.70550182604
4.68104816804
4.66225086426
4.64762907761
4.8699254777
4.84714595277
4.82751164458
4.81107695053
4.79631689711
5.20987504651
5.17639099692
5.14131518434
5.10393707077
5.06473984861
..
BGD
Bangladesh
SP.URB.GROW
Urban population growth (annual %)
0
1
4.82689715335
4.26020706318
4.1196473561
4.00303627151
3.91842002565
3.85487712107
3.79299296922
3.72190137452
3.64642067309
3.56386035739
3.47485927936
3.56289452163
3.47783960129
3.36456564106
3.21537301258
3.04774488588
3.0985103897
2.9368435837
2.8357984952
2.81421927613
2.84697280139
..
BGR
Bulgaria
SP.URB.GROW
Urban population growth (annual %)
0
1
-1.26373708395
-0.570562446016
-0.652485185673
-0.382151714218
-0.0221350553887
-0.00196654900155
-0.201227752225
-0.204228538327
-0.342837935277
-0.274363407964
-1.49975899195
-1.50192919435
-0.144444260817
-0.21245547393
-0.16381577634
-0.16062088305
-0.103132080257
-0.0865583272651
-0.0531029235194
-0.0821392416523
-0.13339390723
..
BHR
Bahrain
SP.URB.GROW
Urban population growth (annual %)
0
1
3.27330049239
2.82822669277
2.60348657807
2.47595705427
2.4744997965
2.5562581465
2.79475641515
3.09503255561
3.03139827192
2.50868970704
1.80690756959
0.674163541508
-0.0685048836518
0.790240795569
3.73013939056
7.60042786435
11.3320448901
13.2264562847
12.8655711109
10.606046235
7.63755799454
..
BHS
Bahamas, The
SP.URB.GROW
Urban population growth (annual %)
0
1
2.53544033233
2.1252046919
2.16650616836
2.14025589318
2.02802919053
1.86305056527
1.63202250721
1.48617864898
1.40639139646
1.41389791919
1.48247127208
1.58792047963
1.64852083182
1.69509639244
1.71812189057
1.72199299866
1.70383154842
1.70860530219
1.68826840354
1.6365635046
1.56482292219
..
BIH
Bosnia and Herzegovina
SP.URB.GROW
Urban population growth (annual %)
0
1
-0.537582036989
-2.59619696061
-4.63668361636
-5.73236254608
-5.09687305254
-2.89648150266
0.220476264438
2.80360129548
4.34676749799
4.40852060861
3.5064705685
2.62005614332
1.86898707951
1.30569844016
1.07642550918
1.09067960784
1.27668422681
1.17789249384
1.10118014159
1.04331585449
1.00043007262
..
BLR
Belarus
SP.URB.GROW
Urban population growth (annual %)
0
1
1.46754552243
0.62316691911
0.786409931419
0.79247326207
0.447118196701
0.238021437092
0.253286224458
0.159816772498
0.104975125504
0.238960711195
0.274488245641
0.308097000868
0.196668597287
0.131934446816
0.140701081101
0.140403228361
0.138250566888
0.262811962107
-0.462683560947
-0.424192579234
0.393172528869
..
BLZ
Belize
SP.URB.GROW
Urban population growth (annual %)
0
1
2.73862511031
2.61111440037
2.54466656612
2.97051544139
2.88481543377
2.57324139665
2.63491952117
3.66626962871
3.75491831036
2.03611691473
2.84437349561
3.95738783281
4.01344474077
4.13443544381
4.17008195301
4.16439258934
4.22340830239
4.28211244627
4.31809675786
4.35055673297
4.34645238889
..
BMU
Bermuda
SP.URB.GROW
Urban population growth (annual %)
0
1
1.49877909655
0.823049913652
0
0
0.490597876885
0.650408796918
0.139222566376
0.139222566376
0.139222566376
0.139222566376
0.139222566376
0.528129262478
0.463222615696
0.461086753773
0.443178946319
0.394042593551
0.361152940243
0.312989300893
0.312012733624
0.311042241439
0.310077767825
..
BOL
Bolivia
SP.URB.GROW
Urban population growth (annual %)
0
1
4.13079506403
3.66429161548
3.66527111058
3.6465750387
3.60375841131
3.54423565251
3.01158112399
2.95768684406
2.90814290006
2.86618935635
2.8282702475
2.7930880606
2.75282996024
2.70042379965
2.63279781517
2.55683018032
2.44815958162
2.38006529929
2.3281865736
2.2973659793
2.28179954455
..
BRA
Brazil
SP.URB.GROW
Urban population growth (annual %)
0
1
2.66673137238
2.45351952518
2.38050154033
2.3293878546
2.30545918973
2.29928783763
2.39965707474
2.3884574918
2.36635492762
2.32847412449
2.27828242245
2.13202668956
2.0853149458
2.02434508689
1.94616893932
1.85806341591
1.59913848157
1.51598518194
1.45424316847
1.42142748656
1.40899723263
..
BRB
Barbados
SP.URB.GROW
Urban population growth (annual %)
0
1
-1.6458004973
1.42191789114
1.38410545979
1.35785199089
1.34681805305
1.34512876021
1.34926121777
1.34894816063
1.33822125047
1.31345998096
1.27856665412
1.40462794121
1.36858188306
1.3385559506
1.31892628122
1.30552995742
1.44869082014
1.43191830117
1.41883052437
1.40682036277
1.39623479022
..
BRN
Brunei Darussalam
SP.URB.GROW
Urban population growth (annual %)
0
1
3.89050364472
3.67551217031
3.66747448429
3.63377616616
3.56903756525
3.48386981506
3.30781293351
3.22579135728
3.14404704836
3.06512553126
2.98882880694
2.88404786744
2.80975831989
2.7458024968
2.69503016694
2.65230441639
2.55863230324
2.51787445822
2.4743947774
2.42586807005
2.37443338234
..
BTN
Bhutan
SP.URB.GROW
Urban population growth (annual %)
0
1
5.3233373789
4.38487003793
2.94776388435
2.13801750558
2.27388935136
3.15455453468
5.04409653233
5.92847273941
6.56989534798
6.8098078427
6.75474914743
7.21140210379
7.14724445303
6.96427797785
6.65741549737
6.27547303295
5.9808177657
5.58273447227
5.26142548643
5.04772366936
4.90829447922
..
BWA
Botswana
SP.URB.GROW
Urban population growth (annual %)
0
1
10.530231601
6.2696255463
6.08890968228
5.89239996166
5.6755887362
5.44553104162
4.07213161493
3.91451681027
3.73260736614
3.52121186612
3.29813385628
3.02714998856
2.82340515978
2.69490353822
2.66368108548
2.69842217702
2.65388950808
2.69194644797
2.68925763483
2.62686334415
2.52378101051
..
CAF
Central African Republic
SP.URB.GROW
Urban population growth (annual %)
0
1
2.99272908014
2.65983774318
2.76465963325
2.80517034731
2.76018352564
2.65653125131
2.5534835662
2.46614453537
2.35995322973
2.23476472479
2.10344984999
2.0185974422
1.90178559094
1.84046193283
1.84994905846
1.90896421515
2.13781357691
2.19723493829
2.24970972008
2.28783681582
2.31429936761
..
CAN
Canada
SP.URB.GROW
Urban population growth (annual %)
0
1
1.5458260692
1.64730066256
1.51339343908
1.37949089313
1.2455929848
1.11169967464
1.53941511908
1.51713890581
1.32362973107
1.28329715962
1.3368571472
1.16035125738
1.04773371478
1.14660870712
1.15218460269
1.13582883253
1.16232099191
1.12119028463
1.13642118271
1.40244407689
1.2114360066
..
CHE
Switzerland
SP.URB.GROW
Urban population growth (annual %)
0
1
3.18316911061
1.41179424158
1.20601389529
1.02118233589
0.912782182882
0.778511458321
0.386033538459
0.116090699329
0.228214823413
0.339298241586
0.53562649726
0.632521517508
0.756307957594
0.742123588213
0.687425515581
0.641195865737
0.709380378906
0.975445989871
1.35230630168
1.33110618389
1.12738137298
..
CHI
Channel Islands
SP.URB.GROW
Urban population growth (annual %)
0
1
0.46241128553
-0.100064096459
-0.31224833976
-0.436484427849
-0.436565584295
-0.348593954509
0.361486001021
0.458064187381
0.519257201761
0.526948323549
0.498730067986
0.587597208561
0.56216532336
0.563537592785
0.605441245408
0.669597420558
1.07085022521
1.12343528461
1.12285996542
1.0488847416
0.926643312352
..
CHL
Chile
SP.URB.GROW
Urban population growth (annual %)
0
1
1.94100448494
2.07838268114
2.10066048074
2.0808758441
2.00879613802
1.90198305955
1.87930951543
1.77376763383
1.68519985087
1.62226238835
1.57828466401
1.58366920438
1.5390824587
1.49957368647
1.46492228379
1.43419894809
1.33804708909
1.31248293329
1.28835966141
1.26506991209
1.2423395195
..
CHN
China
SP.URB.GROW
Urban population growth (annual %)
0
1
4.73168801852
4.24233046341
4.02292143258
3.87087578332
3.77942217685
3.66729754648
3.81213656288
3.71309871073
3.57874775011
3.41819411962
3.27677283648
3.2637478724
3.14457446425
3.03767643865
2.95180729741
2.89168202974
2.76164586736
2.67804397389
2.62266453841
2.5730586923
2.54319493483
..
CIV
Cote d'Ivoire
SP.URB.GROW
Urban population growth (annual %)
0
1
4.09572349007
4.21593182327
4.15735677011
4.06226476765
3.92158525564
3.75075369414
3.78249849562
3.62984637098
3.45315709633
3.24828955294
3.0343715975
3.36529049411
3.17274744945
3.04893507053
3.01146349479
3.03758045983
3.07889706859
3.11630521537
3.17053221315
3.23782803713
3.31030107568
..
CMR
Cameroon
SP.URB.GROW
Urban population growth (annual %)
0
1
5.11333726864
5.0608334383
4.96161485083
4.85095782348
4.72763418084
4.59926157815
4.47022716193
4.35306368036
4.25859836673
4.19231018144
4.14610097079
4.02751658942
3.98862067524
3.95050723032
3.91101282514
3.870946799
3.72306652314
3.68971385836
3.65831939718
3.62904375154
3.60046781196
..
COG
Congo, Rep.
SP.URB.GROW
Urban population growth (annual %)
0
1
3.48636288627
3.45652813159
3.4288727462
3.4241134877
3.44718231836
3.48364456362
3.46491408223
3.49911899216
3.47607423341
3.3822816014
3.24924333596
3.09289278636
2.97072959932
2.93321475739
3.00398145222
3.13838245294
3.29311380456
3.39892500939
3.41604784658
3.32070331528
3.15502795757
..
COK
Cook Islands
SP.URB.GROW
Urban population growth (annual %)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
COL
Colombia
SP.URB.GROW
Urban population growth (annual %)
0
1
2.7579215401
2.57097464418
2.5324000323
2.49755413573
2.46741102458
2.44026481661
2.24528329743
2.22001570696
2.19142931018
2.15832047746
2.1223997191
2.05750604119
2.02221340178
1.99082072912
1.96463322243
1.94159729808
1.91938445314
1.89475758294
1.86607692416
1.83199793826
1.79410129947
..
COM
Comoros
SP.URB.GROW
Urban population growth (annual %)
0
1
4.15881550838
2.70056360161
2.69485700005
2.70344226469
2.72555820414
2.75739790815
2.37000174539
2.40694391226
2.43974646684
2.46715675207
2.48864651373
2.5067392664
2.52265862787
2.53535530263
2.54584924832
2.55193545478
2.9130386818
2.90919768924
2.89384287172
2.8664757147
2.82957568799
..
CPV
Cape Verde
SP.URB.GROW
Urban population growth (annual %)
0
1
7.48191611164
4.23758558873
4.58435041837
4.75342866573
4.6895785507
4.46936395281
4.17535917462
3.96973060267
3.79308234858
3.66757915259
3.5751542896
3.26824824481
3.1680296825
3.04165533966
2.88078612089
2.70166948128
2.4130745156
2.25426969053
2.14509822993
2.10180000494
2.10510484356
..
CRI
Costa Rica
SP.URB.GROW
Urban population growth (annual %)
0
1
4.57575402145
4.47558277714
4.38228355635
4.32252615628
4.3045187938
4.30858412874
3.65057283347
3.65826290261
3.61389223254
3.50442602142
3.35317530927
3.02590534718
2.88783218415
2.76879613559
2.67743272827
2.60660747514
2.50550238093
2.43485400206
2.37458181663
2.32567712821
2.2844425518
..
CUB
Cuba
SP.URB.GROW
Urban population growth (annual %)
0
1
1.60186786551
1.03452491021
0.926869508472
0.834859771566
0.771425946833
0.729510646657
0.79244385163
0.74082342806
0.702324547328
0.680118515785
0.668609708604
0.322372376785
0.316066125918
0.291242003436
0.240083893785
0.171388883857
0.123097240109
0.0580681230016
0.0106225586238
-0.0115373884831
-0.0148630620034
..
CUW
Curacao
SP.URB.GROW
Urban population growth (annual %)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
SP.URB.GROW
Urban population growth (annual %)
0
1
5.10346959894
4.9250746046
4.80537582668
4.64155169672
4.43245320608
4.21990400411
3.89954921542
3.64294425563
3.72762230344
4.21463133867
4.87105554463
5.57849952854
5.97315105523
5.80802821839
5.01287558625
3.89161754629
2.72521111108
1.78432832285
1.12027650612
0.842807848628
0.833985529051
..
CYP
Cyprus
SP.URB.GROW
Urban population growth (annual %)
0
1
2.68158061878
2.49130911761
2.56946007078
2.59764338795
2.57064762514
2.50639444383
2.24187003596
2.15800308404
2.09935238866
2.07829731145
2.07903538928
2.11365758078
2.0982736563
2.04940014157
1.95764723341
1.8382951815
1.79818481069
1.68509698364
1.59251593031
1.52883651902
1.48576080561
..
CZE
Czech Republic
SP.URB.GROW
Urban population growth (annual %)
0
1
-0.0435271667552
-0.682148932532
-0.0726931079931
-0.0342995479428
-0.112084431236
-0.209114988381
-0.3159811585
-0.266974235493
-0.25083216797
-0.277426779318
-0.256405788778
-0.61626641871
-0.322860252843
-0.111009921639
-0.0510313209964
0.0577810301756
0.324858239588
0.631221550381
0.868815999361
0.601029549304
0.360856249691
..
DEU
Germany
SP.URB.GROW
Urban population growth (annual %)
0
1
0.970521535627
0.783476629199
0.81414994449
0.712330454359
0.497224127494
0.209036698155
0.27558132938
0.139307635665
-0.0838920592421
-0.00593402290093
0.0950242761367
0.231550697157
0.29430431371
0.12189939265
0.0518546329863
0.0249844781604
-0.00383834844173
-0.0249046336809
-0.08144718182
-0.144805766489
-0.136005196407
..
DJI
Djibouti
SP.URB.GROW
Urban population growth (annual %)
0
1
5.29194012845
4.43482682704
3.21645349515
2.54837391202
2.61109255417
3.15740572824
3.71578969909
4.14624791313
4.30668627866
4.1080877308
3.68878972808
3.05603786858
2.73562315806
2.51981689546
2.4489325414
2.47880399732
2.34033722756
2.35795744859
2.36869933891
2.36190140654
2.34357283799
..
DMA
Dominica
SP.URB.GROW
Urban population growth (annual %)
0
1
0.0617431558992
0.382455276616
0.66770940275
0.804129984131
0.730682933519
0.510737214052
0.236170728597
0.0103838555697
-0.120552702512
-0.110845927631
0.00538846341739
0.181587211871
0.292060058577
0.354153693415
0.334085195048
0.260288213573
0.138332311014
0.0752107792549
0.0583611558198
0.110579834067
0.213584593946
..
DNK
Denmark
SP.URB.GROW
Urban population growth (annual %)
0
1
0.230663739361
0.319161966172
0.357094089941
0.413945439459
0.35496223399
0.487979269173
0.671765329645
0.444904940321
0.34056168792
0.364580262764
0.365701208188
0.519624137065
0.544879725805
0.42723289775
0.446379980568
0.460094860098
0.694619479579
0.744775819887
0.887952206696
0.834583951328
0.678904750987
..
DOM
Dominican Republic
SP.URB.GROW
Urban population growth (annual %)
0
1
2.49654911391
2.93514141159
2.89576751505
2.84487492405
2.77955247728
2.70576028242
3.31307610112
3.22714884379
3.15431188465
3.09848416409
3.0548924893
2.95127629898
2.91067679353
2.87030751895
2.82881682179
2.78640755166
2.5379418578
2.50193905219
2.46354187764
2.42198391061
2.37813730403
..
DZA
Algeria
SP.URB.GROW
Urban population growth (annual %)
0
1
4.11252883859
3.95103795128
3.85503068413
3.72113327927
3.53911499628
3.33161323571
3.08343982087
2.90193922909
2.77498068242
2.7187550396
2.71333508194
2.62158509734
2.62302710443
2.62611727535
2.62536114248
2.62051128924
2.52532853416
2.52544821061
2.51225719433
2.48173820439
2.43841411201
..
EAP
East Asia & Pacific
SP.URB.GROW
Urban population growth (annual %)
0
1
4.53709401645
4.2326004332
4.04157042584
3.90315903154
3.81342127543
3.71382417819
3.90689173472
3.81156718747
3.69244070474
3.55495801207
3.42760554773
3.38387777116
3.27599385699
3.17781525057
3.09235668872
3.02138350334
2.88276514029
2.79816507273
2.73771182471
2.68732929153
2.65485612853
..
ECA
Europe & Central Asia
SP.URB.GROW
Urban population growth (annual %)
0
1
1.28591768737
0.605559906806
0.41193022292
0.343071332315
0.203997563224
0.134929398988
0.0732986731238
0.0785892674964
0.092689031545
0.0814432683781
0.223280849796
0.100469278753
0.0413741143795
0.113911385071
0.132822533161
0.180506435411
0.288837386358
0.386263309851
0.482650234276
0.532014200068
0.565404766386
..
ECU
Ecuador
SP.URB.GROW
Urban population growth (annual %)
0
1
3.72749583582
3.21984275758
3.15062922968
3.05924032664
2.94034691345
2.80817248126
2.59912332743
2.48026730741
2.41064483673
2.40432452764
2.43994058122
2.75157052428
2.77819202833
2.77828700959
2.74048042953
2.67661477699
2.60860609311
2.54982324233
2.49519367996
2.44799692333
2.40601251406
..
EGY
Egypt, Arab Rep.
SP.URB.GROW
Urban population growth (annual %)
0
1
1.90708785578
1.61002419565
1.47557944391
1.38288459924
1.3459696484
1.34977155143
1.59475004725
1.60153354846
1.61993684304
1.64865919532
1.68282890654
1.81584778604
1.85044162855
1.86886551745
1.86583352745
1.84736094252
1.91699562433
1.89450674598
1.87355462288
1.85636498821
1.84049678048
..
EMU
Euro area
SP.URB.GROW
Urban population growth (annual %)
0
1
0.638428538882
0.662128341294
0.639032069229
0.627968821146
0.521003290988
0.431489576747
0.438737132
0.422620983067
0.374376481624
0.405532997078
0.557037855573
0.668923287103
0.781096195141
0.828085061257
0.849303341455
0.811858708739
0.805471177636
0.820043700525
0.78031370695
0.627400199241
0.532548891255
..
ERI
Eritrea
SP.URB.GROW
Urban population growth (annual %)
0
1
2.21805116557
1.70597347416
1.11029725814
0.87836963034
1.15147062488
1.79497045039
2.99558504409
3.60190132053
4.14879706582
4.58019152093
4.90115817321
5.65649498747
5.89942075169
5.94617840793
5.77620777293
5.47566236282
5.74025981365
5.42796083773
5.20348004212
5.09744601884
5.06608161176
..
ESP
Spain
SP.URB.GROW
Urban population growth (annual %)
0
1
0.494058790237
0.397533287218
0.462334225725
0.443086085844
0.400984202946
0.365819248253
0.336500503597
0.368957546376
0.454920608346
0.620161415565
0.945294094109
1.23404663575
1.5516638541
1.76222917986
1.72712546346
1.74570318096
1.82393408246
1.89565389961
1.67843529458
0.952993528473
0.557126449189
..
EST
Estonia
SP.URB.GROW
Urban population growth (annual %)
0
1
0.148178994796
-0.821086272997
-2.12087060094
-2.8887871482
-2.40960775604
-2.1069443632
-1.64373686089
-1.30824643154
-1.16277108202
-0.936496196985
-0.619855499753
-0.396187946973
-0.400809489952
-0.377622965919
-0.334623869002
-0.215318419829
-0.160801936976
-0.110847444596
-0.0455401909901
-0.0013492097805
-0.0178621166542
..
ETH
Ethiopia
SP.URB.GROW
Urban population growth (annual %)
0
1
5.09713296844
5.43048528138
5.40596109141
5.3302799966
5.19528634122
5.02432340681
4.42006766923
4.27202130071
4.14872836631
4.0590261267
3.99213491894
4.1956005309
4.12077793813
4.04215995607
3.95685826887
3.86898292955
4.1484156332
4.05733514918
3.97949434415
3.91747238881
3.86604976727
..
FIN
Finland
SP.URB.GROW
Urban population growth (annual %)
0
1
1.00504546344
0.560001463474
0.556882902963
0.474872281376
0.452979602721
0.37265905636
0.234491038719
0.191181950626
0.157849964651
0.143196054638
0.109765103205
0.652292463089
0.665435700395
0.659180948178
0.709437928264
0.760337146847
0.863394362654
0.902757707366
0.940609560367
0.951060513078
0.933154965927
..
FJI
Fiji
SP.URB.GROW
Urban population growth (annual %)
0
1
2.050339569
2.79666648144
3.05838405681
3.20303586375
3.17262759699
3.01710764119
2.38479375219
2.27979639871
2.13767810579
1.95651413262
1.75817232597
1.40639011492
1.21016649571
1.13188095436
1.21447698182
1.40955775093
1.68399753072
1.87642381163
1.99683567496
2.01089154997
1.94765330432
..
FRA
France
SP.URB.GROW
Urban population growth (annual %)
0
1
0.607696158904
0.681612413449
0.652529141821
0.630507693697
0.618783534526
0.616569618161
0.638833784632
0.637778241067
0.658013436983
0.555318969284
0.915446051919
0.957905495743
0.956857500714
0.937806659033
0.964809757402
0.981686176067
0.976240196602
0.896664703302
0.850416787412
0.834759126766
0.799158771766
..
FRO
Faeroe Islands
SP.URB.GROW
Urban population growth (annual %)
0
1
-0.34278066153
-0.994994123611
-1.83584155351
-2.21590430564
-1.89805702694
-1.03758166384
3.28125031503
4.07855282783
4.60385207241
4.70681466013
4.50255760507
3.24552737254
3.13037068678
2.95820267276
2.73535516449
2.48774546533
1.79632042144
1.52964454322
1.36374774865
1.35289288932
1.44927781084
..
FSM
Micronesia, Fed. Sts.
SP.URB.GROW
Urban population growth (annual %)
0
1
2.09315378881
1.94745449608
2.01724272032
1.85476726874
1.39820878542
0.765505914361
-1.63255010015
-2.26858666919
-2.68030423111
-2.76274765123
-2.60523299748
0.174446038278
0.407408315427
0.552643582305
0.553278496426
0.451579690662
0.695681682835
0.632428439062
0.605035554584
0.633880000182
0.70300514903
..
GAB
Gabon
SP.URB.GROW
Urban population growth (annual %)
0
1
5.16340596116
5.04629242187
5.02067255674
4.94474648134
4.80932155468
4.63637834945
4.04010453733
3.88880802462
3.74703322093
3.6205599547
3.50739386386
3.10287797981
3.00601150137
2.92216025029
2.85333690825
2.79737069033
2.48469995706
2.44429715592
2.42228543942
2.42121517162
2.43365759032
..
GBR
United Kingdom
SP.URB.GROW
Urban population growth (annual %)
0
1
0.32147925881
0.376868807205
0.33800809874
0.307273249326
0.322070461976
0.331985881818
0.344473649918
0.347321650898
0.381090475332
0.423011622947
0.446826408173
0.432253233318
0.434930266074
0.471486740134
0.572017895903
0.660526131054
0.703823397314
0.732283038428
0.753921474769
0.751354678122
0.761610613784
..
GEO
Georgia
SP.URB.GROW
Urban population growth (annual %)
0
1
0.409454675449
0.266952584379
0.336074103897
0.328190766507
-1.45535024806
-3.10398970184
-2.968295126
-2.29577520478
-1.43267153081
-1.23086374103
-1.22544707118
-0.800546309298
-0.748497642841
-0.723073527578
-0.321269692551
0.91238279015
0.992529298664
-0.0664861404943
0.0446447543075
0.767868819894
1.09904648824
..
GHA
Ghana
SP.URB.GROW
Urban population growth (annual %)
0
1
4.6884729454
4.829987852
4.82169232642
4.76635039889
4.649825472
4.49778831718
4.4381055238
4.30505955899
4.21207456713
4.17050484088
4.1636087323
4.11883698266
4.10965576862
4.09439914652
4.06847295618
4.03455801513
3.9593173992
3.92761796147
3.89081099465
3.84814002773
3.80107684655
..
GIB
Gibraltar
SP.URB.GROW
Urban population growth (annual %)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GIN
Guinea
SP.URB.GROW
Urban population growth (annual %)
0
1
5.49615341721
6.54571851197
7.1541186302
7.11959864974
6.38815544247
5.28444634495
4.14134392339
3.23664834363
2.61335833711
2.37121200805
2.40088655967
2.80263486438
2.81877673086
2.85266607749
2.88340143682
2.9163943006
3.20357856496
3.27199300979
3.36306902725
3.47635101911
3.59774001646
..
GMB
Gambia, The
SP.URB.GROW
Urban population growth (annual %)
0
1
6.84227379235
6.40022793045
5.94759735572
5.61330326222
5.4303499544
5.35383171682
5.20389926009
5.13173279559
5.08745642959
5.06715551805
5.06074067493
4.86806164867
4.87655685816
4.85542113495
4.79551474567
4.71113380222
4.40350972285
4.33308536722
4.27328093618
4.22843586104
4.19306138598
..
GNB
Guinea-Bissau
SP.URB.GROW
Urban population growth (annual %)
0
1
6.14585299958
3.2217323067
3.23096564815
3.22424712841
3.19736735695
3.15699417624
1.91383696496
1.89196961317
1.87564456955
1.8674180333
1.86580070407
1.86443976329
1.86431362968
1.87315146692
1.89211406894
1.9174501398
2.28192571085
2.30486836089
2.32318721343
2.3348141808
2.34115073636
..
GNQ
Equatorial Guinea
SP.URB.GROW
Urban population growth (annual %)
0
1
5.94676234503
5.66276257335
5.66701076175
5.64554680723
5.57480820407
5.47271430242
3.28840717884
3.26225655412
3.23872038275
3.21829315037
3.1981061728
3.23171742725
3.20926639069
3.17132883427
3.11506159059
3.04864611276
3.33532389424
3.26931600005
3.22313018428
3.202651405
3.19602369144
..
GRC
Greece
SP.URB.GROW
Urban population growth (annual %)
0
1
0.837349873655
1.13952129918
1.2360535747
1.09083662149
0.996888921684
0.933399950691
0.837625766853
0.767607243029
0.671193939131
0.57630363879
0.450435108182
0.531248493471
0.576348688223
0.559984269031
0.578412288615
0.613404124388
0.730490816753
0.726093285658
0.723693657905
0.732895222366
0.647371894191
..
GRD
Grenada
SP.URB.GROW
Urban population growth (annual %)
0
1
-0.854405677723
-0.198883092234
0.395339052946
0.749139863437
0.737210720036
0.473210390891
0.161175469115
-0.0527957858932
-0.205396516684
-0.251577261587
-0.220731037345
-0.0527429830273
-0.0401018553566
-0.0236382333817
-0.00632432433332
0.0108478160001
0.555599107657
0.581145753294
0.602585191616
0.618994750756
0.63234857565
..
GRL
Greenland
SP.URB.GROW
Urban population growth (annual %)
0
1
0.96854155478
0.120658698286
-0.0612358292916
0.117883900953
0.839995544543
0.83618832541
0.351954664977
0.351336204442
0.35071991429
0.172011346012
0.349810412079
0.560234325945
0.735500450244
0.583066351069
0.549748679706
0.330681071443
0.00625662141273
-0.0978853577852
-0.11441689389
0.278067268772
0.660048187742
..
GTM
Guatemala
SP.URB.GROW
Urban population growth (annual %)
0
1
3.21525425898
3.27232668496
3.27628965983
3.2711657998
3.25322435954
3.22892823433
3.20158298752
3.18373568616
3.18624562437
3.21409470939
3.25721866257
3.34939518792
3.38683826156
3.40593041454
3.40115753337
3.38093297991
3.43774709107
3.41532245698
3.40629790855
3.41530268682
3.43393762536
..
GUM
Guam
SP.URB.GROW
Urban population growth (annual %)
0
1
1.75042053237
2.21180154923
2.07319508321
1.94194502803
1.82007120059
1.71292288744
1.52870494698
1.42821873418
1.40529975661
1.4797915942
1.61706425821
1.56617418099
1.69623555537
1.74951047588
1.70014337031
1.58277416774
1.46972651477
1.36312250933
1.28498820926
1.24952443069
1.24573948186
..
GUY
Guyana
SP.URB.GROW
Urban population growth (annual %)
0
1
-0.781057096243
-0.476335543598
-0.249213011547
-0.0943730378702
-0.0473925734239
-0.0783223788858
-0.205453132431
-0.242183199946
-0.248689066723
-0.205824681842
-0.129867487001
0.0230693655559
0.0834440793121
0.112377268909
0.0971278816641
0.0512155867135
0.491686561342
0.44527303528
0.412753004147
0.40194289081
0.407099091
..
HIC
High income
SP.URB.GROW
Urban population growth (annual %)
0
1
1.19361387049
1.18898497799
0.912058633795
1.17470589168
1.1140705169
1.31225510745
0.963332525928
0.946728396636
0.894596765838
0.902617518423
0.940587238887
0.964705598647
0.983150426253
0.972433263399
1.01928177325
1.0329923594
1.06999266404
1.12899960367
1.08883396679
1.0040465811
0.917464843578
..
HKG
Hong Kong SAR, China
SP.URB.GROW
Urban population growth (annual %)
0
1
1.65682658669
0.929680379046
0.940001269182
1.81802136913
2.35218066483
2.08018281066
4.43860779481
0.832512854813
0.834808807339
0.955125814332
0.881594075854
0.736962668138
0.442846827282
-0.197404126472
0.779918562307
0.436871406106
0.642270482876
0.99833956947
0.745134205125
0.371923126022
0.911067667006
..
HND
Honduras
SP.URB.GROW
Urban population growth (annual %)
0
1
4.12396590374
3.7617382604
3.6966548167
3.61298014429
3.50753068577
3.39052593001
3.3194309476
3.21374581455
3.12854211016
3.06956460669
3.03020692374
2.99675175553
2.96405615374
2.93858431544
2.91969412458
2.90580008066
2.97806073635
2.96475670923
2.95586708853
2.95152972866
2.94844331001
..
HRV
Croatia
SP.URB.GROW
Urban population growth (annual %)
0
1
0.903957184747
-5.48156028961
-0.559199226312
4.06317457472
0.544774925795
0.736177159072
-3.56548971161
1.97479473335
-1.31172136144
1.42339067218
-2.59885649438
0.639031575808
0.322176759794
0.321142113646
0.297589032382
0.386652592295
0.414086511134
0.366892423667
0.409848087386
0.341816026179
0.339774234571
..
HTI
Haiti
SP.URB.GROW
Urban population growth (annual %)
0
1
5.80902251973
4.90150576807
4.7908842148
4.68860163695
4.59523873168
4.50727884703
3.7639719998
3.70618880194
3.63542405908
3.54804674462
3.45017128901
5.592300512
5.38102598369
5.18377249021
5.00132631263
4.83284623887
4.58169512914
4.43767125828
4.31259437794
4.20880765157
4.12103280116
..
HUN
Hungary
SP.URB.GROW
Urban population growth (annual %)
0
1
-0.0207135179092
-0.188205502099
-0.222007710123
-0.297251407325
-0.320415868707
-0.323099920567
-0.355990266806
-0.386017586077
-0.417579235461
-0.468503022209
-0.445351104457
0.295556405306
0.237443020918
0.233048419582
0.295357637189
0.315261106805
0.445789088325
0.442993947545
0.41925802261
0.435934854666
0.448121476638
..
IDN
Indonesia
SP.URB.GROW
Urban population growth (annual %)
0
1
4.70773705952
4.88647616432
4.73509216043
4.59063305653
4.45211942031
4.32028828225
4.95485619979
4.78986203199
4.64382743251
4.51854865969
4.40853139781
4.17069875393
4.0808635228
3.98435185022
3.87656715399
3.76256106846
3.44582714878
3.35005201799
3.26567762095
3.1960912827
3.137066081
..
IMY
Isle of Man
SP.URB.GROW
Urban population growth (annual %)
0
1
1.46302029855
0.958868335172
0.519445959595
0.289367068058
0.373809532631
0.676531642263
0.999381125198
1.25938696006
1.39610342793
1.35580007593
1.19324248888
0.770799982208
0.626203699558
0.523267424008
0.486828244067
0.498631925215
0.517570256657
0.51263370886
0.494303619143
0.445966860757
0.381671562765
..
IND
India
SP.URB.GROW
Urban population growth (annual %)
0
1
2.96466706308
2.84215794024
2.71430109669
2.69718153576
2.64112149223
2.61454736573
2.58653927571
2.55864295448
2.53085568496
2.50317483741
2.47559786599
2.33540248436
2.26803531109
2.20074102969
2.13351810017
2.06636502561
2.35252087245
2.30192770987
2.29276999105
2.28378506326
2.27496808175
..
IRL
Ireland
SP.URB.GROW
Urban population growth (annual %)
0
1
0.105635270543
0.916903383318
1.01115591676
0.74773556521
0.554679892467
1.40852242276
1.20492240217
1.41476176474
1.45333382179
1.53588030875
1.73996082654
2.06480598275
2.1555798324
2.09717924212
2.29435993442
2.64258721188
2.84722254953
2.70149062171
2.02318777859
1.20412358108
0.956436028517
..
IRN
Iran, Islamic Rep.
SP.URB.GROW
Urban population growth (annual %)
0
1
3.68149630466
3.54103459328
3.11813609254
2.85690948578
2.80871949946
2.90406908159
3.07610144914
3.16018489163
3.1685935003
3.06766668577
2.89570434465
2.31304365899
2.17766160375
2.07881566311
2.03154133089
2.02046603167
1.98596923316
1.97017966668
1.95057529494
1.92273934117
1.88824051564
..
IRQ
Iraq
SP.URB.GROW
Urban population growth (annual %)
0
1
3.22446485516
2.51849172138
2.51782133229
2.51714745814
2.51647007168
2.51578914538
2.73048320289
2.72963321331
2.72877824573
2.72791825631
2.72705320066
2.26859275153
2.26788415958
2.26717178004
2.26645558248
2.26573553611
2.82920156182
2.82897745887
2.82875268345
2.82852723252
2.82830110303
..
ISL
Iceland
SP.URB.GROW
Urban population growth (annual %)
0
1
1.09225804562
1.42412250586
1.37013604801
1.2042150993
1.00563824312
0.923892392269
0.874416479714
0.868758187918
0.86318074158
1.39968913171
1.38361022962
1.41345109349
1.04712998673
0.526735310639
0.877936157687
1.5828919778
2.36911205188
2.55177040763
1.88125238749
0.362917496559
-0.324612021138
..
ISR
Israel
SP.URB.GROW
Urban population growth (annual %)
0
1
3.22743455405
6.12756711399
3.56590313304
2.76840618638
2.69945569736
2.77835851424
2.72645647587
2.6082248182
2.39658797187
2.65602293866
2.75180099898
2.40087140211
2.05779336085
1.84923560657
1.81132038684
1.8065753207
1.78963755143
1.79792778185
1.79840125554
2.41202472656
1.86168134175
..
ITA
Italy
SP.URB.GROW
Urban population growth (annual %)
0
1
0.0529184873673
0.129833645245
0.128604517024
0.12165948545
0.0807808458437
0.0623593934203
0.119019155382
0.144067946316
0.119624804339
0.108029314968
0.136835854815
0.175327551867
0.428460593583
0.898137169658
1.10431090134
0.857826324571
0.805448041052
0.969121174116
1.00184391457
0.835484160009
0.716181993758
..
JAM
Jamaica
SP.URB.GROW
Urban population growth (annual %)
0
1
1.0394835302
1.1536238829
1.1864531242
1.21930480627
1.25217860751
1.28507421241
1.67255546116
1.42835230647
1.3609999891
1.14904849452
1.04922175731
0.939864025677
0.832320009536
0.6574667355
0.814458625392
0.807301703393
0.856816907363
0.853113268078
0.801076118247
0.686637750414
0.62137957652
..
JOR
Jordan
SP.URB.GROW
Urban population growth (annual %)
0
1
5.31032349688
12.8290461817
6.78906115376
6.12416620772
5.46008425343
4.79677757168
3.07849268109
3.0784861434
3.07947673751
1.81695412671
2.49454675389
2.47053223814
2.42089066493
2.4702295054
2.41067728858
2.27080728829
2.34372443287
2.28348133827
2.23470399947
2.23874187559
2.25804678677
..
JPN
Japan
SP.URB.GROW
Urban population growth (annual %)
0
1
1.13691974073
0.78466513544
0.720307194422
0.716671490736
0.808340577053
0.847267555635
0.441955763336
0.447301231075
0.437572299668
0.374237043763
0.357775028659
0.464766857713
0.477026086412
0.457883508716
0.276971380737
0.252110662319
0.228825138416
0.253090790731
0.188739639809
0.125928198563
0.155498105127
..
KAZ
Kazakhstan
SP.URB.GROW
Urban population growth (annual %)
0
1
0.710971427367
0.482833651695
-0.211751656156
-0.805880986354
-1.59366019877
-1.89526659786
-1.37154843861
-1.43715940135
-1.58349123225
-0.810111587383
-0.158351871688
0.113719241647
0.287111231236
0.6185960499
0.976302564818
1.16950152391
1.54684069779
1.6306393992
1.70278924265
2.07079226038
2.90569003893
..
KEN
Kenya
SP.URB.GROW
Urban population growth (annual %)
0
1
4.71830288222
4.20113038961
4.12358204101
4.02073296703
3.88783279101
3.7415758582
3.48841024395
3.36538252216
3.28714598823
3.26420993212
3.27847116477
3.60771804726
3.62054270982
3.61994660744
3.59887695057
3.56614124698
4.00672399729
3.96985557664
3.9538422714
3.96366734473
3.98777653412
..
KGZ
Kyrgyz Republic
SP.URB.GROW
Urban population growth (annual %)
0
1
1.57742760126
0.817929938822
0.32498858095
-0.87573488857
-0.882388536317
0.270072615298
0.954221393547
0.950024975209
1.01022305241
0.894750173184
0.529643495894
1.02613516233
0.997243630118
1.12984708803
1.29420579445
1.21427487304
1.38637742247
1.26299185276
1.26195488299
1.26000992766
1.25808201473
..
KHM
Cambodia
SP.URB.GROW
Urban population growth (annual %)
0
1
3.50204589787
5.97527794084
5.80977283057
5.60352945048
5.34961452121
5.06791421685
6.29230328616
5.94676926825
5.62293086392
5.32494873822
5.05147237403
4.9071793917
4.65932170986
4.44385065844
4.26469387655
4.11625896051
4.27690085674
4.13831861557
4.02934677532
3.95208444632
3.89760725671
..
KIR
Kiribati
SP.URB.GROW
Urban population growth (annual %)
0
1
2.25347423721
2.61469776642
2.28281973434
2.07405399972
2.04759013497
2.15391015927
5.08199150139
5.06097305769
5.03177369482
4.97733749141
4.90253974995
2.09519718686
2.12744137977
2.1291359593
2.08695051829
2.01920786015
1.85000538812
1.78342408912
1.73716233467
1.71915458968
1.71967346776
..
KNA
St. Kitts and Nevis
SP.URB.GROW
Urban population growth (annual %)
0
1
-0.687375400206
-1.05842310443
-1.03966706509
-1.02093985571
-1.00224193458
-0.983573769772
-0.853133087256
-0.857028506876
-2.04997735754
4.62738147734
4.13547860867
3.67176878388
0.922801240353
-0.369231188713
3.47857329774
0.917490818702
1.41326158863
1.40859325062
1.39801757217
1.38763018921
1.37170104039
..
KOR
Korea, Rep.
SP.URB.GROW
Urban population growth (annual %)
0
1
3.58872745479
2.11179648327
2.08024537335
2.05395671572
2.04174342539
2.56115657843
1.31087695003
1.29407090557
1.07690476422
1.06403875557
1.18763077175
1.04073831362
0.858169836575
0.795686958663
0.673758548837
0.503342210787
0.601663317619
0.599842168802
0.581574928595
0.557317526838
0.531217821939
..
KSV
Kosovo
SP.URB.GROW
Urban population growth (annual %)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
KWT
Kuwait
SP.URB.GROW
Urban population growth (annual %)
0
1
0.218768735664
-2.73224416888
..
..
..
..
0.0332229975262
3.08642367484
4.95272754837
5.18729527561
4.42176017057
3.50403255256
2.97335922889
2.73557678711
2.92579573021
3.36764672109
3.80924257576
4.03720804867
4.04528232078
3.79139782258
3.38106329963
..
LAC
Latin America & Caribbean
SP.URB.GROW
Urban population growth (annual %)
0
1
2.65249733534
2.48671047147
2.43773326701
2.39213688981
2.35570499034
2.32458356734
2.26220939258
2.23206195295
2.1917568707
2.14195415619
2.08458507212
2.00912975142
1.95742953471
1.90801300781
1.86500018327
1.82433476636
1.69669970024
1.65780766782
1.62690175771
1.60462040581
1.58974023697
..
LAO
Lao PDR
SP.URB.GROW
Urban population growth (annual %)
0
1
4.92158986837
5.38482642885
5.29494218754
5.16727088581
4.99653445193
4.79873213021
7.47844641549
7.08873384091
6.72808331883
6.39784475494
6.09646171267
6.505143284
6.18318800172
5.91359036648
5.70165000111
5.53250540322
5.66833332306
5.50708875957
5.34503575064
5.17342491136
4.99807807394
..
LBN
Lebanon
SP.URB.GROW
Urban population growth (annual %)
0
1
2.44901473727
3.00917290076
3.80885028675
4.13594117615
3.88361206947
3.27496804444
2.45813458993
1.91327775575
1.57417477623
1.53089269564
1.68673427141
1.74509537992
1.84955812224
1.85404941972
1.71754442493
1.48961344939
1.24370259678
1.04726426783
0.910047893044
0.857064138359
0.864323938457
..
LBR
Liberia
SP.URB.GROW
Urban population growth (annual %)
0
1
0.731354198762
0.359176369887
0.21889230914
0.817844607511
2.39308358673
4.54257023514
6.78826738996
8.54586880143
9.01059115398
8.1034865085
6.50284401055
4.57017049517
3.28440666064
2.7223739712
3.13883434768
4.17952233453
5.20275130828
5.96578441973
6.21871443707
5.86128588358
5.15306249226
..
LBY
Libya
SP.URB.GROW
Urban population growth (annual %)
0
1
2.04374481139
2.07615599095
2.0516087053
2.02587489639
1.98475285744
1.93703097998
1.92428607339
1.90692574109
1.90956371873
1.93462619187
1.97380743823
2.05280280668
2.06992442436
2.10212873005
2.15263812961
2.20308362521
2.36037196256
2.40333373175
2.31200987649
2.0534533697
1.69667240497
..
LCA
St. Lucia
SP.URB.GROW
Urban population growth (annual %)
0
1
2.3872131437
1.61147831717
1.04691343349
2.19399072431
2.17155827613
2.11046506622
0.0241591176174
0.656275657884
0.404731135429
0.0221414129159
0.344443834816
0.925132353823
0.492796641254
0.642329637779
0.834443377137
1.15118808864
1.52396354167
1.18365861605
1.3904845234
1.38965878344
1.38883776875
..
LIC
Low income
SP.URB.GROW
Urban population growth (annual %)
0
1
4.02410435907
3.99476692673
3.95763066111
3.89358418629
3.8294298398
3.77160295105
3.78993091127
3.72483266423
3.67075680505
3.62233693079
3.57342821299
3.75945695481
3.70517262911
3.65094232418
3.59540980192
3.53916145978
3.73439258493
3.67687100489
3.63926275592
3.62437453835
3.62409420379
..
LIE
Liechtenstein
SP.URB.GROW
Urban population growth (annual %)
0
1
0.47717960633
0.841582302598
0.842387527089
0.83619460692
0.820088046936
0.791344458492
-0.468523111434
-0.529355312304
-0.58096162279
-0.626959549217
-0.664674140964
0.370205460531
0.353275315843
0.312924985014
0.232719249872
0.134399706439
0.443427164659
0.355035167245
0.30235531347
0.284264705676
0.302551765436
..
LKA
Sri Lanka
SP.URB.GROW
Urban population growth (annual %)
0
1
0.316117218468
0.245579448034
0.179333383211
0.083257847493
-0.050283517201
-0.20115839651
-0.249731842102
-0.38791374699
-0.429173095253
-0.341083144764
-0.165112409653
0.171017614007
0.342549778229
0.445376662453
0.449910850542
0.384186731024
1.100305137
1.04229253863
0.989207809502
0.949589227808
0.91891413009
..
LMC
Lower middle income
SP.URB.GROW
Urban population growth (annual %)
0
1
3.61712008331
3.24363931331
3.16296736181
3.10832343103
3.01525470457
2.95896370674
3.01014811051
2.97980118322
2.94721601185
2.91407004923
2.87505260359
2.8162794434
2.77347729556
2.7398708086
2.70177847973
2.66269470985
2.75280850004
2.72112807263
2.70761897721
2.70051981933
2.68417306171
..
LMY
Low & middle income
SP.URB.GROW
Urban population growth (annual %)
0
1
3.40105754783
3.06143758633
2.93514677325
2.87032551831
2.80859930517
2.76157954071
2.80010026695
2.7688049658
2.72692451633
2.67131020975
2.638034748
2.57802304193
2.5108411176
2.46870353424
2.42800635758
2.39539077455
2.40368142811
2.37381626976
2.35913187158
2.34534250831
2.33897773995
..
LSO
Lesotho
SP.URB.GROW
Urban population growth (annual %)
0
1
5.02745939143
6.01083913131
5.81424061863
5.65688174046
5.54087484417
5.44770709491
5.38325913697
5.30098885386
5.14174132353
4.88207545159
4.56156652515
4.51695530877
4.20872471668
3.97540175772
3.84323098663
3.78511942132
3.99770151177
3.93478570972
3.87422530803
3.80770950066
3.7368737412
..
LTU
Lithuania
SP.URB.GROW
Urban population growth (annual %)
0
1
0.961675501098
0.0733215727503
-0.196925441341
-0.54947300591
-0.77014273661
-0.802422251302
-0.83536181124
-0.785169468057
-0.79012591826
-0.766826742982
-0.984585031494
-0.642164229813
-0.471311513418
-0.549182200363
-0.660240707411
-0.741577809665
-0.414015820917
-0.365796245352
-0.340489157449
-0.378137439884
-0.385825512613
..
LUX
Luxembourg
SP.URB.GROW
Urban population growth (annual %)
0
1
1.16869869149
1.83290241847
1.81914610247
1.83078848849
1.84786782563
1.88841934362
1.57803762776
1.46992675959
1.45982769526
1.56611280889
1.55911115169
0.951507605549
0.808139743369
0.975104725893
1.18065856166
1.28880002287
1.45001925998
1.39914353847
1.64204206116
1.70610878079
1.4579592852
..
LVA
Latvia
SP.URB.GROW
Urban population growth (annual %)
0
1
-0.294536339301
-0.470693393497
-1.27798383598
-1.90799592898
-1.62538692174
-1.44883672385
-1.16255241814
-1.8637326297
-1.85065662988
-1.03828625869
-0.96135748359
-0.578940960029
-0.923575256802
-0.572263959913
-0.569398610773
-0.562949438255
-0.488829851901
-0.46041772191
-0.381843596615
-0.439426175361
-0.471286873309
..
MAC
Macao SAR, China
SP.URB.GROW
Urban population growth (annual %)
0
1
3.2622637184
2.7036805174
2.26611077219
1.93522450008
1.74777680747
1.66999897517
1.60912761614
1.55021210731
1.5614082
1.64931139178
1.78957930281
1.92591478742
2.06967421904
2.19696204175
2.29596900151
2.36748814179
2.43728572031
2.49107954504
2.49072603915
2.42605200354
2.3187508428
..
MAF
St. Martin (French part)
SP.URB.GROW
Urban population growth (annual %)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
MAR
Morocco
SP.URB.GROW
Urban population growth (annual %)
0
1
3.41574063759
3.18116111998
3.07191426118
2.97152835497
2.88172230439
2.80021586067
2.07346995781
2.01240277139
1.95038850569
1.88569679707
1.82105489442
1.79594736121
1.74046860246
1.69632836795
1.66599466411
1.64639447271
1.62983450813
1.61429039537
1.60426186224
1.59967109303
1.59818417434
..
MCO
Monaco
SP.URB.GROW
Urban population growth (annual %)
0
1
1.46392585514
1.39493792779
1.31591276583
1.28016271184
1.29775644106
1.3417289774
1.41658634367
1.44979488351
1.37392906368
1.14313351504
0.817544501524
0.460136580309
0.150080023639
-0.0509453197931
-0.116139096689
-0.062374190449
0.0198505537538
0.0793628340173
0.116096344679
0.115961717349
0.084764923701
..
MDA
Moldova
SP.URB.GROW
Urban population growth (annual %)
0
1
1.52399999807
0.0562935834981
-0.133445289897
-0.322726829769
-0.51262303321
-0.72873088396
-0.937272944507
-0.963420519312
-0.936360598986
-0.911858715589
-0.962855693035
-1.12447871005
-1.14070463453
-1.19908793524
-1.17354923708
-1.17772732502
-0.928556913858
-0.90441321046
-0.858465688739
-0.798994352127
-0.776672036112
..
MDG
Madagascar
SP.URB.GROW
Urban population growth (annual %)
0
1
5.25599286561
4.81752848311
4.81459034597
4.8145425935
4.81866343004
4.82286928047
4.13713908254
4.14893098815
4.1443631105
4.12093803619
4.08495240629
4.11773803822
4.07843334614
4.04234831768
4.011569058
3.98410966424
4.1652711701
4.1316698817
4.09631523527
4.05872894497
4.02026079589
..
MDV
Maldives
SP.URB.GROW
Urban population growth (annual %)
0
1
3.19553939956
2.64611938043
2.48845332417
2.33723250688
2.19417002792
2.06199332397
3.71542953511
3.56715512743
3.43695807579
3.32937376455
3.23911867403
6.03254497859
5.79355885062
5.57295773398
5.36741973136
5.17704825381
5.22544340057
5.04596207237
4.88817551935
4.75333025596
4.63474856416
..
MEX
Mexico
SP.URB.GROW
Urban population growth (annual %)
0
1
2.63916444172
2.458727456
2.4000088057
2.34877410469
2.30880643797
2.27515748957
2.05740971393
2.02484107422
1.97301805539
1.89634768649
1.80571814064
1.78866156144
1.70492027665
1.65212878486
1.64017286918
1.65604239822
1.6536364289
1.66752078883
1.66880999597
1.65096332666
1.619133738
..
MHL
Marshall Islands
SP.URB.GROW
Urban population growth (annual %)
0
1
4.18084780603
2.95713276998
2.32778246496
1.83558404754
1.52693380846
1.35319924434
1.25261618606
1.10343927799
0.953022439131
0.789245185191
0.623045722861
0.439893488255
0.339813224914
0.320200173097
0.414128401913
0.590876898539
0.844872122297
1.03949709249
1.25372606132
1.47625745318
1.69782054771
..
MIC
Middle income
SP.URB.GROW
Urban population growth (annual %)
0
1
3.35472794175
2.99158596585
2.85787733049
2.79217073658
2.72979454242
2.68277444451
2.72205174386
2.69263814882
2.6509734992
2.59401996549
2.56125306507
2.48008807938
2.41060103413
2.36822408702
2.32754452676
2.29574312953
2.28633794969
2.25728487178
2.24306125335
2.22778785816
2.21925026053
..
MKD
Macedonia, FYR
SP.URB.GROW
Urban population growth (annual %)
0
1
1.56784982865
1.56178114607
1.44982359102
1.36641725417
1.32862925791
1.32328206353
1.35647853731
1.34226471056
1.31757346003
1.27650012463
1.22478263334
1.13878686607
1.09161734486
1.05418775732
1.03048772819
1.01653339962
1.00576230505
0.99203783052
0.974654547065
0.951210035027
0.923395817932
..
MLI
Mali
SP.URB.GROW
Urban population growth (annual %)
0
1
3.850551509
4.02089740781
4.23263022634
4.37867352581
4.43282477357
4.42555840561
4.55859168906
4.55355458486
4.56664795298
4.60652015673
4.6603643856
4.85076872749
4.87653977591
4.8835470273
4.86823586276
4.83659627267
4.92883639803
4.88700103473
4.83998921479
4.78864919911
4.73453689314
..
MLT
Malta
SP.URB.GROW
Urban population growth (annual %)
0
1
0.969656511931
0.993709403272
1.03991341225
1.0861176906
1.13232223745
1.1785270519
0.85719529977
1.11478116614
0.848167045211
1.10246509703
0.83934348868
1.0328152204
1.00423927762
0.915796993741
0.929028854046
0.894919345468
0.869391932609
0.882198762137
0.940128262561
0.557879335726
0.1529460087
..
MMR
Myanmar
SP.URB.GROW
Urban population growth (annual %)
0
1
2.12087619102
2.44447933468
2.36817683274
2.31908940809
2.30559490854
2.3112431293
2.86586877893
2.85654282772
2.780114302
2.615830678
2.39707831992
2.65144807728
2.43455087325
2.2873677782
2.23685256975
2.25710671366
2.74541932497
2.7534710964
2.75700912802
2.74576725961
2.72295485548
..
MNA
Middle East & North Africa
SP.URB.GROW
Urban population growth (annual %)
0
1
4.55240029551
3.31814893491
3.0546930409
2.92995252366
2.84631685692
2.79072815287
2.69133594332
2.65967106024
2.61554735733
2.55692355945
2.5377380455
2.35588524169
2.33115599474
2.28857999878
2.27628295494
2.24833236309
2.28050884013
2.2680517672
2.24290639837
2.22451431323
2.20019084487
..
MNE
Montenegro
SP.URB.GROW
Urban population growth (annual %)
0
1
3.74620175691
3.58369055567
3.54230344945
3.37134580494
3.04405059013
2.61774382409
2.03098894476
1.61012021903
1.32007961969
1.22261828472
1.2728038487
0.55349405331
0.639603631843
0.728070930834
0.800444627534
0.858669337901
-0.503667507886
-0.418715646277
-0.368814169815
-0.368101133202
-0.402597206926
..
MNG
Mongolia
SP.URB.GROW
Urban population growth (annual %)
0
1
2.71760855983
1.46483034639
1.06375690926
0.786420351644
0.681211476135
0.702747732757
0.760303412899
0.796520043179
0.832459557377
0.853216688447
0.867106991946
0.990621650982
1.03005926992
1.10019483445
1.20679002112
1.33432166466
1.71625355329
1.83098832442
1.90402296729
1.92229410783
1.90065786347
..
MNP
Northern Mariana Islands
SP.URB.GROW
Urban population growth (annual %)
0
1
6.6972921205
6.05233565603
5.65381892893
5.30286140294
5.00804203491
4.7218717766
4.64815801133
4.35263796449
3.8429387347
3.06363373362
2.13604178501
1.2258563305
0.434410342389
-0.283294377118
-0.887157342073
-1.37457634154
-1.95167165059
-2.43247477461
-2.47500120063
-1.87779373133
-0.798988159914
..
MOZ
Mozambique
SP.URB.GROW
Urban population growth (annual %)
0
1
5.51525159436
7.05807537605
7.70673473881
7.9915409154
7.80192269542
7.31537008475
6.34207031243
5.96889994276
5.69992495479
5.58152533981
5.56158772171
5.10633942046
5.0715064345
5.00870807936
4.9069664508
4.78140919943
4.71288370454
4.60151690665
4.50315449969
4.42184053132
4.35352016898
..
MRT
Mauritania
SP.URB.GROW
Urban population growth (annual %)
0
1
5.06993977428
2.76471595835
2.79863051163
2.82777560144
2.84907884419
2.86429385965
2.92338343184
2.93120152923
2.9432141538
2.96126518904
2.97913691972
3.09474074323
3.09655596113
3.07372502474
3.02177140282
2.95042230159
3.17189706763
3.09970990218
3.02702471282
2.95572182919
2.88713243379
..
MUS
Mauritius
SP.URB.GROW
Urban population growth (annual %)
0
1
1.4988698238
0.635645047667
1.0613412333
1.19403473206
1.17199996441
0.569343081575
0.745243548983
0.973804294897
0.772351676174
0.991397622661
0.702039873369
0.902497416027
0.668112785349
0.848762328275
0.672502259653
0.607863207921
0.921640380116
0.754590419696
0.786678213508
0.649678180674
0.601802959184
..
MWI
Malawi
SP.URB.GROW
Urban population growth (annual %)
0
1
6.02087721153
5.0277476744
3.82548911708
3.1422807892
3.17704984584
3.72099315195
4.69401382215
5.17771594556
5.46879773965
5.4760152843
5.29924294969
5.36735591149
5.25394858938
5.18597683154
5.18330524209
5.22354452092
5.71466339192
5.71300706429
5.70879157899
5.69864569971
5.68337879526
..
MYS
Malaysia
SP.URB.GROW
Urban population growth (annual %)
0
1
4.38405369057
5.04656512934
4.90664802378
4.79302255349
4.71505147414
4.65988773652
4.74511204789
4.67201013603
4.59430524466
4.50948761948
4.41795345704
4.11089530189
4.03081259673
3.92663221093
3.79297604186
3.64320282618
3.1968698947
3.06710628696
2.969164719
2.91273966753
2.88536635506
..
MYT
Mayotte
SP.URB.GROW
Urban population growth (annual %)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NAM
Namibia
SP.URB.GROW
Urban population growth (annual %)
0
1
4.84333705243
5.00317056372
4.66128892488
4.42674253975
4.33766960477
4.33722277838
4.69064369997
4.64883023367
4.52541335358
4.29716430788
4.00966516196
3.76978799968
3.51924555605
3.35478500486
3.30240854386
3.32632877569
3.48253508843
3.49821288941
3.48804255449
3.4375063718
3.3594671829
..
NCL
New Caledonia
SP.URB.GROW
Urban population growth (annual %)
0
1
2.55669560467
2.68471742734
2.8463835492
3.00805223611
3.16972347015
3.33139723355
2.58063077296
2.85537557827
2.17547243927
2.55577135111
2.41967809746
2.48169175359
2.47536650729
2.47168029422
2.47129979314
2.42917978427
2.28337756209
2.19958661234
2.31768065063
2.01123741835
2.00818308717
..
NER
Niger
SP.URB.GROW
Urban population growth (annual %)
0
1
4.21020108206
3.65457279256
3.74203815511
3.81525742955
3.86967405529
3.90894591976
3.94589820819
3.97882387162
3.99522493691
3.99363935586
3.98111236955
3.59384471868
3.5827074598
3.58322132669
3.59879438934
3.62293228097
4.01497621552
4.03080322246
4.03749011691
4.03291561146
4.02138627486
..
NGA
Nigeria
SP.URB.GROW
Urban population growth (annual %)
0
1
4.51343090906
4.48367587162
4.40840570361
4.33920824389
4.27798740685
4.22462451076
4.17301844749
4.12712680863
4.09684896329
4.08468834812
4.08457147547
4.13546733378
4.13543865018
4.12945835336
4.11461250119
4.09391231514
4.02964856003
4.01191359969
3.99615117379
3.98318092394
3.97162943961
..
NIC
Nicaragua
SP.URB.GROW
Urban population growth (annual %)
0
1
2.70015304518
2.81716702501
2.89281397156
2.89670953039
2.80776274694
2.65703904762
2.49936182976
2.36311796434
2.2325142695
2.11420176541
2.00849884542
1.90384793822
1.80717840551
1.73867930574
1.70495356221
1.6978451381
1.76714359391
1.76561977526
1.77914578964
1.80824191801
1.84542072559
..
NIU
Niue
SP.URB.GROW
Urban population growth (annual %)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NLD
Netherlands
SP.URB.GROW
Urban population growth (annual %)
0
1
1.27519798909
1.9726224214
1.8867144432
1.8228906953
1.81133861346
1.64420672467
1.46092244743
1.65942505633
1.6509073261
1.73751392935
1.80673686399
1.63635989625
1.51210858584
1.33806185379
1.20628341843
1.08515840035
0.83167372409
0.884108441732
1.05146532861
1.17210151066
1.14729436926
..
NOR
Norway
SP.URB.GROW
Urban population growth (annual %)
0
1
0.537079601168
0.973870295585
1.07418674399
1.08928954391
1.06028121437
1.02714117072
1.10186686133
1.14342615729
1.24524684274
1.23978222412
1.2989649151
0.803550918871
0.866316424485
0.902944063612
0.902862567716
0.992034603724
0.882982294327
1.11226391572
1.32380235428
1.33853665978
1.24092444685
..
NPL
Nepal
SP.URB.GROW
Urban population growth (annual %)
0
1
5.85243908369
6.84552566757
6.67932088059
6.52269905587
6.37246380438
6.22708678455
6.96805190051
6.76423097013
6.56771163157
6.37597612827
6.18843003762
5.86691506285
5.70440275231
5.53521257343
5.35640024762
5.17430867454
4.99485517392
4.82789986154
4.67966226186
4.55424661987
4.44618169096
..
NRU
Nauru
SP.URB.GROW
Urban population growth (annual %)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
NZL
New Zealand
SP.URB.GROW
Urban population growth (annual %)
0
1
1.69713968466
1.49833971667
1.18311146809
1.28140760067
1.47297719469
1.60238039493
1.6764046105
1.40865773327
0.978202588761
0.618964328017
0.683548759638
0.703311939424
1.85365711397
2.08990527067
1.60243060046
1.24485013328
1.35809918831
1.17781117911
1.0943445246
1.23118858774
1.33601877275
..
OMN
Oman
SP.URB.GROW
Urban population growth (annual %)
0
1
6.64873493257
5.82155906174
5.89270148024
5.58389910924
4.82242241222
3.81245064882
1.16176204886
0.314134860887
-0.18245805858
-0.185847443012
0.182745749252
0.632725751342
1.00666810404
1.39885052486
1.76955423739
2.10088262699
2.54013686685
2.84981189447
2.97157125053
2.86688310068
2.61461194589
..
PAK
Pakistan
SP.URB.GROW
Urban population growth (annual %)
0
1
3.77753118358
3.53735375274
3.38517990645
3.29581578548
3.2859356942
3.32257056111
3.50431150674
3.52483646039
3.47303932864
3.32885542885
3.12928421709
3.09764954245
2.92119867739
2.79906867656
2.74934173065
2.75032134788
2.98782672565
2.9813285288
2.9741797167
2.96118020189
2.94296967672
..
PAN
Panama
SP.URB.GROW
Urban population growth (annual %)
0
1
2.71890660283
4.29305602471
4.24702181936
4.19922395021
4.14772343129
4.09303028593
3.94100467938
3.89062248241
3.83518490515
3.77368219222
3.7080839592
3.40187259553
3.34358563489
3.28647638031
3.23153855507
3.17797889742
2.84606922151
2.79928420489
2.75094553837
2.70059774042
2.64921038175
..
PER
Peru
SP.URB.GROW
Urban population growth (annual %)
0
1
2.64075925676
2.39856115744
2.3344005299
2.27748980318
2.23039762431
2.18878214142
1.8672912427
1.82549793532
1.76902672138
1.69351817025
1.60645415007
1.51985506932
1.44225467519
1.37310499212
1.31545781163
1.26854768701
1.25058981307
1.21006595836
1.1900069062
1.19477092931
1.2163322615
..
PHL
Philippines
SP.URB.GROW
Urban population growth (annual %)
0
1
4.91392886717
4.54237877862
4.43194529506
4.33890993894
4.2678381667
4.21167782386
3.90310571837
3.85388003801
3.80361942369
3.75078739027
3.69507243632
3.54309787022
3.4935425706
3.42837395332
3.34369279779
3.24839952887
2.99176158654
2.9079048352
2.84699853015
2.81586560316
2.80509169434
..
PLW
Palau
SP.URB.GROW
Urban population growth (annual %)
0
1
2.82515967089
3.01603850154
3.21069790076
3.30867547328
3.27753643634
3.14818180089
2.09710658705
1.96727346292
1.75862540668
1.46676603296
1.12769456412
3.23168029327
2.87589242346
2.59585056756
2.45322971997
2.40414138135
1.96830172936
1.95498601115
1.9470597941
1.96405165216
1.98092346262
..
PNG
Papua New Guinea
SP.URB.GROW
Urban population growth (annual %)
0
1
3.78740114152
1.26063392069
1.26418006209
1.27507975097
1.29293580105
1.31250945286
1.33299833344
1.34427521369
1.33515052541
1.30106129573
1.24971749599
1.65194215716
1.60760283743
1.56632784153
1.53079620842
1.49839894766
2.26386715651
2.23620096103
2.20388692725
2.16595851981
2.12468763354
..
POL
Poland
SP.URB.GROW
Urban population growth (annual %)
0
1
0.867376122839
0.394186131722
0.379251215178
0.310643863185
0.284837097567
0.179153137929
0.143770276406
0.147805861554
0.106698660667
0.0438257706108
-0.464882843961
-0.601165259112
-0.111211866198
-0.132427768863
-0.123489995373
-0.108968461475
-0.160979171598
-0.152008985587
-0.084162139115
-0.0301320328772
-0.00397643898802
..
PRI
Puerto Rico
SP.URB.GROW
Urban population growth (annual %)
0
1
1.7248043606
4.75193479318
4.53272699721
4.58398126241
4.53570688308
4.40500317813
2.82936004415
2.6081427076
2.22589939624
2.12500578356
1.97476960608
1.24266267672
1.16112104207
1.09921270008
1.06559389007
1.04693393734
0.654457003641
0.613352302105
0.581744043956
0.565319902529
0.530500258124
..
PRK
Korea, Dem. Rep.
SP.URB.GROW
Urban population growth (annual %)
0
1
1.78549474636
1.83008009413
1.87721490017
1.86316652914
1.76935276693
1.62236573067
1.59502251992
1.45251795929
1.3380934428
1.26562945515
1.22336873562
1.28759300938
1.24362386018
1.19626184951
1.14157135039
1.08316110951
1.15600420504
1.10612277667
1.06514003103
1.0352328888
1.01423522825
..
PRT
Portugal
SP.URB.GROW
Urban population growth (annual %)
0
1
0.678077652719
1.72059367952
1.59131915485
1.40329491072
1.51677992463
1.54999355472
1.56217216658
1.60462459042
1.64688868472
1.67902434193
1.72885632518
1.82425361763
1.88598754633
1.84132338725
1.71148673646
1.56817032605
1.40110375146
1.28570421262
1.18081117631
1.13206422966
1.12404949385
..
PRY
Paraguay
SP.URB.GROW
Urban population growth (annual %)
0
1
4.16480885428
3.95642033398
3.87257611132
3.79054736346
3.71137176543
3.63533568664
3.48450793576
3.41399178121
3.34997180262
3.29349340409
3.24266516777
3.1953411239
3.14857708181
3.10066474714
3.05050767568
2.99968847716
2.88133343189
2.83567127615
2.79683658711
2.76630412789
2.74118520628
..
PYF
French Polynesia
SP.URB.GROW
Urban population growth (annual %)
0
1
1.64517967452
1.20481933923
1.12400067439
1.07545957381
1.06620532463
1.07934747606
1.59456464632
1.60725693265
1.56942748067
1.46784588603
1.32397103884
1.32302904017
1.19215737121
1.09192935959
1.03637570319
1.01213793279
1.22801856104
1.20335828432
1.17676535052
1.14272956584
1.10491548755
..
QAT
Qatar
SP.URB.GROW
Urban population growth (annual %)
0
1
3.4070759572
2.33557860981
1.4966075984
1.0645255429
1.15759894504
1.65805033178
2.3501033214
3.31331935864
3.88925133443
3.93134294027
3.8022400201
2.95785568347
2.72110239132
4.6965931776
9.11940534516
13.9068107073
17.6185335399
18.6720690718
17.0509743428
13.5787914797
9.68574225605
..
ROM
Romania
SP.URB.GROW
Urban population growth (annual %)
0
1
1.59990391233
0.205456580257
-1.42335402302
0.149201491142
0.192092282179
0.0765299208755
-0.507731230545
-0.424840287929
-0.412426580741
-0.386593610874
-0.253528360135
-1.32068523323
-1.42242074062
-0.206075121133
-0.188505486943
-0.158724813298
0.118518311249
0.144375784044
0.177971707211
0.176771181722
0.151338648366
..
RUS
Russian Federation
SP.URB.GROW
Urban population growth (annual %)
0
1
0.767995193123
0.223632366302
0.0437249639509
-0.113724697579
-0.123965844425
-0.1315447931
-0.271731950357
-0.294872486514
-0.27532027602
-0.402445224082
-0.00410099380808
-0.378191845935
-0.582797072809
-0.61980096674
-0.656827921779
-0.624590061492
-0.482541789833
-0.308542597694
-0.133068890509
-0.097933377624
-0.0979906191646
..
RWA
Rwanda
SP.URB.GROW
Urban population growth (annual %)
0
1
0.901908302488
6.79219507806
2.97292239841
0.938965649528
2.0292993599
5.85175106696
16.5540181824
19.2337250809
19.7334795867
17.8592782139
14.8835625956
9.55660005551
7.75572118232
6.56916283263
6.21488459529
6.4300189606
4.15870750715
4.37313748571
4.51681614352
4.53955524522
4.4803756857
..
SAS
South Asia
SP.URB.GROW
Urban population growth (annual %)
0
1
3.24890743646
3.10530206642
2.97478685767
2.94187846515
2.89060715035
2.87045426894
2.87008912756
2.84649598992
2.81399075337
2.76951646983
2.71731869204
2.6162790864
2.53639153051
2.46046523307
2.39006970236
2.32419987093
2.58909708379
2.53448860431
2.51701460792
2.50624757163
2.50000407528
..
SAU
Saudi Arabia
SP.URB.GROW
Urban population growth (annual %)
0
1
4.4449728859
3.78226041153
3.61157826797
3.35531116019
2.98657886056
2.57766287433
1.85984718441
1.51716373694
1.51077779454
1.9365568811
2.63005839941
3.42527458743
4.00846355828
4.27779921694
4.25850072832
4.21690739084
3.81536839478
3.50695656791
2.37036807853
2.23131267214
3.97134274123
..
SDN
Sudan
SP.URB.GROW
Urban population growth (annual %)
0
1
5.57127004593
5.9544969534
5.92277842622
5.86708147211
5.77206800609
5.65092103499
5.60164415714
5.50071001487
5.38644520422
5.25605086978
5.12017956331
4.92506539486
4.80471997693
4.72849905783
4.70690082161
4.71967585314
4.59848873155
4.60986757427
4.59356377361
4.54021559212
4.46217469915
..
SEN
Senegal
SP.URB.GROW
Urban population growth (annual %)
0
1
3.77550842763
3.40211693171
3.38251900268
3.33175617723
3.24505492416
3.14016868234
3.0278062273
2.93739450707
2.89333522346
2.9076213868
2.95989027976
3.11789972367
3.16181492583
3.19098112539
3.19869998634
3.19116968163
3.32395713009
3.31419470157
3.30203169631
3.28812096916
3.27191790922
..
SGP
Singapore
SP.URB.GROW
Urban population growth (annual %)
0
1
3.88138382748
2.85035714992
3.0037760518
2.53062005253
3.1343078111
3.03904715746
4.06437973418
3.35655011741
3.3978823014
0.79889847798
1.73294597902
2.69674309917
0.914127125699
-1.47636203056
1.25341253334
2.35053810166
3.12929355085
4.16522945206
5.32157794479
3.01640860384
1.77066120653
..
SLB
Solomon Islands
SP.URB.GROW
Urban population growth (annual %)
0
1
4.70556924747
4.26650509232
4.26451886007
4.2472368054
4.20933753222
4.15952711293
4.10734454566
4.06561489819
4.03925907663
4.03198059789
4.03659930522
4.41721348464
4.40257597024
4.38282702576
4.35606356525
4.32238616934
4.63474977357
4.58538360873
4.52586351899
4.45467434529
4.37574244697
..
SLE
Sierra Leone
SP.URB.GROW
Urban population growth (annual %)
0
1
2.05079280765
1.13123794154
0.386352700921
-0.0505843319059
-0.0391733935035
0.335591815312
0.752587355832
1.14860140894
1.76353304186
2.60867384404
3.54642948509
4.53593044014
5.30366204431
5.58195143722
5.30300896682
4.69351820628
4.1851136859
3.65200128775
3.26480121717
3.08447522259
3.04670018732
..
SLV
El Salvador
SP.URB.GROW
Urban population growth (annual %)
0
1
2.46345592397
3.42931302569
3.45780792075
3.40456429399
3.24501418726
3.01480218685
2.62306160127
2.41103956207
2.23145638527
2.10151182255
2.01127310087
0.910379631054
0.847545983467
0.812032583486
0.808309884795
0.828967327311
0.895865996469
0.931277832132
0.965759993816
0.994154717513
1.01790263967
..
SMR
San Marino
SP.URB.GROW
Urban population growth (annual %)
0
1
1.66200553774
1.5553307479
1.61536607251
1.60508662198
1.50446496144
1.34885873435
1.21934236167
1.06138077215
1.10856634702
1.42619899389
1.91933833156
2.26323306332
2.68760023581
2.81084838178
2.56346138238
2.07820897353
1.41907339436
0.969133445573
0.656563320684
0.557176524569
0.598928974044
..
SOM
Somalia
SP.URB.GROW
Urban population growth (annual %)
0
1
1.52429342862
0.92332584941
0.490218972135
0.423309116986
0.882214458186
1.71088238081
2.71919089789
3.48399561765
3.96602734064
4.06777513915
3.91268937017
3.83697770442
3.70933781911
3.58775861518
3.49563930132
3.42913172113
3.46194506243
3.37970054149
3.35052338874
3.38800505978
3.4709792809
..
SRB
Serbia
SP.URB.GROW
Urban population growth (annual %)
0
1
0.902757586306
0.325158978125
0.86425014195
0.886649650846
0.654899190644
0.252847407691
-0.311252419252
-0.693036994716
-0.99779285045
-0.283607394949
-0.241216261655
-0.0155132947065
0.110839492369
-0.103589979959
-0.0776258121229
-0.144970549371
-0.0442994129354
-0.0577664782083
-0.0792318032782
-0.0556903375017
-0.0422969622234
..
SSA
Sub-Saharan Africa
SP.URB.GROW
Urban population growth (annual %)
0
1
4.4814071929
4.43176319769
4.41282673802
4.37281555629
4.30838388929
4.23014420455
4.14567083273
4.09028765129
4.05113344836
4.03101590983
4.01966868675
4.05581535504
3.9551883704
3.92230502466
3.89163599284
3.86737500544
3.92867053424
3.9060166743
3.89061809556
3.87367938875
3.87044153149
..
STP
Sao Tome and Principe
SP.URB.GROW
Urban population growth (annual %)
0
1
4.77625297723
4.3092626462
4.15856148583
4.05644026484
4.0144799904
4.01029556379
3.94037673135
3.93110096237
3.8795751696
3.77030808359
3.62820930006
3.4466159489
3.3271758236
3.23620895026
3.18192710591
3.15691059739
2.92822013178
2.913220031
2.93386545828
2.99713581071
3.0849289929
..
SUR
Suriname
SP.URB.GROW
Urban population growth (annual %)
0
1
2.94060193719
2.04796177987
1.95037633938
1.88330370052
1.86738281199
1.88641597695
1.90143272146
1.89922051457
1.90138847659
1.90791247625
1.91468899262
1.89873810159
1.90108447061
1.87238118608
1.80417164958
1.70906913648
1.57812971192
1.48605059023
1.41661937818
1.37943279472
1.36507186617
..
SVK
Slovak Republic
SP.URB.GROW
Urban population growth (annual %)
0
1
0.552841230338
0
0.443836603756
0.340510718341
0.425416921734
0.305780029006
0.117621441963
0.104641514724
0.0668926942096
0.0116921392586
-0.189626190894
-0.218542560942
-0.0320292290484
-0.0253126474854
0.0170426176657
0.0491589372639
0.29508863975
0.322381788083
0.384696949246
0.432978882741
0.485467247568
..
SVN
Slovenia
SP.URB.GROW
Urban population growth (annual %)
0
1
0.252924639039
0.259342650997
-0.17583784581
-1.42457981152
1.19653178877
0.134374310416
0.129258788816
-0.174703717309
-0.0902340999262
0.224998968973
0.254894002092
-0.362409333382
-0.415420586076
-0.433232533465
-0.456027219775
-0.350063567477
-0.288790071067
-0.0524148862068
-0.457245713803
0.284678510419
0.0196855216712
..
SWE
Sweden
SP.URB.GROW
Urban population growth (annual %)
0
1
0.77410661016
0.848335381252
0.753513955337
0.749824258013
0.877229842766
0.738416884014
0.183514019163
0.120464104445
0.0743745046705
0.110897052137
0.178508645878
0.352887242785
0.408090573931
0.429243467415
0.472343163811
0.426949866076
0.718622212513
0.836316795586
0.873707854055
0.946489428264
0.957576188264
..
SWZ
Swaziland
SP.URB.GROW
Urban population growth (annual %)
0
1
4.37804991367
2.88910433217
2.39192545691
2.07807830082
2.00970461329
2.09828335347
2.42063354935
2.48866625388
2.40946181405
2.13310507935
1.74063096522
1.73638668392
1.39281369484
1.22284114899
1.28984538202
1.52251057487
2.29754129714
2.51074259453
2.64763102805
2.66915797088
2.60864211231
..
SXM
Sint Maarten (Dutch part)
SP.URB.GROW
Urban population growth (annual %)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
SYC
Seychelles
SP.URB.GROW
Urban population growth (annual %)
0
1
0.878784885441
1.31588862278
1.50929080783
1.70269584579
1.89610371601
2.08951439803
1.90710575346
1.61143961623
2.39176220288
2.39837901084
1.32496421155
0.829810413587
3.76677586002
-0.349615779151
0.363187287866
1.20460582303
2.93320095831
1.40570932355
3.12353437691
1.27197963572
-0.0176345900627
..
SYR
Syrian Arab Republic
SP.URB.GROW
Urban population growth (annual %)
0
1
3.35641666935
3.41666798198
3.38596019137
3.31782778139
3.20249554049
3.06628999043
3.02106935475
2.89224692281
2.87814088073
3.00762978051
3.21748388849
3.49354448388
3.65491947518
3.67124570247
3.50728084906
3.2307071702
2.65516288262
2.65113005316
2.647147961
2.64321565463
2.63933220619
..
TCA
Turks and Caicos Islands
SP.URB.GROW
Urban population growth (annual %)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TCD
Chad
SP.URB.GROW
Urban population growth (annual %)
0
1
4.07924731249
4.10818949033
4.06216142182
4.04084220182
4.05352532083
4.08979041975
4.46934847332
4.47194423135
4.51206021762
4.59648586249
4.69644299161
5.14306070352
5.19692771249
5.1494527013
4.98217995735
4.74416821039
4.80343638093
4.58352852774
4.42104669344
4.33410379764
4.29875625524
..
TGO
Togo
SP.URB.GROW
Urban population growth (annual %)
0
1
4.47011902003
4.25771894297
3.97541336852
3.89993067168
4.08616884319
4.43073405947
4.94051793727
5.21678279527
5.30285348472
5.15003653075
4.84799834877
4.5753179624
4.31382444997
4.11527403552
4.00604552435
3.95852503893
3.96754467775
3.90761980506
3.85104758216
3.79403869155
3.73749047605
..
THA
Thailand
SP.URB.GROW
Urban population growth (annual %)
0
1
2.27699283486
1.72459276998
1.4941421012
1.36472951556
1.37278697566
1.47726602311
1.54070732983
1.63890650808
1.70661308767
1.72467941187
1.70467441483
1.93967545228
1.92057103315
1.87599324901
1.80156669438
1.70710743765
1.90983446478
1.80633816638
1.71875236134
1.65498069138
1.60884730893
..
TJK
Tajikistan
SP.URB.GROW
Urban population growth (annual %)
0
1
1.59543261223
0.374674533753
0.0181903002268
-0.250262284916
-0.39762074494
-0.461805390028
-0.215008456868
-0.265939195983
-0.354839877183
-0.500788105541
-0.678563870553
0.888281574433
0.774748514566
0.731121902627
0.779089534604
0.891551442772
1.17598183576
1.2911886545
1.38416243024
1.44070384396
1.46985467831
..
TKM
Turkmenistan
SP.URB.GROW
Urban population growth (annual %)
0
1
2.29414809093
2.89381199245
2.95311197574
2.8812992915
2.65043467201
2.32173330492
2.10520890278
1.80777121495
1.57793976557
1.44317096405
1.38031497801
1.76450968334
1.70541115581
1.67862712567
1.68606018713
1.71770096139
2.05703938218
2.09740844355
2.12730890638
2.13906342668
2.13664424259
..
TMP
Timor-Leste
SP.URB.GROW
Urban population growth (annual %)
0
1
4.82363935093
4.81576635881
5.0910199767
4.86097863719
4.01752561547
2.83632237128
1.52434729466
0.38951269462
0.0164146967835
0.761276303137
2.3033467655
4.13722387083
5.53772152908
6.1809963607
5.89134542538
5.0522078335
4.27424801716
3.61299204259
3.24939627945
3.30245515392
3.63392537963
..
TON
Tonga
SP.URB.GROW
Urban population growth (annual %)
0
1
0.576100057664
0.338824527391
0.302627252611
0.295878313162
0.332008935487
0.400297397046
0.562546573049
0.629342122546
0.689207379203
0.738031369477
0.774911504974
1.23817496481
1.26681618227
1.28789852529
1.30057774637
1.30504592192
1.72735405584
1.72340790862
1.69426710188
1.63380209197
1.55231147612
..
TTO
Trinidad and Tobago
SP.URB.GROW
Urban population growth (annual %)
0
1
-1.93205810179
3.27170213542
3.26625691869
3.22522041264
3.12719022467
2.98989633155
3.05480753675
2.92926828853
2.81737081852
2.72531000826
2.64954613557
2.93838577195
2.85079633578
2.77919910088
2.72532531144
2.68466150929
3.13057779241
3.07233330172
3.00962046184
2.93741250807
2.85855894247
..
TUN
Tunisia
SP.URB.GROW
Urban population growth (annual %)
0
1
3.85562845394
3.22467771048
3.26390159977
3.15976725508
3.00024704026
2.77673655025
2.07665782188
1.9856832907
1.88409456194
1.90983198862
1.73266086508
1.74225568933
1.70735155799
1.18068695133
1.52373110654
1.55150490449
1.59199848375
1.56213114638
1.61335104703
1.66574955183
1.63955501985
..
TUR
Turkey
SP.URB.GROW
Urban population growth (annual %)
0
1
4.05610044579
2.6940868441
2.66386112314
2.63442965842
2.60355585928
2.57123240756
2.44711217621
2.42103633951
2.38635528349
2.34035585927
2.28773484438
2.23148352311
2.18079716132
2.1435418946
2.12404836838
2.11600373097
2.02275673393
2.0130527589
1.99336109287
1.95982143574
1.91641069619
..
TUV
Tuvalu
SP.URB.GROW
Urban population growth (annual %)
0
1
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
TZA
Tanzania
SP.URB.GROW
Urban population growth (annual %)
0
1
5.43170466763
4.97020810917
5.00836262646
4.9535503942
4.78630899158
4.55449241292
4.50561676885
4.30612268263
4.17133598078
4.12044917869
4.12888032591
4.23904301225
4.24952640529
4.266865787
4.2865954912
4.30828849284
4.5766843913
4.59654580813
4.61804288088
4.6401479219
4.66055916987
..
UGA
Uganda
SP.URB.GROW
Urban population growth (annual %)
0
1
6.99812111847
4.49082117061
4.39847298379
4.30632325958
4.21869419555
4.13978288373
3.7192375332
3.6570467866
3.63676348524
3.66636152418
3.72712903217
3.79380392567
3.84611014352
3.882170755
3.89594542797
3.89355285674
4.52137893204
4.50402566035
4.48155832589
4.45429341712
4.42301921923
..
UKR
Ukraine
SP.URB.GROW
Urban population growth (annual %)
0
1
0.860313210579
0.268673945198
0.347479006508
0.115276431707
-0.436245598726
-0.730634767051
-0.857576707209
-0.881291526696
-0.863913078032
-0.913088454123
-0.976786339773
-0.797068447557
-0.785683598402
-0.603875131495
-0.551496604992
-0.526087572771
-0.587635593738
-0.508426622757
-0.45316198439
-0.355710090917
-0.309140673225
..
UMC
Upper middle income
SP.URB.GROW
Urban population growth (annual %)
0
1
3.19321133681
2.83579609678
2.66855852715
2.59504243426
2.5509132384
2.50891902136
2.53990486139
2.51024874801
2.46195548027
2.38884435419
2.3590525748
2.26236710474
2.17432573697
2.12481917618
2.08096902149
2.05249546042
1.97527149007
1.94561201514
1.92853368713
1.90527957031
1.89959436645
..
URY
Uruguay
SP.URB.GROW
Urban population growth (annual %)
0
1
1.08342646636
1.04219024236
1.05828248662
1.06648451445
1.06407927769
1.04997578802
0.552800136027
0.811992782395
0.714924156881
0.634130247968
0.540467610311
0.380452377308
0.158134730409
0.0019063651333
0.0977910062068
0.273092771356
0.37276820668
0.392926002368
0.413179462222
0.434261433259
0.455729774173
..
USA
United States
SP.URB.GROW
Urban population growth (annual %)
0
1
1.34235998646
1.86606330449
1.9138961349
1.84292759626
1.74780965678
1.70959499908
1.628048491
1.66644827451
1.62607339572
1.6065893217
1.57232626224
1.4549189062
1.3773661454
1.29774009647
1.35598194638
1.34118522335
1.32627911824
1.36461907272
1.29039017567
1.22753001916
1.02870282398
..
UZB
Uzbekistan
SP.URB.GROW
Urban population growth (annual %)
0
1
2.04980844051
1.2806582597
1.48558369714
1.40621096046
1.08928680501
0.925358068954
1.3381218688
1.30735435253
1.02824691465
0.856014076785
0.431297070129
0.955570805561
0.89014352348
0.839744044047
0.828332946634
0.838179124921
1.31848885192
1.54079426496
1.75468208686
1.75492352447
1.51480962431
..
VCT
St. Vincent and the Grenadines
SP.URB.GROW
Urban population growth (annual %)
0
1
3.91292802089
1.45971336813
1.3424806512
1.24185607015
1.17046314161
1.12070587782
0.613888838614
0.580059936402
0.574032584595
0.601433462786
0.65302053465
0.76234234702
0.819729104111
0.852903501786
0.855532230811
0.829676349451
0.974244487195
0.948024822937
0.919242531167
0.887893113245
0.856709789299
..
VEN
Venezuela, RB
SP.URB.GROW
Urban population growth (annual %)
0
1
2.90389473912
2.82942649692
2.8495892983
2.79612983888
2.74487531703
2.68661469743
2.72689048317
2.67215645103
2.61536687769
2.5734676901
2.49191640216
2.42828061385
2.39531067521
2.35557773894
2.31722891834
2.27266502614
2.06150477523
2.02466786045
1.99627821007
1.95819798182
1.93532187772
..
VIR
Virgin Islands (U.S.)
SP.URB.GROW
Urban population growth (annual %)
0
1
1.70900004657
1.42239725069
1.468941649
1.42228005896
1.29468194514
1.06396378575
0.741207204603
0.725289428889
0.646858037932
0.534761175913
0.515882935078
0.444339057626
0.505503346115
0.548967639116
0.529999609034
0.564985886999
0.382796548414
0.284646570854
0.249489462024
0.217995044469
0.18557947541
..
VNM
Vietnam
SP.URB.GROW
Urban population growth (annual %)
0
1
2.59238948931
3.69424242131
3.60094687761
3.51815476909
3.4369899392
3.36639394986
3.47422806366
3.39974634183
3.34148739634
3.27447594437
3.084661075
2.98095777591
2.84524269181
2.81892914532
2.82721317121
2.77052384655
2.91165546152
2.85404613572
2.80353049377
2.7638689316
2.7351374273
..
VUT
Vanuatu
SP.URB.GROW
Urban population growth (annual %)
0
1
4.77666602069
4.38569019286
4.49368816423
4.45385989337
4.23245100812
3.90770940015
3.54461026079
3.26304916065
3.14657438266
3.24543503044
3.48604813803
4.03191957235
4.22811157089
4.33719946873
4.32652368717
4.23583688009
4.38417623421
4.29895475413
4.22596578441
4.1718419974
4.13027446946
..
WBG
West Bank and Gaza
SP.URB.GROW
Urban population growth (annual %)
0
1
..
5.21155228425
5.20620861698
5.20094222718
5.19575145057
5.19063467029
4.78988601149
4.78891551931
3.78779975499
3.78684124413
3.78588864091
3.50569010369
3.50568228373
3.50567446813
3.5056666569
3.50565885004
3.61728935106
3.61709483203
2.84541471064
2.79332688115
2.79617277495
..
WLD
World
SP.URB.GROW
Urban population growth (annual %)
0
1
2.70796382211
2.48219276868
2.31720015952
2.35951597075
2.30402718552
2.33504051163
2.26493857
2.24468063917
2.20654238119
2.17544822613
2.16807499557
2.13672219716
2.09775744576
2.06853277066
2.05529523535
2.03859547696
2.05784699763
2.05415136247
2.03588064224
2.00719244015
1.98412868213
..
WSM
Samoa
SP.URB.GROW
Urban population growth (annual %)
0
1
0.690503076363
1.02132271618
1.07007290267
1.12125420011
1.17828847716
1.23193619832
1.38375197629
1.42172996864
1.39789619926
1.29989136223
1.15068924509
1.07445351369
0.926935039293
0.816651354308
0.760441327394
0.74637029626
1.18196730823
1.16335006634
1.16641172795
1.19089373559
1.23048614736
..
YEM
Yemen, Rep.
SP.URB.GROW
Urban population growth (annual %)
0
1
6.89623052506
7.57339133194
7.71750719724
7.60379386121
7.19709044892
6.63170652547
5.72217881728
5.2729120469
4.97052345833
4.85560025469
4.86650739801
4.97470590562
4.97090463725
4.9581727577
4.92414453607
4.87692546751
5.03676911482
4.99664953737
4.96069446088
4.92901151857
4.89833687025
..
ZAF
South Africa
SP.URB.GROW
Urban population growth (annual %)
0
1
3.04110742101
3.01824607581
3.03440250818
3.05072928624
3.06722165601
3.0838750388
3.10205638401
3.15740277118
3.21288053365
3.26848630394
3.32421682869
2.88654886953
2.21195865104
2.09885876139
2.00128069432
1.9499316815
1.92803458686
1.89641648823
1.89744980698
1.86168827222
2.13262680284
..
ZAR
Congo, Dem. Rep.
SP.URB.GROW
Urban population growth (annual %)
0
1
3.45941495229
4.33625411745
4.53710519983
4.49576816071
4.17208068251
3.69208154884
3.72888061121
3.31563967747
3.10486106591
3.15824017362
3.3842376542
4.24176334443
4.41169553007
4.50167066983
4.48085636896
4.38706229773
4.77635975461
4.68685202729
4.60583400134
4.53974756733
4.48367035105
..
ZMB
Zambia
SP.URB.GROW
Urban population growth (annual %)
0
1
2.58994061931
1.43649838044
1.3150995317
1.25673191569
1.27691643005
1.34402994948
1.43455763369
1.49444691307
1.48432647396
1.38454148029
1.23275797926
2.51931512422
2.41955835095
2.37795900247
2.4114935566
2.49756285236
2.87851380122
2.96253367875
3.04999619807
3.13638638097
1.97316947209
..
ZWE
Zimbabwe
SP.URB.GROW
Urban population growth (annual %)
0
1
5.42164289724
4.47513371789
4.17879394898
3.92642240505
3.73218576166
3.57373829944
3.06887129
2.92757126261
2.72179124916
2.42968462362
2.08717597558
1.7574857753
1.48018626036
1.24613792321
1.07120460112
0.960742585178
1.00125167096
0.923666212239
1.05556192652
1.45742109122
2.03946843347
..
ABW
Aruba
SP.URB.TOTL
Urban population
0
0
31259.941
32321
33938.142
35851.062
37690.142
39197.624
40188.7822
40843.2156
41277.5558
41673.8704
42156.557
43115.0484
44138.4936
45182.5
46175.2452
47064.136
47924.9526
48693.92
49365.0628
49937.0608
50411.872
..
ADO
Andorra
SP.URB.TOTL
Urban population
0
0
49976.031
51971.22
54474.281
57090.47
59261.229
60622.963
60948.1088
60478.479
59697.3832
59288.501
59721.816
61065.522
63215.7708
65805.8142
68304.9024
70332.864
71758.8016
72746.382
73427.4684
74020.6742
74680.32
..
AFG
Afghanistan
SP.URB.TOTL
Urban population
0
0
3481333.074
3658398.71333
3843470.04506
4036886.41786
4239000.98967
4450181.274
4649393.12141
4856440.56941
5071611.24537
5295202.88978
5527523.7015
5771984.40786
6025936.24466
6289722.99012
6563700.34757
6848236.34707
7158986.77612
7481844.03487
7817244.57904
8165639.87395
8527496.89457
..
AGO
Angola
SP.URB.TOTL
Urban population
0
0
3834304.292
4099472.572
4385759.926
4689709.7
5004849.552
5326246.2
5603726.25
5884429.02
6174984.55
6485556
6823922.77
7194122
7594141.74
8018370.36
8457453.8
8904071.34
9338690.934
9779154.786
10227525.588
10687746.24
11162918.52
..
ALB
Albania
SP.URB.TOTL
Urban population
0
0
1197371.812
1214635.455
1221851.642
1222237.479
1220905.728
1221888.678
1228230.7762
1237379.1804
1249473.2146
1264119.065
1280963.952
1302346.3696
1326750.6732
1353278.9556
1380563.5898
1407526.4
1434362.2208
1460581.632
1486348.6784
1512073.6128
1538056.32
..
ARE
United Arab Emirates
SP.URB.TOTL
Urban population
0
0
1430635.822
1507987.5552
1587509.679
1669356.7072
1753782.492
1841254.576
1936633.8924
2041234.376
2150389.8588
2257372.0096
2360055.998
2449634.432
2530847.7216
2643905.5266
2843030.2424
3161884.173
3625737.2928
4206592.0062
4833717.9924
5408112.411
5859118.2
..
ARG
Argentina
SP.URB.TOTL
Urban population
0
0
28398924.54
28903931.8986
29407892.1664
29910987.207
30413823.0272
30916526.92
31398473.1474
31879145.6254
32354958.4468
32821152.2478
33274568.809
33706192.0176
34125081.508
34535536.9088
34943785.0692
35354593.036
35745846.6
36139884.588
36537154.16
36937597.34
37341035.424
..
ARM
Armenia
SP.URB.TOTL
Urban population
0
0
2392669.125
2362205.5026
2312149.788
2250735.0894
2189525.316
2136963.699
2095545.411
2063349.0552
2038948.4358
2019413.7216
2002539.798
1989710.69
1980510.349
1974057.33
1969259.516
1965276.514
1965314.1288
1965631.3314
1966304.9582
1967599.6062
1969649.864
..
ASM
American Samoa
SP.URB.TOTL
Urban population
0
0
38065.068
39583.1556
41039.0368
42439.1554
43801.317
45139.907
46354.86
47541.078
48721.13
49923.627
51171
52359.269
53598.926
54878.922
56178.868
57484.306
58690.838
59906.574
61131.5344
62371.2992
63630.6
..
ATG
Antigua and Barbuda
SP.URB.TOTL
Urban population
0
0
22019.508
22039.2048
22228.6168
22546.2528
22931.606
23338.28
23685.29
24039.8328
24378.834
24679.928
24927.576
25190.303
25391.9078
25544.4216
25663.2124
25762.212
26012.3024
26244.549
26463.9526
26674.2476
26879.13
..
AUS
Australia
SP.URB.TOTL
Urban population
0
0
14573595.4
14784733.6
14989716
15161819.4
15348158
15559992
15806055.2
16024611.8
16233663.6
16461834.8
16701416
16966962
17214626.4
17468161.2
17712112
17988213.6
18292804.02
18661806
19077768.9
19519451.64
19894960.8
..
AUT
Austria
SP.URB.TOTL
Urban population
0
0
5073760.356
5131675.542
5120897.502
5217114.868
5217114.868
5233118.086
5240947.628
5244994.328
5252459.338
5265438.388
5271606.81486
5303564.51149
5341668.84781
5375607.16
5424730.92
5475144.5
5526033.2928
5556547.4872
5599079.5016
5636522.295
5668087.62
..
AZE
Azerbaijan
SP.URB.TOTL
Urban population
0
0
3844383
3882714
3919842
3957360
3988425
4011570
4036760
4060084
4083108
4103262
4120849.81039
4157772.301
4193815.43411
4230649.42529
4272812.05627
4321802.75
4381421.62
4443397.14
4549957.28
4657886.29
4723020.504
..
BDI
Burundi
SP.URB.TOTL
Urban population
0
0
352908.36
370917.144
388615.7286
405837.2412
422402.3154
438246.072
455607.1436
472266.0652
489168.279
507719.8896
529070.801
555070.3662
584403.0338
616856.5128
651860.8484
688885.28
732487.574
778485.881
826112.04
874281.271
922113.39
..
BEL
Belgium
SP.URB.TOTL
Urban population
0
0
9608573.6
9652341.6
9699452
9745660.8
9783808.32
9812422.4
9838070.2
9867425.2
9894869.4
9923310.4
9954692
9992791.8
10041609.4
10087676.5026
10135597.8462
10195694.341
10265272.7256
10343056.38
10427229.7128
10513624.8834
10596300.866
..
BEN
Benin
SP.URB.TOTL
Urban population
0
0
1646732.265
1724953.3192
1809372.257
1898253.6456
1988967.0578
2079619.888
2159956.435
2239546.782
2320324.916
2405200.88
2496321.23
2597124.6168
2704426.553
2817268.5632
2934040.851
3053502.8
3180169.628
3309929.784
3442663.76
3578336.736
3716954.64
..
BFA
Burkina Faso
SP.URB.TOTL
Urban population
0
0
1286711.448
1346952.921
1409794.1192
1475296.8372
1543512.11
1614512.838
1692794.18
1774352.456
1859385.44
1948127.263
2040805.992
2142651.4956
2249067.168
2360304.5438
2476636.5856
2598318.729
2737276.2144
2882699.7078
3034784.4648
3193698.9042
3359617.656
..
BGD
Bangladesh
SP.URB.TOTL
Urban population
0
0
20840693.148
21747733.5482
22662374.108
23587959.324
24530581.998
25494668.584
26480252.9856
27484392.5138
28505085.3684
29539286.0802
30583776.9
31693089.0768
32814715.0032
33937571.3248
35046523.7728
36131095.954
37268146.5618
38378884.213
39482810.62
40609726.049
41782488.811
..
BGR
Bulgaria
SP.URB.TOTL
Urban population
0
0
5788752
5755817.6
5718384
5696572.8
5695312
5695200
5683751.2
5672155.2032
5652742.2
5637254.4
5553340
5470556
5462659.8
5451066.4
5442144.0034
5433409.8
5427809.1
5423112.912
5420233.845
5415783.534
5408564.025
..
BHR
Bahrain
SP.URB.TOTL
Urban population
0
0
434236.971
446693.496
458475.8112
469969.1736
481743.6386
494216.996
508223.976
524199.624
540333.508
554060.26
564162.612
567978.84
567589.88
572092.976
593835.84
640729.388
717611.004
819088.5584
931548.1868
1035778.2768
1117985.81
..
BHS
Bahamas, The
SP.URB.TOTL
Urban population
0
0
204390.144
208780.338
213352.9308
217968.4452
222434.0376
226616.94
230345.724
233794.638
237105.936
240482.184
244073.82
247980.4532
252102.3444
256412.1466
260855.6832
265386.498
269946.978
274598.935
279274.257
283882.362
288359.557
..
BIH
Bosnia and Herzegovina
SP.URB.TOTL
Urban population
0
0
1688813.224
1645532.563
1570976.2512
1483454.6886
1409739.4304
1369492.278
1372515.0144
1411539.3504
1474248.726
1540695.1764
1595677.536
1638037.69
1668940.286
1690874.499
1709173.816
1727917.457
1750118.9264
1770855.3324
1790463.4016
1809241.3766
1827432.414
..
BLR
Belarus
SP.URB.TOTL
Urban population
0
0
6724740
6766777.2
6820201.6
6874464.6
6905270.4
6921726
6939280
6950379
6957679
6974325
6993495
7015074.97491
7028885
7038164.64072
7048074.38438
7057977.05856
7067741.5
7086340.8
7053629.2
7023771.6
7051441.5
..
BLZ
Belize
SP.URB.TOTL
Urban population
0
0
89775
92150
94525
97375
100225
102837.5
105583.2
109526
113716.8
116055.94
119404.4
124224.44
129311.52
134769.88
140508.72
146483.6
152802.702
159488
166525.7
173930.4
181656.9
..
BMU
Bermuda
SP.URB.TOTL
Urban population
0
0
60500
61000
61000
61000
61300
61700
61785.9601475
61872.0400543
61958.2398873
62044.5598134
62131
62460
62750
63040
63320
63570
63800
64000
64200
64400
64600
..
BOL
Bolivia
SP.URB.TOTL
Urban population
0
0
3702104.872
3840276.8424
3983644.7616
4131592.4752
4283200.472
4437729.45
4573408.0536
4710695.3988
4849700.5908
4990713.3864
5133879.264
5279294.3652
5426643.1884
5575182.1164
5723914.7124
5872152.51
6017686.356
6162629.2464
6307790.0028
6454380.4364
6603349.585
..
BRA
Brazil
SP.URB.TOTL
Urban population
0
0
111938354.088
114718752.798
117482398.28
120251141.184
123055686.776
125917870.036
128976012.835
132093633.389
135256714.859
138443085.409
141633414.244
144685496.43
147734323.048
150755451.42
153718143.172
156601023.688
159125421.433
161556117.184
163922702.225
166269383.244
168628696.55
..
BRB
Barbados
SP.URB.TOTL
Urban population
0
0
84856.827
86072.0406
87271.6512
88464.753
89664.2718
90878.52
92113.0182
93363.9936
94621.8078
95872.8252
97106.493
98480.1024
99837.1482
101182.5084
102525.8706
103873.152
105388.9056
106908.8448
108436.512
109972.8
111519.048
..
BRN
Brunei Darussalam
SP.URB.TOTL
Urban population
0
0
165898.25
172109.3052
178538.5448
185145.5508
191872.8
198675.204
205356.908
212089.296
218863.416
225675.724
232522.596
239326.2984
246146.151
252998.4834
259909.5786
266895.405
273812.3898
280794.1694
287828.799
294896.5262
301982.44
..
BTN
Bhutan
SP.URB.TOTL
Urban population
0
0
91594
95699.6334
98562.6224
100692.597
103008.4656
106309.72
111809.6292
118638.6612
126694.8408
135623.0634
145100.548
155950.86
167505.0336
179586.3556
191949.12
204380.83
216977.4096
229435.1892
241829.9624
254350.206
267145.92
..
BWA
Botswana
SP.URB.TOTL
Urban population
0
0
579213.449
616690.524
655406.9976
695186.6792
735783.7812
776962.13
809254.0736
841560.6584
873566.4224
904874.5244
935216.1
963959.3498
991563.6852
1018648.6882
1046146.8464
1074760.629
1103665.443
1133779.028
1164682.9476
1195682.9584
1226243.395
..
CAF
Central African Republic
SP.URB.TOTL
Urban population
0
0
1079997.936
1109109.5736
1140200.4768
1172637.8776
1205455.6672
1237908.12
1269924.9328
1301632.4872
1332715.7376
1362834.0824
1391804.232
1420184.636
1447451.964
1474338.425
1501866.78
1530812.28
1563890.5084
1598633.148
1635005.3538
1672842.7872
1712008.839
..
CAN
Canada
SP.URB.TOTL
Urban population
0
0
21287906
21641486.0845
21971497.8042
22276692.8446
22555905.0819
22808058
23161885.14
23515962.24
23829295.62
24137066.88
24461911.5
24747408.78
25008058.8
25296453.6
25589601
25881912
26184498
26479728
26782365.6
27160619.5
27491654.112
..
CHE
Switzerland
SP.URB.TOTL
Urban population
0
0
4913184
4983040
5043500
5095267.2
5141988.8
5182176
5202219.6
5208262.4
5220162
5237904
5266034.87267
5299449.24149
5339681.34535
5379455.78535
5416562.93289
5451405.295
5490213.9824
5544030.1014
5619511.59
5694813.3174
5759378.848
..
CHI
Channel Islands
SP.URB.TOTL
Urban population
0
0
44003.018
43959.0088
43821.9616
43631.1024
43441.0392
43289.87
43446.64
43646.11
43873.335
44105.135
44325.65
44586.873
44838.2308
45091.6244
45365.4558
45670.241
46161.9288
46683.4522
47210.596
47708.3868
48152.528
..
CHL
Chile
SP.URB.TOTL
Urban population
0
0
10985454.893
11216163.888
11454269.5502
11695115.844
11932422.402
12161547.104
12392261.343
12614032.3
12828405.186
13038212.792
13245625.38
13457062.08
13665779.4078
13872252.0756
14076965.5734
14280311.976
14472673.3476
14663876.7264
14854022.4492
15043129.8664
15231182.32
..
CHN
China
SP.URB.TOTL
Urban population
0
0
311040690
324519960
337841300
351175120
364701510
378324470
393025140
407892870
422754674
437455062
452026910
467023320
481942560
496807040
511690410
526702880
541451260
556147470
570926305
585807200
600896480.666
..
CIV
Cote d'Ivoire
SP.URB.TOTL
Urban population
0
0
4969538.81
5183530.352
5403570.4362
5627597.2488
5852672.6912
6076360.8
6310601.1984
6543874.4448
6773791.563
6997436.5812
7213019.055
7459888.7424
7700366.8818
7938761.8548
8181470.976
8433802.728
8697509.6334
8972818.0248
9261862.0146
9566652.8544
9888637.8
..
CMR
Cameroon
SP.URB.TOTL
Urban population
0
0
4957593.333
5214946.0448
5480218.0524
5752614.6258
6031108.4162
6314972.661
6603670.945
6897481.4312
7197561.72
7505720.1798
7823456.231
8144978.4486
8476416.711
8817980.4964
9169685.6314
9531598.827
9893155.324
10265002.3068
10647482.3928
11040981.1224
11445751.176
..
COG
Congo, Rep.
SP.URB.TOTL
Urban population
0
0
1297173.786
1342794.8736
1389636.0744
1438042.812
1488479.0904
1541246.184
1595585.0004
1652404.7156
1710853.5066
1769709.1104
1828155.659
1885582.044
1942437.9238
2000257.6424
2061256.623
2126972.554
2198182.2538
2274181.0752
2353210.3426
2432665.4088
2510640.279
..
COK
Cook Islands
SP.URB.TOTL
Urban population
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
COL
Colombia
SP.URB.TOTL
Urban population
0
0
22677868.243
23268470.0654
23865245.2842
24468798.364
25080054.279
25699602.585
26283158.1922
26873173.4156
27468580.1454
28067884.3234
28669963.686
29265960.228
29863804.872
30464297.22
31068726.896
31677850.688
32291743.06
32909426.634
33529307.59
34149224.912
34767425.591
..
COM
Comoros
SP.URB.TOTL
Urban population
0
0
122167.404
125511.5648
128939.909
132473.271
136133.5622
139939.538
143295.7212
146786.6122
150411.8772
154168.9296
158053.789
162065.8614
166206.234
170474.0258
174869.7544
179389.746
184692.2964
190144.2804
195727.1472
201418.8036
207199.5
..
CPV
Cape Verde
SP.URB.TOTL
Urban population
0
0
153540.765
160187.012
167701.4746
175865.544
184309.3386
192733.648
200951.3352
209089.0152
217172.2668
225285.0944
233485.092
241242.032
249007
256697.298
264199.744
271434.842
278064.4338
284403.9424
290570.5902
296742.4356
303055.389
..
CRI
Costa Rica
SP.URB.TOTL
Urban population
0
0
1556611.68
1627861.6572
1700785.3626
1775914.2912
1854028.0044
1935656.244
2007624.418
2082428.5204
2159061.6216
2236065.7344
2312316.2
2383354.0484
2453184.7576
2522057.5156
2590496.018
2658907.821
2726368.404
2793566.2592
2860695.6424
2928005.862
2995664.341
..
CUB
Cuba
SP.URB.TOTL
Urban population
0
0
7758620.752
7839302.2318
7912300.1088
7978633.2284
8040420.4904
8099290.685
8163727.9936
8224431.378
8282396.8932
8338918.9988
8394860.628
8421967.008
8448628.104
8473269.924
8493637.32
8508206.952
8518686.7688
8523634.8468
8524540.323
8523556.8704
8522290.103
..
CUW
Curacao
SP.URB.TOTL
Urban population
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
CYM
Cayman Islands
SP.URB.TOTL
Urban population
0
0
26048
27363
28710
30074
31437
32792
34096
35361
36704
38284
40195
42501
45117
47815
50273
52268
53712
54679
55295
55763
56230
..
CYP
Cyprus
SP.URB.TOTL
Urban population
0
0
512130.884
525049.9056
538715.6696
552892.9216
567290.108
581688.32
594876.2924
607853.2592
620749.1324
633785.1392
647099.684
660922.7268
674937.2112
688912.0868
702531.4296
715565.466
728549.04
740929.819
752823.699
764421.573
775863.841
..
CZE
Czech Republic
SP.URB.TOTL
Urban population
0
0
7792976
7739997.2
7734372.8
7731720.4
7723059.2
7706926
7682612
7662128.76
7642933.76
7621759.6
7602242
7555536
7531181.514
7522825.794
7518987.776
7523333.58
7547813.49
7595607.6
7661886.96
7708075.83
7735941.15
..
DEU
Germany
SP.URB.TOTL
Urban population
0
0
58065523
58522239.6
59000643.2
59422423.2
59718621.6
59843586
60008731.2
60092386.2
60041994.6
60038431.8
60095510
60234822.8
60412357.6
60486044.8
60517417.75
60532539.6
60530216.1948
60515143.2432
60465875.4308
60378380.7204
60296318.802
..
DJI
Djibouti
SP.URB.TOTL
Urban population
0
0
425653.53
444955.365
459499.801
471360.054
483829.791
499349.989
518253.8228
540193.607
563966.284
587616.9834
609697.69
628617.9144
646051.9086
662538.072
678963.4852
696003.987
712484.93
729484.657
746970.228
764822.93
782958.796
..
DMA
Dominica
SP.URB.TOTL
Urban population
0
0
48016.902
48200.8968
48523.8156
48915.5832
49274.31
49526.616
49643.7216
49648.8768
49589.0598
49534.1228
49536.792
49626.8262
49771.9782
49948.56
50115.7098
50246.325
50315.88
50353.7372
50383.1328
50438.8772
50546.722
..
DNK
Denmark
SP.URB.TOTL
Urban population
0
0
4358720
4372653.6
4388296
4406498.8
4422168
4443800
4473752.4
4493700.688
4509030.6
4525499.6388
4542079.744
4565742.9132
4590688.621
4610343.5092
4630969.1598
4652325.102
4684753.5552
4719774.7196
4761870.6828
4801778.793
4834489.208
..
DOM
Dominican Republic
SP.URB.TOTL
Urban population
0
0
3971455.632
4089751.0472
4209912.1256
4331398.7376
4453481.0496
4575626.602
4729759.7696
4884885.768
5041426.208
5200079.2272
5361387.408
5521974.7968
5685063.616
5850606.8592
6018472.928
6188530.356
6347601.689
6508418.1912
6670747.1096
6834283.9552
6998760.6
..
DZA
Algeria
SP.URB.TOTL
Urban population
0
0
13180873.822
13712080.128
14251006.1654
14791295.1932
15324149.6892
15843290.96
16339418.898
16820525.8584
17293828.8632
17770455.504
18259228.546
18744239.47
19242410.976
19754432.978
20279926.048
20818388.217
21350815.3876
21896885.509
22453959.8616
23018180.6448
23586358.32
..
EAP
East Asia & Pacific
SP.URB.TOTL
Urban population
0
0
462747832.273
482334099.026
501827971.326
521415115.112
541298870.045
561401758.357
583335117.253
605569327.175
627929615.507
650252249.684
672540331.868
695298274.66
718076203.426
740895338.529
763806465.086
786883987.62
809568004.91
832221054.063
855004868.268
877981664.537
901290814.565
..
ECA
Europe & Central Asia
SP.URB.TOTL
Urban population
0
0
245919305.815
247408494.534
248427644.897
249279928.928
249788453.909
250125491.969
250308830.635
250505546.512
250737737.677
250941946.685
251502251.997
251754934.495
251859095.87
252145992.054
252480898.748
252936643.019
253667218.607
254647042.002
255876096.547
257237393.715
258691826.2
..
ECU
Ecuador
SP.URB.TOTL
Urban population
0
0
5653583.437
5838582.2872
6025462.8658
6212644.8304
6398030.2722
6580244.468
6753515.142
6923114.94
7092034.498
7264616.424
7444048.869
7651721.1456
7867281.123
8088921.4176
8313662.1486
8539191.672
8764876.3608
8991238.8732
9218410.092
9446861.3184
9676910.391
..
EGY
Egypt, Arab Rep.
SP.URB.TOTL
Urban population
0
0
24726824.625
25128154.5696
25501689.5784
25856798.2284
26207175.5814
26563310.68
26990324.9448
27426063.9936
27873966.9868
28337322.7904
28818226.494
29346301.632
29894393.232
30458332.458
31031969.148
31610569.59
32222388.3592
32838662.9296
33459712.9056
34086648.4028
34719820.956
..
EMU
Euro area
SP.URB.TOTL
Urban population
0
0
215272570.024
216697950.721
218082720.12
219452211.606
220595564.851
221547411.72
222519422.48
223459836.251
224296417.324
225206013.307
226460496.054
227975343.049
229756049.779
231658625.305
233626109.75
235522823.668
237419892.129
239366838.999
241234651.253
242748157.936
244040910.559
..
ERI
Eritrea
SP.URB.TOTL
Urban population
0
0
499010.61
507596.628
513263.8628
517792.0748
523788.7572
533275.498
549491.8944
569644.8156
593775.3248
621603.806
652828.528
690820.1076
732800.6212
777695.8
823939.8444
870314.07
921734.0608
973148.1708
1025126.3512
1078736.3768
1134794.016
..
ESP
Spain
SP.URB.TOTL
Urban population
0
0
29282344
29398982.75
29535219
29666375.8
29785572.1
29894733
29995498.37
30106373.44
30243645.54
30431787.75
30720821.6
31102279.71
31588646.17
32150244.3
32710342.23
33286381.05
33899073.2644
34547811.861
35132568.1792
35468979.7244
35667138.276
..
EST
Estonia
SP.URB.TOTL
Urban population
0
0
1115559
1106436.8
1083217.8
1052373.6
1027318.6
1005900
989500.8
976640
965349.68
956351.416919
950441.754669
946683.668452
942896.864474
939342.983727
936204.971089
934191.318
932690.3274
931657.0368
931232.855
931220.2908
931053.97
..
ETH
Ethiopia
SP.URB.TOTL
Urban population
0
0
6089990.886
6429851.467
6787013.7856
7158595.8318
7540335.7656
7928865.383
8287187.298
8648888.677
9015254.795
9388714.482
9771106.653
10189784.8734
10618454.8922
11056462.6744
11502721.932
11956481.621
12462918.092
12978978.812
13505891.23
14045480.923
14599119.216
..
FIN
Finland
SP.URB.TOTL
Urban population
0
0
3061404
3078596
3095788
3110524
3124646
3136312
3143675
3149690.888
3154666.6
3159187.19399
3162656.78293
3183353.98451
3204607.79519
3225801.7357
3248768.16667
3273563.904
3301950.036
3331893.6
3363381.567
3395521.956
3427355.736
..
FJI
Fiji
SP.URB.TOTL
Urban population
0
0
303010.24
311604.0356
321281.3136
331738.6514
342432.22
352921.205
361438.8078
369773.523
377763.183
385226.9498
392059.794
397612.64
402453.648
407034.822
412008.306
417856.924
424953.2072
433002.4128
441735.6636
450708.4024
459572.682
..
FRA
France
SP.URB.TOTL
Urban population
0
0
43113731.934
43408604.2844
43692784.2476
43969140.9234
44242058.2406
44515684.01
44800975.538
45087619.5166
45385280.3616
45638014.5236
46057724.102
46501033.4248
46948117.6192
47390471.161
47849911.8512
48321961.051
48796009.62
49235513.7092
49656006.2184
50072249.1582
50474009.1414
..
FRO
Faeroe Islands
SP.URB.TOTL
Urban population
0
0
14552.748
14408.667
14146.56
13836.5334
13576.3848
13436.247
13884.4368
14462.4276
15143.8212
15873.654
16604.709
17152.46
17697.888
18229.248
18734.765
19206.684
19554.815
19856.2336
20128.8774
20403.05
20700.9
..
FSM
Micronesia, Fed. Sts.
SP.URB.TOTL
Urban population
0
0
24850.302
25338.9934
25855.3328
26339.364
26710.23
26915.483
26479.6416
25885.6906
25201.091
24514.3782
23883.969
23925.67
24023.344
24156.475
24290.498
24400.437
24570.7782
24726.6632
24876.7218
25034.9112
25211.528
..
GAB
Gabon
SP.URB.TOTL
Urban population
0
0
641969.404
675196.3716
709961.1818
745949.3928
782701.1698
819844.558
853645.331
887495.8848
921381.5392
955351.9592
989454.474
1020637.32
1051783.58
1082971.848
1114317.759
1145929.444
1174759.0336
1203827.4472
1233343.624
1263569.9728
1294698.18
..
GBR
United Kingdom
SP.URB.TOTL
Urban population
0
0
50778608.782
50970338.5772
51142913.9446
51300304.1232
51465793.603
51636936.7
51815119.06
51995397.078
52193924.6284
52415178.6312
52649907.516
52877981.016
53108464.2168
53359454.8122
53665555.0824
54021203.379
54402758.4096
54802602.7914
55217332.7874
55633773.314
56059103.661
..
GEO
Georgia
SP.URB.TOTL
Urban population
0
0
2645902
2652974.74
2661905.7
2670656.18
2632070.24
2551626
2476999.26
2420780.72
2386346.14
2357153.5
2328444.1
2309878.24
2292653.4
2276135.62
2268834.82
2289630
2312468.4
2310931.44
2311963.38
2329784.56
2355531.2
..
GHA
Ghana
SP.URB.TOTL
Urban population
0
0
5384803.06
5651271.7962
5930434.8436
6219944.8724
6515990.928
6815757.301
7125060.6392
7438497.15
7758504.3572
8088915.1672
8432815.6
8787401.814
9156057.1272
9538723.1316
9934806.1344
10343827.268
10761587.8824
11192672.1984
11636740.8352
12093266.4552
12561788.845
..
GIB
Gibraltar
SP.URB.TOTL
Urban population
0
0
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
..
GIN
Guinea
SP.URB.TOTL
Urban population
0
0
1612624.72
1721713.985
1849400.41
1985870.725
2116870.936
2231744.325
2326109.03
2402628.655
2466245.6
2525424.366
2586790.66
2660314.446
2736369.648
2815553.188
2897918.646
2983677.84
3080809.8468
3183281.0124
3292157.484
3408616.9764
3533482.86
..
GMB
Gambia, The
SP.URB.TOTL
Urban population
0
0
370035.833
394493.288
418667.94
442841.152
467553.898
493268.154
519616.9688
546978.376
575525.6712
605439.9532
636868.244
668638.4044
702053.057
736981.7964
773184.9942
810482.442
846969.5766
884476.2206
923091.5694
962960.8884
1004196.914
..
GNB
Guinea-Bissau
SP.URB.TOTL
Urban population
0
0
285691.295
295045.3764
304733.8642
314719.3504
324944.6838
335366.816
341847.0024
348376.2144
354972.179
361663.2744
368474.535
375408.964
382473.4116
389705.238
397149.1068
404837.72
414182.0256
423839.2416
433801.0888
444048.704
454567.2
..
GNQ
Equatorial Guinea
SP.URB.TOTL
Urban population
0
0
129738.789
137297.5872
145302.9462
153742.068
162556.299
171700.476
177440.548
183324.568
189359.132
195552.388
201907.44
208539.099
215340.2236
222278.8114
229311.9072
236410.471
244428.4962
252551.6992
260824.3726
269312.871
278059.197
..
GRC
Greece
SP.URB.TOTL
Urban population
0
0
5974668
6043140
6118300
6185406
6247376
6305962
6359004.2
6408004.2
6451159
6488444.6
6517736.754
6552454.2688
6590328.2914
6627336.6168
6665781.0226
6706794.86
6755966.76
6805199.904
6854627.34
6905049.12
6949895.472
..
GRD
Grenada
SP.URB.TOTL
Urban population
0
0
30976.4
30914.8544
31037.3148
31270.7008
31502.0836
31651.508
31702.5636
31685.8304
31620.8156
31541.3648
31471.82
31455.2252
31442.6136
31435.182
31433.194
31436.604
31611.7516
31795.9968
31988.1732
32186.7924
32390.97
..
GRL
Greenland
SP.URB.TOTL
Urban population
0
0
44313.2
44366.7
44339.54
44391.84
44766.3
45142.2
45301.36
45460.8
45620.52
45699.06
45859.2
46116.84
46457.28
46728.948
46986.5472
47142.18
47145.1296
47099.004
47045.1456
47176.1448
47488.56
..
GTM
Guatemala
SP.URB.TOTL
Urban population
0
0
3667406.841
3789401.52
3915609.47
4045813.533
4179597.268
4316755.925
4457196.615
4601385.085
4750357.222
4905518.358
5067932.551
5240552.3624
5421081.2494
5608899.8336
5802948.5992
6002496.688
6212435.2464
6428274.7704
6651012.9868
6882088.7192
7122519.855
..
GUM
Guam
SP.URB.TOTL
Urban population
0
0
121593.912
124313.2908
126917.4492
129406.2032
131783.0528
134059.839
136124.963
138083.075
140037.255
142124.923
144441.857
146721.876
149231.852
151865.651
154469.658
156934.015
159257.5488
161443.2876
163531.2008
165587.3826
167663.072
..
GUY
Guyana
SP.URB.TOTL
Urban population
0
0
213854.645
212838.4016
212308.641
212108.3734
212007.8736
211841.889
211407.1
210895.727
210371.904
209939.352
209666.886
209715.2604
209890.3284
210126.33
210330.5204
210438.27
211475.5146
212419.2576
213297.8364
214156.8972
215030.505
..
HIC
High income
SP.URB.TOTL
Urban population
0
0
697932755.752
706231071.374
712672312.835
721044116.483
729077056.398
738644407.308
745760009.135
752820330.912
759555037.245
766410914.073
773619677.328
781082829.668
788762048.837
796432233.369
804550121.96
812861063.247
821558616.993

Pandas also provides direct Excel data ingest:


In [9]:
import pandas as pd
df = pd.read_excel('data/climate_change_download_0.xlsx')
print(df)


      Country code                    Country name     Series code  \
0              ABW                           Aruba  AG.LND.EL5M.ZS   
1              ADO                         Andorra  AG.LND.EL5M.ZS   
2              AFG                     Afghanistan  AG.LND.EL5M.ZS   
3              AGO                          Angola  AG.LND.EL5M.ZS   
4              ALB                         Albania  AG.LND.EL5M.ZS   
5              ARE            United Arab Emirates  AG.LND.EL5M.ZS   
6              ARG                       Argentina  AG.LND.EL5M.ZS   
7              ARM                         Armenia  AG.LND.EL5M.ZS   
8              ASM                  American Samoa  AG.LND.EL5M.ZS   
9              ATG             Antigua and Barbuda  AG.LND.EL5M.ZS   
10             AUS                       Australia  AG.LND.EL5M.ZS   
11             AUT                         Austria  AG.LND.EL5M.ZS   
12             AZE                      Azerbaijan  AG.LND.EL5M.ZS   
13             BDI                         Burundi  AG.LND.EL5M.ZS   
14             BEL                         Belgium  AG.LND.EL5M.ZS   
15             BEN                           Benin  AG.LND.EL5M.ZS   
16             BFA                    Burkina Faso  AG.LND.EL5M.ZS   
17             BGD                      Bangladesh  AG.LND.EL5M.ZS   
18             BGR                        Bulgaria  AG.LND.EL5M.ZS   
19             BHR                         Bahrain  AG.LND.EL5M.ZS   
20             BHS                    Bahamas, The  AG.LND.EL5M.ZS   
21             BIH          Bosnia and Herzegovina  AG.LND.EL5M.ZS   
22             BLR                         Belarus  AG.LND.EL5M.ZS   
23             BLZ                          Belize  AG.LND.EL5M.ZS   
24             BMU                         Bermuda  AG.LND.EL5M.ZS   
25             BOL                         Bolivia  AG.LND.EL5M.ZS   
26             BRA                          Brazil  AG.LND.EL5M.ZS   
27             BRB                        Barbados  AG.LND.EL5M.ZS   
28             BRN               Brunei Darussalam  AG.LND.EL5M.ZS   
29             BTN                          Bhutan  AG.LND.EL5M.ZS   
...            ...                             ...             ...   
13482          TGO                            Togo     SP.URB.TOTL   
13483          THA                        Thailand     SP.URB.TOTL   
13484          TJK                      Tajikistan     SP.URB.TOTL   
13485          TKM                    Turkmenistan     SP.URB.TOTL   
13486          TMP                     Timor-Leste     SP.URB.TOTL   
13487          TON                           Tonga     SP.URB.TOTL   
13488          TTO             Trinidad and Tobago     SP.URB.TOTL   
13489          TUN                         Tunisia     SP.URB.TOTL   
13490          TUR                          Turkey     SP.URB.TOTL   
13491          TUV                          Tuvalu     SP.URB.TOTL   
13492          TZA                        Tanzania     SP.URB.TOTL   
13493          UGA                          Uganda     SP.URB.TOTL   
13494          UKR                         Ukraine     SP.URB.TOTL   
13495          UMC             Upper middle income     SP.URB.TOTL   
13496          URY                         Uruguay     SP.URB.TOTL   
13497          USA                   United States     SP.URB.TOTL   
13498          UZB                      Uzbekistan     SP.URB.TOTL   
13499          VCT  St. Vincent and the Grenadines     SP.URB.TOTL   
13500          VEN                   Venezuela, RB     SP.URB.TOTL   
13501          VIR           Virgin Islands (U.S.)     SP.URB.TOTL   
13502          VNM                         Vietnam     SP.URB.TOTL   
13503          VUT                         Vanuatu     SP.URB.TOTL   
13504          WBG              West Bank and Gaza     SP.URB.TOTL   
13505          WLD                           World     SP.URB.TOTL   
13506          WSM                           Samoa     SP.URB.TOTL   
13507          YEM                     Yemen, Rep.     SP.URB.TOTL   
13508          ZAF                    South Africa     SP.URB.TOTL   
13509          ZAR                Congo, Dem. Rep.     SP.URB.TOTL   
13510          ZMB                          Zambia     SP.URB.TOTL   
13511          ZWE                        Zimbabwe     SP.URB.TOTL   

                               Series name SCALE Decimals         1990  \
0      Land area below 5m (% of land area)     0        1      29.5748   
1      Land area below 5m (% of land area)     0        1            0   
2      Land area below 5m (% of land area)     0        1            0   
3      Land area below 5m (% of land area)     0        1     0.208235   
4      Land area below 5m (% of land area)     0        1      4.96788   
5      Land area below 5m (% of land area)     0        1      4.64452   
6      Land area below 5m (% of land area)     0        1      1.23053   
7      Land area below 5m (% of land area)     0        1            0   
8      Land area below 5m (% of land area)     0        1      17.8926   
9      Land area below 5m (% of land area)     0        1      32.4232   
10     Land area below 5m (% of land area)     0        1      1.14153   
11     Land area below 5m (% of land area)     0        1            0   
12     Land area below 5m (% of land area)     0        1      19.9699   
13     Land area below 5m (% of land area)     0        1            0   
14     Land area below 5m (% of land area)     0        1      9.24228   
15     Land area below 5m (% of land area)     0        1       1.1556   
16     Land area below 5m (% of land area)     0        1            0   
17     Land area below 5m (% of land area)     0        1      14.0694   
18     Land area below 5m (% of land area)     0        1       0.4297   
19     Land area below 5m (% of land area)     0        1      39.0349   
20     Land area below 5m (% of land area)     0        1      71.9861   
21     Land area below 5m (% of land area)     0        1    0.0732217   
22     Land area below 5m (% of land area)     0        1            0   
23     Land area below 5m (% of land area)     0        1      9.45424   
24     Land area below 5m (% of land area)     0        1      82.2637   
25     Land area below 5m (% of land area)     0        1            0   
26     Land area below 5m (% of land area)     0        1      1.21234   
27     Land area below 5m (% of land area)     0        1      15.6937   
28     Land area below 5m (% of land area)     0        1       3.3356   
29     Land area below 5m (% of land area)     0        1            0   
...                                    ...   ...      ...          ...   
13482                     Urban population     0        0  1.10332e+06   
13483                     Urban population     0        0  1.67792e+07   
13484                     Urban population     0        0   1.6811e+06   
13485                     Urban population     0        0      1654268   
13486                     Urban population     0        0       154574   
13487                     Urban population     0        0        21599   
13488                     Urban population     0        0       103317   
13489                     Urban population     0        0   4.7214e+06   
13490                     Urban population     0        0  3.20451e+07   
13491                     Urban population     0        0           ..   
13492                     Urban population     0        0  4.81553e+06   
13493                     Urban population     0        0  1.96467e+06   
13494                     Urban population     0        0     34663856   
13495                     Urban population     0        0  8.95931e+08   
13496                     Urban population     0        0  2.76712e+06   
13497                     Urban population     0        0    187966119   
13498                     Urban population     0        0      8224510   
13499                     Urban population     0        0      43624.3   
13500                     Urban population     0        0     16649250   
13501                     Urban population     0        0      91175.6   
13502                     Urban population     0        0  1.34014e+07   
13503                     Urban population     0        0      27420.9   
13504                     Urban population     0        0  1.34323e+06   
13505                     Urban population     0        0  2.25612e+09   
13506                     Urban population     0        0      34197.3   
13507                     Urban population     0        0  2.49718e+06   
13508                     Urban population     0        0     18304000   
13509                     Urban population     0        0  1.01209e+07   
13510                     Urban population     0        0  3.09686e+06   
13511                     Urban population     0        0  3.03607e+06   

              1991         1992         1993 ...          2002         2003  \
0               ..           ..           .. ...            ..           ..   
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              ..           ..           .. ...            ..           ..   
...            ...          ...          ... ...           ...          ...   
13482  1.15131e+06    1.198e+06  1.24564e+06 ...   1.91228e+06  1.99262e+06   
13483  1.70711e+07   1.7328e+07  1.75662e+07 ...   2.04142e+07  2.08008e+07   
13484  1.68741e+06  1.68772e+06   1.6835e+06 ...   1.66323e+06  1.67543e+06   
13485  1.70284e+06  1.75388e+06  1.80514e+06 ...   2.13444e+06  2.17057e+06   
13486       162200       170672       179173 ...        222202       236370   
13487      21672.4        21738      21802.5 ...       23297.3      23599.3   
13488       106753       110298       113913 ...        147859       152026   
13489  4.87613e+06  5.03791e+06  5.19963e+06 ...   6.27607e+06  6.35061e+06   
13490  3.29202e+07  3.38089e+07  3.47114e+07 ...   4.30243e+07  4.39565e+07   
13491           ..           ..           .. ...            ..           ..   
13492  5.06092e+06  5.32084e+06  5.59105e+06 ...   8.26297e+06  8.62317e+06   
13493  2.05491e+06  2.14731e+06   2.2418e+06 ...   3.16239e+06  3.28758e+06   
13494  3.47571e+07  3.48781e+07  3.49183e+07 ...   3.24788e+07  3.22833e+07   
13495  9.21338e+08  9.45924e+08  9.70471e+08 ...   1.20322e+09  1.22878e+09   
13496  2.79611e+06  2.82586e+06  2.85615e+06 ...   3.02995e+06  3.03001e+06   
13497    191506617    195207154    198838035 ...    2.2961e+08  2.32609e+08   
13498  8.33052e+06   8.4552e+06  8.57493e+06 ...   9.36573e+06  9.44471e+06   
13499      44265.8        44864      45424.6 ...       48667.5      49084.4   
13500     17127056     17622127     18121818 ...      22884628  2.34301e+07   
13501      92481.7      93850.2      95194.6 ...        101560       102119   
13502  1.39057e+07  1.44156e+07  1.49318e+07 ...    1.9996e+07  2.05677e+07   
13503      28650.3      29967.1        31332 ...       43619.2      45552.7   
13504  1.41509e+06  1.49071e+06   1.5703e+06 ...   2.30397e+06  2.38618e+06   
13505  2.31212e+09   2.3657e+09  2.42152e+09 ...   2.94924e+09  3.01025e+09   
13506      34548.4        34920      35313.8 ...       39445.8      39769.3   
13507  2.69364e+06  2.90976e+06  3.13964e+06 ...   5.14862e+06  5.41033e+06   
13508  1.88649e+07  1.94461e+07  2.00485e+07 ...   2.63456e+07  2.69044e+07   
13509  1.05695e+07    1.106e+07  1.15686e+07 ...   1.61253e+07  1.68678e+07   
13510  3.14167e+06  3.18326e+06  3.22351e+06 ...   3.72988e+06  3.81964e+06   
13511  3.17502e+06  3.31051e+06  3.44308e+06 ...   4.36734e+06   4.4221e+06   

              2004         2005         2006         2007         2008  \
0               ..           ..           ..           ..           ..   
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              ..           ..           ..           ..           ..   
...            ...          ...          ...          ...          ...   
13482  2.07406e+06  2.15781e+06  2.24514e+06  2.33461e+06  2.42627e+06   
13483   2.1179e+07  2.15436e+07   2.1959e+07  2.23593e+07  2.27469e+07   
13484  1.68853e+06  1.70366e+06  1.72381e+06  1.74621e+06  1.77055e+06   
13485  2.20748e+06  2.24573e+06   2.2924e+06  2.34099e+06  2.39132e+06   
13486       250714       263706       275222       285347       294771   
13487      23908.2      24222.2      24644.3      25072.7      25501.1   
13488       156226       160477       165580       170747       175963   
13489  6.44811e+06      6548937  6.65403e+06  6.75879e+06  6.86872e+06   
13490  4.49002e+07  4.58604e+07  4.67975e+07  4.77491e+07  4.87104e+07   
13491           ..           ..           ..           ..           ..   
13492  9.00085e+06  9.39711e+06  9.83718e+06  1.02999e+07  1.07867e+07   
13493  3.41819e+06   3.5539e+06  3.71827e+06  3.88957e+06  4.06785e+06   
13494  3.21058e+07  3.19373e+07  3.17502e+07  3.15892e+07  3.14463e+07   
13495  1.25435e+09   1.2801e+09  1.30538e+09  1.33078e+09  1.35645e+09   
13496  3.03297e+06  3.04127e+06  3.05262e+06  3.06464e+06  3.07733e+06   
13497  2.35785e+08    238968424    242158923    245486120    248674375   
13498  9.52327e+06  9.60342e+06  9.73088e+06  9.88198e+06  1.00569e+07   
13499      49506.1      49918.5      50407.3      50887.4      51357.3   
13500  2.39794e+07     24530571  2.50415e+07  2.55537e+07     26068942   
13501       102662       103243       103639       103935       104194   
13502  2.11575e+07     21751884  2.23945e+07  2.30429e+07   2.3698e+07   
13503      47566.8      49624.9        51849      54126.6        56463   
13504  2.47131e+06  2.55948e+06  2.65376e+06  2.75151e+06  2.83093e+06   
13505  3.07212e+09  3.13475e+09  3.19926e+09  3.26497e+09  3.33144e+09   
13506      40072.9      40373.1      40853.1      41331.2      41816.1   
13507  5.68341e+06  5.96746e+06  6.27572e+06  6.59727e+06  6.93279e+06   
13508  2.74482e+07  2.79887e+07  2.85336e+07  2.90798e+07  2.96369e+07   
13509  1.76408e+07   1.8432e+07  1.93337e+07  2.02614e+07  2.12165e+07   
13510  3.91287e+06  4.01183e+06  4.12899e+06  4.25314e+06  4.38486e+06   
13511  4.46973e+06  4.51288e+06  4.55829e+06  4.60059e+06  4.64941e+06   

              2009         2010 2011  
0               ..           ..   ..  
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              ..           ..   ..  
...            ...          ...  ...  
13482  2.52009e+06  2.61606e+06   ..  
13483  2.31265e+07  2.35016e+07   ..  
13484  1.79624e+06  1.82284e+06   ..  
13485  2.44303e+06  2.49579e+06   ..  
13486       304669       315944   ..  
13487      25921.2      26326.7   ..  
13488       181209       186464   ..  
13489  6.98409e+06  7.09954e+06   ..  
13490  4.96745e+07  5.06356e+07   ..  
13491           ..           ..   ..  
13492   1.1299e+07  1.18381e+07   ..  
13493  4.25314e+06  4.44548e+06   ..  
13494  3.13347e+07  3.12379e+07   ..  
13495  1.38229e+09  1.40855e+09   ..  
13496  3.09072e+06  3.10484e+06   ..  
13497    251745740  2.54349e+08   ..  
13498   1.0235e+07  1.03912e+07   ..  
13499      51815.4      52261.2   ..  
13500  2.65845e+07     27103960   ..  
13501       104422       104616   ..  
13502  2.43622e+07  2.50377e+07   ..  
13503      58868.3      61350.7   ..  
13504  2.91112e+06  2.99367e+06   ..  
13505  3.39831e+09  3.46574e+09   ..  
13506        42317        42841   ..  
13507  7.28307e+06   7.6487e+06   ..  
13508  3.01938e+07  3.08446e+07   ..  
13509  2.22018e+07    2.322e+07   ..  
13510  4.52456e+06  4.61473e+06   ..  
13511  4.71766e+06  4.81487e+06   ..  

[13512 rows x 28 columns]

3. Inputs: PDF

PDF is also a common communication medium about data and analysis. Let's look at how one can read data from PDF into Python.


In [8]:
import pdftables

my_pdf = open('data/WEF_GlobalCompetitivenessReport_2014-15.pdf', 'rb')
chart_page = pdftables.get_pdf_page(my_pdf, 29)

PDF is a proprietary file format with specific tagging that has been reverse engineered. Let's take a look at some structures in this file.


In [9]:
table = pdftables.page_to_tables(chart_page)
titles = zip(table[0][0], table[0][1])[:5]
titles = [''.join([title[0], title[1]]) for title in titles]
print(titles)


[u'Country/Economy', u'Rank (out of 144)', u'Score  (1\u20137)', u'Rank among 2013\u20132014 economies*', u'GCI 2013\u20132014 rank  (out of 148)\u2020']

There is a table with structured data that we can peel out:


In [10]:
all_rows = []
for row_data in table[0][2:]:
    all_rows.extend([row_data[:5], row_data[5:]])

print(all_rows)


[[u'Switzerland', u'1', u'5.70', u'1', u'1'], [u'Sri Lanka', u'73', u'4.19', u'73', u'65'], [u'Singapore', u'2', u'5.65', u'2', u'2'], [u'Botswana', u'74', u'4.15', u'74', u'74'], [u'United States', u'3', u'5.54', u'3', u'5'], [u'Slovak Republic', u'75', u'4.15', u'75', u'78'], [u'Finland', u'4', u'5.50', u'4', u'3'], [u'Ukraine', u'76', u'4.14', u'76', u'84'], [u'Germany', u'5', u'5.49', u'5', u'4'], [u'Croatia', u'77', u'4.13', u'77', u'75'], [u'Japan', u'6', u'5.47', u'6', u'9'], [u'Guatemala', u'78', u'4.10', u'78', u'86'], [u'Hong Kong SAR', u'7', u'5.46', u'7', u'7'], [u'Algeria', u'79', u'4.08', u'79', u'100'], [u'Netherlands', u'8', u'5.45', u'8', u'8'], [u'Uruguay', u'80', u'4.04', u'80', u'85'], [u'United Kingdom', u'9', u'5.41', u'9', u'10'], [u'Greece', u'81', u'4.04', u'81', u'91'], [u'Sweden', u'10', u'5.41', u'10', u'6'], [u'Moldova', u'82', u'4.03', u'82', u'89'], [u'Norway', u'11', u'5.35', u'11', u'11'], [u'Iran, Islamic Rep.', u'83', u'4.03', u'83', u'82'], [u'United Arab Emirates', u'12', u'5.33', u'12', u'19'], [u'El Salvador', u'84', u'4.01', u'84', u'97'], [u'Denmark', u'13', u'5.29', u'13', u'15'], [u'Armenia', u'85', u'4.01', u'85', u'79'], [u'Taiwan, China', u'14', u'5.25', u'14', u'12'], [u'Jamaica', u'86', u'3.98', u'86', u'94'], [u'Canada', u'15', u'5.24', u'15', u'14'], [u'Tunisia', u'87', u'3.96', u'87', u'83'], [u'Qatar', u'16', u'5.24', u'16', u'13'], [u'Namibia', u'88', u'3.96', u'88', u'90'], [u'New Zealand', u'17', u'5.20', u'17', u'18'], [u'Trinidad and Tobago', u'89', u'3.95', u'89', u'92'], [u'Belgium', u'18', u'5.18', u'18', u'17'], [u'Kenya', u'90', u'3.93', u'90', u'96'], [u'Luxembourg', u'19', u'5.17', u'19', u'22'], [u'Tajikistan', u'91', u'3.93', u'n/a', u'n/a'], [u'Malaysia', u'20', u'5.16', u'20', u'24'], [u'Seychelles', u'92', u'3.91', u'91', u'80'], [u'Austria', u'21', u'5.16', u'21', u'16'], [u'Lao PDR', u'93', u'3.91', u'92', u'81'], [u'Australia', u'22', u'5.08', u'22', u'21'], [u'Serbia', u'94', u'3.90', u'93', u'101'], [u'France', u'23', u'5.08', u'23', u'23'], [u'Cambodia', u'95', u'3.89', u'94', u'88'], [u'Saudi Arabia', u'24', u'5.06', u'24', u'20'], [u'Zambia', u'96', u'3.86', u'95', u'93'], [u'Ireland', u'25', u'4.98', u'25', u'28'], [u'Albania', u'97', u'3.84', u'96', u'95'], [u'Korea, Rep.', u'26', u'4.96', u'26', u'25'], [u'Mongolia', u'98', u'3.83', u'97', u'107'], [u'Israel', u'27', u'4.95', u'27', u'27'], [u'Nicaragua', u'99', u'3.82', u'98', u'99'], [u'China', u'28', u'4.89', u'28', u'29'], [u'Honduras', u'100', u'3.82', u'99', u'111'], [u'Estonia', u'29', u'4.71', u'29', u'32'], [u'Dominican Republic', u'101', u'3.82', u'100', u'105'], [u'Iceland', u'30', u'4.71', u'30', u'31'], [u'Nepal', u'102', u'3.81', u'101', u'117'], [u'Thailand', u'31', u'4.66', u'31', u'37'], [u'Bhutan', u'103', u'3.80', u'102', u'109'], [u'Puerto Rico', u'32', u'4.64', u'32', u'30'], [u'Argentina', u'104', u'3.79', u'103', u'104'], [u'Chile', u'33', u'4.60', u'33', u'34'], [u'Bolivia', u'105', u'3.77', u'104', u'98'], [u'Indonesia', u'34', u'4.57', u'34', u'38'], [u'Gabon', u'106', u'3.74', u'105', u'112'], [u'Spain', u'35', u'4.55', u'35', u'35'], [u'Lesotho', u'107', u'3.73', u'106', u'123'], [u'Portugal', u'36', u'4.54', u'36', u'51'], [u'Kyrgyz Republic', u'108', u'3.73', u'107', u'121'], [u'Czech Republic', u'37', u'4.53', u'37', u'46'], [u'Bangladesh', u'109', u'3.72', u'108', u'110'], [u'Azerbaijan', u'38', u'4.53', u'38', u'39'], [u'Suriname', u'110', u'3.71', u'109', u'106'], [u'Mauritius', u'39', u'4.52', u'39', u'45'], [u'Ghana', u'111', u'3.71', u'110', u'114'], [u'Kuwait', u'40', u'4.51', u'40', u'36'], [u'Senegal', u'112', u'3.70', u'111', u'113'], [u'Lithuania', u'41', u'4.51', u'41', u'48'], [u'Lebanon', u'113', u'3.68', u'112', u'103'], [u'Latvia', u'42', u'4.50', u'42', u'52'], [u'Cape Verde', u'114', u'3.68', u'113', u'122'], [u'Poland', u'43', u'4.48', u'43', u'42'], [u"C\xf4te d'Ivoire", u'115', u'3.67', u'114', u'126'], [u'Bahrain', u'44', u'4.48', u'44', u'43'], [u'Cameroon', u'116', u'3.66', u'115', u'115'], [u'Turkey', u'45', u'4.46', u'45', u'44'], [u'Guyana', u'117', u'3.65', u'116', u'102'], [u'Oman', u'46', u'4.46', u'46', u'33'], [u'Ethiopia', u'118', u'3.60', u'117', u'127'], [u'Malta', u'47', u'4.45', u'47', u'41'], [u'Egypt', u'119', u'3.60', u'118', u'118'], [u'Panama', u'48', u'4.43', u'48', u'40'], [u'Paraguay', u'120', u'3.59', u'119', u'119'], [u'Italy', u'49', u'4.42', u'49', u'49'], [u'Tanzania', u'121', u'3.57', u'120', u'125'], [u'Kazakhstan', u'50', u'4.42', u'50', u'50'], [u'Uganda', u'122', u'3.56', u'121', u'129'], [u'Costa Rica', u'51', u'4.42', u'51', u'54'], [u'Swaziland', u'123', u'3.55', u'122', u'124'], [u'Philippines', u'52', u'4.40', u'52', u'59'], [u'Zimbabwe', u'124', u'3.54', u'123', u'131'], [u'Russian Federation', u'53', u'4.37', u'53', u'64'], [u'Gambia, The', u'125', u'3.53', u'124', u'116'], [u'Bulgaria', u'54', u'4.37', u'54', u'57'], [u'Libya', u'126', u'3.48', u'125', u'108'], [u'Barbados', u'55', u'4.36', u'55', u'47'], [u'Nigeria', u'127', u'3.44', u'126', u'120'], [u'South Africa', u'56', u'4.35', u'56', u'53'], [u'Mali', u'128', u'3.43', u'127', u'135'], [u'Brazil', u'57', u'4.34', u'57', u'56'], [u'Pakistan', u'129', u'3.42', u'128', u'133'], [u'Cyprus', u'58', u'4.31', u'58', u'58'], [u'Madagascar', u'130', u'3.41', u'129', u'132'], [u'Romania', u'59', u'4.30', u'59', u'76'], [u'Venezuela', u'131', u'3.32', u'130', u'134'], [u'Hungary', u'60', u'4.28', u'60', u'63'], [u'Malawi', u'132', u'3.25', u'131', u'136'], [u'Mexico', u'61', u'4.27', u'61', u'55'], [u'Mozambique', u'133', u'3.24', u'132', u'137'], [u'Rwanda', u'62', u'4.27', u'62', u'66'], [u'Myanmar', u'134', u'3.24', u'133', u'139'], [u'Macedonia, FYR', u'63', u'4.26', u'63', u'73'], [u'Burkina Faso', u'135', u'3.21', u'134', u'140'], [u'Jordan', u'64', u'4.25', u'64', u'68'], [u'Timor-Leste', u'136', u'3.17', u'135', u'138'], [u'Peru', u'65', u'4.24', u'65', u'61'], [u'Haiti', u'137', u'3.14', u'136', u'143'], [u'Colombia', u'66', u'4.23', u'66', u'69'], [u'Sierra Leone', u'138', u'3.10', u'137', u'144'], [u'Montenegro', u'67', u'4.23', u'67', u'67'], [u'Burundi', u'139', u'3.09', u'138', u'146'], [u'Vietnam', u'68', u'4.23', u'68', u'70'], [u'Angola', u'140', u'3.04', u'139', u'142'], [u'Georgia', u'69', u'4.22', u'69', u'72'], [u'Mauritania', u'141', u'3.00', u'140', u'141'], [u'Slovenia', u'70', u'4.22', u'70', u'62'], [u'Yemen', u'142', u'2.96', u'141', u'145'], [u'India', u'71', u'4.21', u'71', u'60'], [u'Chad', u'143', u'2.85', u'142', u'148'], [u'Morocco', u'72', u'4.21', u'72', u'77'], [u'Guinea', u'144', u'2.79', u'143', u'147']]

4. Configurations


In [2]:
from ConfigParser import ConfigParser
config = ConfigParser()
config.read('../cfg/sample.cfg')


Out[2]:
['../cfg/sample.cfg']

In [3]:
config.sections()


Out[3]:
['openweathermap', 'twitter']

5. APIs

Getting Twitter data from API

Relevant links to the exercise here:

Create an authentication handler


In [16]:
import tweepy
auth = tweepy.OAuthHandler(config.get('twitter', 'consumer_key'), config.get('twitter', 'consumer_secret'))
auth.set_access_token(config.get('twitter','access_token'), config.get('twitter','access_token_secret'))
auth


Out[16]:
<tweepy.auth.OAuthHandler at 0x10b694c10>

Create an API endpoint


In [17]:
api = tweepy.API(auth)

Try REST-ful API call to Twitter


In [22]:
python_tweets = api.search('turkey')

In [23]:
for tweet in python_tweets:
    print(tweet.text)


RT @judgemehmettank: Arrest warrants were issued for 2.745 judges &amp; prosecutors INCLUDING ME who were suspended morning. No more independen…
RT @V_of_Europe: Our sweet and reliable NATO partner Turkey.. https://t.co/z7XkdIKdl7
@MoroccanLove @FT Turkey was sliding backwards, corruption in Govt etc even 2 years ago https://t.co/w9DjFPIaBd
RT @RoccoTodero: Quindi abbiamo liberato un'altra volta Barabba? 
#Turkey #Turchia
RT @AJENews: Purge launched after #TurkeyCoupAttempt
- 3,000 soldiers arrested
- 2,700 judges fired
https://t.co/07UCibsHHr https://t.co/A9…
Turkey coup supporters arrested in Greece after landing in helicopter  https://t.co/aGL7CMeUhX via @WSJ
RT @LAAirportPD: #LAXTRAFFIC INFO ONLY: FAA bans all flights from Turkey from entering the U.S. https://t.co/ZivzTKbOJY
RT @intlspectator: BREAKING: John Kerry says accusations that the US is behind failed coup in Turkey harm US-Turkish bilateral relations
@Razarumi @turkyepost Go deep in2coup. When military takes action all is well planned, in Turkey all seem orchestrated. Soon truth vl emerge
RT @V_of_Europe: EU leaders fear repression, strained relations after Turkey’s attempted coup https://t.co/n4SmYkk60s
RT @SaadAbedine: RIP Photojournalist Mustafa Cambaz, @fotografsitesi was shot dead last night in #Turkey 
https://t.co/7Gb9FJ7lJl https://t…
RT @lilyallen: Oh Turkey. I cannot imagine how terrifying it must be for people there on the ground right now.Stay safe, the world is watch…
RT @AspidistraBooks: Some titles to help make sense of #Turkey. Starting with #books https://t.co/3JkBQhclqD
Dürüst olun.  Bu ülkeyi koruyan emir kulu askerler mi terörist? Yoksa askerleri öldürüp en büyük darbeyi yapan sizler mi terörist? #Turkey
RT @TheArabSource: Torture and murder in streets of #Turkey https://t.co/lQhjCwtbSn #TurkeyCoup https://t.co/OMvV7y4ypt

For streaming API call, we should run a standalone python program: tweetering.py

Input & Output to OpenWeatherMap API

Relevant links to the exercise here:

API call:

api.openweathermap.org/data/2.5/weather?q={city name}

api.openweathermap.org/data/2.5/weather?q={city name},{country code}

Parameters:

q city name and country code divided by comma, use ISO 3166 country codes

Examples of API calls:

api.openweathermap.org/data/2.5/weather?q=London

api.openweathermap.org/data/2.5/weather?q=London,uk

In [8]:
from pprint import pprint
import requests
weather_key = config.get('openweathermap', 'api_key')
res = requests.get("http://api.openweathermap.org/data/2.5/weather",
                  params={"q": "Sydney", "appid": weather_key, "units": "metric"})

In [9]:
pprint(res.json())


{u'base': u'cmc stations',
 u'clouds': {u'all': 75},
 u'cod': 200,
 u'coord': {u'lat': -33.87, u'lon': 151.21},
 u'dt': 1468707029,
 u'id': 2147714,
 u'main': {u'humidity': 93,
           u'pressure': 1030,
           u'temp': 13.04,
           u'temp_max': 13.89,
           u'temp_min': 12.78},
 u'name': u'Sydney',
 u'sys': {u'country': u'AU',
          u'id': 8233,
          u'message': 0.0029,
          u'sunrise': 1468616231,
          u'sunset': 1468652741,
          u'type': 1},
 u'weather': [{u'description': u'broken clouds',
               u'icon': u'04n',
               u'id': 803,
               u'main': u'Clouds'}],
 u'wind': {u'deg': 320, u'speed': 4.1}}

6. Python requests

"requests" is a wonderful HTTP library for Python, with the right level of abstraction to avoid lots of tedious plumbing (manually add query strings to your URLs, or to form-encode your POST data). Keep-alive and HTTP connection pooling are 100% automatic, powered by urllib3, which is embedded within Requests)

>>> r = requests.get('https://api.github.com/user', auth=('user', 'pass'))
>>> r.status_code
200
>>> r.headers['content-type']
'application/json; charset=utf8'
>>> r.encoding
'utf-8'
>>> r.text
u'{"type":"User"...'
>>> r.json()
{u'private_gists': 419, u'total_private_repos': 77, ...}

There is a lot of great documentation at the python-requests site -- we are extracting selected highlights from there for your convenience here.

Making a request

Making a request with Requests is very simple.

Begin by importing the Requests module:


In [27]:
import requests

Now, let's try to get a webpage. For this example, let's get GitHub's public timeline


In [28]:
r = requests.get('https://api.github.com/events')

Now, we have a Response object called r. We can get all the information we need from this object.

Requests' simple API means that all forms of HTTP request are as obvious. For example, this is how you make an HTTP POST request:


In [29]:
r = requests.post('http://httpbin.org/post', data = {'key':'value'})

What about the other HTTP request types: PUT, DELETE, HEAD and OPTIONS? These are all just as simple:


In [30]:
r = requests.put('http://httpbin.org/put', data = {'key':'value'})
r = requests.delete('http://httpbin.org/delete')
r = requests.head('http://httpbin.org/get')
r = requests.options('http://httpbin.org/get')

Passing Parameters In URLs

You often want to send some sort of data in the URL's query string. If you were constructing the URL by hand, this data would be given as key/value pairs in the URL after a question mark, e.g. httpbin.org/get?key=val. Requests allows you to provide these arguments as a dictionary, using the params keyword argument. As an example, if you wanted to pass key1=value1 and key2=value2 to httpbin.org/get, you would use the following code:


In [31]:
payload = {'key1': 'value1', 'key2': 'value2'}
r = requests.get('http://httpbin.org/get', params=payload)

You can see that the URL has been correctly encoded by printing the URL:


In [32]:
print(r.url)


http://httpbin.org/get?key2=value2&key1=value1

Note that any dictionary key whose value is None will not be added to the URL's query string.

You can also pass a list of items as a value:


In [33]:
payload = {'key1': 'value1', 'key2': ['value2', 'value3']}

r = requests.get('http://httpbin.org/get', params=payload)
print(r.url)


http://httpbin.org/get?key2=value2&key2=value3&key1=value1

Response Content

We can read the content of the server's response. Consider the GitHub timeline again:


In [35]:
import requests

r = requests.get('https://api.github.com/events')
r.text


Out[35]:
u'[{"id":"4287094339","type":"CreateEvent","actor":{"id":1845,"login":"francoislaberge","display_login":"francoislaberge","gravatar_id":"","url":"https://api.github.com/users/francoislaberge","avatar_url":"https://avatars.githubusercontent.com/u/1845?"},"repo":{"id":63487159,"name":"francoislaberge/gooey-desktop","url":"https://api.github.com/repos/francoislaberge/gooey-desktop"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"Extensible Electron app for thinking and communicating audio visually","pusher_type":"user"},"public":true,"created_at":"2016-07-16T14:44:09Z"},{"id":"4287094335","type":"WatchEvent","actor":{"id":874134,"login":"kiewic","display_login":"kiewic","gravatar_id":"","url":"https://api.github.com/users/kiewic","avatar_url":"https://avatars.githubusercontent.com/u/874134?"},"repo":{"id":38106431,"name":"google/eddystone","url":"https://api.github.com/repos/google/eddystone"},"payload":{"action":"started"},"public":true,"created_at":"2016-07-16T14:44:09Z","org":{"id":1342004,"login":"google","gravatar_id":"","url":"https://api.github.com/orgs/google","avatar_url":"https://avatars.githubusercontent.com/u/1342004?"}},{"id":"4287094334","type":"PushEvent","actor":{"id":6559064,"login":"raxod502","display_login":"raxod502","gravatar_id":"","url":"https://api.github.com/users/raxod502","avatar_url":"https://avatars.githubusercontent.com/u/6559064?"},"repo":{"id":63487165,"name":"raxod502/rally-emacs","url":"https://api.github.com/repos/raxod502/rally-emacs"},"payload":{"push_id":1206224472,"size":16,"distinct_size":16,"ref":"refs/heads/master","head":"f87507838231f8d5d514af3eacfc9736cf7fadff","before":"ceeddcbf1bd38e89bb2c124050a956db6d4b7409","commits":[{"sha":"209d4767d25f198ed2d12fa63d381be71f894916","author":{"email":"radon.neon@gmail.com","name":"Radon Rosborough"},"message":"Automatic addition by package.el","distinct":true,"url":"https://api.github.com/repos/raxod502/rally-emacs/commits/209d4767d25f198ed2d12fa63d381be71f894916"},{"sha":"af90bf77f66bc07c84b622181a5474d92e82b0b5","author":{"email":"radon.neon@gmail.com","name":"Radon Rosborough"},"message":"Remove obsolete color-theme system","distinct":true,"url":"https://api.github.com/repos/raxod502/rally-emacs/commits/af90bf77f66bc07c84b622181a5474d92e82b0b5"},{"sha":"40aadb1d26453d3c1ab79cb226cbf5e170b1a0e5","author":{"email":"radon.neon@gmail.com","name":"Radon Rosborough"},"message":"Prevent a brief color flash at startup\\n\\nDon\'t ask me why this fixes the problem.","distinct":true,"url":"https://api.github.com/repos/raxod502/rally-emacs/commits/40aadb1d26453d3c1ab79cb226cbf5e170b1a0e5"},{"sha":"7f34741cf323c88f0efbf5c6364d7dd605955368","author":{"email":"radon.neon@gmail.com","name":"Radon Rosborough"},"message":"Update path for powerline.conf","distinct":true,"url":"https://api.github.com/repos/raxod502/rally-emacs/commits/7f34741cf323c88f0efbf5c6364d7dd605955368"},{"sha":"f3aece2fc444ed1df7f85fb1eaeff74687fc1031","author":{"email":"radon.neon@gmail.com","name":"Radon Rosborough"},"message":"Eliminate mouse-utf8 warning","distinct":true,"url":"https://api.github.com/repos/raxod502/rally-emacs/commits/f3aece2fc444ed1df7f85fb1eaeff74687fc1031"},{"sha":"fa2958601552852b319a2ed080e448e84dbd8050","author":{"email":"radon.neon@gmail.com","name":"Radon Rosborough"},"message":"Add tmux plugin manager, tpm","distinct":true,"url":"https://api.github.com/repos/raxod502/rally-emacs/commits/fa2958601552852b319a2ed080e448e84dbd8050"},{"sha":"b839ef717ee6e6d39536247827e623e1e583c6af","author":{"email":"radon.neon@gmail.com","name":"Radon Rosborough"},"message":"Open new panes and windows in same directory","distinct":true,"url":"https://api.github.com/repos/raxod502/rally-emacs/commits/b839ef717ee6e6d39536247827e623e1e583c6af"},{"sha":"534757cae3a6c25a6a8b72aaf22f9e36f6370f03","author":{"email":"radon.neon@gmail.com","name":"Radon Rosborough"},"message":"Don\'t automatically evaluate files on save","distinct":true,"url":"https://api.github.com/repos/raxod502/rally-emacs/commits/534757cae3a6c25a6a8b72aaf22f9e36f6370f03"},{"sha":"55a9600c20070f5a280447f6ce2d2f768f7e33a7","author":{"email":"radon.neon@gmail.com","name":"Radon Rosborough"},"message":"Comment out the ruby stuff","distinct":true,"url":"https://api.github.com/repos/raxod502/rally-emacs/commits/55a9600c20070f5a280447f6ce2d2f768f7e33a7"},{"sha":"c3c33feb47badb62f4abee3c5f1583f9780d6bb3","author":{"email":"radon.neon@gmail.com","name":"Radon Rosborough"},"message":"Comment out some more things","distinct":true,"url":"https://api.github.com/repos/raxod502/rally-emacs/commits/c3c33feb47badb62f4abee3c5f1583f9780d6bb3"},{"sha":"34fe7c1b8046707ff5d646c5b9f97572772c168e","author":{"email":"radon.neon@gmail.com","name":"Radon Rosborough"},"message":"Make C-<up> work as expected in CIDER REPL","distinct":true,"url":"https://api.github.com/repos/raxod502/rally-emacs/commits/34fe7c1b8046707ff5d646c5b9f97572772c168e"},{"sha":"44912328ae016c3151cab8f24bd1a1fc9b1e8d18","author":{"email":"radon.neon@gmail.com","name":"Radon Rosborough"},"message":"Turn off auto-wrapping, even in comments","distinct":true,"url":"https://api.github.com/repos/raxod502/rally-emacs/commits/44912328ae016c3151cab8f24bd1a1fc9b1e8d18"},{"sha":"11c0d34e24b2e48ea77f32da0d8911ad655e2300","author":{"email":"radon.neon@gmail.com","name":"Radon Rosborough"},"message":"Add more keybindings for tmux","distinct":true,"url":"https://api.github.com/repos/raxod502/rally-emacs/commits/11c0d34e24b2e48ea77f32da0d8911ad655e2300"},{"sha":"2750bebf85fdf2bac6af51c2c06721af678a7b55","author":{"email":"radon.neon@gmail.com","name":"Radon Rosborough"},"message":"Stop rally-emacs from sometimes turning off ElDoc","distinct":true,"url":"https://api.github.com/repos/raxod502/rally-emacs/commits/2750bebf85fdf2bac6af51c2c06721af678a7b55"},{"sha":"be0c82bc34a941eaad59a4887716dde4b25fe43e","author":{"email":"radon.neon@gmail.com","name":"Radon Rosborough"},"message":"Fix for electric indent in docstrings","distinct":true,"url":"https://api.github.com/repos/raxod502/rally-emacs/commits/be0c82bc34a941eaad59a4887716dde4b25fe43e"},{"sha":"f87507838231f8d5d514af3eacfc9736cf7fadff","author":{"email":"radon.neon@gmail.com","name":"Radon Rosborough"},"message":"Add user.init.el","distinct":true,"url":"https://api.github.com/repos/raxod502/rally-emacs/commits/f87507838231f8d5d514af3eacfc9736cf7fadff"}]},"public":true,"created_at":"2016-07-16T14:44:09Z"},{"id":"4287094325","type":"IssuesEvent","actor":{"id":11083732,"login":"Warpsmith","display_login":"Warpsmith","gravatar_id":"","url":"https://api.github.com/users/Warpsmith","avatar_url":"https://avatars.githubusercontent.com/u/11083732?"},"repo":{"id":11444280,"name":"woothemes/sensei-certificates","url":"https://api.github.com/repos/woothemes/sensei-certificates"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/woothemes/sensei-certificates/issues/106","repository_url":"https://api.github.com/repos/woothemes/sensei-certificates","labels_url":"https://api.github.com/repos/woothemes/sensei-certificates/issues/106/labels{/name}","comments_url":"https://api.github.com/repos/woothemes/sensei-certificates/issues/106/comments","events_url":"https://api.github.com/repos/woothemes/sensei-certificates/issues/106/events","html_url":"https://github.com/woothemes/sensei-certificates/issues/106","id":165932129,"number":106,"title":"Weird certificate size","user":{"login":"Warpsmith","id":11083732,"avatar_url":"https://avatars.githubusercontent.com/u/11083732?v=3","gravatar_id":"","url":"https://api.github.com/users/Warpsmith","html_url":"https://github.com/Warpsmith","followers_url":"https://api.github.com/users/Warpsmith/followers","following_url":"https://api.github.com/users/Warpsmith/following{/other_user}","gists_url":"https://api.github.com/users/Warpsmith/gists{/gist_id}","starred_url":"https://api.github.com/users/Warpsmith/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Warpsmith/subscriptions","organizations_url":"https://api.github.com/users/Warpsmith/orgs","repos_url":"https://api.github.com/users/Warpsmith/repos","events_url":"https://api.github.com/users/Warpsmith/events{/privacy}","received_events_url":"https://api.github.com/users/Warpsmith/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2016-07-16T14:44:09Z","updated_at":"2016-07-16T14:44:09Z","closed_at":null,"body":"Reading the docs... https://docs.woothemes.com/document/sensei-certificates/#section-4\\r\\n\\r\\nThe certificate becomes a PDF file, right?\\r\\nThen it seems like the intention, at some point, have been to make it easy to print the certificate on paper.\\r\\n\\r\\nThat makes the choice of size for the background image pretty weird.\\r\\nThe proportions of 1200x675px does not correspond with the European A4 paper format (or any other size in the A series), or the American Letter & Legal formats. Is it not reasonable to have the default certificate in the proportions of any of the known standard paper sizes?\\r\\n\\r\\nAlso... 1200x675px? It says in the docs that larger size than that becomes scaled down, which isn\'t promising if the desire is to have it print well.\\r\\n- 1200x675px printed at 300dpi becomes smaller than a postcard: 10x5.7 cm.\\r\\n- 1200x675px printed to fill the width of a landscape oriented A4 becomes only 100dpi which will look badly pixellated on paper.\\r\\n\\r\\nIf would be good if the plugin allowed larger background images without scaling them down.\\r\\n"}},"public":true,"created_at":"2016-07-16T14:44:09Z","org":{"id":473596,"login":"woothemes","gravatar_id":"","url":"https://api.github.com/orgs/woothemes","avatar_url":"https://avatars.githubusercontent.com/u/473596?"}},{"id":"4287094324","type":"PushEvent","actor":{"id":19747399,"login":"Jeggen","display_login":"Jeggen","gravatar_id":"","url":"https://api.github.com/users/Jeggen","avatar_url":"https://avatars.githubusercontent.com/u/19747399?"},"repo":{"id":63418149,"name":"RachelRomee/Makeyourtemplate","url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate"},"payload":{"push_id":1206224471,"size":2,"distinct_size":1,"ref":"refs/heads/master","head":"90ad43ac5c437d474f2078e6baf1f2a2cf98e19c","before":"6f6a7a973abc2f2f83c7ed091b31d36c63eb7898","commits":[{"sha":"720648f9e57766855b4741b41deeb25eb1aade31","author":{"email":"YOUR@EMAIL.com","name":"YOUR NAME"},"message":"Add body styling","distinct":false,"url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/commits/720648f9e57766855b4741b41deeb25eb1aade31"},{"sha":"90ad43ac5c437d474f2078e6baf1f2a2cf98e19c","author":{"email":"Jeggen@users.noreply.github.com","name":"Jeggen"},"message":"Merge pull request #28 from RachelRomee/bodystyle\\n\\nAdd body styling","distinct":true,"url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/commits/90ad43ac5c437d474f2078e6baf1f2a2cf98e19c"}]},"public":true,"created_at":"2016-07-16T14:44:09Z"},{"id":"4287094317","type":"DeleteEvent","actor":{"id":2480867,"login":"fwkz","display_login":"fwkz","gravatar_id":"","url":"https://api.github.com/users/fwkz","avatar_url":"https://avatars.githubusercontent.com/u/2480867?"},"repo":{"id":55058317,"name":"reverse-shell/routersploit","url":"https://api.github.com/repos/reverse-shell/routersploit"},"payload":{"ref":"dev","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2016-07-16T14:44:08Z","org":{"id":16528770,"login":"reverse-shell","gravatar_id":"","url":"https://api.github.com/orgs/reverse-shell","avatar_url":"https://avatars.githubusercontent.com/u/16528770?"}},{"id":"4287094316","type":"WatchEvent","actor":{"id":6921572,"login":"jaworskm","display_login":"jaworskm","gravatar_id":"","url":"https://api.github.com/users/jaworskm","avatar_url":"https://avatars.githubusercontent.com/u/6921572?"},"repo":{"id":19606628,"name":"ivogabe/gulp-typescript","url":"https://api.github.com/repos/ivogabe/gulp-typescript"},"payload":{"action":"started"},"public":true,"created_at":"2016-07-16T14:44:08Z"},{"id":"4287094315","type":"PushEvent","actor":{"id":280212,"login":"KenanSulayman","display_login":"KenanSulayman","gravatar_id":"","url":"https://api.github.com/users/KenanSulayman","avatar_url":"https://avatars.githubusercontent.com/u/280212?"},"repo":{"id":21481110,"name":"KenanSulayman/heartbeat","url":"https://api.github.com/repos/KenanSulayman/heartbeat"},"payload":{"push_id":1206224468,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"43f59dc4bbf55f5fd8511ee57bea4b8ed4f4d18c","before":"1298888969e989fe0a00b1bf8a9953e689f7516d","commits":[{"sha":"43f59dc4bbf55f5fd8511ee57bea4b8ed4f4d18c","author":{"email":"kenan@sly.mn","name":"Kenan Sulayman"},"message":"1468680246085\\n\\nKkfBNHXjS0XZVk3T4UAi+6/idvUCR2gBejJOi/2EG8o=","distinct":true,"url":"https://api.github.com/repos/KenanSulayman/heartbeat/commits/43f59dc4bbf55f5fd8511ee57bea4b8ed4f4d18c"}]},"public":true,"created_at":"2016-07-16T14:44:08Z"},{"id":"4287094312","type":"PullRequestEvent","actor":{"id":19747399,"login":"Jeggen","display_login":"Jeggen","gravatar_id":"","url":"https://api.github.com/users/Jeggen","avatar_url":"https://avatars.githubusercontent.com/u/19747399?"},"repo":{"id":63418149,"name":"RachelRomee/Makeyourtemplate","url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate"},"payload":{"action":"closed","number":28,"pull_request":{"url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/pulls/28","id":77711061,"html_url":"https://github.com/RachelRomee/Makeyourtemplate/pull/28","diff_url":"https://github.com/RachelRomee/Makeyourtemplate/pull/28.diff","patch_url":"https://github.com/RachelRomee/Makeyourtemplate/pull/28.patch","issue_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/issues/28","number":28,"state":"closed","locked":false,"title":"Add body styling","user":{"login":"Jeggen","id":19747399,"avatar_url":"https://avatars.githubusercontent.com/u/19747399?v=3","gravatar_id":"","url":"https://api.github.com/users/Jeggen","html_url":"https://github.com/Jeggen","followers_url":"https://api.github.com/users/Jeggen/followers","following_url":"https://api.github.com/users/Jeggen/following{/other_user}","gists_url":"https://api.github.com/users/Jeggen/gists{/gist_id}","starred_url":"https://api.github.com/users/Jeggen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Jeggen/subscriptions","organizations_url":"https://api.github.com/users/Jeggen/orgs","repos_url":"https://api.github.com/users/Jeggen/repos","events_url":"https://api.github.com/users/Jeggen/events{/privacy}","received_events_url":"https://api.github.com/users/Jeggen/received_events","type":"User","site_admin":false},"body":"","created_at":"2016-07-16T14:44:03Z","updated_at":"2016-07-16T14:44:08Z","closed_at":"2016-07-16T14:44:08Z","merged_at":"2016-07-16T14:44:07Z","merge_commit_sha":"90ad43ac5c437d474f2078e6baf1f2a2cf98e19c","assignee":null,"assignees":[],"milestone":null,"commits_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/pulls/28/commits","review_comments_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/pulls/28/comments","review_comment_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/pulls/comments{/number}","comments_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/issues/28/comments","statuses_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/statuses/720648f9e57766855b4741b41deeb25eb1aade31","head":{"label":"RachelRomee:bodystyle","ref":"bodystyle","sha":"720648f9e57766855b4741b41deeb25eb1aade31","user":{"login":"RachelRomee","id":12393064,"avatar_url":"https://avatars.githubusercontent.com/u/12393064?v=3","gravatar_id":"","url":"https://api.github.com/users/RachelRomee","html_url":"https://github.com/RachelRomee","followers_url":"https://api.github.com/users/RachelRomee/followers","following_url":"https://api.github.com/users/RachelRomee/following{/other_user}","gists_url":"https://api.github.com/users/RachelRomee/gists{/gist_id}","starred_url":"https://api.github.com/users/RachelRomee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RachelRomee/subscriptions","organizations_url":"https://api.github.com/users/RachelRomee/orgs","repos_url":"https://api.github.com/users/RachelRomee/repos","events_url":"https://api.github.com/users/RachelRomee/events{/privacy}","received_events_url":"https://api.github.com/users/RachelRomee/received_events","type":"User","site_admin":false},"repo":{"id":63418149,"name":"Makeyourtemplate","full_name":"RachelRomee/Makeyourtemplate","owner":{"login":"RachelRomee","id":12393064,"avatar_url":"https://avatars.githubusercontent.com/u/12393064?v=3","gravatar_id":"","url":"https://api.github.com/users/RachelRomee","html_url":"https://github.com/RachelRomee","followers_url":"https://api.github.com/users/RachelRomee/followers","following_url":"https://api.github.com/users/RachelRomee/following{/other_user}","gists_url":"https://api.github.com/users/RachelRomee/gists{/gist_id}","starred_url":"https://api.github.com/users/RachelRomee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RachelRomee/subscriptions","organizations_url":"https://api.github.com/users/RachelRomee/orgs","repos_url":"https://api.github.com/users/RachelRomee/repos","events_url":"https://api.github.com/users/RachelRomee/events{/privacy}","received_events_url":"https://api.github.com/users/RachelRomee/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/RachelRomee/Makeyourtemplate","description":null,"fork":false,"url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate","forks_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/forks","keys_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/teams","hooks_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/hooks","issue_events_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/issues/events{/number}","events_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/events","assignees_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/assignees{/user}","branches_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/branches{/branch}","tags_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/tags","blobs_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/git/refs{/sha}","trees_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/statuses/{sha}","languages_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/languages","stargazers_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/stargazers","contributors_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/contributors","subscribers_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/subscribers","subscription_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/subscription","commits_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/commits{/sha}","git_commits_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/git/commits{/sha}","comments_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/comments{/number}","issue_comment_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/issues/comments{/number}","contents_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/contents/{+path}","compare_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/merges","archive_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/downloads","issues_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/issues{/number}","pulls_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/pulls{/number}","milestones_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/milestones{/number}","notifications_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/labels{/name}","releases_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/releases{/id}","deployments_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/deployments","created_at":"2016-07-15T11:51:14Z","updated_at":"2016-07-15T12:32:38Z","pushed_at":"2016-07-16T14:44:07Z","git_url":"git://github.com/RachelRomee/Makeyourtemplate.git","ssh_url":"git@github.com:RachelRomee/Makeyourtemplate.git","clone_url":"https://github.com/RachelRomee/Makeyourtemplate.git","svn_url":"https://github.com/RachelRomee/Makeyourtemplate","homepage":null,"size":62,"stargazers_count":1,"watchers_count":1,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":1,"forks":0,"open_issues":1,"watchers":1,"default_branch":"master"}},"base":{"label":"RachelRomee:master","ref":"master","sha":"6f6a7a973abc2f2f83c7ed091b31d36c63eb7898","user":{"login":"RachelRomee","id":12393064,"avatar_url":"https://avatars.githubusercontent.com/u/12393064?v=3","gravatar_id":"","url":"https://api.github.com/users/RachelRomee","html_url":"https://github.com/RachelRomee","followers_url":"https://api.github.com/users/RachelRomee/followers","following_url":"https://api.github.com/users/RachelRomee/following{/other_user}","gists_url":"https://api.github.com/users/RachelRomee/gists{/gist_id}","starred_url":"https://api.github.com/users/RachelRomee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RachelRomee/subscriptions","organizations_url":"https://api.github.com/users/RachelRomee/orgs","repos_url":"https://api.github.com/users/RachelRomee/repos","events_url":"https://api.github.com/users/RachelRomee/events{/privacy}","received_events_url":"https://api.github.com/users/RachelRomee/received_events","type":"User","site_admin":false},"repo":{"id":63418149,"name":"Makeyourtemplate","full_name":"RachelRomee/Makeyourtemplate","owner":{"login":"RachelRomee","id":12393064,"avatar_url":"https://avatars.githubusercontent.com/u/12393064?v=3","gravatar_id":"","url":"https://api.github.com/users/RachelRomee","html_url":"https://github.com/RachelRomee","followers_url":"https://api.github.com/users/RachelRomee/followers","following_url":"https://api.github.com/users/RachelRomee/following{/other_user}","gists_url":"https://api.github.com/users/RachelRomee/gists{/gist_id}","starred_url":"https://api.github.com/users/RachelRomee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/RachelRomee/subscriptions","organizations_url":"https://api.github.com/users/RachelRomee/orgs","repos_url":"https://api.github.com/users/RachelRomee/repos","events_url":"https://api.github.com/users/RachelRomee/events{/privacy}","received_events_url":"https://api.github.com/users/RachelRomee/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/RachelRomee/Makeyourtemplate","description":null,"fork":false,"url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate","forks_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/forks","keys_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/keys{/key_id}","collaborators_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/teams","hooks_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/hooks","issue_events_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/issues/events{/number}","events_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/events","assignees_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/assignees{/user}","branches_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/branches{/branch}","tags_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/tags","blobs_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/git/refs{/sha}","trees_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/git/trees{/sha}","statuses_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/statuses/{sha}","languages_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/languages","stargazers_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/stargazers","contributors_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/contributors","subscribers_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/subscribers","subscription_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/subscription","commits_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/commits{/sha}","git_commits_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/git/commits{/sha}","comments_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/comments{/number}","issue_comment_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/issues/comments{/number}","contents_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/contents/{+path}","compare_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/compare/{base}...{head}","merges_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/merges","archive_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/downloads","issues_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/issues{/number}","pulls_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/pulls{/number}","milestones_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/milestones{/number}","notifications_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/labels{/name}","releases_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/releases{/id}","deployments_url":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/deployments","created_at":"2016-07-15T11:51:14Z","updated_at":"2016-07-15T12:32:38Z","pushed_at":"2016-07-16T14:44:07Z","git_url":"git://github.com/RachelRomee/Makeyourtemplate.git","ssh_url":"git@github.com:RachelRomee/Makeyourtemplate.git","clone_url":"https://github.com/RachelRomee/Makeyourtemplate.git","svn_url":"https://github.com/RachelRomee/Makeyourtemplate","homepage":null,"size":62,"stargazers_count":1,"watchers_count":1,"language":"Ruby","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":1,"forks":0,"open_issues":1,"watchers":1,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/pulls/28"},"html":{"href":"https://github.com/RachelRomee/Makeyourtemplate/pull/28"},"issue":{"href":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/issues/28"},"comments":{"href":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/issues/28/comments"},"review_comments":{"href":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/pulls/28/comments"},"review_comment":{"href":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/pulls/28/commits"},"statuses":{"href":"https://api.github.com/repos/RachelRomee/Makeyourtemplate/statuses/720648f9e57766855b4741b41deeb25eb1aade31"}},"merged":true,"mergeable":null,"mergeable_state":"unknown","merged_by":{"login":"Jeggen","id":19747399,"avatar_url":"https://avatars.githubusercontent.com/u/19747399?v=3","gravatar_id":"","url":"https://api.github.com/users/Jeggen","html_url":"https://github.com/Jeggen","followers_url":"https://api.github.com/users/Jeggen/followers","following_url":"https://api.github.com/users/Jeggen/following{/other_user}","gists_url":"https://api.github.com/users/Jeggen/gists{/gist_id}","starred_url":"https://api.github.com/users/Jeggen/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Jeggen/subscriptions","organizations_url":"https://api.github.com/users/Jeggen/orgs","repos_url":"https://api.github.com/users/Jeggen/repos","events_url":"https://api.github.com/users/Jeggen/events{/privacy}","received_events_url":"https://api.github.com/users/Jeggen/received_events","type":"User","site_admin":false},"comments":0,"review_comments":0,"commits":1,"additions":4,"deletions":2,"changed_files":2}},"public":true,"created_at":"2016-07-16T14:44:08Z"},{"id":"4287094310","type":"PushEvent","actor":{"id":20323023,"login":"lgrapstein","display_login":"lgrapstein","gravatar_id":"","url":"https://api.github.com/users/lgrapstein","avatar_url":"https://avatars.githubusercontent.com/u/20323023?"},"repo":{"id":63487207,"name":"lgrapstein/say-hello-ruby-001-prework-web","url":"https://api.github.com/repos/lgrapstein/say-hello-ruby-001-prework-web"},"payload":{"push_id":1206224466,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"f7e09e35512e85694949acb2d42d46733eaabd6f","before":"824b2ad879464a5870a2ec9cd19a4536452b47f2","commits":[{"sha":"f7e09e35512e85694949acb2d42d46733eaabd6f","author":{"email":"lgrapstein@gmail.com","name":"Lauren Grapstein"},"message":"Commit Message","distinct":true,"url":"https://api.github.com/repos/lgrapstein/say-hello-ruby-001-prework-web/commits/f7e09e35512e85694949acb2d42d46733eaabd6f"}]},"public":true,"created_at":"2016-07-16T14:44:08Z"},{"id":"4287094306","type":"PullRequestEvent","actor":{"id":748828,"login":"tk0miya","display_login":"tk0miya","gravatar_id":"","url":"https://api.github.com/users/tk0miya","avatar_url":"https://avatars.githubusercontent.com/u/748828?"},"repo":{"id":28710753,"name":"sphinx-doc/sphinx","url":"https://api.github.com/repos/sphinx-doc/sphinx"},"payload":{"action":"closed","number":2783,"pull_request":{"url":"https://api.github.com/repos/sphinx-doc/sphinx/pulls/2783","id":77674610,"html_url":"https://github.com/sphinx-doc/sphinx/pull/2783","diff_url":"https://github.com/sphinx-doc/sphinx/pull/2783.diff","patch_url":"https://github.com/sphinx-doc/sphinx/pull/2783.patch","issue_url":"https://api.github.com/repos/sphinx-doc/sphinx/issues/2783","number":2783,"state":"closed","locked":false,"title":"Create PyGroupedField and use it for \'exceptions\'","user":{"login":"glennmatthews","id":5603551,"avatar_url":"https://avatars.githubusercontent.com/u/5603551?v=3","gravatar_id":"","url":"https://api.github.com/users/glennmatthews","html_url":"https://github.com/glennmatthews","followers_url":"https://api.github.com/users/glennmatthews/followers","following_url":"https://api.github.com/users/glennmatthews/following{/other_user}","gists_url":"https://api.github.com/users/glennmatthews/gists{/gist_id}","starred_url":"https://api.github.com/users/glennmatthews/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/glennmatthews/subscriptions","organizations_url":"https://api.github.com/users/glennmatthews/orgs","repos_url":"https://api.github.com/users/glennmatthews/repos","events_url":"https://api.github.com/users/glennmatthews/events{/privacy}","received_events_url":"https://api.github.com/users/glennmatthews/received_events","type":"User","site_admin":false},"body":"Add `PyGroupedField` class, analogous to `PyField` and `PyTypedField`, and change the Python domain signatures \'exceptions\'/\'raises\' field to use this class, allowing auto-linking of exception classes:\\r\\n\\r\\nbefore:\\r\\n\\r\\n**Raises:** **ValueError** -- if the values are out of range\\r\\n\\r\\nafter:\\r\\n\\r\\n**Raises:** **[ValueError](https://docs.python.org/2/library/exceptions.html#exceptions.ValueError)** -- if the values are out of range","created_at":"2016-07-15T20:36:48Z","updated_at":"2016-07-16T14:44:07Z","closed_at":"2016-07-16T14:44:07Z","merged_at":null,"merge_commit_sha":"73f505b3c0547bb2da4587eef29a14d4bf49843e","assignee":null,"assignees":[],"milestone":null,"commits_url":"https://api.github.com/repos/sphinx-doc/sphinx/pulls/2783/commits","review_comments_url":"https://api.github.com/repos/sphinx-doc/sphinx/pulls/2783/comments","review_comment_url":"https://api.github.com/repos/sphinx-doc/sphinx/pulls/comments{/number}","comments_url":"https://api.github.com/repos/sphinx-doc/sphinx/issues/2783/comments","statuses_url":"https://api.github.com/repos/sphinx-doc/sphinx/statuses/a472cf35cb771d48c9631adc1e145799688a4c47","head":{"label":"glennmatthews:pygroupedfield","ref":"pygroupedfield","sha":"a472cf35cb771d48c9631adc1e145799688a4c47","user":{"login":"glennmatthews","id":5603551,"avatar_url":"https://avatars.githubusercontent.com/u/5603551?v=3","gravatar_id":"","url":"https://api.github.com/users/glennmatthews","html_url":"https://github.com/glennmatthews","followers_url":"https://api.github.com/users/glennmatthews/followers","following_url":"https://api.github.com/users/glennmatthews/following{/other_user}","gists_url":"https://api.github.com/users/glennmatthews/gists{/gist_id}","starred_url":"https://api.github.com/users/glennmatthews/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/glennmatthews/subscriptions","organizations_url":"https://api.github.com/users/glennmatthews/orgs","repos_url":"https://api.github.com/users/glennmatthews/repos","events_url":"https://api.github.com/users/glennmatthews/events{/privacy}","received_events_url":"https://api.github.com/users/glennmatthews/received_events","type":"User","site_admin":false},"repo":{"id":32020170,"name":"sphinx","full_name":"glennmatthews/sphinx","owner":{"login":"glennmatthews","id":5603551,"avatar_url":"https://avatars.githubusercontent.com/u/5603551?v=3","gravatar_id":"","url":"https://api.github.com/users/glennmatthews","html_url":"https://github.com/glennmatthews","followers_url":"https://api.github.com/users/glennmatthews/followers","following_url":"https://api.github.com/users/glennmatthews/following{/other_user}","gists_url":"https://api.github.com/users/glennmatthews/gists{/gist_id}","starred_url":"https://api.github.com/users/glennmatthews/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/glennmatthews/subscriptions","organizations_url":"https://api.github.com/users/glennmatthews/orgs","repos_url":"https://api.github.com/users/glennmatthews/repos","events_url":"https://api.github.com/users/glennmatthews/events{/privacy}","received_events_url":"https://api.github.com/users/glennmatthews/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/glennmatthews/sphinx","description":"Main repository for the Sphinx documentation builder","fork":true,"url":"https://api.github.com/repos/glennmatthews/sphinx","forks_url":"https://api.github.com/repos/glennmatthews/sphinx/forks","keys_url":"https://api.github.com/repos/glennmatthews/sphinx/keys{/key_id}","collaborators_url":"https://api.github.com/repos/glennmatthews/sphinx/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/glennmatthews/sphinx/teams","hooks_url":"https://api.github.com/repos/glennmatthews/sphinx/hooks","issue_events_url":"https://api.github.com/repos/glennmatthews/sphinx/issues/events{/number}","events_url":"https://api.github.com/repos/glennmatthews/sphinx/events","assignees_url":"https://api.github.com/repos/glennmatthews/sphinx/assignees{/user}","branches_url":"https://api.github.com/repos/glennmatthews/sphinx/branches{/branch}","tags_url":"https://api.github.com/repos/glennmatthews/sphinx/tags","blobs_url":"https://api.github.com/repos/glennmatthews/sphinx/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/glennmatthews/sphinx/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/glennmatthews/sphinx/git/refs{/sha}","trees_url":"https://api.github.com/repos/glennmatthews/sphinx/git/trees{/sha}","statuses_url":"https://api.github.com/repos/glennmatthews/sphinx/statuses/{sha}","languages_url":"https://api.github.com/repos/glennmatthews/sphinx/languages","stargazers_url":"https://api.github.com/repos/glennmatthews/sphinx/stargazers","contributors_url":"https://api.github.com/repos/glennmatthews/sphinx/contributors","subscribers_url":"https://api.github.com/repos/glennmatthews/sphinx/subscribers","subscription_url":"https://api.github.com/repos/glennmatthews/sphinx/subscription","commits_url":"https://api.github.com/repos/glennmatthews/sphinx/commits{/sha}","git_commits_url":"https://api.github.com/repos/glennmatthews/sphinx/git/commits{/sha}","comments_url":"https://api.github.com/repos/glennmatthews/sphinx/comments{/number}","issue_comment_url":"https://api.github.com/repos/glennmatthews/sphinx/issues/comments{/number}","contents_url":"https://api.github.com/repos/glennmatthews/sphinx/contents/{+path}","compare_url":"https://api.github.com/repos/glennmatthews/sphinx/compare/{base}...{head}","merges_url":"https://api.github.com/repos/glennmatthews/sphinx/merges","archive_url":"https://api.github.com/repos/glennmatthews/sphinx/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/glennmatthews/sphinx/downloads","issues_url":"https://api.github.com/repos/glennmatthews/sphinx/issues{/number}","pulls_url":"https://api.github.com/repos/glennmatthews/sphinx/pulls{/number}","milestones_url":"https://api.github.com/repos/glennmatthews/sphinx/milestones{/number}","notifications_url":"https://api.github.com/repos/glennmatthews/sphinx/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/glennmatthews/sphinx/labels{/name}","releases_url":"https://api.github.com/repos/glennmatthews/sphinx/releases{/id}","deployments_url":"https://api.github.com/repos/glennmatthews/sphinx/deployments","created_at":"2015-03-11T13:50:36Z","updated_at":"2016-07-15T01:16:51Z","pushed_at":"2016-07-16T02:01:19Z","git_url":"git://github.com/glennmatthews/sphinx.git","ssh_url":"git@github.com:glennmatthews/sphinx.git","clone_url":"https://github.com/glennmatthews/sphinx.git","svn_url":"https://github.com/glennmatthews/sphinx","homepage":"http://sphinx-doc.org","size":17666,"stargazers_count":0,"watchers_count":0,"language":"Python","has_issues":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"sphinx-doc:stable","ref":"stable","sha":"9916518feec34ecd5e4193a5e63ffb156b0b1738","user":{"login":"sphinx-doc","id":9928167,"avatar_url":"https://avatars.githubusercontent.com/u/9928167?v=3","gravatar_id":"","url":"https://api.github.com/users/sphinx-doc","html_url":"https://github.com/sphinx-doc","followers_url":"https://api.github.com/users/sphinx-doc/followers","following_url":"https://api.github.com/users/sphinx-doc/following{/other_user}","gists_url":"https://api.github.com/users/sphinx-doc/gists{/gist_id}","starred_url":"https://api.github.com/users/sphinx-doc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sphinx-doc/subscriptions","organizations_url":"https://api.github.com/users/sphinx-doc/orgs","repos_url":"https://api.github.com/users/sphinx-doc/repos","events_url":"https://api.github.com/users/sphinx-doc/events{/privacy}","received_events_url":"https://api.github.com/users/sphinx-doc/received_events","type":"Organization","site_admin":false},"repo":{"id":28710753,"name":"sphinx","full_name":"sphinx-doc/sphinx","owner":{"login":"sphinx-doc","id":9928167,"avatar_url":"https://avatars.githubusercontent.com/u/9928167?v=3","gravatar_id":"","url":"https://api.github.com/users/sphinx-doc","html_url":"https://github.com/sphinx-doc","followers_url":"https://api.github.com/users/sphinx-doc/followers","following_url":"https://api.github.com/users/sphinx-doc/following{/other_user}","gists_url":"https://api.github.com/users/sphinx-doc/gists{/gist_id}","starred_url":"https://api.github.com/users/sphinx-doc/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sphinx-doc/subscriptions","organizations_url":"https://api.github.com/users/sphinx-doc/orgs","repos_url":"https://api.github.com/users/sphinx-doc/repos","events_url":"https://api.github.com/users/sphinx-doc/events{/privacy}","received_events_url":"https://api.github.com/users/sphinx-doc/received_events","type":"Organization","site_admin":false},"private":false,"html_url":"https://github.com/sphinx-doc/sphinx","description":"Main repository for the Sphinx documentation builder","fork":false,"url":"https://api.github.com/repos/sphinx-doc/sphinx","forks_url":"https://api.github.com/repos/sphinx-doc/sphinx/forks","keys_url":"https://api.github.com/repos/sphinx-doc/sphinx/keys{/key_id}","collaborators_url":"https://api.github.com/repos/sphinx-doc/sphinx/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/sphinx-doc/sphinx/teams","hooks_url":"https://api.github.com/repos/sphinx-doc/sphinx/hooks","issue_events_url":"https://api.github.com/repos/sphinx-doc/sphinx/issues/events{/number}","events_url":"https://api.github.com/repos/sphinx-doc/sphinx/events","assignees_url":"https://api.github.com/repos/sphinx-doc/sphinx/assignees{/user}","branches_url":"https://api.github.com/repos/sphinx-doc/sphinx/branches{/branch}","tags_url":"https://api.github.com/repos/sphinx-doc/sphinx/tags","blobs_url":"https://api.github.com/repos/sphinx-doc/sphinx/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/sphinx-doc/sphinx/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/sphinx-doc/sphinx/git/refs{/sha}","trees_url":"https://api.github.com/repos/sphinx-doc/sphinx/git/trees{/sha}","statuses_url":"https://api.github.com/repos/sphinx-doc/sphinx/statuses/{sha}","languages_url":"https://api.github.com/repos/sphinx-doc/sphinx/languages","stargazers_url":"https://api.github.com/repos/sphinx-doc/sphinx/stargazers","contributors_url":"https://api.github.com/repos/sphinx-doc/sphinx/contributors","subscribers_url":"https://api.github.com/repos/sphinx-doc/sphinx/subscribers","subscription_url":"https://api.github.com/repos/sphinx-doc/sphinx/subscription","commits_url":"https://api.github.com/repos/sphinx-doc/sphinx/commits{/sha}","git_commits_url":"https://api.github.com/repos/sphinx-doc/sphinx/git/commits{/sha}","comments_url":"https://api.github.com/repos/sphinx-doc/sphinx/comments{/number}","issue_comment_url":"https://api.github.com/repos/sphinx-doc/sphinx/issues/comments{/number}","contents_url":"https://api.github.com/repos/sphinx-doc/sphinx/contents/{+path}","compare_url":"https://api.github.com/repos/sphinx-doc/sphinx/compare/{base}...{head}","merges_url":"https://api.github.com/repos/sphinx-doc/sphinx/merges","archive_url":"https://api.github.com/repos/sphinx-doc/sphinx/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/sphinx-doc/sphinx/downloads","issues_url":"https://api.github.com/repos/sphinx-doc/sphinx/issues{/number}","pulls_url":"https://api.github.com/repos/sphinx-doc/sphinx/pulls{/number}","milestones_url":"https://api.github.com/repos/sphinx-doc/sphinx/milestones{/number}","notifications_url":"https://api.github.com/repos/sphinx-doc/sphinx/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/sphinx-doc/sphinx/labels{/name}","releases_url":"https://api.github.com/repos/sphinx-doc/sphinx/releases{/id}","deployments_url":"https://api.github.com/repos/sphinx-doc/sphinx/deployments","created_at":"2015-01-02T10:53:28Z","updated_at":"2016-07-16T12:15:51Z","pushed_at":"2016-07-16T14:42:51Z","git_url":"git://github.com/sphinx-doc/sphinx.git","ssh_url":"git@github.com:sphinx-doc/sphinx.git","clone_url":"https://github.com/sphinx-doc/sphinx.git","svn_url":"https://github.com/sphinx-doc/sphinx","homepage":"http://sphinx-doc.org","size":23657,"stargazers_count":747,"watchers_count":747,"language":"Python","has_issues":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":357,"mirror_url":null,"open_issues_count":545,"forks":357,"open_issues":545,"watchers":747,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/sphinx-doc/sphinx/pulls/2783"},"html":{"href":"https://github.com/sphinx-doc/sphinx/pull/2783"},"issue":{"href":"https://api.github.com/repos/sphinx-doc/sphinx/issues/2783"},"comments":{"href":"https://api.github.com/repos/sphinx-doc/sphinx/issues/2783/comments"},"review_comments":{"href":"https://api.github.com/repos/sphinx-doc/sphinx/pulls/2783/comments"},"review_comment":{"href":"https://api.github.com/repos/sphinx-doc/sphinx/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/sphinx-doc/sphinx/pulls/2783/commits"},"statuses":{"href":"https://api.github.com/repos/sphinx-doc/sphinx/statuses/a472cf35cb771d48c9631adc1e145799688a4c47"}},"merged":false,"mergeable":true,"mergeable_state":"clean","merged_by":null,"comments":2,"review_comments":0,"commits":1,"additions":12,"deletions":4,"changed_files":5}},"public":true,"created_at":"2016-07-16T14:44:07Z","org":{"id":9928167,"login":"sphinx-doc","gravatar_id":"","url":"https://api.github.com/orgs/sphinx-doc","avatar_url":"https://avatars.githubusercontent.com/u/9928167?"}},{"id":"4287094305","type":"DeleteEvent","actor":{"id":1469638,"login":"t1st3","display_login":"t1st3","gravatar_id":"","url":"https://api.github.com/users/t1st3","avatar_url":"https://avatars.githubusercontent.com/u/1469638?"},"repo":{"id":17004859,"name":"t1st3/xmlrpc-message-umd","url":"https://api.github.com/repos/t1st3/xmlrpc-message-umd"},"payload":{"ref":"greenkeeper-gulp-istanbul-0.10.4","ref_type":"branch","pusher_type":"user"},"public":true,"created_at":"2016-07-16T14:44:07Z"},{"id":"4287094304","type":"IssueCommentEvent","actor":{"id":748828,"login":"tk0miya","display_login":"tk0miya","gravatar_id":"","url":"https://api.github.com/users/tk0miya","avatar_url":"https://avatars.githubusercontent.com/u/748828?"},"repo":{"id":28710753,"name":"sphinx-doc/sphinx","url":"https://api.github.com/repos/sphinx-doc/sphinx"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/sphinx-doc/sphinx/issues/2783","repository_url":"https://api.github.com/repos/sphinx-doc/sphinx","labels_url":"https://api.github.com/repos/sphinx-doc/sphinx/issues/2783/labels{/name}","comments_url":"https://api.github.com/repos/sphinx-doc/sphinx/issues/2783/comments","events_url":"https://api.github.com/repos/sphinx-doc/sphinx/issues/2783/events","html_url":"https://github.com/sphinx-doc/sphinx/pull/2783","id":165872472,"number":2783,"title":"Create PyGroupedField and use it for \'exceptions\'","user":{"login":"glennmatthews","id":5603551,"avatar_url":"https://avatars.githubusercontent.com/u/5603551?v=3","gravatar_id":"","url":"https://api.github.com/users/glennmatthews","html_url":"https://github.com/glennmatthews","followers_url":"https://api.github.com/users/glennmatthews/followers","following_url":"https://api.github.com/users/glennmatthews/following{/other_user}","gists_url":"https://api.github.com/users/glennmatthews/gists{/gist_id}","starred_url":"https://api.github.com/users/glennmatthews/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/glennmatthews/subscriptions","organizations_url":"https://api.github.com/users/glennmatthews/orgs","repos_url":"https://api.github.com/users/glennmatthews/repos","events_url":"https://api.github.com/users/glennmatthews/events{/privacy}","received_events_url":"https://api.github.com/users/glennmatthews/received_events","type":"User","site_admin":false},"labels":[],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2016-07-15T20:36:48Z","updated_at":"2016-07-16T14:44:07Z","closed_at":"2016-07-16T14:44:07Z","pull_request":{"url":"https://api.github.com/repos/sphinx-doc/sphinx/pulls/2783","html_url":"https://github.com/sphinx-doc/sphinx/pull/2783","diff_url":"https://github.com/sphinx-doc/sphinx/pull/2783.diff","patch_url":"https://github.com/sphinx-doc/sphinx/pull/2783.patch"},"body":"Add `PyGroupedField` class, analogous to `PyField` and `PyTypedField`, and change the Python domain signatures \'exceptions\'/\'raises\' field to use this class, allowing auto-linking of exception classes:\\r\\n\\r\\nbefore:\\r\\n\\r\\n**Raises:** **ValueError** -- if the values are out of range\\r\\n\\r\\nafter:\\r\\n\\r\\n**Raises:** **[ValueError](https://docs.python.org/2/library/exceptions.html#exceptions.ValueError)** -- if the values are out of range"},"comment":{"url":"https://api.github.com/repos/sphinx-doc/sphinx/issues/comments/233133571","html_url":"https://github.com/sphinx-doc/sphinx/pull/2783#issuecomment-233133571","issue_url":"https://api.github.com/repos/sphinx-doc/sphinx/issues/2783","id":233133571,"user":{"login":"tk0miya","id":748828,"avatar_url":"https://avatars.githubusercontent.com/u/748828?v=3","gravatar_id":"","url":"https://api.github.com/users/tk0miya","html_url":"https://github.com/tk0miya","followers_url":"https://api.github.com/users/tk0miya/followers","following_url":"https://api.github.com/users/tk0miya/following{/other_user}","gists_url":"https://api.github.com/users/tk0miya/gists{/gist_id}","starred_url":"https://api.github.com/users/tk0miya/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tk0miya/subscriptions","organizations_url":"https://api.github.com/users/tk0miya/orgs","repos_url":"https://api.github.com/users/tk0miya/repos","events_url":"https://api.github.com/users/tk0miya/events{/privacy}","received_events_url":"https://api.github.com/users/tk0miya/received_events","type":"User","site_admin":false},"created_at":"2016-07-16T14:44:07Z","updated_at":"2016-07-16T14:44:07Z","body":"Merged #2784 instead."}},"public":true,"created_at":"2016-07-16T14:44:07Z","org":{"id":9928167,"login":"sphinx-doc","gravatar_id":"","url":"https://api.github.com/orgs/sphinx-doc","avatar_url":"https://avatars.githubusercontent.com/u/9928167?"}},{"id":"4287094302","type":"PushEvent","actor":{"id":7459448,"login":"bwittman","display_login":"bwittman","gravatar_id":"","url":"https://api.github.com/users/bwittman","avatar_url":"https://avatars.githubusercontent.com/u/7459448?"},"repo":{"id":22116816,"name":"TeamShadow/shadow","url":"https://api.github.com/repos/TeamShadow/shadow"},"payload":{"push_id":1206224461,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"3e5d5e62823b0fda20be344085d26285f2923120","before":"34ecfef8c5d4d94529961cf3d6a615ea0dc4579d","commits":[{"sha":"3e5d5e62823b0fda20be344085d26285f2923120","author":{"email":"bwittman@gmail.com","name":"Barry Wittman"},"message":"Updated Shadow ANTLR grammar.","distinct":true,"url":"https://api.github.com/repos/TeamShadow/shadow/commits/3e5d5e62823b0fda20be344085d26285f2923120"}]},"public":true,"created_at":"2016-07-16T14:44:07Z","org":{"id":7459552,"login":"TeamShadow","gravatar_id":"","url":"https://api.github.com/orgs/TeamShadow","avatar_url":"https://avatars.githubusercontent.com/u/7459552?"}},{"id":"4287094301","type":"PushEvent","actor":{"id":601961,"login":"johnrees","display_login":"johnrees","gravatar_id":"","url":"https://api.github.com/users/johnrees","avatar_url":"https://avatars.githubusercontent.com/u/601961?"},"repo":{"id":61987486,"name":"johnrees/eu-referendum","url":"https://api.github.com/repos/johnrees/eu-referendum"},"payload":{"push_id":1206224460,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"59622189ba7f9acb07d936190b1a549eab6abc14","before":"29acc0f62d5a2f5fa22eb840c210380208b597a7","commits":[{"sha":"59622189ba7f9acb07d936190b1a549eab6abc14","author":{"email":"john@bitsushi.com","name":"John Rees"},"message":"petitions auto-update","distinct":true,"url":"https://api.github.com/repos/johnrees/eu-referendum/commits/59622189ba7f9acb07d936190b1a549eab6abc14"}]},"public":true,"created_at":"2016-07-16T14:44:07Z"},{"id":"4287094299","type":"PushEvent","actor":{"id":97731,"login":"freshsauce","display_login":"freshsauce","gravatar_id":"","url":"https://api.github.com/users/freshsauce","avatar_url":"https://avatars.githubusercontent.com/u/97731?"},"repo":{"id":6550223,"name":"freshsauce/model-orm-php","url":"https://api.github.com/repos/freshsauce/model-orm-php"},"payload":{"push_id":1206224458,"size":3,"distinct_size":3,"ref":"refs/heads/master","head":"b708c721f4a1c537b5e2edaf14cb873ba1083ef4","before":"1e0c205c6fc726c8b199eb958a391bd90672033a","commits":[{"sha":"b536abbdbcf8d00f23ba80f71f2b06d989a10705","author":{"email":"dave@crowdfunder.co.uk","name":"Dave Barnwell"},"message":"Fix doc blocks","distinct":true,"url":"https://api.github.com/repos/freshsauce/model-orm-php/commits/b536abbdbcf8d00f23ba80f71f2b06d989a10705"},{"sha":"eda68514fe5c4ad01e8613d2e2537341c1bb9497","author":{"email":"dave@crowdfunder.co.uk","name":"Dave Barnwell"},"message":"Add composer","distinct":true,"url":"https://api.github.com/repos/freshsauce/model-orm-php/commits/eda68514fe5c4ad01e8613d2e2537341c1bb9497"},{"sha":"b708c721f4a1c537b5e2edaf14cb873ba1083ef4","author":{"email":"dave@crowdfunder.co.uk","name":"Dave Barnwell"},"message":"Add docker-compose.yml to spin up test database instance","distinct":true,"url":"https://api.github.com/repos/freshsauce/model-orm-php/commits/b708c721f4a1c537b5e2edaf14cb873ba1083ef4"}]},"public":true,"created_at":"2016-07-16T14:44:07Z"},{"id":"4287094297","type":"WatchEvent","actor":{"id":20000130,"login":"mxeise","display_login":"mxeise","gravatar_id":"","url":"https://api.github.com/users/mxeise","avatar_url":"https://avatars.githubusercontent.com/u/20000130?"},"repo":{"id":36241619,"name":"iCHAIT/awesome-macOS","url":"https://api.github.com/repos/iCHAIT/awesome-macOS"},"payload":{"action":"started"},"public":true,"created_at":"2016-07-16T14:44:07Z"},{"id":"4287094296","type":"ForkEvent","actor":{"id":11144228,"login":"jojoee","display_login":"jojoee","gravatar_id":"","url":"https://api.github.com/users/jojoee","avatar_url":"https://avatars.githubusercontent.com/u/11144228?"},"repo":{"id":11489037,"name":"rathena/rathena","url":"https://api.github.com/repos/rathena/rathena"},"payload":{"forkee":{"id":63487253,"name":"rathena","full_name":"jojoee/rathena","owner":{"login":"jojoee","id":11144228,"avatar_url":"https://avatars.githubusercontent.com/u/11144228?v=3","gravatar_id":"","url":"https://api.github.com/users/jojoee","html_url":"https://github.com/jojoee","followers_url":"https://api.github.com/users/jojoee/followers","following_url":"https://api.github.com/users/jojoee/following{/other_user}","gists_url":"https://api.github.com/users/jojoee/gists{/gist_id}","starred_url":"https://api.github.com/users/jojoee/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jojoee/subscriptions","organizations_url":"https://api.github.com/users/jojoee/orgs","repos_url":"https://api.github.com/users/jojoee/repos","events_url":"https://api.github.com/users/jojoee/events{/privacy}","received_events_url":"https://api.github.com/users/jojoee/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/jojoee/rathena","description":"rAthena is an open-source cross-platform MMORPG server.","fork":true,"url":"https://api.github.com/repos/jojoee/rathena","forks_url":"https://api.github.com/repos/jojoee/rathena/forks","keys_url":"https://api.github.com/repos/jojoee/rathena/keys{/key_id}","collaborators_url":"https://api.github.com/repos/jojoee/rathena/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/jojoee/rathena/teams","hooks_url":"https://api.github.com/repos/jojoee/rathena/hooks","issue_events_url":"https://api.github.com/repos/jojoee/rathena/issues/events{/number}","events_url":"https://api.github.com/repos/jojoee/rathena/events","assignees_url":"https://api.github.com/repos/jojoee/rathena/assignees{/user}","branches_url":"https://api.github.com/repos/jojoee/rathena/branches{/branch}","tags_url":"https://api.github.com/repos/jojoee/rathena/tags","blobs_url":"https://api.github.com/repos/jojoee/rathena/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/jojoee/rathena/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/jojoee/rathena/git/refs{/sha}","trees_url":"https://api.github.com/repos/jojoee/rathena/git/trees{/sha}","statuses_url":"https://api.github.com/repos/jojoee/rathena/statuses/{sha}","languages_url":"https://api.github.com/repos/jojoee/rathena/languages","stargazers_url":"https://api.github.com/repos/jojoee/rathena/stargazers","contributors_url":"https://api.github.com/repos/jojoee/rathena/contributors","subscribers_url":"https://api.github.com/repos/jojoee/rathena/subscribers","subscription_url":"https://api.github.com/repos/jojoee/rathena/subscription","commits_url":"https://api.github.com/repos/jojoee/rathena/commits{/sha}","git_commits_url":"https://api.github.com/repos/jojoee/rathena/git/commits{/sha}","comments_url":"https://api.github.com/repos/jojoee/rathena/comments{/number}","issue_comment_url":"https://api.github.com/repos/jojoee/rathena/issues/comments{/number}","contents_url":"https://api.github.com/repos/jojoee/rathena/contents/{+path}","compare_url":"https://api.github.com/repos/jojoee/rathena/compare/{base}...{head}","merges_url":"https://api.github.com/repos/jojoee/rathena/merges","archive_url":"https://api.github.com/repos/jojoee/rathena/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/jojoee/rathena/downloads","issues_url":"https://api.github.com/repos/jojoee/rathena/issues{/number}","pulls_url":"https://api.github.com/repos/jojoee/rathena/pulls{/number}","milestones_url":"https://api.github.com/repos/jojoee/rathena/milestones{/number}","notifications_url":"https://api.github.com/repos/jojoee/rathena/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/jojoee/rathena/labels{/name}","releases_url":"https://api.github.com/repos/jojoee/rathena/releases{/id}","deployments_url":"https://api.github.com/repos/jojoee/rathena/deployments","created_at":"2016-07-16T14:44:07Z","updated_at":"2016-07-16T14:43:28Z","pushed_at":"2016-07-16T13:49:24Z","git_url":"git://github.com/jojoee/rathena.git","ssh_url":"git@github.com:jojoee/rathena.git","clone_url":"https://github.com/jojoee/rathena.git","svn_url":"https://github.com/jojoee/rathena","homepage":"https://rathena.org/board/","size":118738,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"open_issues_count":0,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","public":true}},"public":true,"created_at":"2016-07-16T14:44:07Z","org":{"id":1776606,"login":"rathena","gravatar_id":"","url":"https://api.github.com/orgs/rathena","avatar_url":"https://avatars.githubusercontent.com/u/1776606?"}},{"id":"4287094294","type":"WatchEvent","actor":{"id":8665375,"login":"raaka1","display_login":"raaka1","gravatar_id":"","url":"https://api.github.com/users/raaka1","avatar_url":"https://avatars.githubusercontent.com/u/8665375?"},"repo":{"id":63486825,"name":"wardellsk/smartcow-landing-page","url":"https://api.github.com/repos/wardellsk/smartcow-landing-page"},"payload":{"action":"started"},"public":true,"created_at":"2016-07-16T14:44:07Z"},{"id":"4287094291","type":"CreateEvent","actor":{"id":8407243,"login":"mrSill","display_login":"mrSill","gravatar_id":"","url":"https://api.github.com/users/mrSill","avatar_url":"https://avatars.githubusercontent.com/u/8407243?"},"repo":{"id":63487124,"name":"mrSill/docker-arion","url":"https://api.github.com/repos/mrSill/docker-arion"},"payload":{"ref":"master","ref_type":"branch","master_branch":"master","description":"Docker based Arion. Arion extracts metadata and creates beautiful thumbnails from your images.","pusher_type":"user"},"public":true,"created_at":"2016-07-16T14:44:06Z"},{"id":"4287094290","type":"CreateEvent","actor":{"id":19408447,"login":"reedr3","display_login":"reedr3","gravatar_id":"","url":"https://api.github.com/users/reedr3","avatar_url":"https://avatars.githubusercontent.com/u/19408447?"},"repo":{"id":59769796,"name":"reedr3/phase-0-tracks","url":"https://api.github.com/repos/reedr3/phase-0-tracks"},"payload":{"ref":"gps-branch","ref_type":"branch","master_branch":"master","description":"","pusher_type":"user"},"public":true,"created_at":"2016-07-16T14:44:06Z"},{"id":"4287094289","type":"PushEvent","actor":{"id":13223578,"login":"AtsushiKan","display_login":"AtsushiKan","gravatar_id":"","url":"https://api.github.com/users/AtsushiKan","avatar_url":"https://avatars.githubusercontent.com/u/13223578?"},"repo":{"id":62420533,"name":"AtsushiKan/corert","url":"https://api.github.com/repos/AtsushiKan/corert"},"payload":{"push_id":1206224454,"size":1,"distinct_size":1,"ref":"refs/heads/big-wip","head":"dd09d524630954b0a11be8df416b21b46da5e7f3","before":"99f4c6de723509abc1d29f847df64efc0a839290","commits":[{"sha":"dd09d524630954b0a11be8df416b21b46da5e7f3","author":{"email":"atsushik@microsoft.com","name":"Atsushi Kanamori"},"message":"Committing big-wip-115","distinct":true,"url":"https://api.github.com/repos/AtsushiKan/corert/commits/dd09d524630954b0a11be8df416b21b46da5e7f3"}]},"public":true,"created_at":"2016-07-16T14:44:06Z"},{"id":"4287094287","type":"IssuesEvent","actor":{"id":11849320,"login":"sohom154","display_login":"sohom154","gravatar_id":"","url":"https://api.github.com/users/sohom154","avatar_url":"https://avatars.githubusercontent.com/u/11849320?"},"repo":{"id":61554138,"name":"fsmk/xmpp","url":"https://api.github.com/repos/fsmk/xmpp"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/fsmk/xmpp/issues/2","repository_url":"https://api.github.com/repos/fsmk/xmpp","labels_url":"https://api.github.com/repos/fsmk/xmpp/issues/2/labels{/name}","comments_url":"https://api.github.com/repos/fsmk/xmpp/issues/2/comments","events_url":"https://api.github.com/repos/fsmk/xmpp/issues/2/events","html_url":"https://github.com/fsmk/xmpp/issues/2","id":165932128,"number":2,"title":"testing for m=images","user":{"login":"sohom154","id":11849320,"avatar_url":"https://avatars.githubusercontent.com/u/11849320?v=3","gravatar_id":"","url":"https://api.github.com/users/sohom154","html_url":"https://github.com/sohom154","followers_url":"https://api.github.com/users/sohom154/followers","following_url":"https://api.github.com/users/sohom154/following{/other_user}","gists_url":"https://api.github.com/users/sohom154/gists{/gist_id}","starred_url":"https://api.github.com/users/sohom154/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/sohom154/subscriptions","organizations_url":"https://api.github.com/users/sohom154/orgs","repos_url":"https://api.github.com/users/sohom154/repos","events_url":"https://api.github.com/users/sohom154/events{/privacy}","received_events_url":"https://api.github.com/users/sohom154/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":0,"created_at":"2016-07-16T14:44:06Z","updated_at":"2016-07-16T14:44:06Z","closed_at":null,"body":"blah blah blah!\\r\\n![image002](https://cloud.githubusercontent.com/assets/11849320/16895375/d608981e-4b91-11e6-8173-eaad68a5a1bc.jpg)\\r\\n"}},"public":true,"created_at":"2016-07-16T14:44:06Z","org":{"id":3488466,"login":"fsmk","gravatar_id":"","url":"https://api.github.com/orgs/fsmk","avatar_url":"https://avatars.githubusercontent.com/u/3488466?"}},{"id":"4287094286","type":"PushEvent","actor":{"id":6260423,"login":"vishaladu","display_login":"vishaladu","gravatar_id":"","url":"https://api.github.com/users/vishaladu","avatar_url":"https://avatars.githubusercontent.com/u/6260423?"},"repo":{"id":63486892,"name":"vishaladu/vishaladu.github.io","url":"https://api.github.com/repos/vishaladu/vishaladu.github.io"},"payload":{"push_id":1206224452,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"e494f890ad6800ed416f9120333654bc9667826b","before":"bedf3c658e61f8d42398c64f6332c6c61f7734db","commits":[{"sha":"e494f890ad6800ed416f9120333654bc9667826b","author":{"email":"vishal.adu@gmail.com","name":"Vishal Adusumilli"},"message":"Update README.md","distinct":true,"url":"https://api.github.com/repos/vishaladu/vishaladu.github.io/commits/e494f890ad6800ed416f9120333654bc9667826b"}]},"public":true,"created_at":"2016-07-16T14:44:06Z"},{"id":"4287094284","type":"PushEvent","actor":{"id":3861772,"login":"princeofdream","display_login":"princeofdream","gravatar_id":"","url":"https://api.github.com/users/princeofdream","avatar_url":"https://avatars.githubusercontent.com/u/3861772?"},"repo":{"id":60971846,"name":"princeofdream/RecFlow","url":"https://api.github.com/repos/princeofdream/RecFlow"},"payload":{"push_id":1206224451,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"cd456271469eb41ad87d0d633d6f36d95658cd56","before":"57147cd562d134ba7e11f56b3d72c49fa9b00454","commits":[{"sha":"cd456271469eb41ad87d0d633d6f36d95658cd56","author":{"email":"princeofdream@outlook.com","name":"James VS"},"message":"fix missing file","distinct":true,"url":"https://api.github.com/repos/princeofdream/RecFlow/commits/cd456271469eb41ad87d0d633d6f36d95658cd56"}]},"public":true,"created_at":"2016-07-16T14:44:06Z"},{"id":"4287094282","type":"PushEvent","actor":{"id":533180,"login":"scriptzteam","display_login":"scriptzteam","gravatar_id":"","url":"https://api.github.com/users/scriptzteam","avatar_url":"https://avatars.githubusercontent.com/u/533180?"},"repo":{"id":61098634,"name":"scriptzteam/BitTorrent_DHT_v2","url":"https://api.github.com/repos/scriptzteam/BitTorrent_DHT_v2"},"payload":{"push_id":1206224450,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"105a29df86e577bdc6e7611f4afe9384131624c6","before":"fd182ec473b04e3fa86caf098b2c097ef214540f","commits":[{"sha":"105a29df86e577bdc6e7611f4afe9384131624c6","author":{"email":"scriptzteam@users.noreply.github.com","name":"[sCRiPTz-TEAM]"},"message":"uPdAtEd: 2016-07-16_16-44-04","distinct":true,"url":"https://api.github.com/repos/scriptzteam/BitTorrent_DHT_v2/commits/105a29df86e577bdc6e7611f4afe9384131624c6"}]},"public":true,"created_at":"2016-07-16T14:44:06Z"},{"id":"4287094281","type":"PushEvent","actor":{"id":1391351,"login":"mobileoverlord","display_login":"mobileoverlord","gravatar_id":"","url":"https://api.github.com/users/mobileoverlord","avatar_url":"https://avatars.githubusercontent.com/u/1391351?"},"repo":{"id":50259821,"name":"nerves-project/nerves","url":"https://api.github.com/repos/nerves-project/nerves"},"payload":{"push_id":1206224449,"size":2,"distinct_size":2,"ref":"refs/heads/master","head":"6a559f9f321a8ad17f7f0546fc1905a2053b336e","before":"c45c3ef50cd04d908fb304be3e0b37f1747d71a9","commits":[{"sha":"4a46b0658a8dd10747c40deff13dd4cd96dcfc7c","author":{"email":"jschneck@mac.com","name":"Justin Schneck"},"message":"fix regression in order of operations.","distinct":true,"url":"https://api.github.com/repos/nerves-project/nerves/commits/4a46b0658a8dd10747c40deff13dd4cd96dcfc7c"},{"sha":"6a559f9f321a8ad17f7f0546fc1905a2053b336e","author":{"email":"jschneck@mac.com","name":"Justin Schneck"},"message":"Update changelog for 0.1.4","distinct":true,"url":"https://api.github.com/repos/nerves-project/nerves/commits/6a559f9f321a8ad17f7f0546fc1905a2053b336e"}]},"public":true,"created_at":"2016-07-16T14:44:06Z","org":{"id":1404231,"login":"nerves-project","gravatar_id":"","url":"https://api.github.com/orgs/nerves-project","avatar_url":"https://avatars.githubusercontent.com/u/1404231?"}},{"id":"4287094280","type":"WatchEvent","actor":{"id":16631168,"login":"JackChen1999","display_login":"JackChen1999","gravatar_id":"","url":"https://api.github.com/users/JackChen1999","avatar_url":"https://avatars.githubusercontent.com/u/16631168?"},"repo":{"id":56204856,"name":"PoplarTang/AndroidReview","url":"https://api.github.com/repos/PoplarTang/AndroidReview"},"payload":{"action":"started"},"public":true,"created_at":"2016-07-16T14:44:06Z"},{"id":"4287094274","type":"PushEvent","actor":{"id":14175800,"login":"OpenLocalizationTest","display_login":"OpenLocalizationTest","gravatar_id":"","url":"https://api.github.com/users/OpenLocalizationTest","avatar_url":"https://avatars.githubusercontent.com/u/14175800?"},"repo":{"id":62284610,"name":"OpenLocalizationTestOrg/olhandback-e2e","url":"https://api.github.com/repos/OpenLocalizationTestOrg/olhandback-e2e"},"payload":{"push_id":1206224445,"size":1,"distinct_size":1,"ref":"refs/heads/ci","head":"a2b83b9e6f4835dad1c91c7ff5fc5b28d4f13f74","before":"9840a0abf65636299fbef7d6e439956a527284ae","commits":[{"sha":"a2b83b9e6f4835dad1c91c7ff5fc5b28d4f13f74","author":{"email":"olsrv@microsoft.com","name":"OpenLocalizationService"},"message":"Generate Report for Handoff","distinct":true,"url":"https://api.github.com/repos/OpenLocalizationTestOrg/olhandback-e2e/commits/a2b83b9e6f4835dad1c91c7ff5fc5b28d4f13f74"}]},"public":true,"created_at":"2016-07-16T14:44:05Z","org":{"id":15205858,"login":"OpenLocalizationTestOrg","gravatar_id":"","url":"https://api.github.com/orgs/OpenLocalizationTestOrg","avatar_url":"https://avatars.githubusercontent.com/u/15205858?"}},{"id":"4287094266","type":"CommitCommentEvent","actor":{"id":15201589,"login":"nrel-bot-2","display_login":"nrel-bot-2","gravatar_id":"","url":"https://api.github.com/users/nrel-bot-2","avatar_url":"https://avatars.githubusercontent.com/u/15201589?"},"repo":{"id":14620185,"name":"NREL/EnergyPlus","url":"https://api.github.com/repos/NREL/EnergyPlus"},"payload":{"comment":{"url":"https://api.github.com/repos/NREL/EnergyPlus/comments/18271398","html_url":"https://github.com/NREL/EnergyPlus/commit/e60669a7db627cd0b20979c512182c0272816872#commitcomment-18271398","id":18271398,"user":{"login":"nrel-bot-2","id":15201589,"avatar_url":"https://avatars.githubusercontent.com/u/15201589?v=3","gravatar_id":"","url":"https://api.github.com/users/nrel-bot-2","html_url":"https://github.com/nrel-bot-2","followers_url":"https://api.github.com/users/nrel-bot-2/followers","following_url":"https://api.github.com/users/nrel-bot-2/following{/other_user}","gists_url":"https://api.github.com/users/nrel-bot-2/gists{/gist_id}","starred_url":"https://api.github.com/users/nrel-bot-2/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/nrel-bot-2/subscriptions","organizations_url":"https://api.github.com/users/nrel-bot-2/orgs","repos_url":"https://api.github.com/users/nrel-bot-2/repos","events_url":"https://api.github.com/users/nrel-bot-2/events{/privacy}","received_events_url":"https://api.github.com/users/nrel-bot-2/received_events","type":"User","site_admin":false},"position":null,"line":null,"path":null,"commit_id":"e60669a7db627cd0b20979c512182c0272816872","created_at":"2016-07-16T14:44:05Z","updated_at":"2016-07-16T14:44:05Z","body":"develop (mjwitte) - x86_64-Linux-Ubuntu-14.04-gcc-4.8-UnitTestsCoverage-Debug: OK (1118 of 1118 tests passed, 0 test warnings)\\n\\n\\n\\n<a href=\'https://nrel.github.io/EnergyPlusBuildResults/EnergyPlus-e60669a7db627cd0b20979c512182c0272816872-x86_64-Linux-Ubuntu-14.04-gcc-4.8-UnitTestsCoverage-Debug.html\'>![Build Badge](http://img.shields.io/badge/build%20status-passing-green.svg)</a> <a href=\'https://nrel.github.io/EnergyPlusBuildResults/EnergyPlus-e60669a7db627cd0b20979c512182c0272816872-x86_64-Linux-Ubuntu-14.04-gcc-4.8-UnitTestsCoverage-Debug.html\'>![Test Badge](http://img.shields.io/badge/tests%20passed-100.0%25-green.svg)</a> <a href=\'https://nrel.github.io/EnergyPlusBuildResults/EnergyPlus-e60669a7db627cd0b20979c512182c0272816872-x86_64-Linux-Ubuntu-14.04-gcc-4.8-UnitTestsCoverage-Debug.html\'>![Coverage Badge](http://img.shields.io/badge/coverage%20status-34.71%25-green.svg)</a>\\n"}},"public":true,"created_at":"2016-07-16T14:44:05Z","org":{"id":1906800,"login":"NREL","gravatar_id":"","url":"https://api.github.com/orgs/NREL","avatar_url":"https://avatars.githubusercontent.com/u/1906800?"}}]'

Requests will automatically decode content from the server. Most unicode charsets are seamlessly decoded.

When you make a request, Requests makes educated guesses about the encoding of the response based on the HTTP headers. The text encoding guessed by Requests is used when you access r.text. You can find out what encoding Requests is using, and change it, using the r.encoding property:


In [36]:
r.encoding


Out[36]:
'utf-8'

In [37]:
r.encoding = 'ISO-8859-1'

If you change the encoding, Requests will use the new value of r.encoding whenever you call r.text. You might want to do this in any situation where you can apply special logic to work out what the encoding of the content will be. For example, HTTP and XML have the ability to specify their encoding in their body. In situations like this, you should use r.content to find the encoding, and then set r.encoding. This will let you use r.text with the correct encoding.

Requests will also use custom encodings in the event that you need them. If you have created your own encoding and registered it with the codecs module, you can simply use the codec name as the value of r.encoding and Requests will handle the decoding for you.

JSON Response Content

There's also a builtin JSON decoder, in case you're dealing with JSON data:


In [38]:
import requests

r = requests.get('https://api.github.com/events')
r.json()


Out[38]:
[{u'actor': {u'avatar_url': u'https://avatars.githubusercontent.com/u/6370289?',
   u'display_login': u'nikhilketkar',
   u'gravatar_id': u'',
   u'id': 6370289,
   u'login': u'nikhilketkar',
   u'url': u'https://api.github.com/users/nikhilketkar'},
  u'created_at': u'2016-07-16T14:55:07Z',
  u'id': u'4287106664',
  u'org': {u'avatar_url': u'https://avatars.githubusercontent.com/u/1179997?',
   u'gravatar_id': u'',
   u'id': 1179997,
   u'login': u'Flipkart',
   u'url': u'https://api.github.com/orgs/Flipkart'},
  u'payload': {u'before': u'69fabcdca040bc922f8ab97ff0a4bc796d763248',
   u'commits': [{u'author': {u'email': u'nikhil.s.ketkar@gmail.com',
      u'name': u'nikhil.ketkar'},
     u'distinct': True,
     u'message': u'Removing files that should not be checked in',
     u'sha': u'4dac492b88baab59ef4792dd5d053ac593d71116',
     u'url': u'https://api.github.com/repos/Flipkart/giggle/commits/4dac492b88baab59ef4792dd5d053ac593d71116'}],
   u'distinct_size': 1,
   u'head': u'4dac492b88baab59ef4792dd5d053ac593d71116',
   u'push_id': 1206229661,
   u'ref': u'refs/heads/master',
   u'size': 1},
  u'public': True,
  u'repo': {u'id': 62792001,
   u'name': u'Flipkart/giggle',
   u'url': u'https://api.github.com/repos/Flipkart/giggle'},
  u'type': u'PushEvent'},
 {u'actor': {u'avatar_url': u'https://avatars.githubusercontent.com/u/8992831?',
   u'display_login': u'nmsanchez',
   u'gravatar_id': u'',
   u'id': 8992831,
   u'login': u'nmsanchez',
   u'url': u'https://api.github.com/users/nmsanchez'},
  u'created_at': u'2016-07-16T14:55:07Z',
  u'id': u'4287106662',
  u'payload': {u'description': None,
   u'master_branch': u'master',
   u'pusher_type': u'user',
   u'ref': u'master',
   u'ref_type': u'branch'},
  u'public': True,
  u'repo': {u'id': 63487763,
   u'name': u'nmsanchez/diversity-in-tech-resources',
   u'url': u'https://api.github.com/repos/nmsanchez/diversity-in-tech-resources'},
  u'type': u'CreateEvent'},
 {u'actor': {u'avatar_url': u'https://avatars.githubusercontent.com/u/1536047?',
   u'display_login': u'jackzhao29',
   u'gravatar_id': u'',
   u'id': 1536047,
   u'login': u'jackzhao29',
   u'url': u'https://api.github.com/users/jackzhao29'},
  u'created_at': u'2016-07-16T14:55:07Z',
  u'id': u'4287106661',
  u'payload': {u'before': u'99a37ff02c98f00ac6699a41c34dba6d8354da94',
   u'commits': [{u'author': {u'email': u'jack.zhao829@gmail.com',
      u'name': u'jackzhao29'},
     u'distinct': True,
     u'message': u'akka messagetype demo',
     u'sha': u'95b721713fae9fe4a1aafce8f8a8b8493cb1b520',
     u'url': u'https://api.github.com/repos/jackzhao29/JavaObject-Practice/commits/95b721713fae9fe4a1aafce8f8a8b8493cb1b520'}],
   u'distinct_size': 1,
   u'head': u'95b721713fae9fe4a1aafce8f8a8b8493cb1b520',
   u'push_id': 1206229657,
   u'ref': u'refs/heads/master',
   u'size': 1},
  u'public': True,
  u'repo': {u'id': 39983419,
   u'name': u'jackzhao29/JavaObject-Practice',
   u'url': u'https://api.github.com/repos/jackzhao29/JavaObject-Practice'},
  u'type': u'PushEvent'},
 {u'actor': {u'avatar_url': u'https://avatars.githubusercontent.com/u/4649139?',
   u'display_login': u'yassirh',
   u'gravatar_id': u'',
   u'id': 4649139,
   u'login': u'yassirh',
   u'url': u'https://api.github.com/users/yassirh'},
  u'created_at': u'2016-07-16T14:55:07Z',
  u'id': u'4287106659',
  u'payload': {u'before': u'8de90a9d2a4b22cb773d07b8b333e3a2f31c6cbc',
   u'commits': [{u'author': {u'email': u'yassir.hannoun@gmail.com',
      u'name': u'Yassir Hannoun'},
     u'distinct': True,
     u'message': u'Added support for attaching a volume to a droplet',
     u'sha': u'4ba022adf01ff51237da1594449a948d949b160b',
     u'url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/commits/4ba022adf01ff51237da1594449a948d949b160b'},
    {u'author': {u'email': u'yassir.hannoun@gmail.com',
      u'name': u'Yassir Hannoun'},
     u'distinct': True,
     u'message': u'Added support for detaching a volume from a droplet',
     u'sha': u'9c37ef5216e35e1f61b8d56e894442b4f60bf05e',
     u'url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/commits/9c37ef5216e35e1f61b8d56e894442b4f60bf05e'},
    {u'author': {u'email': u'yassir.hannoun@gmail.com',
      u'name': u'Yassir Hannoun'},
     u'distinct': True,
     u'message': u'Added support for resizing volumes',
     u'sha': u'ca9c47fded968d7490b4a5d0091715d0adab5171',
     u'url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/commits/ca9c47fded968d7490b4a5d0091715d0adab5171'},
    {u'author': {u'email': u'yassir.hannoun@gmail.com',
      u'name': u'Yassir Hannoun'},
     u'distinct': True,
     u'message': u'Added support for getting volume action by id',
     u'sha': u'0664b4d5813be04c313133c8645f986482a8afda',
     u'url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/commits/0664b4d5813be04c313133c8645f986482a8afda'},
    {u'author': {u'email': u'yassir.hannoun@gmail.com',
      u'name': u'Yassir Hannoun'},
     u'distinct': True,
     u'message': u'Added support for getting volume actions',
     u'sha': u'1c917156e859c2ca77c2d9047d683e75c1a7421e',
     u'url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/commits/1c917156e859c2ca77c2d9047d683e75c1a7421e'},
    {u'author': {u'email': u'yassir.hannoun@gmail.com',
      u'name': u'Hannoun Yassir'},
     u'distinct': True,
     u'message': u'Merge pull request #136 from yassirh/master\n\nSupport for Block Storage actions',
     u'sha': u'8aecb200b986b94c3c6dd8443146bb4913fa3732',
     u'url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/commits/8aecb200b986b94c3c6dd8443146bb4913fa3732'}],
   u'distinct_size': 6,
   u'head': u'8aecb200b986b94c3c6dd8443146bb4913fa3732',
   u'push_id': 1206229656,
   u'ref': u'refs/heads/master',
   u'size': 6},
  u'public': True,
  u'repo': {u'id': 20703714,
   u'name': u'toin0u/DigitalOceanV2',
   u'url': u'https://api.github.com/repos/toin0u/DigitalOceanV2'},
  u'type': u'PushEvent'},
 {u'actor': {u'avatar_url': u'https://avatars.githubusercontent.com/u/6749661?',
   u'display_login': u'test987987',
   u'gravatar_id': u'',
   u'id': 6749661,
   u'login': u'test987987',
   u'url': u'https://api.github.com/users/test987987'},
  u'created_at': u'2016-07-16T14:55:07Z',
  u'id': u'4287106657',
  u'payload': {u'before': u'f0dad7b4b6f61f683c8757a63df19265d9dadf95',
   u'commits': [{u'author': {u'email': u'test@test.com',
      u'name': u'Joe Awesome'},
     u'distinct': True,
     u'message': u'test commit',
     u'sha': u'ada4ccc7adc259b415f3f8addb8020921e4e17de',
     u'url': u'https://api.github.com/repos/test987987/test11/commits/ada4ccc7adc259b415f3f8addb8020921e4e17de'}],
   u'distinct_size': 1,
   u'head': u'ada4ccc7adc259b415f3f8addb8020921e4e17de',
   u'push_id': 1206229655,
   u'ref': u'refs/heads/master',
   u'size': 1},
  u'public': True,
  u'repo': {u'id': 37934828,
   u'name': u'test987987/test11',
   u'url': u'https://api.github.com/repos/test987987/test11'},
  u'type': u'PushEvent'},
 {u'actor': {u'avatar_url': u'https://avatars.githubusercontent.com/u/12006555?',
   u'display_login': u'cheat-engine',
   u'gravatar_id': u'',
   u'id': 12006555,
   u'login': u'cheat-engine',
   u'url': u'https://api.github.com/users/cheat-engine'},
  u'created_at': u'2016-07-16T14:55:07Z',
  u'id': u'4287106656',
  u'payload': {u'before': u'fbe6e5c2a49ece64519fc0c33cb378df43e651f9',
   u'commits': [{u'author': {u'email': u'dark_byte@hotmail.com',
      u'name': u'Dark Byte'},
     u'distinct': True,
     u'message': u'poll more often',
     u'sha': u'2ad2f5a070f5af78d42200422d18e4d1076cacee',
     u'url': u'https://api.github.com/repos/cheat-engine/cheat-engine/commits/2ad2f5a070f5af78d42200422d18e4d1076cacee'}],
   u'distinct_size': 1,
   u'head': u'2ad2f5a070f5af78d42200422d18e4d1076cacee',
   u'push_id': 1206229654,
   u'ref': u'refs/heads/master',
   u'size': 1},
  u'public': True,
  u'repo': {u'id': 34163206,
   u'name': u'cheat-engine/cheat-engine',
   u'url': u'https://api.github.com/repos/cheat-engine/cheat-engine'},
  u'type': u'PushEvent'},
 {u'actor': {u'avatar_url': u'https://avatars.githubusercontent.com/u/8992831?',
   u'display_login': u'nmsanchez',
   u'gravatar_id': u'',
   u'id': 8992831,
   u'login': u'nmsanchez',
   u'url': u'https://api.github.com/users/nmsanchez'},
  u'created_at': u'2016-07-16T14:55:07Z',
  u'id': u'4287106654',
  u'payload': {u'description': None,
   u'master_branch': u'master',
   u'pusher_type': u'user',
   u'ref': None,
   u'ref_type': u'repository'},
  u'public': True,
  u'repo': {u'id': 63487763,
   u'name': u'nmsanchez/diversity-in-tech-resources',
   u'url': u'https://api.github.com/repos/nmsanchez/diversity-in-tech-resources'},
  u'type': u'CreateEvent'},
 {u'actor': {u'avatar_url': u'https://avatars.githubusercontent.com/u/10207782?',
   u'display_login': u'aheartfulguy',
   u'gravatar_id': u'',
   u'id': 10207782,
   u'login': u'aheartfulguy',
   u'url': u'https://api.github.com/users/aheartfulguy'},
  u'created_at': u'2016-07-16T14:55:07Z',
  u'id': u'4287106650',
  u'org': {u'avatar_url': u'https://avatars.githubusercontent.com/u/1483254?',
   u'gravatar_id': u'',
   u'id': 1483254,
   u'login': u'mybatis',
   u'url': u'https://api.github.com/orgs/mybatis'},
  u'payload': {u'action': u'started'},
  u'public': True,
  u'repo': {u'id': 8247368,
   u'name': u'mybatis/spring',
   u'url': u'https://api.github.com/repos/mybatis/spring'},
  u'type': u'WatchEvent'},
 {u'actor': {u'avatar_url': u'https://avatars.githubusercontent.com/u/1009621?',
   u'display_login': u'fvilers',
   u'gravatar_id': u'',
   u'id': 1009621,
   u'login': u'fvilers',
   u'url': u'https://api.github.com/users/fvilers'},
  u'created_at': u'2016-07-16T14:55:06Z',
  u'id': u'4287106648',
  u'payload': {u'description': u'A super simple Angular 1.x application written with TypeScript',
   u'master_branch': u'master',
   u'pusher_type': u'user',
   u'ref': u'develop',
   u'ref_type': u'branch'},
  u'public': True,
  u'repo': {u'id': 63471875,
   u'name': u'fvilers/angular-todos',
   u'url': u'https://api.github.com/repos/fvilers/angular-todos'},
  u'type': u'CreateEvent'},
 {u'actor': {u'avatar_url': u'https://avatars.githubusercontent.com/u/6850547?',
   u'display_login': u'bLightZP',
   u'gravatar_id': u'',
   u'id': 6850547,
   u'login': u'bLightZP',
   u'url': u'https://api.github.com/users/bLightZP'},
  u'created_at': u'2016-07-16T14:55:06Z',
  u'id': u'4287106647',
  u'payload': {u'description': u'A thread-safe windows meta-data scraper DLL for Movies and TV series based on themoviedb.org API',
   u'master_branch': u'master',
   u'pusher_type': u'user',
   u'ref': u'master',
   u'ref_type': u'branch'},
  u'public': True,
  u'repo': {u'id': 63487762,
   u'name': u'bLightZP/themoviedb.org-scraper',
   u'url': u'https://api.github.com/repos/bLightZP/themoviedb.org-scraper'},
  u'type': u'CreateEvent'},
 {u'actor': {u'avatar_url': u'https://avatars.githubusercontent.com/u/4649139?',
   u'display_login': u'yassirh',
   u'gravatar_id': u'',
   u'id': 4649139,
   u'login': u'yassirh',
   u'url': u'https://api.github.com/users/yassirh'},
  u'created_at': u'2016-07-16T14:55:06Z',
  u'id': u'4287106643',
  u'payload': {u'action': u'closed',
   u'number': 136,
   u'pull_request': {u'_links': {u'comments': {u'href': u'https://api.github.com/repos/toin0u/DigitalOceanV2/issues/136/comments'},
     u'commits': {u'href': u'https://api.github.com/repos/toin0u/DigitalOceanV2/pulls/136/commits'},
     u'html': {u'href': u'https://github.com/toin0u/DigitalOceanV2/pull/136'},
     u'issue': {u'href': u'https://api.github.com/repos/toin0u/DigitalOceanV2/issues/136'},
     u'review_comment': {u'href': u'https://api.github.com/repos/toin0u/DigitalOceanV2/pulls/comments{/number}'},
     u'review_comments': {u'href': u'https://api.github.com/repos/toin0u/DigitalOceanV2/pulls/136/comments'},
     u'self': {u'href': u'https://api.github.com/repos/toin0u/DigitalOceanV2/pulls/136'},
     u'statuses': {u'href': u'https://api.github.com/repos/toin0u/DigitalOceanV2/statuses/1c917156e859c2ca77c2d9047d683e75c1a7421e'}},
    u'additions': 373,
    u'assignee': None,
    u'assignees': [],
    u'base': {u'label': u'toin0u:master',
     u'ref': u'master',
     u'repo': {u'archive_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/{archive_format}{/ref}',
      u'assignees_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/assignees{/user}',
      u'blobs_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/git/blobs{/sha}',
      u'branches_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/branches{/branch}',
      u'clone_url': u'https://github.com/toin0u/DigitalOceanV2.git',
      u'collaborators_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/collaborators{/collaborator}',
      u'comments_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/comments{/number}',
      u'commits_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/commits{/sha}',
      u'compare_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/compare/{base}...{head}',
      u'contents_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/contents/{+path}',
      u'contributors_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/contributors',
      u'created_at': u'2014-06-10T22:18:57Z',
      u'default_branch': u'master',
      u'deployments_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/deployments',
      u'description': u'PHP 5.4+ library which helps you to interact with the DigitalOcean API V2',
      u'downloads_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/downloads',
      u'events_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/events',
      u'fork': False,
      u'forks': 93,
      u'forks_count': 93,
      u'forks_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/forks',
      u'full_name': u'toin0u/DigitalOceanV2',
      u'git_commits_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/git/commits{/sha}',
      u'git_refs_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/git/refs{/sha}',
      u'git_tags_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/git/tags{/sha}',
      u'git_url': u'git://github.com/toin0u/DigitalOceanV2.git',
      u'has_downloads': True,
      u'has_issues': True,
      u'has_pages': False,
      u'has_wiki': False,
      u'homepage': u'',
      u'hooks_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/hooks',
      u'html_url': u'https://github.com/toin0u/DigitalOceanV2',
      u'id': 20703714,
      u'issue_comment_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/issues/comments{/number}',
      u'issue_events_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/issues/events{/number}',
      u'issues_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/issues{/number}',
      u'keys_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/keys{/key_id}',
      u'labels_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/labels{/name}',
      u'language': u'PHP',
      u'languages_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/languages',
      u'merges_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/merges',
      u'milestones_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/milestones{/number}',
      u'mirror_url': None,
      u'name': u'DigitalOceanV2',
      u'notifications_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/notifications{?since,all,participating}',
      u'open_issues': 5,
      u'open_issues_count': 5,
      u'owner': {u'avatar_url': u'https://avatars.githubusercontent.com/u/672421?v=3',
       u'events_url': u'https://api.github.com/users/toin0u/events{/privacy}',
       u'followers_url': u'https://api.github.com/users/toin0u/followers',
       u'following_url': u'https://api.github.com/users/toin0u/following{/other_user}',
       u'gists_url': u'https://api.github.com/users/toin0u/gists{/gist_id}',
       u'gravatar_id': u'',
       u'html_url': u'https://github.com/toin0u',
       u'id': 672421,
       u'login': u'toin0u',
       u'organizations_url': u'https://api.github.com/users/toin0u/orgs',
       u'received_events_url': u'https://api.github.com/users/toin0u/received_events',
       u'repos_url': u'https://api.github.com/users/toin0u/repos',
       u'site_admin': False,
       u'starred_url': u'https://api.github.com/users/toin0u/starred{/owner}{/repo}',
       u'subscriptions_url': u'https://api.github.com/users/toin0u/subscriptions',
       u'type': u'User',
       u'url': u'https://api.github.com/users/toin0u'},
      u'private': False,
      u'pulls_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/pulls{/number}',
      u'pushed_at': u'2016-07-16T14:55:06Z',
      u'releases_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/releases{/id}',
      u'size': 420,
      u'ssh_url': u'git@github.com:toin0u/DigitalOceanV2.git',
      u'stargazers_count': 314,
      u'stargazers_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/stargazers',
      u'statuses_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/statuses/{sha}',
      u'subscribers_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/subscribers',
      u'subscription_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/subscription',
      u'svn_url': u'https://github.com/toin0u/DigitalOceanV2',
      u'tags_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/tags',
      u'teams_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/teams',
      u'trees_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/git/trees{/sha}',
      u'updated_at': u'2016-07-15T08:53:03Z',
      u'url': u'https://api.github.com/repos/toin0u/DigitalOceanV2',
      u'watchers': 314,
      u'watchers_count': 314},
     u'sha': u'8de90a9d2a4b22cb773d07b8b333e3a2f31c6cbc',
     u'user': {u'avatar_url': u'https://avatars.githubusercontent.com/u/672421?v=3',
      u'events_url': u'https://api.github.com/users/toin0u/events{/privacy}',
      u'followers_url': u'https://api.github.com/users/toin0u/followers',
      u'following_url': u'https://api.github.com/users/toin0u/following{/other_user}',
      u'gists_url': u'https://api.github.com/users/toin0u/gists{/gist_id}',
      u'gravatar_id': u'',
      u'html_url': u'https://github.com/toin0u',
      u'id': 672421,
      u'login': u'toin0u',
      u'organizations_url': u'https://api.github.com/users/toin0u/orgs',
      u'received_events_url': u'https://api.github.com/users/toin0u/received_events',
      u'repos_url': u'https://api.github.com/users/toin0u/repos',
      u'site_admin': False,
      u'starred_url': u'https://api.github.com/users/toin0u/starred{/owner}{/repo}',
      u'subscriptions_url': u'https://api.github.com/users/toin0u/subscriptions',
      u'type': u'User',
      u'url': u'https://api.github.com/users/toin0u'}},
    u'body': u'This PR fixes #135 by adding support for the available features of Block Storage actions exposed via the API.\r\n\r\n- [x] Attach a Block Storage volume to a Droplet\r\n- [x] Remove a Block Storage volume from a Droplet\r\n- [x] Resize a volume\r\n- [x] List all actions for a volume\r\n- [x] Retrieve an existing volume action',
    u'changed_files': 2,
    u'closed_at': u'2016-07-16T14:55:06Z',
    u'comments': 0,
    u'comments_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/issues/136/comments',
    u'commits': 5,
    u'commits_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/pulls/136/commits',
    u'created_at': u'2016-07-16T14:50:11Z',
    u'deletions': 13,
    u'diff_url': u'https://github.com/toin0u/DigitalOceanV2/pull/136.diff',
    u'head': {u'label': u'yassirh:master',
     u'ref': u'master',
     u'repo': {u'archive_url': u'https://api.github.com/repos/yassirh/DigitalOceanV2/{archive_format}{/ref}',
      u'assignees_url': u'https://api.github.com/repos/yassirh/DigitalOceanV2/assignees{/user}',
      u'blobs_url': u'https://api.github.com/repos/yassirh/DigitalOceanV2/git/blobs{/sha}',
      u'branches_url': u'https://api.github.com/repos/yassirh/DigitalOceanV2/branches{/branch}',
      u'clone_url': u'https://github.com/yassirh/DigitalOceanV2.git',
      u'collaborators_url': u'https://api.github.com/repos/yassirh/DigitalOceanV2/collaborators{/collaborator}',
      u'comments_url': u'https://api.github.com/repos/yassirh/DigitalOceanV2/comments{/number}',
      u'commits_url': u'https://api.github.com/repos/yassirh/DigitalOceanV2/commits{/sha}',
      u'compare_url': u'https://api.github.com/repos/yassirh/DigitalOceanV2/compare/{base}...{head}',
      u'contents_url': u'https://api.github.com/repos/yassirh/DigitalOceanV2/contents/{+path}',
      u'contributors_url': u'https://api.github.com/repos/yassirh/DigitalOceanV2/contributors',
      u'created_at': u'2016-07-14T23:27:56Z',
      u'default_branch': u'master',
      u'deployments_url': u'https://api.github.com/repos/yassirh/DigitalOceanV2/deployments',
      u'description': u'PHP 5.4+ library which helps you to interact with the DigitalOcean API V2',
      u'downloads_url': u'https://api.github.com/repos/yassirh/DigitalOceanV2/downloads',
      u'events_url': u'https://api.github.com/repos/yassirh/DigitalOceanV2/events',
      u'fork': True,
      u'forks': 0,
      u'forks_count': 0,
      u'forks_url': u'https://api.github.com/repos/yassirh/DigitalOceanV2/forks',
      u'full_name': u'yassirh/DigitalOceanV2',
      u'git_commits_url': u'https://api.github.com/repos/yassirh/DigitalOceanV2/git/commits{/sha}',
      u'git_refs_url': u'https://api.github.com/repos/yassirh/DigitalOceanV2/git/refs{/sha}',
      u'git_tags_url': u'https://api.github.com/repos/yassirh/DigitalOceanV2/git/tags{/sha}',
      u'git_url': u'git://github.com/yassirh/DigitalOceanV2.git',
      u'has_downloads': True,
      u'has_issues': False,
      u'has_pages': False,
      u'has_wiki': False,
      u'homepage': u'',
      u'hooks_url': u'https://api.github.com/repos/yassirh/DigitalOceanV2/hooks',
      u'html_url': u'https://github.com/yassirh/DigitalOceanV2',
      u'id': 63376391,
      u'issue_comment_url': u'https://api.github.com/repos/yassirh/DigitalOceanV2/issues/comments{/number}',
      u'issue_events_url': u'https://api.github.com/repos/yassirh/DigitalOceanV2/issues/events{/number}',
      u'issues_url': u'https://api.github.com/repos/yassirh/DigitalOceanV2/issues{/number}',
      u'keys_url': u'https://api.github.com/repos/yassirh/DigitalOceanV2/keys{/key_id}',
      u'labels_url': u'https://api.github.com/repos/yassirh/DigitalOceanV2/labels{/name}',
      u'language': u'PHP',
      u'languages_url': u'https://api.github.com/repos/yassirh/DigitalOceanV2/languages',
      u'merges_url': u'https://api.github.com/repos/yassirh/DigitalOceanV2/merges',
      u'milestones_url': u'https://api.github.com/repos/yassirh/DigitalOceanV2/milestones{/number}',
      u'mirror_url': None,
      u'name': u'DigitalOceanV2',
      u'notifications_url': u'https://api.github.com/repos/yassirh/DigitalOceanV2/notifications{?since,all,participating}',
      u'open_issues': 0,
      u'open_issues_count': 0,
      u'owner': {u'avatar_url': u'https://avatars.githubusercontent.com/u/4649139?v=3',
       u'events_url': u'https://api.github.com/users/yassirh/events{/privacy}',
       u'followers_url': u'https://api.github.com/users/yassirh/followers',
       u'following_url': u'https://api.github.com/users/yassirh/following{/other_user}',
       u'gists_url': u'https://api.github.com/users/yassirh/gists{/gist_id}',
       u'gravatar_id': u'',
       u'html_url': u'https://github.com/yassirh',
       u'id': 4649139,
       u'login': u'yassirh',
       u'organizations_url': u'https://api.github.com/users/yassirh/orgs',
       u'received_events_url': u'https://api.github.com/users/yassirh/received_events',
       u'repos_url': u'https://api.github.com/users/yassirh/repos',
       u'site_admin': False,
       u'starred_url': u'https://api.github.com/users/yassirh/starred{/owner}{/repo}',
       u'subscriptions_url': u'https://api.github.com/users/yassirh/subscriptions',
       u'type': u'User',
       u'url': u'https://api.github.com/users/yassirh'},
      u'private': False,
      u'pulls_url': u'https://api.github.com/repos/yassirh/DigitalOceanV2/pulls{/number}',
      u'pushed_at': u'2016-07-16T14:40:58Z',
      u'releases_url': u'https://api.github.com/repos/yassirh/DigitalOceanV2/releases{/id}',
      u'size': 407,
      u'ssh_url': u'git@github.com:yassirh/DigitalOceanV2.git',
      u'stargazers_count': 0,
      u'stargazers_url': u'https://api.github.com/repos/yassirh/DigitalOceanV2/stargazers',
      u'statuses_url': u'https://api.github.com/repos/yassirh/DigitalOceanV2/statuses/{sha}',
      u'subscribers_url': u'https://api.github.com/repos/yassirh/DigitalOceanV2/subscribers',
      u'subscription_url': u'https://api.github.com/repos/yassirh/DigitalOceanV2/subscription',
      u'svn_url': u'https://github.com/yassirh/DigitalOceanV2',
      u'tags_url': u'https://api.github.com/repos/yassirh/DigitalOceanV2/tags',
      u'teams_url': u'https://api.github.com/repos/yassirh/DigitalOceanV2/teams',
      u'trees_url': u'https://api.github.com/repos/yassirh/DigitalOceanV2/git/trees{/sha}',
      u'updated_at': u'2016-07-14T23:27:57Z',
      u'url': u'https://api.github.com/repos/yassirh/DigitalOceanV2',
      u'watchers': 0,
      u'watchers_count': 0},
     u'sha': u'1c917156e859c2ca77c2d9047d683e75c1a7421e',
     u'user': {u'avatar_url': u'https://avatars.githubusercontent.com/u/4649139?v=3',
      u'events_url': u'https://api.github.com/users/yassirh/events{/privacy}',
      u'followers_url': u'https://api.github.com/users/yassirh/followers',
      u'following_url': u'https://api.github.com/users/yassirh/following{/other_user}',
      u'gists_url': u'https://api.github.com/users/yassirh/gists{/gist_id}',
      u'gravatar_id': u'',
      u'html_url': u'https://github.com/yassirh',
      u'id': 4649139,
      u'login': u'yassirh',
      u'organizations_url': u'https://api.github.com/users/yassirh/orgs',
      u'received_events_url': u'https://api.github.com/users/yassirh/received_events',
      u'repos_url': u'https://api.github.com/users/yassirh/repos',
      u'site_admin': False,
      u'starred_url': u'https://api.github.com/users/yassirh/starred{/owner}{/repo}',
      u'subscriptions_url': u'https://api.github.com/users/yassirh/subscriptions',
      u'type': u'User',
      u'url': u'https://api.github.com/users/yassirh'}},
    u'html_url': u'https://github.com/toin0u/DigitalOceanV2/pull/136',
    u'id': 77711205,
    u'issue_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/issues/136',
    u'locked': False,
    u'merge_commit_sha': u'8aecb200b986b94c3c6dd8443146bb4913fa3732',
    u'mergeable': None,
    u'mergeable_state': u'unknown',
    u'merged': True,
    u'merged_at': u'2016-07-16T14:55:06Z',
    u'merged_by': {u'avatar_url': u'https://avatars.githubusercontent.com/u/4649139?v=3',
     u'events_url': u'https://api.github.com/users/yassirh/events{/privacy}',
     u'followers_url': u'https://api.github.com/users/yassirh/followers',
     u'following_url': u'https://api.github.com/users/yassirh/following{/other_user}',
     u'gists_url': u'https://api.github.com/users/yassirh/gists{/gist_id}',
     u'gravatar_id': u'',
     u'html_url': u'https://github.com/yassirh',
     u'id': 4649139,
     u'login': u'yassirh',
     u'organizations_url': u'https://api.github.com/users/yassirh/orgs',
     u'received_events_url': u'https://api.github.com/users/yassirh/received_events',
     u'repos_url': u'https://api.github.com/users/yassirh/repos',
     u'site_admin': False,
     u'starred_url': u'https://api.github.com/users/yassirh/starred{/owner}{/repo}',
     u'subscriptions_url': u'https://api.github.com/users/yassirh/subscriptions',
     u'type': u'User',
     u'url': u'https://api.github.com/users/yassirh'},
    u'milestone': None,
    u'number': 136,
    u'patch_url': u'https://github.com/toin0u/DigitalOceanV2/pull/136.patch',
    u'review_comment_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/pulls/comments{/number}',
    u'review_comments': 0,
    u'review_comments_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/pulls/136/comments',
    u'state': u'closed',
    u'statuses_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/statuses/1c917156e859c2ca77c2d9047d683e75c1a7421e',
    u'title': u'Support for Block Storage actions',
    u'updated_at': u'2016-07-16T14:55:06Z',
    u'url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/pulls/136',
    u'user': {u'avatar_url': u'https://avatars.githubusercontent.com/u/4649139?v=3',
     u'events_url': u'https://api.github.com/users/yassirh/events{/privacy}',
     u'followers_url': u'https://api.github.com/users/yassirh/followers',
     u'following_url': u'https://api.github.com/users/yassirh/following{/other_user}',
     u'gists_url': u'https://api.github.com/users/yassirh/gists{/gist_id}',
     u'gravatar_id': u'',
     u'html_url': u'https://github.com/yassirh',
     u'id': 4649139,
     u'login': u'yassirh',
     u'organizations_url': u'https://api.github.com/users/yassirh/orgs',
     u'received_events_url': u'https://api.github.com/users/yassirh/received_events',
     u'repos_url': u'https://api.github.com/users/yassirh/repos',
     u'site_admin': False,
     u'starred_url': u'https://api.github.com/users/yassirh/starred{/owner}{/repo}',
     u'subscriptions_url': u'https://api.github.com/users/yassirh/subscriptions',
     u'type': u'User',
     u'url': u'https://api.github.com/users/yassirh'}}},
  u'public': True,
  u'repo': {u'id': 20703714,
   u'name': u'toin0u/DigitalOceanV2',
   u'url': u'https://api.github.com/repos/toin0u/DigitalOceanV2'},
  u'type': u'PullRequestEvent'},
 {u'actor': {u'avatar_url': u'https://avatars.githubusercontent.com/u/4649139?',
   u'display_login': u'yassirh',
   u'gravatar_id': u'',
   u'id': 4649139,
   u'login': u'yassirh',
   u'url': u'https://api.github.com/users/yassirh'},
  u'created_at': u'2016-07-16T14:55:06Z',
  u'id': u'4287106641',
  u'payload': {u'action': u'closed',
   u'issue': {u'assignee': {u'avatar_url': u'https://avatars.githubusercontent.com/u/4649139?v=3',
     u'events_url': u'https://api.github.com/users/yassirh/events{/privacy}',
     u'followers_url': u'https://api.github.com/users/yassirh/followers',
     u'following_url': u'https://api.github.com/users/yassirh/following{/other_user}',
     u'gists_url': u'https://api.github.com/users/yassirh/gists{/gist_id}',
     u'gravatar_id': u'',
     u'html_url': u'https://github.com/yassirh',
     u'id': 4649139,
     u'login': u'yassirh',
     u'organizations_url': u'https://api.github.com/users/yassirh/orgs',
     u'received_events_url': u'https://api.github.com/users/yassirh/received_events',
     u'repos_url': u'https://api.github.com/users/yassirh/repos',
     u'site_admin': False,
     u'starred_url': u'https://api.github.com/users/yassirh/starred{/owner}{/repo}',
     u'subscriptions_url': u'https://api.github.com/users/yassirh/subscriptions',
     u'type': u'User',
     u'url': u'https://api.github.com/users/yassirh'},
    u'assignees': [{u'avatar_url': u'https://avatars.githubusercontent.com/u/4649139?v=3',
      u'events_url': u'https://api.github.com/users/yassirh/events{/privacy}',
      u'followers_url': u'https://api.github.com/users/yassirh/followers',
      u'following_url': u'https://api.github.com/users/yassirh/following{/other_user}',
      u'gists_url': u'https://api.github.com/users/yassirh/gists{/gist_id}',
      u'gravatar_id': u'',
      u'html_url': u'https://github.com/yassirh',
      u'id': 4649139,
      u'login': u'yassirh',
      u'organizations_url': u'https://api.github.com/users/yassirh/orgs',
      u'received_events_url': u'https://api.github.com/users/yassirh/received_events',
      u'repos_url': u'https://api.github.com/users/yassirh/repos',
      u'site_admin': False,
      u'starred_url': u'https://api.github.com/users/yassirh/starred{/owner}{/repo}',
      u'subscriptions_url': u'https://api.github.com/users/yassirh/subscriptions',
      u'type': u'User',
      u'url': u'https://api.github.com/users/yassirh'}],
    u'body': u'https://developers.digitalocean.com/documentation/v2/#block-storage-actions',
    u'closed_at': u'2016-07-16T14:55:06Z',
    u'comments': 0,
    u'comments_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/issues/135/comments',
    u'created_at': u'2016-07-15T10:46:49Z',
    u'events_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/issues/135/events',
    u'html_url': u'https://github.com/toin0u/DigitalOceanV2/issues/135',
    u'id': 165759708,
    u'labels': [],
    u'labels_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/issues/135/labels{/name}',
    u'locked': False,
    u'milestone': None,
    u'number': 135,
    u'repository_url': u'https://api.github.com/repos/toin0u/DigitalOceanV2',
    u'state': u'closed',
    u'title': u'Support for Block Storage Actions',
    u'updated_at': u'2016-07-16T14:55:06Z',
    u'url': u'https://api.github.com/repos/toin0u/DigitalOceanV2/issues/135',
    u'user': {u'avatar_url': u'https://avatars.githubusercontent.com/u/4649139?v=3',
     u'events_url': u'https://api.github.com/users/yassirh/events{/privacy}',
     u'followers_url': u'https://api.github.com/users/yassirh/followers',
     u'following_url': u'https://api.github.com/users/yassirh/following{/other_user}',
     u'gists_url': u'https://api.github.com/users/yassirh/gists{/gist_id}',
     u'gravatar_id': u'',
     u'html_url': u'https://github.com/yassirh',
     u'id': 4649139,
     u'login': u'yassirh',
     u'organizations_url': u'https://api.github.com/users/yassirh/orgs',
     u'received_events_url': u'https://api.github.com/users/yassirh/received_events',
     u'repos_url': u'https://api.github.com/users/yassirh/repos',
     u'site_admin': False,
     u'starred_url': u'https://api.github.com/users/yassirh/starred{/owner}{/repo}',
     u'subscriptions_url': u'https://api.github.com/users/yassirh/subscriptions',
     u'type': u'User',
     u'url': u'https://api.github.com/users/yassirh'}}},
  u'public': True,
  u'repo': {u'id': 20703714,
   u'name': u'toin0u/DigitalOceanV2',
   u'url': u'https://api.github.com/repos/toin0u/DigitalOceanV2'},
  u'type': u'IssuesEvent'},
 {u'actor': {u'avatar_url': u'https://avatars.githubusercontent.com/u/5486808?',
   u'display_login': u'winvis',
   u'gravatar_id': u'',
   u'id': 5486808,
   u'login': u'winvis',
   u'url': u'https://api.github.com/users/winvis'},
  u'created_at': u'2016-07-16T14:55:06Z',
  u'id': u'4287106640',
  u'payload': {u'action': u'started'},
  u'public': True,
  u'repo': {u'id': 23957454,
   u'name': u'PatrickLouys/no-framework-tutorial',
   u'url': u'https://api.github.com/repos/PatrickLouys/no-framework-tutorial'},
  u'type': u'WatchEvent'},
 {u'actor': {u'avatar_url': u'https://avatars.githubusercontent.com/u/19307396?',
   u'display_login': u'pop123123123',
   u'gravatar_id': u'',
   u'id': 19307396,
   u'login': u'pop123123123',
   u'url': u'https://api.github.com/users/pop123123123'},
  u'created_at': u'2016-07-16T14:55:06Z',
  u'id': u'4287106637',
  u'org': {u'avatar_url': u'https://avatars.githubusercontent.com/u/16220876?',
   u'gravatar_id': u'',
   u'id': 16220876,
   u'login': u'OpenDofus',
   u'url': u'https://api.github.com/orgs/OpenDofus'},
  u'payload': {u'action': u'started'},
  u'public': True,
  u'repo': {u'id': 39653303,
   u'name': u'OpenDofus/wiki',
   u'url': u'https://api.github.com/repos/OpenDofus/wiki'},
  u'type': u'WatchEvent'},
 {u'actor': {u'avatar_url': u'https://avatars.githubusercontent.com/u/20491637?',
   u'display_login': u'dubiya94',
   u'gravatar_id': u'',
   u'id': 20491637,
   u'login': u'dubiya94',
   u'url': u'https://api.github.com/users/dubiya94'},
  u'created_at': u'2016-07-16T14:55:06Z',
  u'id': u'4287106636',
  u'org': {u'avatar_url': u'https://avatars.githubusercontent.com/u/6412038?',
   u'gravatar_id': u'',
   u'id': 6412038,
   u'login': u'reactjs',
   u'url': u'https://api.github.com/orgs/reactjs'},
  u'payload': {u'action': u'started'},
  u'public': True,
  u'repo': {u'id': 21871245,
   u'name': u'reactjs/react-tabs',
   u'url': u'https://api.github.com/repos/reactjs/react-tabs'},
  u'type': u'WatchEvent'},
 {u'actor': {u'avatar_url': u'https://avatars.githubusercontent.com/u/88972?',
   u'display_login': u'bergwolf',
   u'gravatar_id': u'',
   u'id': 88972,
   u'login': u'bergwolf',
   u'url': u'https://api.github.com/users/bergwolf'},
  u'created_at': u'2016-07-16T14:55:06Z',
  u'id': u'4287106635',
  u'org': {u'avatar_url': u'https://avatars.githubusercontent.com/u/12324138?',
   u'gravatar_id': u'',
   u'id': 12324138,
   u'login': u'hyperhq',
   u'url': u'https://api.github.com/orgs/hyperhq'},
  u'payload': {u'action': u'opened',
   u'number': 135,
   u'pull_request': {u'_links': {u'comments': {u'href': u'https://api.github.com/repos/hyperhq/hyperstart/issues/135/comments'},
     u'commits': {u'href': u'https://api.github.com/repos/hyperhq/hyperstart/pulls/135/commits'},
     u'html': {u'href': u'https://github.com/hyperhq/hyperstart/pull/135'},
     u'issue': {u'href': u'https://api.github.com/repos/hyperhq/hyperstart/issues/135'},
     u'review_comment': {u'href': u'https://api.github.com/repos/hyperhq/hyperstart/pulls/comments{/number}'},
     u'review_comments': {u'href': u'https://api.github.com/repos/hyperhq/hyperstart/pulls/135/comments'},
     u'self': {u'href': u'https://api.github.com/repos/hyperhq/hyperstart/pulls/135'},
     u'statuses': {u'href': u'https://api.github.com/repos/hyperhq/hyperstart/statuses/b40e850cdc9ce74970aee77061833e8ada26d974'}},
    u'additions': 108,
    u'assignee': None,
    u'assignees': [],
    u'base': {u'label': u'hyperhq:master',
     u'ref': u'master',
     u'repo': {u'archive_url': u'https://api.github.com/repos/hyperhq/hyperstart/{archive_format}{/ref}',
      u'assignees_url': u'https://api.github.com/repos/hyperhq/hyperstart/assignees{/user}',
      u'blobs_url': u'https://api.github.com/repos/hyperhq/hyperstart/git/blobs{/sha}',
      u'branches_url': u'https://api.github.com/repos/hyperhq/hyperstart/branches{/branch}',
      u'clone_url': u'https://github.com/hyperhq/hyperstart.git',
      u'collaborators_url': u'https://api.github.com/repos/hyperhq/hyperstart/collaborators{/collaborator}',
      u'comments_url': u'https://api.github.com/repos/hyperhq/hyperstart/comments{/number}',
      u'commits_url': u'https://api.github.com/repos/hyperhq/hyperstart/commits{/sha}',
      u'compare_url': u'https://api.github.com/repos/hyperhq/hyperstart/compare/{base}...{head}',
      u'contents_url': u'https://api.github.com/repos/hyperhq/hyperstart/contents/{+path}',
      u'contributors_url': u'https://api.github.com/repos/hyperhq/hyperstart/contributors',
      u'created_at': u'2015-05-25T06:24:46Z',
      u'default_branch': u'master',
      u'deployments_url': u'https://api.github.com/repos/hyperhq/hyperstart/deployments',
      u'description': u'The tiny Init service for HyperContainer',
      u'downloads_url': u'https://api.github.com/repos/hyperhq/hyperstart/downloads',
      u'events_url': u'https://api.github.com/repos/hyperhq/hyperstart/events',
      u'fork': False,
      u'forks': 19,
      u'forks_count': 19,
      u'forks_url': u'https://api.github.com/repos/hyperhq/hyperstart/forks',
      u'full_name': u'hyperhq/hyperstart',
      u'git_commits_url': u'https://api.github.com/repos/hyperhq/hyperstart/git/commits{/sha}',
      u'git_refs_url': u'https://api.github.com/repos/hyperhq/hyperstart/git/refs{/sha}',
      u'git_tags_url': u'https://api.github.com/repos/hyperhq/hyperstart/git/tags{/sha}',
      u'git_url': u'git://github.com/hyperhq/hyperstart.git',
      u'has_downloads': True,
      u'has_issues': True,
      u'has_pages': False,
      u'has_wiki': True,
      u'homepage': u'https://www.hypercontainer.io',
      u'hooks_url': u'https://api.github.com/repos/hyperhq/hyperstart/hooks',
      u'html_url': u'https://github.com/hyperhq/hyperstart',
      u'id': 36213972,
      u'issue_comment_url': u'https://api.github.com/repos/hyperhq/hyperstart/issues/comments{/number}',
      u'issue_events_url': u'https://api.github.com/repos/hyperhq/hyperstart/issues/events{/number}',
      u'issues_url': u'https://api.github.com/repos/hyperhq/hyperstart/issues{/number}',
      u'keys_url': u'https://api.github.com/repos/hyperhq/hyperstart/keys{/key_id}',
      u'labels_url': u'https://api.github.com/repos/hyperhq/hyperstart/labels{/name}',
      u'language': u'C',
      u'languages_url': u'https://api.github.com/repos/hyperhq/hyperstart/languages',
      u'merges_url': u'https://api.github.com/repos/hyperhq/hyperstart/merges',
      u'milestones_url': u'https://api.github.com/repos/hyperhq/hyperstart/milestones{/number}',
      u'mirror_url': None,
      u'name': u'hyperstart',
      u'notifications_url': u'https://api.github.com/repos/hyperhq/hyperstart/notifications{?since,all,participating}',
      u'open_issues': 10,
      u'open_issues_count': 10,
      u'owner': {u'avatar_url': u'https://avatars.githubusercontent.com/u/12324138?v=3',
       u'events_url': u'https://api.github.com/users/hyperhq/events{/privacy}',
       u'followers_url': u'https://api.github.com/users/hyperhq/followers',
       u'following_url': u'https://api.github.com/users/hyperhq/following{/other_user}',
       u'gists_url': u'https://api.github.com/users/hyperhq/gists{/gist_id}',
       u'gravatar_id': u'',
       u'html_url': u'https://github.com/hyperhq',
       u'id': 12324138,
       u'login': u'hyperhq',
       u'organizations_url': u'https://api.github.com/users/hyperhq/orgs',
       u'received_events_url': u'https://api.github.com/users/hyperhq/received_events',
       u'repos_url': u'https://api.github.com/users/hyperhq/repos',
       u'site_admin': False,
       u'starred_url': u'https://api.github.com/users/hyperhq/starred{/owner}{/repo}',
       u'subscriptions_url': u'https://api.github.com/users/hyperhq/subscriptions',
       u'type': u'Organization',
       u'url': u'https://api.github.com/users/hyperhq'},
      u'private': False,
      u'pulls_url': u'https://api.github.com/repos/hyperhq/hyperstart/pulls{/number}',
      u'pushed_at': u'2016-07-16T09:00:56Z',
      u'releases_url': u'https://api.github.com/repos/hyperhq/hyperstart/releases{/id}',
      u'size': 48572,
      u'ssh_url': u'git@github.com:hyperhq/hyperstart.git',
      u'stargazers_count': 52,
      u'stargazers_url': u'https://api.github.com/repos/hyperhq/hyperstart/stargazers',
      u'statuses_url': u'https://api.github.com/repos/hyperhq/hyperstart/statuses/{sha}',
      u'subscribers_url': u'https://api.github.com/repos/hyperhq/hyperstart/subscribers',
      u'subscription_url': u'https://api.github.com/repos/hyperhq/hyperstart/subscription',
      u'svn_url': u'https://github.com/hyperhq/hyperstart',
      u'tags_url': u'https://api.github.com/repos/hyperhq/hyperstart/tags',
      u'teams_url': u'https://api.github.com/repos/hyperhq/hyperstart/teams',
      u'trees_url': u'https://api.github.com/repos/hyperhq/hyperstart/git/trees{/sha}',
      u'updated_at': u'2016-07-08T08:42:34Z',
      u'url': u'https://api.github.com/repos/hyperhq/hyperstart',
      u'watchers': 52,
      u'watchers_count': 52},
     u'sha': u'3bed96c1765bc5c02c9f9f186a54e1d9be001728',
     u'user': {u'avatar_url': u'https://avatars.githubusercontent.com/u/12324138?v=3',
      u'events_url': u'https://api.github.com/users/hyperhq/events{/privacy}',
      u'followers_url': u'https://api.github.com/users/hyperhq/followers',
      u'following_url': u'https://api.github.com/users/hyperhq/following{/other_user}',
      u'gists_url': u'https://api.github.com/users/hyperhq/gists{/gist_id}',
      u'gravatar_id': u'',
      u'html_url': u'https://github.com/hyperhq',
      u'id': 12324138,
      u'login': u'hyperhq',
      u'organizations_url': u'https://api.github.com/users/hyperhq/orgs',
      u'received_events_url': u'https://api.github.com/users/hyperhq/received_events',
      u'repos_url': u'https://api.github.com/users/hyperhq/repos',
      u'site_admin': False,
      u'starred_url': u'https://api.github.com/users/hyperhq/starred{/owner}{/repo}',
      u'subscriptions_url': u'https://api.github.com/users/hyperhq/subscriptions',
      u'type': u'Organization',
      u'url': u'https://api.github.com/users/hyperhq'}},
    u'body': u"For a new volume, we need to set up volume directory ownership\r\naccording to container's exec user/group.\r\n\r\nA new volume is identified in two ways:\r\n1. There is no _data directory\r\n2. There is a file _data/.hyper_new_volume_do_not_create_on_your_own",
    u'changed_files': 4,
    u'closed_at': None,
    u'comments': 0,
    u'comments_url': u'https://api.github.com/repos/hyperhq/hyperstart/issues/135/comments',
    u'commits': 2,
    u'commits_url': u'https://api.github.com/repos/hyperhq/hyperstart/pulls/135/commits',
    u'created_at': u'2016-07-16T14:55:05Z',
    u'deletions': 10,
    u'diff_url': u'https://github.com/hyperhq/hyperstart/pull/135.diff',
    u'head': {u'label': u'bergwolf:chown_volume',
     u'ref': u'chown_volume',
     u'repo': {u'archive_url': u'https://api.github.com/repos/bergwolf/hyperstart/{archive_format}{/ref}',
      u'assignees_url': u'https://api.github.com/repos/bergwolf/hyperstart/assignees{/user}',
      u'blobs_url': u'https://api.github.com/repos/bergwolf/hyperstart/git/blobs{/sha}',
      u'branches_url': u'https://api.github.com/repos/bergwolf/hyperstart/branches{/branch}',
      u'clone_url': u'https://github.com/bergwolf/hyperstart.git',
      u'collaborators_url': u'https://api.github.com/repos/bergwolf/hyperstart/collaborators{/collaborator}',
      u'comments_url': u'https://api.github.com/repos/bergwolf/hyperstart/comments{/number}',
      u'commits_url': u'https://api.github.com/repos/bergwolf/hyperstart/commits{/sha}',
      u'compare_url': u'https://api.github.com/repos/bergwolf/hyperstart/compare/{base}...{head}',
      u'contents_url': u'https://api.github.com/repos/bergwolf/hyperstart/contents/{+path}',
      u'contributors_url': u'https://api.github.com/repos/bergwolf/hyperstart/contributors',
      u'created_at': u'2015-05-30T03:14:57Z',
      u'default_branch': u'master',
      u'deployments_url': u'https://api.github.com/repos/bergwolf/hyperstart/deployments',
      u'description': u'The tiny Init service for Hyper',
      u'downloads_url': u'https://api.github.com/repos/bergwolf/hyperstart/downloads',
      u'events_url': u'https://api.github.com/repos/bergwolf/hyperstart/events',
      u'fork': True,
      u'forks': 0,
      u'forks_count': 0,
      u'forks_url': u'https://api.github.com/repos/bergwolf/hyperstart/forks',
      u'full_name': u'bergwolf/hyperstart',
      u'git_commits_url': u'https://api.github.com/repos/bergwolf/hyperstart/git/commits{/sha}',
      u'git_refs_url': u'https://api.github.com/repos/bergwolf/hyperstart/git/refs{/sha}',
      u'git_tags_url': u'https://api.github.com/repos/bergwolf/hyperstart/git/tags{/sha}',
      u'git_url': u'git://github.com/bergwolf/hyperstart.git',
      u'has_downloads': True,
      u'has_issues': False,
      u'has_pages': False,
      u'has_wiki': True,
      u'homepage': u'https://www.hyper.sh',
      u'hooks_url': u'https://api.github.com/repos/bergwolf/hyperstart/hooks',
      u'html_url': u'https://github.com/bergwolf/hyperstart',
      u'id': 36541033,
      u'issue_comment_url': u'https://api.github.com/repos/bergwolf/hyperstart/issues/comments{/number}',
      u'issue_events_url': u'https://api.github.com/repos/bergwolf/hyperstart/issues/events{/number}',
      u'issues_url': u'https://api.github.com/repos/bergwolf/hyperstart/issues{/number}',
      u'keys_url': u'https://api.github.com/repos/bergwolf/hyperstart/keys{/key_id}',
      u'labels_url': u'https://api.github.com/repos/bergwolf/hyperstart/labels{/name}',
      u'language': u'C',
      u'languages_url': u'https://api.github.com/repos/bergwolf/hyperstart/languages',
      u'merges_url': u'https://api.github.com/repos/bergwolf/hyperstart/merges',
      u'milestones_url': u'https://api.github.com/repos/bergwolf/hyperstart/milestones{/number}',
      u'mirror_url': None,
      u'name': u'hyperstart',
      u'notifications_url': u'https://api.github.com/repos/bergwolf/hyperstart/notifications{?since,all,participating}',
      u'open_issues': 0,
      u'open_issues_count': 0,
      u'owner': {u'avatar_url': u'https://avatars.githubusercontent.com/u/88972?v=3',
       u'events_url': u'https://api.github.com/users/bergwolf/events{/privacy}',
       u'followers_url': u'https://api.github.com/users/bergwolf/followers',
       u'following_url': u'https://api.github.com/users/bergwolf/following{/other_user}',
       u'gists_url': u'https://api.github.com/users/bergwolf/gists{/gist_id}',
       u'gravatar_id': u'',
       u'html_url': u'https://github.com/bergwolf',
       u'id': 88972,
       u'login': u'bergwolf',
       u'organizations_url': u'https://api.github.com/users/bergwolf/orgs',
       u'received_events_url': u'https://api.github.com/users/bergwolf/received_events',
       u'repos_url': u'https://api.github.com/users/bergwolf/repos',
       u'site_admin': False,
       u'starred_url': u'https://api.github.com/users/bergwolf/starred{/owner}{/repo}',
       u'subscriptions_url': u'https://api.github.com/users/bergwolf/subscriptions',
       u'type': u'User',
       u'url': u'https://api.github.com/users/bergwolf'},
      u'private': False,
      u'pulls_url': u'https://api.github.com/repos/bergwolf/hyperstart/pulls{/number}',
      u'pushed_at': u'2016-07-16T14:52:54Z',
      u'releases_url': u'https://api.github.com/repos/bergwolf/hyperstart/releases{/id}',
      u'size': 41290,
      u'ssh_url': u'git@github.com:bergwolf/hyperstart.git',
      u'stargazers_count': 0,
      u'stargazers_url': u'https://api.github.com/repos/bergwolf/hyperstart/stargazers',
      u'statuses_url': u'https://api.github.com/repos/bergwolf/hyperstart/statuses/{sha}',
      u'subscribers_url': u'https://api.github.com/repos/bergwolf/hyperstart/subscribers',
      u'subscription_url': u'https://api.github.com/repos/bergwolf/hyperstart/subscription',
      u'svn_url': u'https://github.com/bergwolf/hyperstart',
      u'tags_url': u'https://api.github.com/repos/bergwolf/hyperstart/tags',
      u'teams_url': u'https://api.github.com/repos/bergwolf/hyperstart/teams',
      u'trees_url': u'https://api.github.com/repos/bergwolf/hyperstart/git/trees{/sha}',
      u'updated_at': u'2016-04-27T15:06:55Z',
      u'url': u'https://api.github.com/repos/bergwolf/hyperstart',
      u'watchers': 0,
      u'watchers_count': 0},
     u'sha': u'b40e850cdc9ce74970aee77061833e8ada26d974',
     u'user': {u'avatar_url': u'https://avatars.githubusercontent.com/u/88972?v=3',
      u'events_url': u'https://api.github.com/users/bergwolf/events{/privacy}',
      u'followers_url': u'https://api.github.com/users/bergwolf/followers',
      u'following_url': u'https://api.github.com/users/bergwolf/following{/other_user}',
      u'gists_url': u'https://api.github.com/users/bergwolf/gists{/gist_id}',
      u'gravatar_id': u'',
      u'html_url': u'https://github.com/bergwolf',
      u'id': 88972,
      u'login': u'bergwolf',
      u'organizations_url': u'https://api.github.com/users/bergwolf/orgs',
      u'received_events_url': u'https://api.github.com/users/bergwolf/received_events',
      u'repos_url': u'https://api.github.com/users/bergwolf/repos',
      u'site_admin': False,
      u'starred_url': u'https://api.github.com/users/bergwolf/starred{/owner}{/repo}',
      u'subscriptions_url': u'https://api.github.com/users/bergwolf/subscriptions',
      u'type': u'User',
      u'url': u'https://api.github.com/users/bergwolf'}},
    u'html_url': u'https://github.com/hyperhq/hyperstart/pull/135',
    u'id': 77711317,
    u'issue_url': u'https://api.github.com/repos/hyperhq/hyperstart/issues/135',
    u'locked': False,
    u'merge_commit_sha': None,
    u'mergeable': None,
    u'mergeable_state': u'unknown',
    u'merged': False,
    u'merged_at': None,
    u'merged_by': None,
    u'milestone': None,
    u'number': 135,
    u'patch_url': u'https://github.com/hyperhq/hyperstart/pull/135.patch',
    u'review_comment_url': u'https://api.github.com/repos/hyperhq/hyperstart/pulls/comments{/number}',
    u'review_comments': 0,
    u'review_comments_url': u'https://api.github.com/repos/hyperhq/hyperstart/pulls/135/comments',
    u'state': u'open',
    u'statuses_url': u'https://api.github.com/repos/hyperhq/hyperstart/statuses/b40e850cdc9ce74970aee77061833e8ada26d974',
    u'title': u'set up volume ownership',
    u'updated_at': u'2016-07-16T14:55:05Z',
    u'url': u'https://api.github.com/repos/hyperhq/hyperstart/pulls/135',
    u'user': {u'avatar_url': u'https://avatars.githubusercontent.com/u/88972?v=3',
     u'events_url': u'https://api.github.com/users/bergwolf/events{/privacy}',
     u'followers_url': u'https://api.github.com/users/bergwolf/followers',
     u'following_url': u'https://api.github.com/users/bergwolf/following{/other_user}',
     u'gists_url': u'https://api.github.com/users/bergwolf/gists{/gist_id}',
     u'gravatar_id': u'',
     u'html_url': u'https://github.com/bergwolf',
     u'id': 88972,
     u'login': u'bergwolf',
     u'organizations_url': u'https://api.github.com/users/bergwolf/orgs',
     u'received_events_url': u'https://api.github.com/users/bergwolf/received_events',
     u'repos_url': u'https://api.github.com/users/bergwolf/repos',
     u'site_admin': False,
     u'starred_url': u'https://api.github.com/users/bergwolf/starred{/owner}{/repo}',
     u'subscriptions_url': u'https://api.github.com/users/bergwolf/subscriptions',
     u'type': u'User',
     u'url': u'https://api.github.com/users/bergwolf'}}},
  u'public': True,
  u'repo': {u'id': 36213972,
   u'name': u'hyperhq/hyperstart',
   u'url': u'https://api.github.com/repos/hyperhq/hyperstart'},
  u'type': u'PullRequestEvent'},
 {u'actor': {u'avatar_url': u'https://avatars.githubusercontent.com/u/28597?',
   u'display_login': u'sukitha',
   u'gravatar_id': u'',
   u'id': 28597,
   u'login': u'sukitha',
   u'url': u'https://api.github.com/users/sukitha'},
  u'created_at': u'2016-07-16T14:55:06Z',
  u'id': u'4287106634',
  u'org': {u'avatar_url': u'https://avatars.githubusercontent.com/u/8579822?',
   u'gravatar_id': u'',
   u'id': 8579822,
   u'login': u'DuoSoftware',
   u'url': u'https://api.github.com/orgs/DuoSoftware'},
  u'payload': {u'before': u'1459438b56ecdf8a1d5d62fbe483549bc3e9e413',
   u'commits': [{u'author': {u'email': u'sukithaj@gmail.com',
      u'name': u'sukitha'},
     u'distinct': True,
     u'message': u'social connector twitter integration completed',
     u'sha': u'2075f8f87f2f7ffa1df867855b90cc35eae045a5',
     u'url': u'https://api.github.com/repos/DuoSoftware/DVP-SocialConnector/commits/2075f8f87f2f7ffa1df867855b90cc35eae045a5'},
    {u'author': {u'email': u'sukithaj@gmail.com', u'name': u'sukitha'},
     u'distinct': True,
     u'message': u'package.json added',
     u'sha': u'3e495efa0c3951e5510ad27beb2170827dd5b88b',
     u'url': u'https://api.github.com/repos/DuoSoftware/DVP-SocialConnector/commits/3e495efa0c3951e5510ad27beb2170827dd5b88b'}],
   u'distinct_size': 2,
   u'head': u'3e495efa0c3951e5510ad27beb2170827dd5b88b',
   u'push_id': 1206229651,
   u'ref': u'refs/heads/master',
   u'size': 2},
  u'public': True,
  u'repo': {u'id': 63352921,
   u'name': u'DuoSoftware/DVP-SocialConnector',
   u'url': u'https://api.github.com/repos/DuoSoftware/DVP-SocialConnector'},
  u'type': u'PushEvent'},
 {u'actor': {u'avatar_url': u'https://avatars.githubusercontent.com/u/6850547?',
   u'display_login': u'bLightZP',
   u'gravatar_id': u'',
   u'id': 6850547,
   u'login': u'bLightZP',
   u'url': u'https://api.github.com/users/bLightZP'},
  u'created_at': u'2016-07-16T14:55:06Z',
  u'id': u'4287106633',
  u'payload': {u'description': u'A thread-safe windows meta-data scraper DLL for Movies and TV series based on themoviedb.org API',
   u'master_branch': u'master',
   u'pusher_type': u'user',
   u'ref': None,
   u'ref_type': u'repository'},
  u'public': True,
  u'repo': {u'id': 63487762,
   u'name': u'bLightZP/themoviedb.org-scraper',
   u'url': u'https://api.github.com/repos/bLightZP/themoviedb.org-scraper'},
  u'type': u'CreateEvent'},
 {u'actor': {u'avatar_url': u'https://avatars.githubusercontent.com/u/6240766?',
   u'display_login': u'jorgecoa',
   u'gravatar_id': u'',
   u'id': 6240766,
   u'login': u'jorgecoa',
   u'url': u'https://api.github.com/users/jorgecoa'},
  u'created_at': u'2016-07-16T14:55:05Z',
  u'id': u'4287106630',
  u'org': {u'avatar_url': u'https://avatars.githubusercontent.com/u/5198284?',
   u'gravatar_id': u'',
   u'id': 5198284,
   u'login': u'tagtog',
   u'url': u'https://api.github.com/orgs/tagtog'},
  u'payload': {u'pages': [{u'action': u'edited',
     u'html_url': u'/tagtog/tagtog-doc/wiki/API-documents-v0.1',
     u'page_name': u'API-documents-v0.1',
     u'sha': u'e1ba90b0e6add2ed1fa038d582e8bb0dc10b8f29',
     u'summary': None,
     u'title': u'API documents v0.1'}]},
  u'public': True,
  u'repo': {u'id': 30113250,
   u'name': u'tagtog/tagtog-doc',
   u'url': u'https://api.github.com/repos/tagtog/tagtog-doc'},
  u'type': u'GollumEvent'},
 {u'actor': {u'avatar_url': u'https://avatars.githubusercontent.com/u/7716796?',
   u'display_login': u'vise950',
   u'gravatar_id': u'',
   u'id': 7716796,
   u'login': u'vise950',
   u'url': u'https://api.github.com/users/vise950'},
  u'created_at': u'2016-07-16T14:55:05Z',
  u'id': u'4287106627',
  u'payload': {u'action': u'started'},
  u'public': True,
  u'repo': {u'id': 55449339,
   u'name': u'HeinrichReimer/android-issue-reporter',
   u'url': u'https://api.github.com/repos/HeinrichReimer/android-issue-reporter'},
  u'type': u'WatchEvent'},
 {u'actor': {u'avatar_url': u'https://avatars.githubusercontent.com/u/10327896?',
   u'display_login': u'ailispaw',
   u'gravatar_id': u'',
   u'id': 10327896,
   u'login': u'ailispaw',
   u'url': u'https://api.github.com/users/ailispaw'},
  u'created_at': u'2016-07-16T14:55:05Z',
  u'id': u'4287106624',
  u'payload': {u'action': u'created',
   u'comment': {u'body': u'I checked with `ailispaw/dnsdock:1.12.0`, the old one, but it seems fine here.\r\nHow long does that the "while" take?',
    u'created_at': u'2016-07-16T14:55:05Z',
    u'html_url': u'https://github.com/ailispaw/dnsdock/pull/1#issuecomment-233134070',
    u'id': 233134070,
    u'issue_url': u'https://api.github.com/repos/ailispaw/dnsdock/issues/1',
    u'updated_at': u'2016-07-16T14:55:05Z',
    u'url': u'https://api.github.com/repos/ailispaw/dnsdock/issues/comments/233134070',
    u'user': {u'avatar_url': u'https://avatars.githubusercontent.com/u/10327896?v=3',
     u'events_url': u'https://api.github.com/users/ailispaw/events{/privacy}',
     u'followers_url': u'https://api.github.com/users/ailispaw/followers',
     u'following_url': u'https://api.github.com/users/ailispaw/following{/other_user}',
     u'gists_url': u'https://api.github.com/users/ailispaw/gists{/gist_id}',
     u'gravatar_id': u'',
     u'html_url': u'https://github.com/ailispaw',
     u'id': 10327896,
     u'login': u'ailispaw',
     u'organizations_url': u'https://api.github.com/users/ailispaw/orgs',
     u'received_events_url': u'https://api.github.com/users/ailispaw/received_events',
     u'repos_url': u'https://api.github.com/users/ailispaw/repos',
     u'site_admin': False,
     u'starred_url': u'https://api.github.com/users/ailispaw/starred{/owner}{/repo}',
     u'subscriptions_url': u'https://api.github.com/users/ailispaw/subscriptions',
     u'type': u'User',
     u'url': u'https://api.github.com/users/ailispaw'}},
   u'issue': {u'assignee': None,
    u'assignees': [],
    u'body': u'Untested and shameless stolen from https://github.com/qalex/dnsdock/commit/3f14a3bb0a563368d2eadba814262094b4f5483b',
    u'closed_at': u'2016-07-11T17:17:27Z',
    u'comments': 9,
    u'comments_url': u'https://api.github.com/repos/ailispaw/dnsdock/issues/1/comments',
    u'created_at': u'2016-07-11T07:15:42Z',
    u'events_url': u'https://api.github.com/repos/ailispaw/dnsdock/issues/1/events',
    u'html_url': u'https://github.com/ailispaw/dnsdock/pull/1',
    u'id': 164773956,
    u'labels': [],
    u'labels_url': u'https://api.github.com/repos/ailispaw/dnsdock/issues/1/labels{/name}',
    u'locked': False,
    u'milestone': None,
    u'number': 1,
    u'pull_request': {u'diff_url': u'https://github.com/ailispaw/dnsdock/pull/1.diff',
     u'html_url': u'https://github.com/ailispaw/dnsdock/pull/1',
     u'patch_url': u'https://github.com/ailispaw/dnsdock/pull/1.patch',
     u'url': u'https://api.github.com/repos/ailispaw/dnsdock/pulls/1'},
    u'repository_url': u'https://api.github.com/repos/ailispaw/dnsdock',
    u'state': u'closed',
    u'title': u'Prettify json response',
    u'updated_at': u'2016-07-16T14:55:05Z',
    u'url': u'https://api.github.com/repos/ailispaw/dnsdock/issues/1',
    u'user': {u'avatar_url': u'https://avatars.githubusercontent.com/u/117409?v=3',
     u'events_url': u'https://api.github.com/users/jverdeyen/events{/privacy}',
     u'followers_url': u'https://api.github.com/users/jverdeyen/followers',
     u'following_url': u'https://api.github.com/users/jverdeyen/following{/other_user}',
     u'gists_url': u'https://api.github.com/users/jverdeyen/gists{/gist_id}',
     u'gravatar_id': u'',
     u'html_url': u'https://github.com/jverdeyen',
     u'id': 117409,
     u'login': u'jverdeyen',
     u'organizations_url': u'https://api.github.com/users/jverdeyen/orgs',
     u'received_events_url': u'https://api.github.com/users/jverdeyen/received_events',
     u'repos_url': u'https://api.github.com/users/jverdeyen/repos',
     u'site_admin': False,
     u'starred_url': u'https://api.github.com/users/jverdeyen/starred{/owner}{/repo}',
     u'subscriptions_url': u'https://api.github.com/users/jverdeyen/subscriptions',
     u'type': u'User',
     u'url': u'https://api.github.com/users/jverdeyen'}}},
  u'public': True,
  u'repo': {u'id': 59909161,
   u'name': u'ailispaw/dnsdock',
   u'url': u'https://api.github.com/repos/ailispaw/dnsdock'},
  u'type': u'IssueCommentEvent'},
 {u'actor': {u'avatar_url': u'https://avatars.githubusercontent.com/u/14175800?',
   u'display_login': u'OpenLocalizationTest',
   u'gravatar_id': u'',
   u'id': 14175800,
   u'login': u'OpenLocalizationTest',
   u'url': u'https://api.github.com/users/OpenLocalizationTest'},
  u'created_at': u'2016-07-16T14:55:05Z',
  u'id': u'4287106623',
  u'org': {u'avatar_url': u'https://avatars.githubusercontent.com/u/15205858?',
   u'gravatar_id': u'',
   u'id': 15205858,
   u'login': u'OpenLocalizationTestOrg',
   u'url': u'https://api.github.com/orgs/OpenLocalizationTestOrg'},
  u'payload': {u'before': u'87d1f0cfe8eeb51e7c8e012bac0759593d68ff6d',
   u'commits': [{u'author': {u'email': u'openloc@microsoft.com',
      u'name': u'OpenLocalizationTest'},
     u'distinct': True,
     u'message': u'add/update/delete test markdown file',
     u'sha': u'807ca5fc65c4c547356c541aed7b4dda035ea154',
     u'url': u'https://api.github.com/repos/OpenLocalizationTestOrg/oltest/commits/807ca5fc65c4c547356c541aed7b4dda035ea154'}],
   u'distinct_size': 1,
   u'head': u'807ca5fc65c4c547356c541aed7b4dda035ea154',
   u'push_id': 1206229649,
   u'ref': u'refs/heads/ci',
   u'size': 1},
  u'public': True,
  u'repo': {u'id': 62284542,
   u'name': u'OpenLocalizationTestOrg/oltest',
   u'url': u'https://api.github.com/repos/OpenLocalizationTestOrg/oltest'},
  u'type': u'PushEvent'},
 {u'actor': {u'avatar_url': u'https://avatars.githubusercontent.com/u/488515?',
   u'display_login': u'lmars',
   u'gravatar_id': u'',
   u'id': 488515,
   u'login': u'lmars',
   u'url': u'https://api.github.com/users/lmars'},
  u'created_at': u'2016-07-16T14:55:04Z',
  u'id': u'4287106618',
  u'org': {u'avatar_url': u'https://avatars.githubusercontent.com/u/4973613?',
   u'gravatar_id': u'',
   u'id': 4973613,
   u'login': u'flynn',
   u'url': u'https://api.github.com/orgs/flynn'},
  u'payload': {u'action': u'created',
   u'comment': {u'body': u'Slug release args fixed in 174c899.',
    u'created_at': u'2016-07-16T14:55:04Z',
    u'html_url': u'https://github.com/flynn/flynn/pull/3138#issuecomment-233134069',
    u'id': 233134069,
    u'issue_url': u'https://api.github.com/repos/flynn/flynn/issues/3138',
    u'updated_at': u'2016-07-16T14:55:04Z',
    u'url': u'https://api.github.com/repos/flynn/flynn/issues/comments/233134069',
    u'user': {u'avatar_url': u'https://avatars.githubusercontent.com/u/488515?v=3',
     u'events_url': u'https://api.github.com/users/lmars/events{/privacy}',
     u'followers_url': u'https://api.github.com/users/lmars/followers',
     u'following_url': u'https://api.github.com/users/lmars/following{/other_user}',
     u'gists_url': u'https://api.github.com/users/lmars/gists{/gist_id}',
     u'gravatar_id': u'',
     u'html_url': u'https://github.com/lmars',
     u'id': 488515,
     u'login': u'lmars',
     u'organizations_url': u'https://api.github.com/users/lmars/orgs',
     u'received_events_url': u'https://api.github.com/users/lmars/received_events',
     u'repos_url': u'https://api.github.com/users/lmars/repos',
     u'site_admin': False,
     u'starred_url': u'https://api.github.com/users/lmars/starred{/owner}{/repo}',
     u'subscriptions_url': u'https://api.github.com/users/lmars/subscriptions',
     u'type': u'User',
     u'url': u'https://api.github.com/users/lmars'}},
   u'issue': {u'assignee': None,
    u'assignees': [],
    u'body': u'This consolidates the `Entrypoint` and `Cmd` fields into a single `Args` field, which is simpler and more compatible with the changes proposed in #3100.\r\n\r\nThe `Entrypoint` in Dockerfiles is now largely redundant (except when used as a fallback when a job has no explicit `Args`, e.g. blobstore), and is now explicitly set in the bootstrap manifest, with a migration added to update the releases in the database.\r\n\r\nI have also included a change to the scripts to support bootstrapping from a backup URL, and I have uploaded a backup of `v20160624.1` (which includes the NodeJS example app) at https://s3.amazonaws.com/flynn-test/backups/nodejs-v20160624.1.tar.\r\n\r\nUsing the above, I manually tested restoring from a backup:\r\n\r\n```\r\n$ script/bootstrap-flynn --from-backup https://s3.amazonaws.com/flynn-test/backups/nodejs-v20160624.1.tar\r\n===> 12:34:29.787 using backup URL https://s3.amazonaws.com/flynn-test/backups/nodejs-v20160624.1.tar\r\n...\r\n12:34:30.328530 check online-hosts\r\n12:34:31.329800 run-app discoverd\r\n12:34:31.440595 run-app flannel\r\n12:34:31.502869 wait-hosts wait-hosts\r\n12:34:33.505763 run-app postgres\r\n12:34:33.815807 wait postgres-wait\r\n12:34:35.829652 restore-postgres restore\r\n12:34:38.320593 run-app controller\r\n12:34:38.442225 wait-controller wait-controller\r\n12:34:39.004028 run-app blobstore\r\n12:34:39.106169 wait blobstore-wait\r\n12:34:39.120159 run-app controller-scheduler\r\n12:34:39.223460 status-check status\r\n12:34:41.153589 cluster-monitor cluster-monitor\r\n\r\n$ flynn -a nodejs ps\r\nID                                          TYPE  STATE  CREATED        RELEASE\r\nhost0-1c6b8b48-0e05-49b5-8c95-e33b5c18a78f  web   up     8 seconds ago  52ffe7cb-7b4c-4461-8c5d-17503448dd1d\r\n```',
    u'closed_at': None,
    u'comments': 2,
    u'comments_url': u'https://api.github.com/repos/flynn/flynn/issues/3138/comments',
    u'created_at': u'2016-07-16T12:53:42Z',
    u'events_url': u'https://api.github.com/repos/flynn/flynn/issues/3138/events',
    u'html_url': u'https://github.com/flynn/flynn/pull/3138',
    u'id': 165928060,
    u'labels': [],
    u'labels_url': u'https://api.github.com/repos/flynn/flynn/issues/3138/labels{/name}',
    u'locked': False,
    u'milestone': None,
    u'number': 3138,
    u'pull_request': {u'diff_url': u'https://github.com/flynn/flynn/pull/3138.diff',
     u'html_url': u'https://github.com/flynn/flynn/pull/3138',
     u'patch_url': u'https://github.com/flynn/flynn/pull/3138.patch',
     u'url': u'https://api.github.com/repos/flynn/flynn/pulls/3138'},
    u'repository_url': u'https://api.github.com/repos/flynn/flynn',
    u'state': u'open',
    u'title': u'all: Replace Entrypoint / Cmd with Args',
    u'updated_at': u'2016-07-16T14:55:04Z',
    u'url': u'https://api.github.com/repos/flynn/flynn/issues/3138',
    u'user': {u'avatar_url': u'https://avatars.githubusercontent.com/u/488515?v=3',
     u'events_url': u'https://api.github.com/users/lmars/events{/privacy}',
     u'followers_url': u'https://api.github.com/users/lmars/followers',
     u'following_url': u'https://api.github.com/users/lmars/following{/other_user}',
     u'gists_url': u'https://api.github.com/users/lmars/gists{/gist_id}',
     u'gravatar_id': u'',
     u'html_url': u'https://github.com/lmars',
     u'id': 488515,
     u'login': u'lmars',
     u'organizations_url': u'https://api.github.com/users/lmars/orgs',
     u'received_events_url': u'https://api.github.com/users/lmars/received_events',
     u'repos_url': u'https://api.github.com/users/lmars/repos',
     u'site_admin': False,
     u'starred_url': u'https://api.github.com/users/lmars/starred{/owner}{/repo}',
     u'subscriptions_url': u'https://api.github.com/users/lmars/subscriptions',
     u'type': u'User',
     u'url': u'https://api.github.com/users/lmars'}}},
  u'public': True,
  u'repo': {u'id': 11290232,
   u'name': u'flynn/flynn',
   u'url': u'https://api.github.com/repos/flynn/flynn'},
  u'type': u'IssueCommentEvent'},
 {u'actor': {u'avatar_url': u'https://avatars.githubusercontent.com/u/533180?',
   u'display_login': u'scriptzteam',
   u'gravatar_id': u'',
   u'id': 533180,
   u'login': u'scriptzteam',
   u'url': u'https://api.github.com/users/scriptzteam'},
  u'created_at': u'2016-07-16T14:55:04Z',
  u'id': u'4287106614',
  u'payload': {u'before': u'9f02f4f45bb85e53d07b5362d709e58bdb5879eb',
   u'commits': [{u'author': {u'email': u'scriptzteam@users.noreply.github.com',
      u'name': u'[sCRiPTz-TEAM]'},
     u'distinct': True,
     u'message': u'uPdAtEd: 2016-07-16_16-55-02',
     u'sha': u'5f41de82cd84aed1fe564744a1b735971349c85c',
     u'url': u'https://api.github.com/repos/scriptzteam/BitTorrent_DHT_v2/commits/5f41de82cd84aed1fe564744a1b735971349c85c'}],
   u'distinct_size': 1,
   u'head': u'5f41de82cd84aed1fe564744a1b735971349c85c',
   u'push_id': 1206229645,
   u'ref': u'refs/heads/master',
   u'size': 1},
  u'public': True,
  u'repo': {u'id': 61098634,
   u'name': u'scriptzteam/BitTorrent_DHT_v2',
   u'url': u'https://api.github.com/repos/scriptzteam/BitTorrent_DHT_v2'},
  u'type': u'PushEvent'},
 {u'actor': {u'avatar_url': u'https://avatars.githubusercontent.com/u/1981198?',
   u'display_login': u'thejsj',
   u'gravatar_id': u'',
   u'id': 1981198,
   u'login': u'thejsj',
   u'url': u'https://api.github.com/users/thejsj'},
  u'created_at': u'2016-07-16T14:55:04Z',
  u'id': u'4287106613',
  u'org': {u'avatar_url': u'https://avatars.githubusercontent.com/u/17654916?',
   u'gravatar_id': u'',
   u'id': 17654916,
   u'login': u'RunnableTest',
   u'url': u'https://api.github.com/orgs/RunnableTest'},
  u'payload': {u'description': u'Repo for testing Github branch creation',
   u'master_branch': u'master',
   u'pusher_type': u'user',
   u'ref': u'test-branch-1468680901872',
   u'ref_type': u'branch'},
  u'public': True,
  u'repo': {u'id': 54419658,
   u'name': u'RunnableTest/canary-github-branch',
   u'url': u'https://api.github.com/repos/RunnableTest/canary-github-branch'},
  u'type': u'CreateEvent'},
 {u'actor': {u'avatar_url': u'https://avatars.githubusercontent.com/u/5238592?',
   u'display_login': u'antoinepairet',
   u'gravatar_id': u'',
   u'id': 5238592,
   u'login': u'antoinepairet',
   u'url': u'https://api.github.com/users/antoinepairet'},
  u'created_at': u'2016-07-16T14:55:04Z',
  u'id': u'4287106610',
  u'org': {u'avatar_url': u'https://avatars.githubusercontent.com/u/559357?',
   u'gravatar_id': u'',
   u'id': 559357,
   u'login': u'dropbox',
   u'url': u'https://api.github.com/orgs/dropbox'},
  u'payload': {u'action': u'started'},
  u'public': True,
  u'repo': {u'id': 63262178,
   u'name': u'dropbox/lepton',
   u'url': u'https://api.github.com/repos/dropbox/lepton'},
  u'type': u'WatchEvent'},
 {u'actor': {u'avatar_url': u'https://avatars.githubusercontent.com/u/6375962?',
   u'display_login': u'djcoder100',
   u'gravatar_id': u'',
   u'id': 6375962,
   u'login': u'djcoder100',
   u'url': u'https://api.github.com/users/djcoder100'},
  u'created_at': u'2016-07-16T14:55:03Z',
  u'id': u'4287106606',
  u'payload': {u'description': None,
   u'master_branch': u'master',
   u'pusher_type': u'user',
   u'ref': u'master',
   u'ref_type': u'branch'},
  u'public': True,
  u'repo': {u'id': 63487761,
   u'name': u'djcoder100/project-codekatas',
   u'url': u'https://api.github.com/repos/djcoder100/project-codekatas'},
  u'type': u'CreateEvent'},
 {u'actor': {u'avatar_url': u'https://avatars.githubusercontent.com/u/1426933?',
   u'display_login': u'Eddpt',
   u'gravatar_id': u'',
   u'id': 1426933,
   u'login': u'Eddpt',
   u'url': u'https://api.github.com/users/Eddpt'},
  u'created_at': u'2016-07-16T14:55:03Z',
  u'id': u'4287106605',
  u'payload': {u'before': u'd6208da240fae0554d81aa4aa73f9af50f431968',
   u'commits': [{u'author': {u'email': u'Eddpt@users.noreply.github.com',
      u'name': u'Edgar Antunes'},
     u'distinct': True,
     u'message': u'Add Tab Bar + Sample with Parallax effect\n\nAdded a custom Header View, with a button, capable of:\n1. Allow interactions with itself and its children + allow scrolling.\n2. Allow to be scaled up using the well known "parallax" effect\nwhere the header makes the image scale up.\n\nThe parallax effect if done exclusively in Interface Builder, thanks\nto auto layout, avoiding the need to implement UIScrollView Delegates\nand perform transforms / frame changes (which would inevitably impact\nthe other auto-layout constraints set up between child views).',
     u'sha': u'9449e5d7a1d4f8946c5d2b9b12f889b318cfd7ae',
     u'url': u'https://api.github.com/repos/Eddpt/StackViewTest/commits/9449e5d7a1d4f8946c5d2b9b12f889b318cfd7ae'},
    {u'author': {u'email': u'Eddpt@users.noreply.github.com',
      u'name': u'Edgar Antunes'},
     u'distinct': True,
     u'message': u'Add icons to differentiate between the tab bars.',
     u'sha': u'42e4a05d877ecdf5e4d9dad7c0c7288a443c0c7d',
     u'url': u'https://api.github.com/repos/Eddpt/StackViewTest/commits/42e4a05d877ecdf5e4d9dad7c0c7288a443c0c7d'}],
   u'distinct_size': 2,
   u'head': u'42e4a05d877ecdf5e4d9dad7c0c7288a443c0c7d',
   u'push_id': 1206229642,
   u'ref': u'refs/heads/master',
   u'size': 2},
  u'public': True,
  u'repo': {u'id': 63407915,
   u'name': u'Eddpt/StackViewTest',
   u'url': u'https://api.github.com/repos/Eddpt/StackViewTest'},
  u'type': u'PushEvent'},
 {u'actor': {u'avatar_url': u'https://avatars.githubusercontent.com/u/8828766?',
   u'display_login': u'dylanpinn',
   u'gravatar_id': u'',
   u'id': 8828766,
   u'login': u'dylanpinn',
   u'url': u'https://api.github.com/users/dylanpinn'},
  u'created_at': u'2016-07-16T14:55:03Z',
  u'id': u'4287106604',
  u'payload': {u'before': u'da75d9c543e6aa6e7bb3d5828dd72867649f707a',
   u'commits': [{u'author': {u'email': u'dylan@arcadiandigital.com.au',
      u'name': u'Dylan Pinn'},
     u'distinct': True,
     u'message': u'Codeclimate ignore test files',
     u'sha': u'bb82220185fd309a9ffa48264e5066e7242cae68',
     u'url': u'https://api.github.com/repos/dylanpinn/exercism_ruby/commits/bb82220185fd309a9ffa48264e5066e7242cae68'}],
   u'distinct_size': 1,
   u'head': u'bb82220185fd309a9ffa48264e5066e7242cae68',
   u'push_id': 1206229641,
   u'ref': u'refs/heads/master',
   u'size': 1},
  u'public': True,
  u'repo': {u'id': 43584304,
   u'name': u'dylanpinn/exercism_ruby',
   u'url': u'https://api.github.com/repos/dylanpinn/exercism_ruby'},
  u'type': u'PushEvent'},
 {u'actor': {u'avatar_url': u'https://avatars.githubusercontent.com/u/4996016?',
   u'display_login': u'konec',
   u'gravatar_id': u'',
   u'id': 4996016,
   u'login': u'konec',
   u'url': u'https://api.github.com/users/konec'},
  u'created_at': u'2016-07-16T14:55:03Z',
  u'id': u'4287106603',
  u'payload': {u'before': u'd018f2985c2b97b814444d561c76fc95f7df6a12',
   u'commits': [{u'author': {u'email': u'marcin.konecki@cern.ch',
      u'name': u'Marcin'},
     u'distinct': True,
     u'message': u'deleopment',
     u'sha': u'cc8c7876313d7cea60628c8bb0979c5794dd7694',
     u'url': u'https://api.github.com/repos/konec/usercode-OmtfAnalysis/commits/cc8c7876313d7cea60628c8bb0979c5794dd7694'}],
   u'distinct_size': 1,
   u'head': u'cc8c7876313d7cea60628c8bb0979c5794dd7694',
   u'push_id': 1206229640,
   u'ref': u'refs/heads/master',
   u'size': 1},
  u'public': True,
  u'repo': {u'id': 57128178,
   u'name': u'konec/usercode-OmtfAnalysis',
   u'url': u'https://api.github.com/repos/konec/usercode-OmtfAnalysis'},
  u'type': u'PushEvent'}]

In case the JSON decoding fails, r.json raises an exception. For example, if the response gets a 204 (No Content), or if the response contains invalid JSON, attempting r.json raises ValueError: No JSON object could be decoded.

It should be noted that the success of the call to r.json does not indicate the success of the response. Some servers may return a JSON object in a failed response (e.g. error details with HTTP 500). Such JSON will be decoded and returned. To check that a request is successful, use r.raise_for_status() or check r.status_code is what you expect.


In [39]:
r.status_code


Out[39]:
200

Custom Headers

If you'd like to add HTTP headers to a request, simply pass in a dict to the headers parameter.

For example, we didn't specify our user-agent in the previous example:


In [41]:
url = 'https://api.github.com/some/endpoint'
headers = {'user-agent': 'my-app/0.0.1'}

r = requests.get(url, headers=headers)

Note: Custom headers are given less precedence than more specific sources of information. For instance:

  • Authorization headers set with headers= will be overridden if credentials are specified in .netrc, which in turn will be overridden by the auth= parameter.
  • Authorization headers will be removed if you get redirected off-host.
  • Proxy-Authorization headers will be overridden by proxy credentials provided in the URL.
  • Content-Length headers will be overridden when we can determine the length of the content.

Response Headers

We can view the server's response headers using a Python dictionary:


In [42]:
r.headers


Out[42]:
{'Status': '404 Not Found', 'X-RateLimit-Remaining': '54', 'X-GitHub-Media-Type': 'github.v3', 'X-Content-Type-Options': 'nosniff', 'Content-Security-Policy': "default-src 'none'", 'Access-Control-Expose-Headers': 'ETag, Link, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval', 'Transfer-Encoding': 'chunked', 'X-GitHub-Request-Id': '18062AFE:1167:135C9CD:578A4B4F', 'Strict-Transport-Security': 'max-age=31536000; includeSubdomains; preload', 'X-XSS-Protection': '1; mode=block', 'Server': 'GitHub.com', 'X-RateLimit-Limit': '60', 'Date': 'Sat, 16 Jul 2016 14:57:20 GMT', 'Access-Control-Allow-Origin': '*', 'Content-Type': 'application/json; charset=utf-8', 'X-Frame-Options': 'deny', 'Content-Encoding': 'gzip', 'X-RateLimit-Reset': '1468682975'}

The dictionary is special, though: it's made just for HTTP headers. According to RFC 7230, HTTP Header names are case-insensitive.

So, we can access the headers using any capitalization we want:


In [43]:
r.headers['Content-Type']


Out[43]:
'application/json; charset=utf-8'

In [44]:
r.headers.get('content-type')


Out[44]:
'application/json; charset=utf-8'

Cookies

If a response contains some Cookies, you can quickly access them:


In [59]:
url = 'http://www.cnn.com'
r = requests.get(url)
print(r.cookies.items())


[('countryCode', 'US')]

To send your own cookies to the server, you can use the cookies parameter:


In [60]:
url = 'http://httpbin.org/cookies'
cookies = dict(cookies_are='working')
r = requests.get(url, cookies=cookies)
r.text


Out[60]:
u'{\n  "cookies": {\n    "cookies_are": "working"\n  }\n}\n'

Redirection and History

By default Requests will perform location redirection for all verbs except HEAD.

We can use the history property of the Response object to track redirection.

The Response.history list contains the Response objects that were created in order to complete the request. The list is sorted from the oldest to the most recent response.

For example, GitHub redirects all HTTP requests to HTTPS:


In [61]:
r = requests.get('http://github.com')
r.url


Out[61]:
u'https://github.com/'

In [62]:
r.status_code


Out[62]:
200

In [63]:
r.history


Out[63]:
[<Response [301]>]

If you're using GET, OPTIONS, POST, PUT, PATCH or DELETE, you can disable redirection handling with the allow_redirects parameter:


In [64]:
r = requests.get('http://github.com', allow_redirects=False)

r.status_code


Out[64]:
301

In [65]:
r.history


Out[65]:
[]

If you're using HEAD, you can enable redirection as well:


In [66]:
r = requests.head('http://github.com', allow_redirects=True)
r.url


Out[66]:
u'https://github.com/'

In [67]:
r.history


Out[67]:
[<Response [301]>]

Timeouts

You can tell Requests to stop waiting for a response after a given number of seconds with the timeout parameter:


In [69]:
requests.get('http://github.com', timeout=1)


Out[69]:
<Response [200]>

Note

timeout is not a time limit on the entire response download; rather, an exception is raised if the server has not issued a response for timeout seconds (more precisely, if no bytes have been received on the underlying socket for timeout seconds).

Errors and Exceptions

In the event of a network problem (e.g. DNS failure, refused connection, etc), Requests will raise a ConnectionError exception.

Response.raise_for_status() will raise an HTTPError if the HTTP request returned an unsuccessful status code.

If a request times out, a Timeout exception is raised.

If a request exceeds the configured number of maximum redirections, a TooManyRedirects exception is raised.

All exceptions that Requests explicitly raises inherit from requests.exceptions.RequestException.


In [ ]: