Skip to content

Instantly share code, notes, and snippets.

@rbrath
Last active December 13, 2016 08:41
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save rbrath/5903399 to your computer and use it in GitHub Desktop.
Save rbrath/5903399 to your computer and use it in GitHub Desktop.
Equal Size Cartogram

Equal Size Cartogram vs. Other Cartograms and Choropleth Maps

Traditional geographic data visualizations may use colored countries and/or labels to indicate data values (e.g. choropleth maps). But, countries with smaller land area may be difficult to discern. Further, the size biases the viewer to attend to the countries with larger land areas.

A cartogram distorts the shapes of countries, typically using a different data attribute applied to set the area of each country. This approach creates a cartogram that still results in graphical objects with small area.

The above equal-size cartogram, using a consistent rectangle per country, provides a large consistent box and label for each country. This means that small items are not too small to be visible and also that each item is large enough to have a clearly readable label to add additional information, e.g. country code, in addition to visual attributes such as color. In comparison to a geographic map there are no overlapping labels (click the button).

Data World Bank 2010. World Map Wikipedia.

<!DOCTYPE html>
<html lang="en">
<head> <meta charset="utf-8"> <title>World Map: Equal Size Cartogram vs. Geographic Projection</title>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script type="text/javascript" src="./WorldBankStats2010.js"></script>
<script type="text/javascript" src="./LandGrid.js"></script>
<style type="text/css">
#tooltip {
position: absolute;
width: auto;
height: auto;
padding: 7px;
background-color: #ffff88;
pointer-events: none;
}
#tooltip.hidden { display: none; }
#tooltip p {
margin: 0;
font-family: sans-serif, Arial;
font-size: 12px;
line-height: 14px;
}
text.legendtext {
color: black
font-family: sans-serif, Arial;
font-size: 8px;
line-height: 2px;
}
</style>
</head>
<body>
<div id="tooltip" class="hidden">
<p> <span id="title">text</span> <br>
<span id="value">100</span></p>
</div>
<script type="text/javascript">
//first D3 vis: code rough, magic numbers, etc.
var w = 960; var h = 480; var st = 1; //Width, height, state
//scales
var popscale = d3.scale.linear().domain([0,50000000,1500000000]).range(["#336688","orange","#ff66ff"]);
var latscale = d3.scale.linear().domain([-90,90]).range([h,0]);
var lonscale = d3.scale.linear().domain([-180,-169.2,-169.2,180]).range([w*(3/100),w,0,w*(97/100)]);
var rowscale = d3.scale.linear().domain([0,26]).range([0,h]);
var colscale = d3.scale.linear().domain([0,23]).range([0,w]);
//Set up SVG
var svg = d3.select("body").append("svg").attr("width", w).attr("height", h).attr("fill","black").attr("font-family","Arial Black");
//Base Map - better to use an SVG - how to inline an SVG file?
svg.append("image").attr("x",0).attr("y",0).attr("height",h).attr("width",w).attr("xlink:href","./worldMap.JPG");
var mapmask = svg.append("rect").attr("x",0).attr("y",0).attr("width",w).attr("height",h).attr("fill","#bbe4ed");
// LAND in Grid State <polygon fill="#ED0000" stroke="#000000" stroke-width="1" points="50,100 100,75 100,0 0,0 0,75 "/>
var gridland = svg.selectAll("polygon.land")
.data(landGrid).enter().append("polygon").attr("class","land").attr("fill","#daccbc").attr("stroke","#eadccc")
.attr("points", function(d) { return [0,0, colscale(1),0, colscale(1),rowscale(1), 0,rowscale(1)] })
.attr("transform", function(d) { return "translate(" +
[colscale(d.Y)-colscale(.5) , rowscale(d.X)-14] + ")" });
// COUNTRY label boxes
var labelboxes = svg.selectAll("rect.boxes").data(countryData).enter().append("rect")
.attr("fill","white").attr("class","boxes")
.attr("width",colscale(1)-4).attr("height",rowscale(1)-4)
.attr("x", function(d) {return colscale(d.Col)-colscale(.5)+2; })
.attr("y", function(d) {return rowscale(d.Row)-14+2; });
// COUNTRY Labels
var labels = svg.selectAll("text")
.data(countryData).enter().append("text").attr("font-size",12).attr("text-anchor","middle")
.attr("fill", function(d) {return popscale(d.Population); })
.attr("x",function(d) { return colscale(d.Col); })
.attr("y", function (d) { return rowscale(d.Row); })
.text( function(d) {return d.CountryCode; })
.style("pointer-events","none");
// line above so text doesn't get events
// An SVG BUTTON with Method on click
var button = svg.append("rect").attr("x",5).attr("y",5).attr("width",75).attr("height",28).attr("fill","ivory").attr("stroke","black");
svg.append("text").style("font-family","Arial").attr("x",10).attr("y",25).text("Click Me").style("pointer-events","none");;
// An SVG LEGEND
var clrlegendgrad = svg.append("linearGradient").attr("id","clrlegendgradid");
clrlegendgrad.append("stop").attr("offset", "2%").attr("stop-color",popscale(0));
clrlegendgrad.append("stop").attr("offset","50%").attr("stop-color",popscale(50000000));
clrlegendgrad.append("stop").attr("offset","100%").attr("stop-color",popscale(1500000000));
svg.append("rect").attr("x",190).attr("y",h-15).attr("width",w/4).attr("height",10).style("fill","url(#clrlegendgradid)");
svg.append("text").attr("class","legendtext").attr("x",190).attr("y",h-25).text("Population");
svg.append("text").attr("class","legendtext").attr("x",190).attr("y",h-16).text("0");
svg.append("text").attr("class","legendtext").attr("x",190+w/4*.5).attr("y",h-16).text("50M");
svg.append("text").attr("class","legendtext").attr("x",190+w/4).attr("y",h-16).attr("text-anchor","end").text("1.5B");
button.on("mousedown", function() {
if(st==1) { st =0; }
else { st = 1; }
if(st==0) {
labels.style("font-family","Arial")
.transition()
.attr("x", function(d) {return lonscale(d.Long); })
.attr("y", function(d) {return latscale(d.Lat); })
.attr("font-size",8);
labelboxes.transition(250).attr("fill-opacity",0);
gridland.transition(250).attr("fill-opacity",0).attr("stroke-opacity",0);
mapmask.transition().delay(100).attr("fill-opacity",0);
} else {
labels.style("font-family","Arial Black")
.transition()
.attr("x", function(d) { return colscale(d.Col); })
.attr("y", function (d) { return rowscale(d.Row); })
.attr("font-size",12);
labelboxes.transition(250).attr("fill-opacity",1);
gridland.transition(250).delay(100).attr("fill-opacity",1).attr("stroke-opacity",1);
mapmask.transition().attr("fill-opacity",1);
}
});
labelboxes.on("mouseover", function(d) {
d3.select(this).style("fill","yellow");
// get THIS box's x and y values
var xPos = parseFloat(d3.select(this).attr("x"))+25;
var yPos = parseFloat(d3.select(this).attr("y"))+10;
// update tooltip
d3.select("#tooltip")
.style("left", xPos + "px")
.style("top", yPos + "px")
.select("#title")
.text(d.CountryCode + ": " + d.ShortName);
d3.select("#tooltip").select("#value")
.text("Population (in millions):" + d.Population/1000000);
d3.select ("#tooltip").classed("hidden",false);
});
labelboxes.on("mouseout", function() {
d3.select(this).style("fill","white");
d3.select("#tooltip").classed("hidden", true);
});
</script>
</body>
</html>
var landGrid = [
{
"X": "1",
"Y": "1"
},
{
"X": "1",
"Y": "2"
},
{
"X": "1",
"Y": "10"
},
{
"X": "1",
"Y": "11"
},
{
"X": "1",
"Y": "12"
},
{
"X": "1",
"Y": "13"
},
{
"X": "1",
"Y": "14"
},
{
"X": "1",
"Y": "15"
},
{
"X": "1",
"Y": "16"
},
{
"X": "1",
"Y": "17"
},
{
"X": "1",
"Y": "18"
},
{
"X": "1",
"Y": "19"
},
{
"X": "1",
"Y": "20"
},
{
"X": "1",
"Y": "21"
},
{
"X": "1",
"Y": "22"
},
{
"X": "2",
"Y": "1"
},
{
"X": "2",
"Y": "2"
},
{
"X": "2",
"Y": "3"
},
{
"X": "2",
"Y": "4"
},
{
"X": "2",
"Y": "12"
},
{
"X": "2",
"Y": "13"
},
{
"X": "2",
"Y": "14"
},
{
"X": "2",
"Y": "15"
},
{
"X": "2",
"Y": "16"
},
{
"X": "2",
"Y": "17"
},
{
"X": "2",
"Y": "18"
},
{
"X": "2",
"Y": "19"
},
{
"X": "2",
"Y": "20"
},
{
"X": "2",
"Y": "21"
},
{
"X": "2",
"Y": "22"
},
{
"X": "3",
"Y": "1"
},
{
"X": "3",
"Y": "2"
},
{
"X": "3",
"Y": "3"
},
{
"X": "3",
"Y": "4"
},
{
"X": "3",
"Y": "12"
},
{
"X": "3",
"Y": "13"
},
{
"X": "3",
"Y": "14"
},
{
"X": "3",
"Y": "15"
},
{
"X": "3",
"Y": "16"
},
{
"X": "3",
"Y": "17"
},
{
"X": "3",
"Y": "18"
},
{
"X": "3",
"Y": "19"
},
{
"X": "3",
"Y": "20"
},
{
"X": "3",
"Y": "21"
},
{
"X": "3",
"Y": "22"
},
{
"X": "4",
"Y": "1"
},
{
"X": "4",
"Y": "2"
},
{
"X": "4",
"Y": "3"
},
{
"X": "4",
"Y": "4"
},
{
"X": "4",
"Y": "9"
},
{
"X": "4",
"Y": "10"
},
{
"X": "4",
"Y": "11"
},
{
"X": "4",
"Y": "12"
},
{
"X": "4",
"Y": "13"
},
{
"X": "4",
"Y": "14"
},
{
"X": "4",
"Y": "15"
},
{
"X": "4",
"Y": "16"
},
{
"X": "4",
"Y": "17"
},
{
"X": "4",
"Y": "18"
},
{
"X": "4",
"Y": "19"
},
{
"X": "4",
"Y": "20"
},
{
"X": "4",
"Y": "21"
},
{
"X": "4",
"Y": "22"
},
{
"X": "5",
"Y": "1"
},
{
"X": "5",
"Y": "2"
},
{
"X": "5",
"Y": "3"
},
{
"X": "5",
"Y": "4"
},
{
"X": "5",
"Y": "8"
},
{
"X": "5",
"Y": "9"
},
{
"X": "5",
"Y": "10"
},
{
"X": "5",
"Y": "11"
},
{
"X": "5",
"Y": "12"
},
{
"X": "5",
"Y": "13"
},
{
"X": "5",
"Y": "14"
},
{
"X": "5",
"Y": "15"
},
{
"X": "5",
"Y": "16"
},
{
"X": "5",
"Y": "17"
},
{
"X": "5",
"Y": "18"
},
{
"X": "5",
"Y": "19"
},
{
"X": "5",
"Y": "20"
},
{
"X": "5",
"Y": "21"
},
{
"X": "6",
"Y": "1"
},
{
"X": "6",
"Y": "2"
},
{
"X": "6",
"Y": "3"
},
{
"X": "6",
"Y": "7"
},
{
"X": "6",
"Y": "8"
},
{
"X": "6",
"Y": "9"
},
{
"X": "6",
"Y": "10"
},
{
"X": "6",
"Y": "11"
},
{
"X": "6",
"Y": "12"
},
{
"X": "6",
"Y": "13"
},
{
"X": "6",
"Y": "14"
},
{
"X": "6",
"Y": "15"
},
{
"X": "6",
"Y": "16"
},
{
"X": "6",
"Y": "17"
},
{
"X": "6",
"Y": "18"
},
{
"X": "6",
"Y": "19"
},
{
"X": "6",
"Y": "20"
},
{
"X": "6",
"Y": "21"
},
{
"X": "7",
"Y": "1"
},
{
"X": "7",
"Y": "2"
},
{
"X": "7",
"Y": "3"
},
{
"X": "7",
"Y": "7"
},
{
"X": "7",
"Y": "8"
},
{
"X": "7",
"Y": "9"
},
{
"X": "7",
"Y": "10"
},
{
"X": "7",
"Y": "11"
},
{
"X": "7",
"Y": "12"
},
{
"X": "7",
"Y": "13"
},
{
"X": "7",
"Y": "15"
},
{
"X": "7",
"Y": "16"
},
{
"X": "7",
"Y": "17"
},
{
"X": "7",
"Y": "18"
},
{
"X": "7",
"Y": "19"
},
{
"X": "7",
"Y": "20"
},
{
"X": "7",
"Y": "21"
},
{
"X": "8",
"Y": "1"
},
{
"X": "8",
"Y": "2"
},
{
"X": "8",
"Y": "3"
},
{
"X": "8",
"Y": "6"
},
{
"X": "8",
"Y": "7"
},
{
"X": "8",
"Y": "9"
},
{
"X": "8",
"Y": "11"
},
{
"X": "8",
"Y": "12"
},
{
"X": "8",
"Y": "15"
},
{
"X": "8",
"Y": "16"
},
{
"X": "8",
"Y": "17"
},
{
"X": "8",
"Y": "18"
},
{
"X": "8",
"Y": "19"
},
{
"X": "8",
"Y": "20"
},
{
"X": "9",
"Y": "1"
},
{
"X": "9",
"Y": "3"
},
{
"X": "9",
"Y": "11"
},
{
"X": "9",
"Y": "12"
},
{
"X": "9",
"Y": "14"
},
{
"X": "9",
"Y": "15"
},
{
"X": "9",
"Y": "16"
},
{
"X": "9",
"Y": "17"
},
{
"X": "9",
"Y": "18"
},
{
"X": "9",
"Y": "19"
},
{
"X": "9",
"Y": "20"
},
{
"X": "10",
"Y": "1"
},
{
"X": "10",
"Y": "11"
},
{
"X": "10",
"Y": "12"
},
{
"X": "10",
"Y": "13"
},
{
"X": "10",
"Y": "14"
},
{
"X": "10",
"Y": "15"
},
{
"X": "10",
"Y": "16"
},
{
"X": "10",
"Y": "17"
},
{
"X": "10",
"Y": "18"
},
{
"X": "10",
"Y": "19"
},
{
"X": "10",
"Y": "20"
},
{
"X": "11",
"Y": "1"
},
{
"X": "11",
"Y": "13"
},
{
"X": "11",
"Y": "14"
},
{
"X": "11",
"Y": "15"
},
{
"X": "11",
"Y": "16"
},
{
"X": "11",
"Y": "17"
},
{
"X": "11",
"Y": "18"
},
{
"X": "11",
"Y": "19"
},
{
"X": "11",
"Y": "20"
},
{
"X": "12",
"Y": "1"
},
{
"X": "12",
"Y": "7"
},
{
"X": "12",
"Y": "8"
},
{
"X": "12",
"Y": "9"
},
{
"X": "12",
"Y": "10"
},
{
"X": "12",
"Y": "13"
},
{
"X": "12",
"Y": "14"
},
{
"X": "12",
"Y": "15"
},
{
"X": "12",
"Y": "16"
},
{
"X": "12",
"Y": "17"
},
{
"X": "12",
"Y": "18"
},
{
"X": "12",
"Y": "19"
},
{
"X": "12",
"Y": "20"
},
{
"X": "13",
"Y": "1"
},
{
"X": "13",
"Y": "7"
},
{
"X": "13",
"Y": "8"
},
{
"X": "13",
"Y": "9"
},
{
"X": "13",
"Y": "10"
},
{
"X": "13",
"Y": "11"
},
{
"X": "13",
"Y": "12"
},
{
"X": "13",
"Y": "13"
},
{
"X": "13",
"Y": "14"
},
{
"X": "13",
"Y": "15"
},
{
"X": "13",
"Y": "17"
},
{
"X": "13",
"Y": "18"
},
{
"X": "13",
"Y": "19"
},
{
"X": "14",
"Y": "1"
},
{
"X": "14",
"Y": "7"
},
{
"X": "14",
"Y": "8"
},
{
"X": "14",
"Y": "9"
},
{
"X": "14",
"Y": "10"
},
{
"X": "14",
"Y": "11"
},
{
"X": "14",
"Y": "12"
},
{
"X": "14",
"Y": "14"
},
{
"X": "14",
"Y": "15"
},
{
"X": "14",
"Y": "18"
},
{
"X": "14",
"Y": "19"
},
{
"X": "15",
"Y": "1"
},
{
"X": "15",
"Y": "2"
},
{
"X": "15",
"Y": "7"
},
{
"X": "15",
"Y": "8"
},
{
"X": "15",
"Y": "9"
},
{
"X": "15",
"Y": "10"
},
{
"X": "15",
"Y": "11"
},
{
"X": "15",
"Y": "12"
},
{
"X": "15",
"Y": "13"
},
{
"X": "15",
"Y": "15"
},
{
"X": "15",
"Y": "16"
},
{
"X": "15",
"Y": "19"
},
{
"X": "16",
"Y": "1"
},
{
"X": "16",
"Y": "2"
},
{
"X": "16",
"Y": "7"
},
{
"X": "16",
"Y": "8"
},
{
"X": "16",
"Y": "9"
},
{
"X": "16",
"Y": "10"
},
{
"X": "16",
"Y": "11"
},
{
"X": "16",
"Y": "12"
},
{
"X": "16",
"Y": "13"
},
{
"X": "16",
"Y": "15"
},
{
"X": "16",
"Y": "16"
},
{
"X": "16",
"Y": "19"
},
{
"X": "17",
"Y": "1"
},
{
"X": "17",
"Y": "2"
},
{
"X": "17",
"Y": "7"
},
{
"X": "17",
"Y": "8"
},
{
"X": "17",
"Y": "9"
},
{
"X": "17",
"Y": "10"
},
{
"X": "17",
"Y": "11"
},
{
"X": "17",
"Y": "12"
},
{
"X": "17",
"Y": "13"
},
{
"X": "17",
"Y": "14"
},
{
"X": "17",
"Y": "19"
},
{
"X": "18",
"Y": "2"
},
{
"X": "18",
"Y": "7"
},
{
"X": "18",
"Y": "8"
},
{
"X": "18",
"Y": "9"
},
{
"X": "18",
"Y": "10"
},
{
"X": "18",
"Y": "11"
},
{
"X": "18",
"Y": "12"
},
{
"X": "18",
"Y": "13"
},
{
"X": "18",
"Y": "14"
},
{
"X": "18",
"Y": "15"
},
{
"X": "19",
"Y": "2"
},
{
"X": "19",
"Y": "11"
},
{
"X": "19",
"Y": "12"
},
{
"X": "19",
"Y": "13"
},
{
"X": "19",
"Y": "14"
},
{
"X": "20",
"Y": "2"
},
{
"X": "20",
"Y": "3"
},
{
"X": "20",
"Y": "4"
},
{
"X": "20",
"Y": "5"
},
{
"X": "20",
"Y": "11"
},
{
"X": "20",
"Y": "12"
},
{
"X": "20",
"Y": "13"
},
{
"X": "20",
"Y": "14"
},
{
"X": "21",
"Y": "2"
},
{
"X": "21",
"Y": "3"
},
{
"X": "21",
"Y": "4"
},
{
"X": "21",
"Y": "5"
},
{
"X": "21",
"Y": "11"
},
{
"X": "21",
"Y": "12"
},
{
"X": "21",
"Y": "13"
},
{
"X": "21",
"Y": "14"
},
{
"X": "22",
"Y": "2"
},
{
"X": "22",
"Y": "3"
},
{
"X": "22",
"Y": "4"
},
{
"X": "22",
"Y": "5"
},
{
"X": "22",
"Y": "11"
},
{
"X": "22",
"Y": "12"
},
{
"X": "22",
"Y": "13"
},
{
"X": "22",
"Y": "18"
},
{
"X": "22",
"Y": "19"
},
{
"X": "22",
"Y": "20"
},
{
"X": "23",
"Y": "2"
},
{
"X": "23",
"Y": "3"
},
{
"X": "23",
"Y": "4"
},
{
"X": "23",
"Y": "11"
},
{
"X": "23",
"Y": "12"
},
{
"X": "23",
"Y": "13"
},
{
"X": "23",
"Y": "18"
},
{
"X": "23",
"Y": "19"
},
{
"X": "23",
"Y": "20"
},
{
"X": "24",
"Y": "2"
},
{
"X": "24",
"Y": "3"
},
{
"X": "24",
"Y": "4"
},
{
"X": "24",
"Y": "11"
},
{
"X": "24",
"Y": "12"
},
{
"X": "24",
"Y": "13"
},
{
"X": "25",
"Y": "2"
},
{
"X": "25",
"Y": "3"
},
{
"X": "25",
"Y": "11"
},
{
"X": "25",
"Y": "12"
}
]
// JSON data structure.
var countryData = [
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Afghanistan",
"CountryCode": "AFG",
"ShortName": "Afghanistan",
"AvgLong": "65.00",
"Row": "11",
"Col": "16",
"Region": "APAC",
"Continent": "Indian",
"Population": "34385068",
"PercentFemale": "48.2627532",
"LifeExpectancy": "48.28219512",
"Inflation": "9.437322237",
"HealthSpendPctGDP": "7.584483384",
"GDPperCapita": "",
"PctGDPgrowth": "8.434559687",
"TradeBalance": "-46.96712143",
"PctEmploy": "45.09999847",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "2.237262033",
"PctHIV": "0.1",
"Long": "65.00",
"Lat": "33.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Albania",
"CountryCode": "ALB",
"ShortName": "Albania",
"AvgLong": "20.00",
"Row": "10",
"Col": "11",
"Region": "EMEA",
"Continent": "Europe",
"Population": "3204284",
"PercentFemale": "49.92341503",
"LifeExpectancy": "76.90095122",
"Inflation": "3.45934259",
"HealthSpendPctGDP": "6.547297762",
"GDPperCapita": "1915.424459",
"PctGDPgrowth": "3.5",
"TradeBalance": "-21.4494264",
"PctEmploy": "51.79999924",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "9.658975297",
"PctHIV": "",
"Long": "20.00",
"Lat": "41.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Algeria",
"CountryCode": "DZA",
"ShortName": "Algeria",
"AvgLong": "3.00",
"Row": "12",
"Col": "9",
"Region": "EMEA",
"Continent": "Africa",
"Population": "35468208",
"PercentFemale": "49.53129856",
"LifeExpectancy": "72.85253659",
"Inflation": "16.24561679",
"HealthSpendPctGDP": "4.172062839",
"GDPperCapita": "2231.980246",
"PctGDPgrowth": "3.3",
"TradeBalance": "9.333726437",
"PctEmploy": "38.59999847",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "4.592352114",
"PctHIV": "",
"Long": "3.00",
"Lat": "28.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "American Samoa",
"CountryCode": "ASM",
"ShortName": "American Samoa",
"AvgLong": "-170.00",
"Row": "19",
"Col": "22",
"Region": "APAC",
"Continent": "Oceania",
"Population": "68420",
"PercentFemale": "",
"LifeExpectancy": "",
"Inflation": "",
"HealthSpendPctGDP": "",
"GDPperCapita": "",
"PctGDPgrowth": "",
"TradeBalance": "",
"PctEmploy": "",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "",
"PctHIV": "",
"Long": "-170.00",
"Lat": "-14.33"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Andorra",
"CountryCode": "ADO",
"ShortName": "Andorra",
"AvgLong": "1.60",
"Row": "7",
"Col": "7",
"Region": "EMEA",
"Continent": "Europe",
"Population": "84864",
"PercentFemale": "",
"LifeExpectancy": "",
"Inflation": "",
"HealthSpendPctGDP": "7.522876087",
"GDPperCapita": "",
"PctGDPgrowth": "",
"TradeBalance": "",
"PctEmploy": "",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "",
"PctHIV": "",
"Long": "1.60",
"Lat": "42.50"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Angola",
"CountryCode": "AGO",
"ShortName": "Angola",
"AvgLong": "18.50",
"Row": "23",
"Col": "11",
"Region": "EMEA",
"Continent": "Africa",
"Population": "19081912",
"PercentFemale": "50.47751504",
"LifeExpectancy": "50.65365854",
"Inflation": "22.39392352",
"HealthSpendPctGDP": "2.850614364",
"GDPperCapita": "623.2452749",
"PctGDPgrowth": "3.407643634",
"TradeBalance": "19.46313847",
"PctEmploy": "64.40000153",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "2.481004",
"PctHIV": "2.1",
"Long": "18.50",
"Lat": "-12.50"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Antigua and Barbuda",
"CountryCode": "ATG",
"ShortName": "Antigua + Barbuda",
"AvgLong": "-61.80",
"Row": "15",
"Col": "5",
"Region": "Americas",
"Continent": "Central America",
"Population": "88710",
"PercentFemale": "",
"LifeExpectancy": "",
"Inflation": "3.178335924",
"HealthSpendPctGDP": "6.027903714",
"GDPperCapita": "10614.79432",
"PctGDPgrowth": "-7.909128488",
"TradeBalance": "-13.54349878",
"PctEmploy": "",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "",
"PctHIV": "",
"Long": "-61.80",
"Lat": "17.05"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Argentina",
"CountryCode": "ARG",
"ShortName": "Argentina",
"AvgLong": "-64.00",
"Row": "25",
"Col": "3",
"Region": "Americas",
"Continent": "South America",
"Population": "40412376",
"PercentFemale": "51.08328449",
"LifeExpectancy": "75.63214634",
"Inflation": "15.37617236",
"HealthSpendPctGDP": "8.096118769",
"GDPperCapita": "10749.31922",
"PctGDPgrowth": "9.160916925",
"TradeBalance": "3.306269206",
"PctEmploy": "56.09999847",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "10.58248592",
"PctHIV": "0.4",
"Long": "-64.00",
"Lat": "-34.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Armenia",
"CountryCode": "ARM",
"ShortName": "Armenia",
"AvgLong": "45.00",
"Row": "10",
"Col": "14",
"Region": "EMEA",
"Continent": "Middle East",
"Population": "3092072",
"PercentFemale": "53.45580569",
"LifeExpectancy": "73.78356098",
"Inflation": "9.169921916",
"HealthSpendPctGDP": "4.404134983",
"GDPperCapita": "1326.710864",
"PctGDPgrowth": "2.096365892",
"TradeBalance": "-24.19733988",
"PctEmploy": "41.20000076",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "11.12108644",
"PctHIV": "0.2",
"Long": "45.00",
"Lat": "40.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Aruba",
"CountryCode": "ABW",
"ShortName": "Aruba",
"AvgLong": "-69.97",
"Row": "18",
"Col": "3",
"Region": "Americas",
"Continent": "Central America",
"Population": "107488",
"PercentFemale": "52.56493748",
"LifeExpectancy": "74.97517073",
"Inflation": "",
"HealthSpendPctGDP": "",
"GDPperCapita": "",
"PctGDPgrowth": "",
"TradeBalance": "",
"PctEmploy": "",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "9.500595415",
"PctHIV": "",
"Long": "-69.97",
"Lat": "12.50"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Australia",
"CountryCode": "AUS",
"ShortName": "Australia",
"AvgLong": "133.00",
"Row": "23",
"Col": "19",
"Region": "APAC",
"Continent": "Oceania",
"Population": "22299800",
"PercentFemale": "50.18650657",
"LifeExpectancy": "81.69512195",
"Inflation": "0.935619836",
"HealthSpendPctGDP": "8.727273115",
"GDPperCapita": "25190.83986",
"PctGDPgrowth": "2.329710254",
"TradeBalance": "-0.357280923",
"PctEmploy": "62.09999847",
"PctChildEmployment": "",
"GovtDebt": "29.31727415",
"PopOver65": "13.44532679",
"PctHIV": "0.2",
"Long": "133.00",
"Lat": "-27.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Austria",
"CountryCode": "AUT",
"ShortName": "Austria",
"AvgLong": "13.33",
"Row": "6",
"Col": "10",
"Region": "EMEA",
"Continent": "Europe",
"Population": "8389771",
"PercentFemale": "51.20703237",
"LifeExpectancy": "80.38292683",
"Inflation": "1.625965826",
"HealthSpendPctGDP": "10.97222332",
"GDPperCapita": "26642.99386",
"PctGDPgrowth": "2.05092758",
"TradeBalance": "4.196582933",
"PctEmploy": "57.90000153",
"PctChildEmployment": "",
"GovtDebt": "74.04364544",
"PopOver65": "17.59727956",
"PctHIV": "0.4",
"Long": "13.33",
"Lat": "47.33"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Azerbaijan",
"CountryCode": "AZE",
"ShortName": "Azerbaijan",
"AvgLong": "47.50",
"Row": "10",
"Col": "15",
"Region": "EMEA",
"Continent": "Middle East",
"Population": "9054332",
"PercentFemale": "50.54477234",
"LifeExpectancy": "70.5065122",
"Inflation": "13.59874484",
"HealthSpendPctGDP": "5.879901695",
"GDPperCapita": "2344.810935",
"PctGDPgrowth": "5",
"TradeBalance": "34.03273409",
"PctEmploy": "60.29999924",
"PctChildEmployment": "",
"GovtDebt": "6.384869328",
"PopOver65": "6.556238866",
"PctHIV": "0.1",
"Long": "47.50",
"Lat": "40.50"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Bahamas, The",
"CountryCode": "BHS",
"ShortName": "Bahamas",
"AvgLong": "-76.00",
"Row": "10",
"Col": "3",
"Region": "Americas",
"Continent": "Central America",
"Population": "342877",
"PercentFemale": "51.10608177",
"LifeExpectancy": "75.22212195",
"Inflation": "0.52240999",
"HealthSpendPctGDP": "7.892130082",
"GDPperCapita": "19395.15231",
"PctGDPgrowth": "0.178735484",
"TradeBalance": "-8.640428615",
"PctEmploy": "64.19999695",
"PctChildEmployment": "",
"GovtDebt": "43.76273442",
"PopOver65": "6.833937534",
"PctHIV": "2.8",
"Long": "-76.00",
"Lat": "24.25"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Bahrain",
"CountryCode": "BHR",
"ShortName": "Bahrain",
"AvgLong": "50.55",
"Row": "14",
"Col": "15",
"Region": "EMEA",
"Continent": "Middle East",
"Population": "1261835",
"PercentFemale": "37.56426157",
"LifeExpectancy": "75.02382927",
"Inflation": "13.65793617",
"HealthSpendPctGDP": "4.972285584",
"GDPperCapita": "11236.40498",
"PctGDPgrowth": "4.5",
"TradeBalance": "",
"PctEmploy": "64.90000153",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "2.063106508",
"PctHIV": "",
"Long": "50.55",
"Lat": "26.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Bangladesh",
"CountryCode": "BGD",
"ShortName": "Bangladesh",
"AvgLong": "90.00",
"Row": "13",
"Col": "18",
"Region": "APAC",
"Continent": "Indian",
"Population": "148692131",
"PercentFemale": "49.35253164",
"LifeExpectancy": "68.63480488",
"Inflation": "6.473622698",
"HealthSpendPctGDP": "3.484117259",
"GDPperCapita": "558.062385",
"PctGDPgrowth": "6.069339864",
"TradeBalance": "-6.610066794",
"PctEmploy": "67.90000153",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "4.586159976",
"PctHIV": "0.1",
"Long": "90.00",
"Lat": "24.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Barbados",
"CountryCode": "BRB",
"ShortName": "Barbados",
"AvgLong": "-59.53",
"Row": "17",
"Col": "5",
"Region": "Americas",
"Continent": "Central America",
"Population": "273331",
"PercentFemale": "50.37152756",
"LifeExpectancy": "76.57282927",
"Inflation": "",
"HealthSpendPctGDP": "7.966689336",
"GDPperCapita": "",
"PctGDPgrowth": "",
"TradeBalance": "-5.056576226",
"PctEmploy": "64.69999695",
"PctChildEmployment": "",
"GovtDebt": "104.3925805",
"PopOver65": "11.41839016",
"PctHIV": "0.9",
"Long": "-59.53",
"Lat": "13.17"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Belarus",
"CountryCode": "BLR",
"ShortName": "Belarus",
"AvgLong": "28.00",
"Row": "4",
"Col": "13",
"Region": "EMEA",
"Continent": "Europe",
"Population": "9490000",
"PercentFemale": "53.49525571",
"LifeExpectancy": "70.40487805",
"Inflation": "11.11354358",
"HealthSpendPctGDP": "5.605756069",
"GDPperCapita": "2739.950643",
"PctGDPgrowth": "7.7",
"TradeBalance": "-13.61097448",
"PctEmploy": "50.09999847",
"PctChildEmployment": "",
"GovtDebt": "19.59371506",
"PopOver65": "13.56639797",
"PctHIV": "0.4",
"Long": "28.00",
"Lat": "53.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Belgium",
"CountryCode": "BEL",
"ShortName": "Belgium",
"AvgLong": "4.00",
"Row": "5",
"Col": "8",
"Region": "EMEA",
"Continent": "Europe",
"Population": "10895785",
"PercentFemale": "50.98488938",
"LifeExpectancy": "79.93658537",
"Inflation": "2.033881395",
"HealthSpendPctGDP": "10.70872179",
"GDPperCapita": "24550.39655",
"PctGDPgrowth": "2.420709331",
"TradeBalance": "2.266619867",
"PctEmploy": "49.5",
"PctChildEmployment": "",
"GovtDebt": "91.39592559",
"PopOver65": "17.43320103",
"PctHIV": "0.3",
"Long": "4.00",
"Lat": "50.83"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Belize",
"CountryCode": "BLZ",
"ShortName": "Belize",
"AvgLong": "-88.75",
"Row": "15",
"Col": "2",
"Region": "Americas",
"Continent": "Central America",
"Population": "344700",
"PercentFemale": "50.68014004",
"LifeExpectancy": "75.83995122",
"Inflation": "0.747701389",
"HealthSpendPctGDP": "5.199013587",
"GDPperCapita": "3542.364501",
"PctGDPgrowth": "2.9",
"TradeBalance": "0.475509474",
"PctEmploy": "59.29999924",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "3.955690617",
"PctHIV": "2.4",
"Long": "-88.75",
"Lat": "17.25"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Benin",
"CountryCode": "BEN",
"ShortName": "Benin",
"AvgLong": "2.25",
"Row": "17",
"Col": "10",
"Region": "EMEA",
"Continent": "Africa",
"Population": "8849892",
"PercentFemale": "50.69231353",
"LifeExpectancy": "55.58558537",
"Inflation": "1.421246318",
"HealthSpendPctGDP": "4.132647121",
"GDPperCapita": "377.0443007",
"PctGDPgrowth": "3",
"TradeBalance": "-13.76146789",
"PctEmploy": "72.09999847",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "3.038138771",
"PctHIV": "1.2",
"Long": "2.25",
"Lat": "9.50"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Bermuda",
"CountryCode": "BMU",
"ShortName": "Bermuda",
"AvgLong": "-64.75",
"Row": "7",
"Col": "4",
"Region": "Americas",
"Continent": "North America",
"Population": "64237",
"PercentFemale": "",
"LifeExpectancy": "79.28853659",
"Inflation": "1.202668592",
"HealthSpendPctGDP": "",
"GDPperCapita": "63036.36061",
"PctGDPgrowth": "-1.899617174",
"TradeBalance": "",
"PctEmploy": "",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "",
"PctHIV": "",
"Long": "-64.75",
"Lat": "32.33"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Bhutan",
"CountryCode": "BTN",
"ShortName": "Bhutan",
"AvgLong": "90.50",
"Row": "12",
"Col": "18",
"Region": "APAC",
"Continent": "Indian",
"Population": "725940",
"PercentFemale": "47.06669973",
"LifeExpectancy": "66.90885366",
"Inflation": "5.917131117",
"HealthSpendPctGDP": "5.194627071",
"GDPperCapita": "1392.68625",
"PctGDPgrowth": "11.7685858",
"TradeBalance": "",
"PctEmploy": "68.40000153",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "4.774912527",
"PctHIV": "0.3",
"Long": "90.50",
"Lat": "27.50"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Bolivia",
"CountryCode": "BOL",
"ShortName": "Bolivia",
"AvgLong": "-65.00",
"Row": "22",
"Col": "3",
"Region": "Americas",
"Continent": "South America",
"Population": "9929849",
"PercentFemale": "50.1254148",
"LifeExpectancy": "66.26856098",
"Inflation": "8.777507333",
"HealthSpendPctGDP": "4.84416889",
"GDPperCapita": "1232.688733",
"PctGDPgrowth": "4.126723356",
"TradeBalance": "6.863286322",
"PctEmploy": "68.5",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "4.679789189",
"PctHIV": "0.3",
"Long": "-65.00",
"Lat": "-17.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Bosnia and Herzegovina",
"CountryCode": "BIH",
"ShortName": "Bosnia + Herzegovina",
"AvgLong": "18.00",
"Row": "8",
"Col": "11",
"Region": "EMEA",
"Continent": "Europe",
"Population": "3760149",
"PercentFemale": "51.93241013",
"LifeExpectancy": "75.40043902",
"Inflation": "1.40488499",
"HealthSpendPctGDP": "11.10833847",
"GDPperCapita": "2183.25835",
"PctGDPgrowth": "0.8",
"TradeBalance": "-20.74166087",
"PctEmploy": "35.09999847",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "14.03242265",
"PctHIV": "",
"Long": "18.00",
"Lat": "44.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Botswana",
"CountryCode": "BWA",
"ShortName": "Botswana",
"AvgLong": "24.00",
"Row": "24",
"Col": "12",
"Region": "EMEA",
"Continent": "Africa",
"Population": "2006945",
"PercentFemale": "49.58242503",
"LifeExpectancy": "53.1095122",
"Inflation": "14.62463266",
"HealthSpendPctGDP": "8.302537919",
"GDPperCapita": "4189.686702",
"PctGDPgrowth": "7.014443318",
"TradeBalance": "-6.975265115",
"PctEmploy": "63.40000153",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "3.989645954",
"PctHIV": "23.7",
"Long": "24.00",
"Lat": "-22.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Brazil",
"CountryCode": "BRA",
"ShortName": "Brazil",
"AvgLong": "-55.00",
"Row": "22",
"Col": "5",
"Region": "Americas",
"Continent": "South America",
"Population": "194946470",
"PercentFemale": "50.78790655",
"LifeExpectancy": "73.09953659",
"Inflation": "8.228535058",
"HealthSpendPctGDP": "9.0082018",
"GDPperCapita": "4716.614125",
"PctGDPgrowth": "7.533615453",
"TradeBalance": "-1.031329532",
"PctEmploy": "64.80000305",
"PctChildEmployment": "",
"GovtDebt": "52.20616913",
"PopOver65": "7.003160919",
"PctHIV": "0.3",
"Long": "-55.00",
"Lat": "-10.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Brunei Darussalam",
"CountryCode": "BRN",
"ShortName": "Brunei",
"AvgLong": "114.67",
"Row": "17",
"Col": "20",
"Region": "APAC",
"Continent": "South-east Asia",
"Population": "398920",
"PercentFemale": "49.47307731",
"LifeExpectancy": "77.93202439",
"Inflation": "5.308065628",
"HealthSpendPctGDP": "2.843919419",
"GDPperCapita": "17225.31562",
"PctGDPgrowth": "2.598965911",
"TradeBalance": "48.56611907",
"PctEmploy": "63.29999924",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "3.571894114",
"PctHIV": "",
"Long": "114.67",
"Lat": "4.50"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Bulgaria",
"CountryCode": "BGR",
"ShortName": "Bulgaria",
"AvgLong": "25.00",
"Row": "7",
"Col": "13",
"Region": "EMEA",
"Continent": "Europe",
"Population": "7534289",
"PercentFemale": "51.66121544",
"LifeExpectancy": "73.51219512",
"Inflation": "2.793715946",
"HealthSpendPctGDP": "6.867128838",
"GDPperCapita": "2555.177101",
"PctGDPgrowth": "0.4",
"TradeBalance": "-1.894380163",
"PctEmploy": "48.5",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "17.52372326",
"PctHIV": "0.1",
"Long": "25.00",
"Lat": "43.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Burkina Faso",
"CountryCode": "BFA",
"ShortName": "Burkina Faso",
"AvgLong": "-2.00",
"Row": "16",
"Col": "9",
"Region": "EMEA",
"Continent": "Africa",
"Population": "16468714",
"PercentFemale": "50.37699361",
"LifeExpectancy": "54.92419512",
"Inflation": "2.780587949",
"HealthSpendPctGDP": "6.739488331",
"GDPperCapita": "282.6969373",
"PctGDPgrowth": "7.886165764",
"TradeBalance": "",
"PctEmploy": "81.09999847",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "2.217489477",
"PctHIV": "1.2",
"Long": "-2.00",
"Lat": "13.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Burundi",
"CountryCode": "BDI",
"ShortName": "Burundi",
"AvgLong": "30.00",
"Row": "21",
"Col": "13",
"Region": "EMEA",
"Continent": "Africa",
"Population": "8382849",
"PercentFemale": "50.93097824",
"LifeExpectancy": "49.87721951",
"Inflation": "7.638175881",
"HealthSpendPctGDP": "11.59352041",
"GDPperCapita": "138.2482379",
"PctGDPgrowth": "3.785902542",
"TradeBalance": "-30.37878255",
"PctEmploy": "76.5",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "2.859266581",
"PctHIV": "1.4",
"Long": "30.00",
"Lat": "-3.50"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Cambodia",
"CountryCode": "KHM",
"ShortName": "Cambodia",
"AvgLong": "105.00",
"Row": "15",
"Col": "19",
"Region": "APAC",
"Continent": "South-east Asia",
"Population": "14138255",
"PercentFemale": "51.07895564",
"LifeExpectancy": "62.53621951",
"Inflation": "3.12059287",
"HealthSpendPctGDP": "5.60704935",
"GDPperCapita": "557.976913",
"PctGDPgrowth": "5.963078575",
"TradeBalance": "-5.438152652",
"PctEmploy": "81.40000153",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "3.806587164",
"PctHIV": "0.6",
"Long": "105.00",
"Lat": "13.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Cameroon",
"CountryCode": "CMR",
"ShortName": "Cameroon",
"AvgLong": "12.00",
"Row": "19",
"Col": "11",
"Region": "EMEA",
"Continent": "Africa",
"Population": "19598889",
"PercentFemale": "50.08619621",
"LifeExpectancy": "51.0627561",
"Inflation": "3.000000001",
"HealthSpendPctGDP": "5.134951524",
"GDPperCapita": "653.0286932",
"PctGDPgrowth": "2.926530212",
"TradeBalance": "-3.377015953",
"PctEmploy": "67.5",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "3.509836706",
"PctHIV": "4.7",
"Long": "12.00",
"Lat": "6.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Canada",
"CountryCode": "CAN",
"ShortName": "Canada",
"AvgLong": "-95.00",
"Row": "4",
"Col": "2",
"Region": "Americas",
"Continent": "North America",
"Population": "34126181",
"PercentFemale": "50.40910182",
"LifeExpectancy": "80.79780488",
"Inflation": "2.944408564",
"HealthSpendPctGDP": "11.29453998",
"GDPperCapita": "25575.21698",
"PctGDPgrowth": "3.214948408",
"TradeBalance": "-1.878668577",
"PctEmploy": "61.29999924",
"PctChildEmployment": "",
"GovtDebt": "52.628511",
"PopOver65": "14.1143118",
"PctHIV": "0.3",
"Long": "-95.00",
"Lat": "60.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Cape Verde",
"CountryCode": "CPV",
"ShortName": "Cape Verde",
"AvgLong": "-24.00",
"Row": "12",
"Col": "6",
"Region": "EMEA",
"Continent": "Africa",
"Population": "495999",
"PercentFemale": "50.51320668",
"LifeExpectancy": "73.77404878",
"Inflation": "3.32243023",
"HealthSpendPctGDP": "4.090878674",
"GDPperCapita": "1958.888455",
"PctGDPgrowth": "5.209635058",
"TradeBalance": "-28.53710863",
"PctEmploy": "61.20000076",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "5.902834482",
"PctHIV": "1",
"Long": "-24.00",
"Lat": "16.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Cayman Islands",
"CountryCode": "CYM",
"ShortName": "Cayman Islands",
"AvgLong": "-80.50",
"Row": "12",
"Col": "2",
"Region": "Americas",
"Continent": "Central America",
"Population": "56230",
"PercentFemale": "",
"LifeExpectancy": "",
"Inflation": "",
"HealthSpendPctGDP": "",
"GDPperCapita": "",
"PctGDPgrowth": "",
"TradeBalance": "",
"PctEmploy": "",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "",
"PctHIV": "",
"Long": "-80.50",
"Lat": "19.50"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Central African Republic",
"CountryCode": "CAF",
"ShortName": "Central African Republic",
"AvgLong": "21.00",
"Row": "19",
"Col": "12",
"Region": "EMEA",
"Continent": "Africa",
"Population": "4401051",
"PercentFemale": "50.74217499",
"LifeExpectancy": "47.61846341",
"Inflation": "2.055217998",
"HealthSpendPctGDP": "3.977601659",
"GDPperCapita": "229.5813971",
"PctGDPgrowth": "3.000000001",
"TradeBalance": "-13.99269218",
"PctEmploy": "72.69999695",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "3.974437015",
"PctHIV": "4.9",
"Long": "21.00",
"Lat": "7.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Chad",
"CountryCode": "TCD",
"ShortName": "Chad",
"AvgLong": "19.00",
"Row": "14",
"Col": "11",
"Region": "EMEA",
"Continent": "Africa",
"Population": "11227208",
"PercentFemale": "50.27854655",
"LifeExpectancy": "49.19482927",
"Inflation": "11.94266842",
"HealthSpendPctGDP": "4.534364662",
"GDPperCapita": "300.1061535",
"PctGDPgrowth": "13",
"TradeBalance": "-22.03271868",
"PctEmploy": "66.69999695",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "2.879816603",
"PctHIV": "3.2",
"Long": "19.00",
"Lat": "15.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Chile",
"CountryCode": "CHL",
"ShortName": "Chile",
"AvgLong": "-71.00",
"Row": "25",
"Col": "2",
"Region": "Americas",
"Continent": "South America",
"Population": "17113688",
"PercentFemale": "50.55499434",
"LifeExpectancy": "78.88573171",
"Inflation": "7.470505048",
"HealthSpendPctGDP": "7.959026218",
"GDPperCapita": "6781.696484",
"PctGDPgrowth": "6.09520565",
"TradeBalance": "6.15236251",
"PctEmploy": "55.40000153",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "9.254995183",
"PctHIV": "0.5",
"Long": "-71.00",
"Lat": "-30.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "China",
"CountryCode": "CHN",
"ShortName": "China",
"AvgLong": "105.00",
"Row": "8",
"Col": "19",
"Region": "APAC",
"Continent": "South-east Asia",
"Population": "1337825000",
"PercentFemale": "48.08599842",
"LifeExpectancy": "73.27309756",
"Inflation": "6.684109668",
"HealthSpendPctGDP": "5.068317134",
"GDPperCapita": "2426.332466",
"PctGDPgrowth": "10.4",
"TradeBalance": "3.91604041",
"PctEmploy": "71.09999847",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "8.189205795",
"PctHIV": "",
"Long": "105.00",
"Lat": "35.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Colombia",
"CountryCode": "COL",
"ShortName": "Colombia",
"AvgLong": "-72.00",
"Row": "20",
"Col": "2",
"Region": "Americas",
"Continent": "South America",
"Population": "46294841",
"PercentFemale": "50.80495686",
"LifeExpectancy": "73.42968293",
"Inflation": "3.602656065",
"HealthSpendPctGDP": "7.587397362",
"GDPperCapita": "3218.071704",
"PctGDPgrowth": "4.001185174",
"TradeBalance": "-2.077436749",
"PctEmploy": "59.20000076",
"PctChildEmployment": "",
"GovtDebt": "63.26501934",
"PopOver65": "5.618433812",
"PctHIV": "0.5",
"Long": "-72.00",
"Lat": "4.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Comoros",
"CountryCode": "COM",
"ShortName": "Comoros",
"AvgLong": "44.25",
"Row": "23",
"Col": "14",
"Region": "EMEA",
"Continent": "Africa",
"Population": "734750",
"PercentFemale": "49.64681865",
"LifeExpectancy": "60.62626829",
"Inflation": "4.271263892",
"HealthSpendPctGDP": "4.511156994",
"GDPperCapita": "336.4816386",
"PctGDPgrowth": "2.1",
"TradeBalance": "-34.81683484",
"PctEmploy": "53.40000153",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "2.723239197",
"PctHIV": "0.1",
"Long": "44.25",
"Lat": "-12.17"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Congo, Dem. Rep.",
"CountryCode": "ZAR",
"ShortName": "Congo, Democratic",
"AvgLong": "25.00",
"Row": "22",
"Col": "11",
"Region": "EMEA",
"Continent": "Africa",
"Population": "65965795",
"PercentFemale": "50.26468035",
"LifeExpectancy": "48.06958537",
"Inflation": "22.12051242",
"HealthSpendPctGDP": "7.905911123",
"GDPperCapita": "105.5317381",
"PctGDPgrowth": "7.174203175",
"TradeBalance": "-9.608628831",
"PctEmploy": "66.09999847",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "2.664242885",
"PctHIV": "",
"Long": "25.00",
"Lat": "0.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Congo, Rep.",
"CountryCode": "COG",
"ShortName": "Congo",
"AvgLong": "15.00",
"Row": "21",
"Col": "12",
"Region": "EMEA",
"Continent": "Africa",
"Population": "4042899",
"PercentFemale": "49.94698111",
"LifeExpectancy": "56.96019512",
"Inflation": "20.72202923",
"HealthSpendPctGDP": "2.456643617",
"GDPperCapita": "1253.804149",
"PctGDPgrowth": "8.751655799",
"TradeBalance": "30.4217462",
"PctEmploy": "65.5",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "3.667343656",
"PctHIV": "3.3",
"Long": "15.00",
"Lat": "-1.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Costa Rica",
"CountryCode": "CRI",
"ShortName": "Costa Rica",
"AvgLong": "-84.00",
"Row": "18",
"Col": "2",
"Region": "Americas",
"Continent": "Central America",
"Population": "4658887",
"PercentFemale": "49.23141514",
"LifeExpectancy": "79.19260976",
"Inflation": "8.002861343",
"HealthSpendPctGDP": "10.93726105",
"GDPperCapita": "5226.566178",
"PctGDPgrowth": "4.67987932",
"TradeBalance": "-2.271760623",
"PctEmploy": "59.70000076",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "6.530293609",
"PctHIV": "0.3",
"Long": "-84.00",
"Lat": "10.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Cote d'Ivoire",
"CountryCode": "CIV",
"ShortName": "Côte d'Ivoire",
"AvgLong": "-5.00",
"Row": "18",
"Col": "8",
"Region": "EMEA",
"Continent": "Africa",
"Population": "19737800",
"PercentFemale": "49.04437171",
"LifeExpectancy": "54.74156098",
"Inflation": "1.900142452",
"HealthSpendPctGDP": "5.303522219",
"GDPperCapita": "587.5445423",
"PctGDPgrowth": "2.394382751",
"TradeBalance": "4.563018141",
"PctEmploy": "64.19999695",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "3.786663154",
"PctHIV": "3.2",
"Long": "-5.00",
"Lat": "8.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Croatia",
"CountryCode": "HRV",
"ShortName": "Croatia",
"AvgLong": "15.50",
"Row": "7",
"Col": "11",
"Region": "EMEA",
"Continent": "Europe",
"Population": "4418000",
"PercentFemale": "51.859093",
"LifeExpectancy": "76.47560976",
"Inflation": "0.902956289",
"HealthSpendPctGDP": "7.764151045",
"GDPperCapita": "6255.239892",
"PctGDPgrowth": "-1.40514702",
"TradeBalance": "-0.507730538",
"PctEmploy": "46.29999924",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "17.21190554",
"PctHIV": "0.1",
"Long": "15.50",
"Lat": "45.17"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Cuba",
"CountryCode": "CUB",
"ShortName": "Cuba",
"AvgLong": "-80.00",
"Row": "11",
"Col": "2",
"Region": "Americas",
"Continent": "Central America",
"Population": "11257979",
"PercentFemale": "49.70297955",
"LifeExpectancy": "78.96414634",
"Inflation": "1.031825107",
"HealthSpendPctGDP": "10.62623501",
"GDPperCapita": "4495.054646",
"PctGDPgrowth": "2.06463583",
"TradeBalance": "0.651068896",
"PctEmploy": "55.70000076",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "12.3870812",
"PctHIV": "0.2",
"Long": "-80.00",
"Lat": "21.50"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Curacao",
"CountryCode": "CUW",
"ShortName": "Curacao",
"AvgLong": "12.12",
"Row": "19",
"Col": "3",
"Region": "Americas",
"Continent": "Central America",
"Population": "143784",
"PercentFemale": "",
"LifeExpectancy": "",
"Inflation": "",
"HealthSpendPctGDP": "",
"GDPperCapita": "",
"PctGDPgrowth": "",
"TradeBalance": "",
"PctEmploy": "",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "",
"PctHIV": "",
"Long": "-68.93",
"Lat": "12.12"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Cyprus",
"CountryCode": "CYP",
"ShortName": "Cyprus",
"AvgLong": "33.00",
"Row": "11",
"Col": "12",
"Region": "EMEA",
"Continent": "Europe",
"Population": "1103647",
"PercentFemale": "48.95559903",
"LifeExpectancy": "79.38039024",
"Inflation": "1.900998276",
"HealthSpendPctGDP": "5.96810183",
"GDPperCapita": "15328.33481",
"PctGDPgrowth": "1.14",
"TradeBalance": "-6.443172058",
"PctEmploy": "60.40000153",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "11.56329877",
"PctHIV": "",
"Long": "33.00",
"Lat": "35.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Czech Republic",
"CountryCode": "CZE",
"ShortName": "Czech Republic",
"AvgLong": "15.50",
"Row": "5",
"Col": "11",
"Region": "EMEA",
"Continent": "Europe",
"Population": "10519792",
"PercentFemale": "50.95019899",
"LifeExpectancy": "77.42439024",
"Inflation": "-1.378936269",
"HealthSpendPctGDP": "7.875221252",
"GDPperCapita": "7799.509506",
"PctGDPgrowth": "2.492589637",
"TradeBalance": "3.146688424",
"PctEmploy": "54.20000076",
"PctChildEmployment": "",
"GovtDebt": "34.91742443",
"PopOver65": "14.83742433",
"PctHIV": "0.1",
"Long": "15.50",
"Lat": "49.75"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Denmark",
"CountryCode": "DNK",
"ShortName": "Denmark",
"AvgLong": "10.00",
"Row": "4",
"Col": "10",
"Region": "EMEA",
"Continent": "Europe",
"Population": "5547683",
"PercentFemale": "50.4236288",
"LifeExpectancy": "79.1",
"Inflation": "4.143480405",
"HealthSpendPctGDP": "11.41505199",
"GDPperCapita": "30667.82486",
"PctGDPgrowth": "1.577242002",
"TradeBalance": "5.582766836",
"PctEmploy": "59.79999924",
"PctChildEmployment": "",
"GovtDebt": "43.95417451",
"PopOver65": "16.45446189",
"PctHIV": "0.2",
"Long": "10.00",
"Lat": "56.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Djibouti",
"CountryCode": "DJI",
"ShortName": "Djibouti",
"AvgLong": "43.00",
"Row": "17",
"Col": "14",
"Region": "EMEA",
"Continent": "Africa",
"Population": "888716",
"PercentFemale": "49.9783958",
"LifeExpectancy": "57.52739024",
"Inflation": "",
"HealthSpendPctGDP": "7.242339924",
"GDPperCapita": "",
"PctGDPgrowth": "",
"TradeBalance": "",
"PctEmploy": "",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "3.310168828",
"PctHIV": "1.5",
"Long": "43.00",
"Lat": "11.50"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Dominica",
"CountryCode": "DMA",
"ShortName": "Dominica",
"AvgLong": "-61.33",
"Row": "16",
"Col": "5",
"Region": "Americas",
"Continent": "Central America",
"Population": "67757",
"PercentFemale": "",
"LifeExpectancy": "",
"Inflation": "-2.891245934",
"HealthSpendPctGDP": "7.421372888",
"GDPperCapita": "6529.529633",
"PctGDPgrowth": "0.964531355",
"TradeBalance": "-19.60745595",
"PctEmploy": "",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "",
"PctHIV": "",
"Long": "-61.33",
"Lat": "15.42"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Dominican Republic",
"CountryCode": "DOM",
"ShortName": "Dominican Republic",
"AvgLong": "-70.67",
"Row": "12",
"Col": "4",
"Region": "Americas",
"Continent": "Central America",
"Population": "9927320",
"PercentFemale": "49.83502093",
"LifeExpectancy": "73.20002439",
"Inflation": "5.141807804",
"HealthSpendPctGDP": "6.22363584",
"GDPperCapita": "4049.039107",
"PctGDPgrowth": "7.751220866",
"TradeBalance": "-11.18578102",
"PctEmploy": "55.5",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "6.278028713",
"PctHIV": "0.7",
"Long": "-70.67",
"Lat": "19.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Ecuador",
"CountryCode": "ECU",
"ShortName": "Ecuador",
"AvgLong": "-77.50",
"Row": "21",
"Col": "2",
"Region": "Americas",
"Continent": "South America",
"Population": "14464739",
"PercentFemale": "49.91424318",
"LifeExpectancy": "75.46229268",
"Inflation": "7.595866872",
"HealthSpendPctGDP": "8.058597201",
"GDPperCapita": "1728.052156",
"PctGDPgrowth": "3.581602486",
"TradeBalance": "-5.669076932",
"PctEmploy": "63.79999924",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "6.241730321",
"PctHIV": "0.4",
"Long": "-77.50",
"Lat": "-2.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Egypt, Arab Rep.",
"CountryCode": "EGY",
"ShortName": "Egypt",
"AvgLong": "30.00",
"Row": "13",
"Col": "12",
"Region": "EMEA",
"Continent": "Africa",
"Population": "81121077",
"PercentFemale": "49.78666025",
"LifeExpectancy": "72.97526829",
"Inflation": "10.10750976",
"HealthSpendPctGDP": "4.656164646",
"GDPperCapita": "1975.550031",
"PctGDPgrowth": "5.146618791",
"TradeBalance": "-4.782032156",
"PctEmploy": "44.20000076",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "5.030330157",
"PctHIV": "0.1",
"Long": "30.00",
"Lat": "27.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "El Salvador",
"CountryCode": "SLV",
"ShortName": "El Salvador",
"AvgLong": "-88.92",
"Row": "17",
"Col": "1",
"Region": "Americas",
"Continent": "Central America",
"Population": "6192993",
"PercentFemale": "52.49900977",
"LifeExpectancy": "71.73236585",
"Inflation": "2.315439798",
"HealthSpendPctGDP": "6.912188247",
"GDPperCapita": "2555.887676",
"PctGDPgrowth": "1.364783667",
"TradeBalance": "-17.2947419",
"PctEmploy": "57.40000153",
"PctChildEmployment": "",
"GovtDebt": "49.49855095",
"PopOver65": "6.976400587",
"PctHIV": "0.6",
"Long": "-88.92",
"Lat": "13.83"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Equatorial Guinea",
"CountryCode": "GNQ",
"ShortName": "Equatorial Guinea",
"AvgLong": "10.00",
"Row": "20",
"Col": "11",
"Region": "EMEA",
"Continent": "Africa",
"Population": "700401",
"PercentFemale": "48.74464771",
"LifeExpectancy": "50.84080488",
"Inflation": "25.08410018",
"HealthSpendPctGDP": "4.481417899",
"GDPperCapita": "8465.569062",
"PctGDPgrowth": "-0.513165307",
"TradeBalance": "16.82437363",
"PctEmploy": "80.09999847",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "2.898910767",
"PctHIV": "4.4",
"Long": "10.00",
"Lat": "2.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Eritrea",
"CountryCode": "ERI",
"ShortName": "Eritrea",
"AvgLong": "39.00",
"Row": "15",
"Col": "13",
"Region": "EMEA",
"Continent": "Africa",
"Population": "5253676",
"PercentFemale": "50.74604905",
"LifeExpectancy": "60.99419512",
"Inflation": "11.56101833",
"HealthSpendPctGDP": "2.656100515",
"GDPperCapita": "146.7766347",
"PctGDPgrowth": "2.203249793",
"TradeBalance": "",
"PctEmploy": "77.90000153",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "2.482566492",
"PctHIV": "0.7",
"Long": "39.00",
"Lat": "15.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Estonia",
"CountryCode": "EST",
"ShortName": "Estonia",
"AvgLong": "26.00",
"Row": "2",
"Col": "12",
"Region": "EMEA",
"Continent": "Europe",
"Population": "1340161",
"PercentFemale": "53.9085405",
"LifeExpectancy": "75.42926829",
"Inflation": "0.72187698",
"HealthSpendPctGDP": "6.032152716",
"GDPperCapita": "6025.713393",
"PctGDPgrowth": "3.330611346",
"TradeBalance": "6.727781773",
"PctEmploy": "51.09999847",
"PctChildEmployment": "",
"GovtDebt": "9.14143283",
"PopOver65": "17.2031257",
"PctHIV": "1.3",
"Long": "26.00",
"Lat": "59.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Ethiopia",
"CountryCode": "ETH",
"ShortName": "Ethiopia",
"AvgLong": "38.00",
"Row": "18",
"Col": "14",
"Region": "EMEA",
"Continent": "Africa",
"Population": "82949541",
"PercentFemale": "50.23290485",
"LifeExpectancy": "58.71509756",
"Inflation": "3.855907596",
"HealthSpendPctGDP": "4.899707473",
"GDPperCapita": "218.6586392",
"PctGDPgrowth": "9.937345319",
"TradeBalance": "-19.3652666",
"PctEmploy": "79.5",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "3.32910944",
"PctHIV": "1.6",
"Long": "38.00",
"Lat": "8.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Faeroe Islands",
"CountryCode": "FRO",
"ShortName": "Faroe Is.",
"AvgLong": "-7.00",
"Row": "2",
"Col": "7",
"Region": "EMEA",
"Continent": "Europe",
"Population": "48708",
"PercentFemale": "",
"LifeExpectancy": "",
"Inflation": "",
"HealthSpendPctGDP": "",
"GDPperCapita": "",
"PctGDPgrowth": "",
"TradeBalance": "",
"PctEmploy": "",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "",
"PctHIV": "",
"Long": "-7.00",
"Lat": "62.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Fiji",
"CountryCode": "FJI",
"ShortName": "Fiji",
"AvgLong": "175.00",
"Row": "20",
"Col": "21",
"Region": "APAC",
"Continent": "Oceania",
"Population": "860623",
"PercentFemale": "48.96046236",
"LifeExpectancy": "69.22582927",
"Inflation": "8.196684331",
"HealthSpendPctGDP": "4.85715966",
"GDPperCapita": "2218.146955",
"PctGDPgrowth": "-0.181456768",
"TradeBalance": "-9.325861911",
"PctEmploy": "57",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "4.832778115",
"PctHIV": "0.1",
"Long": "175.00",
"Lat": "-18.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Finland",
"CountryCode": "FIN",
"ShortName": "Finland",
"AvgLong": "26.00",
"Row": "1",
"Col": "12",
"Region": "EMEA",
"Continent": "Europe",
"Population": "5363352",
"PercentFemale": "50.93137425",
"LifeExpectancy": "79.87073171",
"Inflation": "0.421148949",
"HealthSpendPctGDP": "8.951307329",
"GDPperCapita": "26953.22055",
"PctGDPgrowth": "3.324179985",
"TradeBalance": "1.26904405",
"PctEmploy": "55.20000076",
"PctChildEmployment": "",
"GovtDebt": "51.22989329",
"PopOver65": "17.23295876",
"PctHIV": "0.1",
"Long": "26.00",
"Lat": "64.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "France",
"CountryCode": "FRA",
"ShortName": "France",
"AvgLong": "2.00",
"Row": "6",
"Col": "7",
"Region": "EMEA",
"Continent": "Europe",
"Population": "65075569",
"PercentFemale": "51.34596772",
"LifeExpectancy": "81.36829268",
"Inflation": "1.050366124",
"HealthSpendPctGDP": "11.88339744",
"GDPperCapita": "22758.15413",
"PctGDPgrowth": "1.663093831",
"TradeBalance": "-2.175649336",
"PctEmploy": "51.20000076",
"PctChildEmployment": "",
"GovtDebt": "88.41365451",
"PopOver65": "16.79301654",
"PctHIV": "0.4",
"Long": "2.00",
"Lat": "46.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "French Polynesia",
"CountryCode": "PYF",
"ShortName": "French Polynesia",
"AvgLong": "-140.00",
"Row": "22",
"Col": "22",
"Region": "APAC",
"Continent": "Oceania",
"Population": "270764",
"PercentFemale": "48.78122646",
"LifeExpectancy": "75.07687805",
"Inflation": "",
"HealthSpendPctGDP": "",
"GDPperCapita": "",
"PctGDPgrowth": "",
"TradeBalance": "",
"PctEmploy": "",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "6.455067882",
"PctHIV": "",
"Long": "-140.00",
"Lat": "-15.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Gabon",
"CountryCode": "GAB",
"ShortName": "Gabon",
"AvgLong": "11.75",
"Row": "21",
"Col": "11",
"Region": "EMEA",
"Continent": "Africa",
"Population": "1505463",
"PercentFemale": "49.84871764",
"LifeExpectancy": "62.28668293",
"Inflation": "18.64461006",
"HealthSpendPctGDP": "3.495042631",
"GDPperCapita": "4213.881563",
"PctGDPgrowth": "6.605103142",
"TradeBalance": "24.04615891",
"PctEmploy": "50.29999924",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "4.332155623",
"PctHIV": "5.1",
"Long": "11.75",
"Lat": "-1.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Gambia, The",
"CountryCode": "GMB",
"ShortName": "Gambia",
"AvgLong": "-16.57",
"Row": "14",
"Col": "7",
"Region": "EMEA",
"Continent": "Africa",
"Population": "1728394",
"PercentFemale": "50.61791467",
"LifeExpectancy": "58.16002439",
"Inflation": "4.299804639",
"HealthSpendPctGDP": "5.690406137",
"GDPperCapita": "660.243831",
"PctGDPgrowth": "6.526297446",
"TradeBalance": "-18.61793159",
"PctEmploy": "71.5",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "2.171032762",
"PctHIV": "1.4",
"Long": "-16.57",
"Lat": "13.47"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Georgia",
"CountryCode": "GEO",
"ShortName": "Georgia",
"AvgLong": "43.50",
"Row": "9",
"Col": "14",
"Region": "EMEA",
"Continent": "Middle East",
"Population": "4452800",
"PercentFemale": "52.89917109",
"LifeExpectancy": "73.32734146",
"Inflation": "8.543367383",
"HealthSpendPctGDP": "10.13419268",
"GDPperCapita": "1257.179877",
"PctGDPgrowth": "6.253027581",
"TradeBalance": "-17.81333164",
"PctEmploy": "53.5",
"PctChildEmployment": "",
"GovtDebt": "36.79972018",
"PopOver65": "14.32663242",
"PctHIV": "0.2",
"Long": "43.50",
"Lat": "42.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Germany",
"CountryCode": "DEU",
"ShortName": "Germany",
"AvgLong": "9.00",
"Row": "5",
"Col": "10",
"Region": "EMEA",
"Continent": "Europe",
"Population": "81776930",
"PercentFemale": "50.98473539",
"LifeExpectancy": "79.98780488",
"Inflation": "0.928926196",
"HealthSpendPctGDP": "11.63504206",
"GDPperCapita": "25420.27572",
"PctGDPgrowth": "4.157740993",
"TradeBalance": "5.564457976",
"PctEmploy": "55.40000153",
"PctChildEmployment": "",
"GovtDebt": "55.627634",
"PopOver65": "20.38238587",
"PctHIV": "0.2",
"Long": "9.00",
"Lat": "51.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Ghana",
"CountryCode": "GHA",
"ShortName": "Ghana",
"AvgLong": "-2.00",
"Row": "18",
"Col": "9",
"Region": "EMEA",
"Continent": "Africa",
"Population": "24391823",
"PercentFemale": "49.12688158",
"LifeExpectancy": "63.83726829",
"Inflation": "16.47729227",
"HealthSpendPctGDP": "5.222870836",
"GDPperCapita": "360.3240584",
"PctGDPgrowth": "8.008593189",
"TradeBalance": "-11.82195634",
"PctEmploy": "66.80000305",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "3.813466505",
"PctHIV": "1.5",
"Long": "-2.00",
"Lat": "8.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Greece",
"CountryCode": "GRC",
"ShortName": "Greece",
"AvgLong": "22.00",
"Row": "10",
"Col": "12",
"Region": "EMEA",
"Continent": "Europe",
"Population": "11315508",
"PercentFemale": "50.52960795",
"LifeExpectancy": "80.38780488",
"Inflation": "1.134929606",
"HealthSpendPctGDP": "10.24885232",
"GDPperCapita": "13452.02377",
"PctGDPgrowth": "-4.943155039",
"TradeBalance": "-9.275690533",
"PctEmploy": "47.70000076",
"PctChildEmployment": "",
"GovtDebt": "134.5401686",
"PopOver65": "18.5539907",
"PctHIV": "0.2",
"Long": "22.00",
"Lat": "39.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Greenland",
"CountryCode": "GRL",
"ShortName": "Greenland",
"AvgLong": "-40.00",
"Row": "1",
"Col": "5",
"Region": "EMEA",
"Continent": "Europe",
"Population": "56533",
"PercentFemale": "",
"LifeExpectancy": "",
"Inflation": "",
"HealthSpendPctGDP": "",
"GDPperCapita": "",
"PctGDPgrowth": "",
"TradeBalance": "",
"PctEmploy": "",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "",
"PctHIV": "",
"Long": "-40.00",
"Lat": "72.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Grenada",
"CountryCode": "GRD",
"ShortName": "Grenada",
"AvgLong": "-61.67",
"Row": "18",
"Col": "4",
"Region": "Americas",
"Continent": "Central America",
"Population": "104487",
"PercentFemale": "50.01770555",
"LifeExpectancy": "75.66043902",
"Inflation": "1.085760608",
"HealthSpendPctGDP": "5.856673227",
"GDPperCapita": "6011.845618",
"PctGDPgrowth": "-0.04152375",
"TradeBalance": "-26.82163934",
"PctEmploy": "",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "7.202809919",
"PctHIV": "",
"Long": "-61.67",
"Lat": "12.12"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Guam",
"CountryCode": "GUM",
"ShortName": "Guam",
"AvgLong": "144.78",
"Row": "12",
"Col": "22",
"Region": "APAC",
"Continent": "Oceania",
"Population": "179896",
"PercentFemale": "49.14617334",
"LifeExpectancy": "75.99426829",
"Inflation": "",
"HealthSpendPctGDP": "",
"GDPperCapita": "",
"PctGDPgrowth": "",
"TradeBalance": "",
"PctEmploy": "",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "7.069640237",
"PctHIV": "",
"Long": "144.78",
"Lat": "13.47"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Guatemala",
"CountryCode": "GTM",
"ShortName": "Guatemala",
"AvgLong": "-90.25",
"Row": "16",
"Col": "1",
"Region": "Americas",
"Continent": "Central America",
"Population": "14388929",
"PercentFemale": "51.26889569",
"LifeExpectancy": "70.82541463",
"Inflation": "5.106511846",
"HealthSpendPctGDP": "6.854823643",
"GDPperCapita": "1862.66726",
"PctGDPgrowth": "2.909964231",
"TradeBalance": "-10.46839159",
"PctEmploy": "65.30000305",
"PctChildEmployment": "",
"GovtDebt": "24.41840184",
"PopOver65": "4.318528502",
"PctHIV": "0.7",
"Long": "-90.25",
"Lat": "15.50"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Guinea",
"CountryCode": "GIN",
"ShortName": "Guinea",
"AvgLong": "-10.00",
"Row": "16",
"Col": "7",
"Region": "EMEA",
"Continent": "Africa",
"Population": "9981590",
"PercentFemale": "49.47076568",
"LifeExpectancy": "53.63858537",
"Inflation": "20.1995783",
"HealthSpendPctGDP": "4.931692148",
"GDPperCapita": "388.4181539",
"PctGDPgrowth": "1.936217423",
"TradeBalance": "-8.177302831",
"PctEmploy": "69.5",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "3.328437654",
"PctHIV": "1.4",
"Long": "-10.00",
"Lat": "11.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Guinea-Bissau",
"CountryCode": "GNB",
"ShortName": "Guinea-Bissau",
"AvgLong": "-15.00",
"Row": "15",
"Col": "7",
"Region": "EMEA",
"Continent": "Africa",
"Population": "1515224",
"PercentFemale": "50.43861502",
"LifeExpectancy": "47.70065854",
"Inflation": "1.718401556",
"HealthSpendPctGDP": "8.498260681",
"GDPperCapita": "161.2932891",
"PctGDPgrowth": "3.472523585",
"TradeBalance": "",
"PctEmploy": "67.5",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "3.334358484",
"PctHIV": "2.4",
"Long": "-15.00",
"Lat": "12.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Guyana",
"CountryCode": "GUY",
"ShortName": "Guyana",
"AvgLong": "-59.00",
"Row": "20",
"Col": "4",
"Region": "Americas",
"Continent": "South America",
"Population": "754493",
"PercentFemale": "49.76918275",
"LifeExpectancy": "69.54914634",
"Inflation": "6.702989858",
"HealthSpendPctGDP": "6.114839561",
"GDPperCapita": "1210.569558",
"PctGDPgrowth": "4.370869417",
"TradeBalance": "",
"PctEmploy": "53.40000153",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "4.303022029",
"PctHIV": "1.1",
"Long": "-59.00",
"Lat": "5.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Haiti",
"CountryCode": "HTI",
"ShortName": "Haiti",
"AvgLong": "-72.42",
"Row": "12",
"Col": "3",
"Region": "Americas",
"Continent": "Central America",
"Population": "9993247",
"PercentFemale": "50.39900445",
"LifeExpectancy": "61.763",
"Inflation": "4.726625491",
"HealthSpendPctGDP": "6.911764202",
"GDPperCapita": "369.9354744",
"PctGDPgrowth": "-5.416012559",
"TradeBalance": "-50.03351778",
"PctEmploy": "59.70000076",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "4.399160753",
"PctHIV": "1.9",
"Long": "-72.42",
"Lat": "19.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Honduras",
"CountryCode": "HND",
"ShortName": "Honduras",
"AvgLong": "-86.50",
"Row": "16",
"Col": "2",
"Region": "Americas",
"Continent": "Central America",
"Population": "7600524",
"PercentFemale": "50.02797176",
"LifeExpectancy": "72.82592683",
"Inflation": "5.707327123",
"HealthSpendPctGDP": "6.754952417",
"GDPperCapita": "1392.315832",
"PctGDPgrowth": "2.773255005",
"TradeBalance": "-20.73790778",
"PctEmploy": "60.29999924",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "4.309268677",
"PctHIV": "",
"Long": "-86.50",
"Lat": "15.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Hong Kong SAR, China",
"CountryCode": "HKG",
"ShortName": "Hong Kong",
"AvgLong": "114.17",
"Row": "9",
"Col": "20",
"Region": "APAC",
"Continent": "South-east Asia",
"Population": "7067800",
"PercentFemale": "52.61930454",
"LifeExpectancy": "82.87804878",
"Inflation": "0.331234989",
"HealthSpendPctGDP": "",
"GDPperCapita": "36207.70622",
"PctGDPgrowth": "6.786581216",
"TradeBalance": "5.426838872",
"PctEmploy": "56.5",
"PctChildEmployment": "",
"GovtDebt": "35.53939878",
"PopOver65": "12.7402229",
"PctHIV": "",
"Long": "114.17",
"Lat": "22.25"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Hungary",
"CountryCode": "HUN",
"ShortName": "Hungary",
"AvgLong": "20.00",
"Row": "6",
"Col": "12",
"Region": "EMEA",
"Continent": "Europe",
"Population": "10000023",
"PercentFemale": "52.52603633",
"LifeExpectancy": "74.20731707",
"Inflation": "3.092748994",
"HealthSpendPctGDP": "7.326060444",
"GDPperCapita": "5633.99099",
"PctGDPgrowth": "1.258152876",
"TradeBalance": "6.501300936",
"PctEmploy": "45",
"PctChildEmployment": "",
"GovtDebt": "82.56439011",
"PopOver65": "16.51952769",
"PctHIV": "0.1",
"Long": "20.00",
"Lat": "47.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Iceland",
"CountryCode": "ISL",
"ShortName": "Iceland",
"AvgLong": "-18.00",
"Row": "1",
"Col": "6",
"Region": "EMEA",
"Continent": "Europe",
"Population": "318041",
"PercentFemale": "49.63796636",
"LifeExpectancy": "81.45121951",
"Inflation": "6.883744073",
"HealthSpendPctGDP": "9.398764088",
"GDPperCapita": "33943.11853",
"PctGDPgrowth": "-4.011970622",
"TradeBalance": "10.08557409",
"PctEmploy": "68.80000305",
"PctChildEmployment": "",
"GovtDebt": "111.4993952",
"PopOver65": "12.01583077",
"PctHIV": "0.3",
"Long": "-18.00",
"Lat": "65.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "India",
"CountryCode": "IND",
"ShortName": "India",
"AvgLong": "77.00",
"Row": "13",
"Col": "17",
"Region": "APAC",
"Continent": "Indian",
"Population": "1224614327",
"PercentFemale": "48.34726599",
"LifeExpectancy": "65.13134146",
"Inflation": "8.48056816",
"HealthSpendPctGDP": "4.054438119",
"GDPperCapita": "794.801256",
"PctGDPgrowth": "9.552869415",
"TradeBalance": "-4.150297905",
"PctEmploy": "53.59999847",
"PctChildEmployment": "",
"GovtDebt": "47.32718266",
"PopOver65": "4.922180696",
"PctHIV": "",
"Long": "77.00",
"Lat": "20.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Indonesia",
"CountryCode": "IDN",
"ShortName": "Indonesia",
"AvgLong": "120.00",
"Row": "18",
"Col": "19",
"Region": "APAC",
"Continent": "South-east Asia",
"Population": "239870937",
"PercentFemale": "50.13049914",
"LifeExpectancy": "68.88965854",
"Inflation": "8.108519979",
"HealthSpendPctGDP": "2.61046472",
"GDPperCapita": "1145.385435",
"PctGDPgrowth": "6.195358535",
"TradeBalance": "1.678821533",
"PctEmploy": "62.59999847",
"PctChildEmployment": "",
"GovtDebt": "26.05050431",
"PopOver65": "5.55229665",
"PctHIV": "0.2",
"Long": "120.00",
"Lat": "-5.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Iran, Islamic Rep.",
"CountryCode": "IRN",
"ShortName": "Iran",
"AvgLong": "53.00",
"Row": "11",
"Col": "15",
"Region": "EMEA",
"Continent": "Middle East",
"Population": "73973630",
"PercentFemale": "49.25053428",
"LifeExpectancy": "72.75185366",
"Inflation": "",
"HealthSpendPctGDP": "5.604360589",
"GDPperCapita": "",
"PctGDPgrowth": "",
"TradeBalance": "",
"PctEmploy": "39.79999924",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "5.230766693",
"PctHIV": "0.2",
"Long": "53.00",
"Lat": "32.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Iraq",
"CountryCode": "IRQ",
"ShortName": "Iraq",
"AvgLong": "44.00",
"Row": "12",
"Col": "15",
"Region": "EMEA",
"Continent": "Middle East",
"Population": "32030823",
"PercentFemale": "49.83880349",
"LifeExpectancy": "68.48604878",
"Inflation": "25.22442136",
"HealthSpendPctGDP": "8.415499211",
"GDPperCapita": "736.2721224",
"PctGDPgrowth": "0.8443",
"TradeBalance": "",
"PctEmploy": "33.5",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "3.269308447",
"PctHIV": "",
"Long": "44.00",
"Lat": "33.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Ireland",
"CountryCode": "IRL",
"ShortName": "Ireland",
"AvgLong": "-8.00",
"Row": "4",
"Col": "6",
"Region": "EMEA",
"Continent": "Europe",
"Population": "4474356",
"PercentFemale": "49.96662118",
"LifeExpectancy": "80.29195122",
"Inflation": "-2.447759247",
"HealthSpendPctGDP": "9.188915094",
"GDPperCapita": "27599.29658",
"PctGDPgrowth": "-0.429352387",
"TradeBalance": "18.90100215",
"PctEmploy": "52.20000076",
"PctChildEmployment": "",
"GovtDebt": "88.75956325",
"PopOver65": "11.67137967",
"PctHIV": "0.3",
"Long": "-8.00",
"Lat": "53.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Israel",
"CountryCode": "ISR",
"ShortName": "Israel",
"AvgLong": "34.75",
"Row": "12",
"Col": "13",
"Region": "EMEA",
"Continent": "Middle East",
"Population": "7623600",
"PercentFemale": "50.65481775",
"LifeExpectancy": "81.50487805",
"Inflation": "1.196777511",
"HealthSpendPctGDP": "7.632321753",
"GDPperCapita": "22239.05126",
"PctGDPgrowth": "4.845925338",
"TradeBalance": "1.943861229",
"PctEmploy": "53.5",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "10.41541303",
"PctHIV": "0.2",
"Long": "34.75",
"Lat": "31.50"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Italy",
"CountryCode": "ITA",
"ShortName": "Italy",
"AvgLong": "12.83",
"Row": "8",
"Col": "9",
"Region": "EMEA",
"Continent": "Europe",
"Population": "60483385",
"PercentFemale": "51.08917385",
"LifeExpectancy": "81.73658537",
"Inflation": "0.378762614",
"HealthSpendPctGDP": "9.529130763",
"GDPperCapita": "18944.41381",
"PctGDPgrowth": "1.811401808",
"TradeBalance": "-1.947281379",
"PctEmploy": "44.29999924",
"PctChildEmployment": "",
"GovtDebt": "117.2885765",
"PopOver65": "20.35040698",
"PctHIV": "0.4",
"Long": "12.83",
"Lat": "42.83"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Jamaica",
"CountryCode": "JAM",
"ShortName": "Jamaica",
"AvgLong": "-77.50",
"Row": "13",
"Col": "2",
"Region": "Americas",
"Continent": "Central America",
"Population": "2702300",
"PercentFemale": "50.78874826",
"LifeExpectancy": "72.84712195",
"Inflation": "",
"HealthSpendPctGDP": "4.808957176",
"GDPperCapita": "",
"PctGDPgrowth": "",
"TradeBalance": "-18.23537315",
"PctEmploy": "55.90000153",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "7.848008721",
"PctHIV": "1.8",
"Long": "-77.50",
"Lat": "18.25"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Japan",
"CountryCode": "JPN",
"ShortName": "Japan",
"AvgLong": "138.00",
"Row": "7",
"Col": "22",
"Region": "APAC",
"Continent": "South-east Asia",
"Population": "127450459",
"PercentFemale": "51.27536513",
"LifeExpectancy": "82.93268293",
"Inflation": "-2.08543109",
"HealthSpendPctGDP": "9.486847457",
"GDPperCapita": "39971.78745",
"PctGDPgrowth": "4.43511325",
"TradeBalance": "1.196268286",
"PctEmploy": "57.29999924",
"PctChildEmployment": "",
"GovtDebt": "174.9786622",
"PopOver65": "22.68687579",
"PctHIV": "0.1",
"Long": "138.00",
"Lat": "36.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Jordan",
"CountryCode": "JOR",
"ShortName": "Jordan",
"AvgLong": "36.00",
"Row": "12",
"Col": "14",
"Region": "EMEA",
"Continent": "Middle East",
"Population": "6047000",
"PercentFemale": "48.56773479",
"LifeExpectancy": "73.28965854",
"Inflation": "8.436039987",
"HealthSpendPctGDP": "8.040780394",
"GDPperCapita": "2579.382449",
"PctGDPgrowth": "2.307055764",
"TradeBalance": "-21.24131697",
"PctEmploy": "36",
"PctChildEmployment": "",
"GovtDebt": "61.37345765",
"PopOver65": "3.913206999",
"PctHIV": "",
"Long": "36.00",
"Lat": "31.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Kazakhstan",
"CountryCode": "KAZ",
"ShortName": "Kazakhstan",
"AvgLong": "68.00",
"Row": "7",
"Col": "16",
"Region": "APAC",
"Continent": "Central Asia",
"Population": "16323287",
"PercentFemale": "51.98769628",
"LifeExpectancy": "68.29536585",
"Inflation": "19.5422854",
"HealthSpendPctGDP": "4.288373744",
"GDPperCapita": "2481.675284",
"PctGDPgrowth": "7.299999999",
"TradeBalance": "14.74297675",
"PctEmploy": "67.19999695",
"PctChildEmployment": "",
"GovtDebt": "10.18534315",
"PopOver65": "6.780994096",
"PctHIV": "0.2",
"Long": "68.00",
"Lat": "48.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Kenya",
"CountryCode": "KEN",
"ShortName": "Kenya",
"AvgLong": "38.00",
"Row": "19",
"Col": "14",
"Region": "EMEA",
"Continent": "Africa",
"Population": "40512682",
"PercentFemale": "50.05588374",
"LifeExpectancy": "56.49707317",
"Inflation": "1.972242126",
"HealthSpendPctGDP": "4.754493429",
"GDPperCapita": "470.5770914",
"PctGDPgrowth": "5.764902975",
"TradeBalance": "-12.25575336",
"PctEmploy": "60.09999847",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "2.651742484",
"PctHIV": "6.2",
"Long": "38.00",
"Lat": "1.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Kiribati",
"CountryCode": "KIR",
"ShortName": "Kiribati",
"AvgLong": "173.00",
"Row": "16",
"Col": "22",
"Region": "APAC",
"Continent": "Oceania",
"Population": "99546",
"PercentFemale": "",
"LifeExpectancy": "",
"Inflation": "-1.287318635",
"HealthSpendPctGDP": "11.24590584",
"GDPperCapita": "713.5624963",
"PctGDPgrowth": "1.4",
"TradeBalance": "",
"PctEmploy": "",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "",
"PctHIV": "",
"Long": "173.00",
"Lat": "1.42"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Korea, Dem. Rep.",
"CountryCode": "PRK",
"ShortName": "North Korea",
"AvgLong": "127.00",
"Row": "6",
"Col": "21",
"Region": "APAC",
"Continent": "South-east Asia",
"Population": "24346229",
"PercentFemale": "50.93996282",
"LifeExpectancy": "68.53214634",
"Inflation": "",
"HealthSpendPctGDP": "",
"GDPperCapita": "",
"PctGDPgrowth": "",
"TradeBalance": "",
"PctEmploy": "74",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "9.505044909",
"PctHIV": "",
"Long": "127.00",
"Lat": "40.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Korea, Rep.",
"CountryCode": "KOR",
"ShortName": "South Korea",
"AvgLong": "127.50",
"Row": "7",
"Col": "21",
"Region": "APAC",
"Continent": "South-east Asia",
"Population": "49410000",
"PercentFemale": "50.14957584",
"LifeExpectancy": "80.76195122",
"Inflation": "3.614171834",
"HealthSpendPctGDP": "6.931594503",
"GDPperCapita": "16219.38807",
"PctGDPgrowth": "6.320254036",
"TradeBalance": "2.574929371",
"PctEmploy": "58",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "11.14345707",
"PctHIV": "0.1",
"Long": "127.50",
"Lat": "37.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Kuwait",
"CountryCode": "KWT",
"ShortName": "Kuwait",
"AvgLong": "47.66",
"Row": "13",
"Col": "15",
"Region": "EMEA",
"Continent": "Middle East",
"Population": "2736732",
"PercentFemale": "40.32035289",
"LifeExpectancy": "74.60473171",
"Inflation": "13.06171603",
"HealthSpendPctGDP": "2.628667598",
"GDPperCapita": "23114.58667",
"PctGDPgrowth": "3.41",
"TradeBalance": "33.78795532",
"PctEmploy": "66.19999695",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "2.511499116",
"PctHIV": "",
"Long": "47.66",
"Lat": "29.34"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Kyrgyz Republic",
"CountryCode": "KGZ",
"ShortName": "Kyrgyzstan",
"AvgLong": "75.00",
"Row": "9",
"Col": "17",
"Region": "APAC",
"Continent": "Central Asia",
"Population": "5447900",
"PercentFemale": "50.66299253",
"LifeExpectancy": "69.36846341",
"Inflation": "10.03390355",
"HealthSpendPctGDP": "6.179746155",
"GDPperCapita": "376.0840211",
"PctGDPgrowth": "-0.471566606",
"TradeBalance": "-30.12420514",
"PctEmploy": "60.5",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "4.430560927",
"PctHIV": "0.3",
"Long": "75.00",
"Lat": "41.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Lao PDR",
"CountryCode": "LAO",
"ShortName": "Laos",
"AvgLong": "105.00",
"Row": "13",
"Col": "19",
"Region": "APAC",
"Continent": "South-east Asia",
"Population": "6200894",
"PercentFemale": "50.10648465",
"LifeExpectancy": "67.064",
"Inflation": "10.01845717",
"HealthSpendPctGDP": "4.467915597",
"GDPperCapita": "555.5194618",
"PctGDPgrowth": "8.526905517",
"TradeBalance": "-2.366004121",
"PctEmploy": "77",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "3.87169979",
"PctHIV": "0.3",
"Long": "105.00",
"Lat": "18.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Latvia",
"CountryCode": "LVA",
"ShortName": "Latvia",
"AvgLong": "25.00",
"Row": "3",
"Col": "12",
"Region": "EMEA",
"Continent": "Europe",
"Population": "2239008",
"PercentFemale": "54.00708684",
"LifeExpectancy": "73.48292683",
"Inflation": "-2.315719341",
"HealthSpendPctGDP": "6.684604183",
"GDPperCapita": "5011.201551",
"PctGDPgrowth": "-0.343503564",
"TradeBalance": "-1.424316314",
"PctEmploy": "48.70000076",
"PctChildEmployment": "",
"GovtDebt": "49.88284724",
"PopOver65": "17.79783842",
"PctHIV": "0.7",
"Long": "25.00",
"Lat": "57.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Lebanon",
"CountryCode": "LBN",
"ShortName": "Lebanon",
"AvgLong": "35.83",
"Row": "11",
"Col": "13",
"Region": "EMEA",
"Continent": "Middle East",
"Population": "4227597",
"PercentFemale": "51.1746271",
"LifeExpectancy": "72.4087561",
"Inflation": "0.12967746",
"HealthSpendPctGDP": "7.029374406",
"GDPperCapita": "6745.659909",
"PctGDPgrowth": "7",
"TradeBalance": "-28.03895292",
"PctEmploy": "41.70000076",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "7.297597193",
"PctHIV": "0.1",
"Long": "35.83",
"Lat": "33.83"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Lesotho",
"CountryCode": "LSO",
"ShortName": "Lesotho",
"AvgLong": "28.50",
"Row": "25",
"Col": "12",
"Region": "EMEA",
"Continent": "Africa",
"Population": "2171318",
"PercentFemale": "50.85353688",
"LifeExpectancy": "47.36507317",
"Inflation": "4.18384826",
"HealthSpendPctGDP": "11.0843019",
"GDPperCapita": "495.6616443",
"PctGDPgrowth": "5.608707089",
"TradeBalance": "-70.0760959",
"PctEmploy": "47.20000076",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "4.28730384",
"PctHIV": "23.2",
"Long": "28.50",
"Lat": "-29.50"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Liberia",
"CountryCode": "LBR",
"ShortName": "Liberia",
"AvgLong": "-9.50",
"Row": "18",
"Col": "7",
"Region": "EMEA",
"Continent": "Africa",
"Population": "3994122",
"PercentFemale": "49.7598471",
"LifeExpectancy": "56.14758537",
"Inflation": "5.473708437",
"HealthSpendPctGDP": "11.84910016",
"GDPperCapita": "263.7055952",
"PctGDPgrowth": "10.9425022",
"TradeBalance": "-62.98462285",
"PctEmploy": "58.59999847",
"PctChildEmployment": "18.4",
"GovtDebt": "",
"PopOver65": "2.793730387",
"PctHIV": "1.1",
"Long": "-9.50",
"Lat": "6.50"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Libya",
"CountryCode": "LBY",
"ShortName": "Libya",
"AvgLong": "17.00",
"Row": "13",
"Col": "11",
"Region": "EMEA",
"Continent": "Africa",
"Population": "6355112",
"PercentFemale": "49.28854126",
"LifeExpectancy": "74.75312195",
"Inflation": "",
"HealthSpendPctGDP": "3.882025239",
"GDPperCapita": "",
"PctGDPgrowth": "",
"TradeBalance": "",
"PctEmploy": "49.20000076",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "4.308122343",
"PctHIV": "",
"Long": "17.00",
"Lat": "25.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Liechtenstein",
"CountryCode": "LIE",
"ShortName": "Liechtenstein",
"AvgLong": "9.53",
"Row": "6",
"Col": "9",
"Region": "EMEA",
"Continent": "Europe",
"Population": "36032",
"PercentFemale": "",
"LifeExpectancy": "",
"Inflation": "",
"HealthSpendPctGDP": "",
"GDPperCapita": "",
"PctGDPgrowth": "",
"TradeBalance": "",
"PctEmploy": "",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "",
"PctHIV": "",
"Long": "9.53",
"Lat": "47.17"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Lithuania",
"CountryCode": "LTU",
"ShortName": "Lithuania",
"AvgLong": "24.00",
"Row": "4",
"Col": "12",
"Region": "EMEA",
"Continent": "Europe",
"Population": "3286820",
"PercentFemale": "53.53938833",
"LifeExpectancy": "73.26829268",
"Inflation": "2.029189149",
"HealthSpendPctGDP": "7.039939026",
"GDPperCapita": "5332.530607",
"PctGDPgrowth": "1.330192805",
"TradeBalance": "-1.033696802",
"PctEmploy": "47.90000153",
"PctChildEmployment": "",
"GovtDebt": "43.16201638",
"PopOver65": "16.05663238",
"PctHIV": "0.1",
"Long": "24.00",
"Lat": "56.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Luxembourg",
"CountryCode": "LUX",
"ShortName": "Luxembourg",
"AvgLong": "6.17",
"Row": "5",
"Col": "9",
"Region": "EMEA",
"Continent": "Europe",
"Population": "506953",
"PercentFemale": "50.29086724",
"LifeExpectancy": "80.08780488",
"Inflation": "7.629706569",
"HealthSpendPctGDP": "7.771442983",
"GDPperCapita": "52222.57667",
"PctGDPgrowth": "2.914964435",
"TradeBalance": "32.10008645",
"PctEmploy": "54.59999847",
"PctChildEmployment": "",
"GovtDebt": "17.27683196",
"PopOver65": "13.92359414",
"PctHIV": "0.3",
"Long": "6.17",
"Lat": "49.75"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Macao SAR, China",
"CountryCode": "MAC",
"ShortName": "Macao",
"AvgLong": "113.55",
"Row": "10",
"Col": "20",
"Region": "APAC",
"Continent": "South-east Asia",
"Population": "543656",
"PercentFemale": "51.98655032",
"LifeExpectancy": "80.77531707",
"Inflation": "4.650429232",
"HealthSpendPctGDP": "",
"GDPperCapita": "34083.96421",
"PctGDPgrowth": "27.03592001",
"TradeBalance": "55.91566634",
"PctEmploy": "69.40000153",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "7.036986624",
"PctHIV": "",
"Long": "113.55",
"Lat": "22.17"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Macedonia, FYR",
"CountryCode": "MKD",
"ShortName": "Macedonia",
"AvgLong": "22.00",
"Row": "9",
"Col": "12",
"Region": "EMEA",
"Continent": "Europe",
"Population": "2060563",
"PercentFemale": "49.90854441",
"LifeExpectancy": "74.61885366",
"Inflation": "1.611285831",
"HealthSpendPctGDP": "7.088492886",
"GDPperCapita": "2220.04388",
"PctGDPgrowth": "1.775478211",
"TradeBalance": "-18.74413049",
"PctEmploy": "37.90000153",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "11.81672193",
"PctHIV": "",
"Long": "22.00",
"Lat": "41.83"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Madagascar",
"CountryCode": "MDG",
"ShortName": "Madagascar",
"AvgLong": "47.00",
"Row": "24",
"Col": "14",
"Region": "EMEA",
"Continent": "Africa",
"Population": "20713819",
"PercentFemale": "50.15144721",
"LifeExpectancy": "66.46707317",
"Inflation": "9.515744842",
"HealthSpendPctGDP": "3.768611253",
"GDPperCapita": "242.6858167",
"PctGDPgrowth": "1.565685967",
"TradeBalance": "-13.22534918",
"PctEmploy": "83.90000153",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "3.141468022",
"PctHIV": "0.3",
"Long": "47.00",
"Lat": "-20.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Malawi",
"CountryCode": "MWI",
"ShortName": "Malawi",
"AvgLong": "34.00",
"Row": "22",
"Col": "13",
"Region": "EMEA",
"Continent": "Africa",
"Population": "14900841",
"PercentFemale": "49.97067615",
"LifeExpectancy": "53.46263415",
"Inflation": "7.383765082",
"HealthSpendPctGDP": "6.593045662",
"GDPperCapita": "180.9022956",
"PctGDPgrowth": "6.533362436",
"TradeBalance": "-15.5645054",
"PctEmploy": "76.80000305",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "3.085906359",
"PctHIV": "10.4",
"Long": "34.00",
"Lat": "-13.50"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Malaysia",
"CountryCode": "MYS",
"ShortName": "Malaysia",
"AvgLong": "112.50",
"Row": "16",
"Col": "19",
"Region": "APAC",
"Continent": "South-east Asia",
"Population": "28401017",
"PercentFemale": "49.27165108",
"LifeExpectancy": "74.02456098",
"Inflation": "4.081401226",
"HealthSpendPctGDP": "4.394074729",
"GDPperCapita": "5168.686016",
"PctGDPgrowth": "7.15401566",
"TradeBalance": "17.15956087",
"PctEmploy": "58.5",
"PctChildEmployment": "",
"GovtDebt": "51.20564166",
"PopOver65": "4.769385547",
"PctHIV": "0.4",
"Long": "112.50",
"Lat": "2.50"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Maldives",
"CountryCode": "MDV",
"ShortName": "Maldives",
"AvgLong": "73.00",
"Row": "15",
"Col": "17",
"Region": "APAC",
"Continent": "Indian",
"Population": "315885",
"PercentFemale": "49.5778527",
"LifeExpectancy": "76.55141463",
"Inflation": "1.0867041",
"HealthSpendPctGDP": "6.33073479",
"GDPperCapita": "3800.488287",
"PctGDPgrowth": "5.723732441",
"TradeBalance": "15.15297519",
"PctEmploy": "57.20000076",
"PctChildEmployment": "",
"GovtDebt": "68.4428451",
"PopOver65": "5.229118192",
"PctHIV": "0.1",
"Long": "73.00",
"Lat": "3.25"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Mali",
"CountryCode": "MLI",
"ShortName": "Mali",
"AvgLong": "-4.00",
"Row": "14",
"Col": "9",
"Region": "EMEA",
"Continent": "Africa",
"Population": "15369809",
"PercentFemale": "50.03984109",
"LifeExpectancy": "50.95482927",
"Inflation": "4.201683296",
"HealthSpendPctGDP": "4.978113501",
"GDPperCapita": "273.2537959",
"PctGDPgrowth": "5.8",
"TradeBalance": "",
"PctEmploy": "48.29999924",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "2.200430728",
"PctHIV": "1.1",
"Long": "-4.00",
"Lat": "17.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Malta",
"CountryCode": "MLT",
"ShortName": "Malta",
"AvgLong": "14.58",
"Row": "9",
"Col": "9",
"Region": "EMEA",
"Continent": "Europe",
"Population": "415995",
"PercentFemale": "50.38858144",
"LifeExpectancy": "80.94878049",
"Inflation": "2.927276059",
"HealthSpendPctGDP": "8.647403345",
"GDPperCapita": "11062.23272",
"PctGDPgrowth": "2.711745796",
"TradeBalance": "3.418401285",
"PctEmploy": "47.70000076",
"PctChildEmployment": "",
"GovtDebt": "82.65671063",
"PopOver65": "14.06287889",
"PctHIV": "0.1",
"Long": "14.58",
"Lat": "35.83"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Marshall Islands",
"CountryCode": "MHL",
"ShortName": "Marshall Is.",
"AvgLong": "168.00",
"Row": "13",
"Col": "22",
"Region": "APAC",
"Continent": "Oceania",
"Population": "54038",
"PercentFemale": "",
"LifeExpectancy": "",
"Inflation": "2.18919062",
"HealthSpendPctGDP": "18.04897241",
"GDPperCapita": "2437.282445",
"PctGDPgrowth": "5.202210104",
"TradeBalance": "",
"PctEmploy": "",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "",
"PctHIV": "",
"Long": "168.00",
"Lat": "9.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Mauritania",
"CountryCode": "MRT",
"ShortName": "Mauritania",
"AvgLong": "-12.00",
"Row": "12",
"Col": "7",
"Region": "EMEA",
"Continent": "Africa",
"Population": "3459773",
"PercentFemale": "49.74736782",
"LifeExpectancy": "58.21695122",
"Inflation": "19.35438202",
"HealthSpendPctGDP": "4.413415634",
"GDPperCapita": "609.1711718",
"PctGDPgrowth": "5.185906804",
"TradeBalance": "-11.61008057",
"PctEmploy": "36",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "2.694251906",
"PctHIV": "1.1",
"Long": "-12.00",
"Lat": "20.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Mauritius",
"CountryCode": "MUS",
"ShortName": "Mauritius",
"AvgLong": "57.55",
"Row": "25",
"Col": "15",
"Region": "EMEA",
"Continent": "Africa",
"Population": "1280924",
"PercentFemale": "50.60538558",
"LifeExpectancy": "72.96731707",
"Inflation": "1.620448868",
"HealthSpendPctGDP": "5.997893613",
"GDPperCapita": "5180.967874",
"PctGDPgrowth": "4.131717977",
"TradeBalance": "-11.31084413",
"PctEmploy": "54.90000153",
"PctChildEmployment": "",
"GovtDebt": "37.91678099",
"PopOver65": "6.891158369",
"PctHIV": "1",
"Long": "57.55",
"Lat": "-20.28"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Mexico",
"CountryCode": "MEX",
"ShortName": "Mexico",
"AvgLong": "-102.00",
"Row": "10",
"Col": "1",
"Region": "Americas",
"Continent": "Central America",
"Population": "113423047",
"PercentFemale": "50.68635301",
"LifeExpectancy": "76.68378049",
"Inflation": "4.226752252",
"HealthSpendPctGDP": "6.323380349",
"GDPperCapita": "6124.709571",
"PctGDPgrowth": "5.532375327",
"TradeBalance": "-1.236970951",
"PctEmploy": "58.40000153",
"PctChildEmployment": "8",
"GovtDebt": "",
"PopOver65": "6.348787297",
"PctHIV": "0.3",
"Long": "-102.00",
"Lat": "23.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Micronesia, Fed. Sts.",
"CountryCode": "FSM",
"ShortName": "Micronesia",
"AvgLong": "158.25",
"Row": "14",
"Col": "22",
"Region": "APAC",
"Continent": "Oceania",
"Population": "111064",
"PercentFemale": "49.00867968",
"LifeExpectancy": "68.76482927",
"Inflation": "3.368222773",
"HealthSpendPctGDP": "14.15261886",
"GDPperCapita": "2134.037162",
"PctGDPgrowth": "2.530561756",
"TradeBalance": "",
"PctEmploy": "",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "3.668155298",
"PctHIV": "",
"Long": "158.25",
"Lat": "6.92"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Moldova",
"CountryCode": "MDA",
"ShortName": "Moldova",
"AvgLong": "29.00",
"Row": "6",
"Col": "14",
"Region": "EMEA",
"Continent": "Europe",
"Population": "3562062",
"PercentFemale": "52.5512576",
"LifeExpectancy": "68.90370732",
"Inflation": "11.07709966",
"HealthSpendPctGDP": "11.68283483",
"GDPperCapita": "596.6866117",
"PctGDPgrowth": "7.094071762",
"TradeBalance": "-39.31999948",
"PctEmploy": "38",
"PctChildEmployment": "",
"GovtDebt": "26.32298147",
"PopOver65": "11.15314375",
"PctHIV": "0.5",
"Long": "29.00",
"Lat": "47.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Monaco",
"CountryCode": "MCO",
"ShortName": "Monaco",
"AvgLong": "7.40",
"Row": "7",
"Col": "8",
"Region": "EMEA",
"Continent": "Europe",
"Population": "35407",
"PercentFemale": "",
"LifeExpectancy": "",
"Inflation": "",
"HealthSpendPctGDP": "4.301855232",
"GDPperCapita": "",
"PctGDPgrowth": "",
"TradeBalance": "",
"PctEmploy": "",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "",
"PctHIV": "",
"Long": "7.40",
"Lat": "43.73"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Mongolia",
"CountryCode": "MNG",
"ShortName": "Mongolia",
"AvgLong": "105.00",
"Row": "6",
"Col": "19",
"Region": "APAC",
"Continent": "South-east Asia",
"Population": "2756001",
"PercentFemale": "50.62694099",
"LifeExpectancy": "68.19497561",
"Inflation": "20.03329976",
"HealthSpendPctGDP": "5.441673473",
"GDPperCapita": "772.9330643",
"PctGDPgrowth": "6.365161685",
"TradeBalance": "-7.651963708",
"PctEmploy": "56.90000153",
"PctChildEmployment": "",
"GovtDebt": "44.98061014",
"PopOver65": "4.076994167",
"PctHIV": "0.1",
"Long": "105.00",
"Lat": "46.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Montenegro",
"CountryCode": "MNE",
"ShortName": "Montenegro",
"AvgLong": "19.00",
"Row": "9",
"Col": "11",
"Region": "EMEA",
"Continent": "Europe",
"Population": "631490",
"PercentFemale": "50.93144785",
"LifeExpectancy": "74.31109756",
"Inflation": "1.582849442",
"HealthSpendPctGDP": "9.113624818",
"GDPperCapita": "2224.129841",
"PctGDPgrowth": "2.5",
"TradeBalance": "-28.40174557",
"PctEmploy": "",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "12.46496382",
"PctHIV": "",
"Long": "19.00",
"Lat": "42.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Morocco",
"CountryCode": "MAR",
"ShortName": "Morocco",
"AvgLong": "-5.00",
"Row": "12",
"Col": "8",
"Region": "EMEA",
"Continent": "Africa",
"Population": "31951412",
"PercentFemale": "50.96012971",
"LifeExpectancy": "71.86463415",
"Inflation": "0.647134454",
"HealthSpendPctGDP": "5.194716036",
"GDPperCapita": "1844.351028",
"PctGDPgrowth": "3.677899798",
"TradeBalance": "-9.915583107",
"PctEmploy": "45",
"PctChildEmployment": "",
"GovtDebt": "50.30053565",
"PopOver65": "5.492189203",
"PctHIV": "0.2",
"Long": "-5.00",
"Lat": "32.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Mozambique",
"CountryCode": "MOZ",
"ShortName": "Mozambique",
"AvgLong": "35.00",
"Row": "23",
"Col": "13",
"Region": "EMEA",
"Continent": "Africa",
"Population": "23390765",
"PercentFemale": "51.34650791",
"LifeExpectancy": "49.69692683",
"Inflation": "10.00139549",
"HealthSpendPctGDP": "5.206886854",
"GDPperCapita": "383.583257",
"PctGDPgrowth": "6.8",
"TradeBalance": "-18.71164997",
"PctEmploy": "78.30000305",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "3.30373547",
"PctHIV": "11.3",
"Long": "35.00",
"Lat": "-18.25"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Myanmar",
"CountryCode": "MMR",
"ShortName": "Myanmar",
"AvgLong": "98.00",
"Row": "14",
"Col": "18",
"Region": "APAC",
"Continent": "South-east Asia",
"Population": "47963012",
"PercentFemale": "50.71225927",
"LifeExpectancy": "64.66209756",
"Inflation": "",
"HealthSpendPctGDP": "1.969050759",
"GDPperCapita": "",
"PctGDPgrowth": "",
"TradeBalance": "",
"PctEmploy": "75.69999695",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "5.127542866",
"PctHIV": "0.7",
"Long": "98.00",
"Lat": "22.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Namibia",
"CountryCode": "NAM",
"ShortName": "Namibia",
"AvgLong": "17.00",
"Row": "24",
"Col": "11",
"Region": "EMEA",
"Continent": "Africa",
"Population": "2283289",
"PercentFemale": "50.33519629",
"LifeExpectancy": "62.07009756",
"Inflation": "1.034994236",
"HealthSpendPctGDP": "6.778495389",
"GDPperCapita": "2695.878327",
"PctGDPgrowth": "6.600283375",
"TradeBalance": "1.21291977",
"PctEmploy": "40",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "3.671326757",
"PctHIV": "13.6",
"Long": "17.00",
"Lat": "-22.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Nepal",
"CountryCode": "NPL",
"ShortName": "Nepal",
"AvgLong": "84.00",
"Row": "12",
"Col": "17",
"Region": "APAC",
"Continent": "Indian",
"Population": "29959364",
"PercentFemale": "50.39207441",
"LifeExpectancy": "68.39482927",
"Inflation": "15.23429851",
"HealthSpendPctGDP": "5.519436241",
"GDPperCapita": "269.24519",
"PctGDPgrowth": "4.81641465",
"TradeBalance": "-26.7994997",
"PctEmploy": "82.19999695",
"PctChildEmployment": "",
"GovtDebt": "33.83684801",
"PopOver65": "4.171854249",
"PctHIV": "0.3",
"Long": "84.00",
"Lat": "28.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Netherlands",
"CountryCode": "NLD",
"ShortName": "Netherlands",
"AvgLong": "5.75",
"Row": "4",
"Col": "9",
"Region": "EMEA",
"Continent": "Europe",
"Population": "16615394",
"PercentFemale": "50.37952835",
"LifeExpectancy": "80.70243902",
"Inflation": "1.05837608",
"HealthSpendPctGDP": "11.92238798",
"GDPperCapita": "26501.04582",
"PctGDPgrowth": "1.629205176",
"TradeBalance": "8.154023848",
"PctEmploy": "61.90000153",
"PctChildEmployment": "",
"GovtDebt": "61.48605496",
"PopOver65": "15.30825159",
"PctHIV": "0.2",
"Long": "5.75",
"Lat": "52.50"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "New Caledonia",
"CountryCode": "NCL",
"ShortName": "New Caledonia",
"AvgLong": "165.50",
"Row": "21",
"Col": "21",
"Region": "APAC",
"Continent": "Oceania",
"Population": "247000",
"PercentFemale": "49.95495675",
"LifeExpectancy": "76.30168293",
"Inflation": "",
"HealthSpendPctGDP": "",
"GDPperCapita": "",
"PctGDPgrowth": "",
"TradeBalance": "",
"PctEmploy": "",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "8.035635987",
"PctHIV": "",
"Long": "165.50",
"Lat": "-21.50"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "New Zealand",
"CountryCode": "NZL",
"ShortName": "New Zealand",
"AvgLong": "174.00",
"Row": "25",
"Col": "21",
"Region": "APAC",
"Continent": "Oceania",
"Population": "4367800",
"PercentFemale": "50.89770557",
"LifeExpectancy": "80.70243902",
"Inflation": "4.57185784",
"HealthSpendPctGDP": "10.0962882",
"GDPperCapita": "14629.2181",
"PctGDPgrowth": "0.184853645",
"TradeBalance": "1.509012637",
"PctEmploy": "63.20000076",
"PctChildEmployment": "",
"GovtDebt": "48.4703601",
"PopOver65": "13.00582216",
"PctHIV": "0.1",
"Long": "174.00",
"Lat": "-41.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Nicaragua",
"CountryCode": "NIC",
"ShortName": "Nicaragua",
"AvgLong": "-85.00",
"Row": "17",
"Col": "2",
"Region": "Americas",
"Continent": "Central America",
"Population": "5788163",
"PercentFemale": "50.52698067",
"LifeExpectancy": "73.72921951",
"Inflation": "6.409170973",
"HealthSpendPctGDP": "9.138203766",
"GDPperCapita": "1179.183343",
"PctGDPgrowth": "3.140837062",
"TradeBalance": "-16.91118382",
"PctEmploy": "59.70000076",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "4.613449898",
"PctHIV": "0.2",
"Long": "-85.00",
"Lat": "13.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Niger",
"CountryCode": "NER",
"ShortName": "Niger",
"AvgLong": "8.00",
"Row": "14",
"Col": "10",
"Region": "EMEA",
"Continent": "Africa",
"Population": "15511953",
"PercentFemale": "49.70515963",
"LifeExpectancy": "54.26563415",
"Inflation": "0.005912952",
"HealthSpendPctGDP": "5.161291163",
"GDPperCapita": "179.2932276",
"PctGDPgrowth": "8",
"TradeBalance": "",
"PctEmploy": "61.29999924",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "2.193811443",
"PctHIV": "0.8",
"Long": "8.00",
"Lat": "16.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Nigeria",
"CountryCode": "NGA",
"ShortName": "Nigeria",
"AvgLong": "8.00",
"Row": "18",
"Col": "11",
"Region": "EMEA",
"Continent": "Africa",
"Population": "158423182",
"PercentFemale": "49.37546261",
"LifeExpectancy": "51.41002439",
"Inflation": "26.77958506",
"HealthSpendPctGDP": "5.067857074",
"GDPperCapita": "540.6852114",
"PctGDPgrowth": "7.976074958",
"TradeBalance": "5.309756761",
"PctEmploy": "51.40000153",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "3.3973052",
"PctHIV": "3.7",
"Long": "8.00",
"Lat": "10.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Northern Mariana Islands",
"CountryCode": "MNP",
"ShortName": "N. Mariana Is.",
"AvgLong": "145.75",
"Row": "11",
"Col": "22",
"Region": "APAC",
"Continent": "Oceania",
"Population": "60917",
"PercentFemale": "",
"LifeExpectancy": "",
"Inflation": "",
"HealthSpendPctGDP": "",
"GDPperCapita": "",
"PctGDPgrowth": "",
"TradeBalance": "",
"PctEmploy": "",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "",
"PctHIV": "",
"Long": "145.75",
"Lat": "15.20"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Norway",
"CountryCode": "NOR",
"ShortName": "Norway",
"AvgLong": "10.00",
"Row": "1",
"Col": "10",
"Region": "EMEA",
"Continent": "Europe",
"Population": "4889252",
"PercentFemale": "49.9741251",
"LifeExpectancy": "80.99756098",
"Inflation": "6.351168488",
"HealthSpendPctGDP": "9.475847948",
"GDPperCapita": "39970.29253",
"PctGDPgrowth": "0.676520209",
"TradeBalance": "12.38850583",
"PctEmploy": "63.5",
"PctChildEmployment": "",
"GovtDebt": "35.99891567",
"PopOver65": "14.6830371",
"PctHIV": "0.2",
"Long": "10.00",
"Lat": "62.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Oman",
"CountryCode": "OMN",
"ShortName": "Oman",
"AvgLong": "57.00",
"Row": "16",
"Col": "16",
"Region": "EMEA",
"Continent": "Middle East",
"Population": "2782435",
"PercentFemale": "41.28434267",
"LifeExpectancy": "73.12460976",
"Inflation": "18.68756937",
"HealthSpendPctGDP": "2.765886741",
"GDPperCapita": "11345.42955",
"PctGDPgrowth": "4",
"TradeBalance": "",
"PctEmploy": "54.90000153",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "2.540364824",
"PctHIV": "",
"Long": "57.00",
"Lat": "21.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Pakistan",
"CountryCode": "PAK",
"ShortName": "Pakistan",
"AvgLong": "70.00",
"Row": "12",
"Col": "16",
"Region": "APAC",
"Continent": "Indian",
"Population": "173593383",
"PercentFemale": "49.17031025",
"LifeExpectancy": "65.19885366",
"Inflation": "12.35925557",
"HealthSpendPctGDP": "2.195932953",
"GDPperCapita": "664.7112698",
"PctGDPgrowth": "3.546805378",
"TradeBalance": "-5.861932699",
"PctEmploy": "50.5",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "4.303404237",
"PctHIV": "0.1",
"Long": "70.00",
"Lat": "30.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Palau",
"CountryCode": "PLW",
"ShortName": "Palau",
"AvgLong": "134.50",
"Row": "14",
"Col": "21",
"Region": "APAC",
"Continent": "Oceania",
"Population": "20472",
"PercentFemale": "",
"LifeExpectancy": "",
"Inflation": "1.6",
"HealthSpendPctGDP": "10.25460056",
"GDPperCapita": "5756.810516",
"PctGDPgrowth": "0.3",
"TradeBalance": "-1.665264817",
"PctEmploy": "",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "",
"PctHIV": "",
"Long": "134.50",
"Lat": "7.50"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Panama",
"CountryCode": "PAN",
"ShortName": "Panama",
"AvgLong": "-80.00",
"Row": "19",
"Col": "2",
"Region": "Americas",
"Continent": "Central America",
"Population": "3516820",
"PercentFemale": "49.61868961",
"LifeExpectancy": "75.9742439",
"Inflation": "3.338307104",
"HealthSpendPctGDP": "8.095426689",
"GDPperCapita": "6109.58737",
"PctGDPgrowth": "7.607839452",
"TradeBalance": "7.460901293",
"PctEmploy": "61.70000076",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "6.587883372",
"PctHIV": "0.8",
"Long": "-80.00",
"Lat": "9.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Papua New Guinea",
"CountryCode": "PNG",
"ShortName": "Papua New Guinea",
"AvgLong": "147.00",
"Row": "18",
"Col": "20",
"Region": "APAC",
"Continent": "South-east Asia",
"Population": "6858266",
"PercentFemale": "48.99166932",
"LifeExpectancy": "62.44060976",
"Inflation": "9.259259259",
"HealthSpendPctGDP": "3.575054705",
"GDPperCapita": "744.2105476",
"PctGDPgrowth": "8",
"TradeBalance": "2.771082836",
"PctEmploy": "70.5",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "2.779492659",
"PctHIV": "0.7",
"Long": "147.00",
"Lat": "-6.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Paraguay",
"CountryCode": "PRY",
"ShortName": "Paraguay",
"AvgLong": "-58.00",
"Row": "23",
"Col": "4",
"Region": "Americas",
"Continent": "South America",
"Population": "6454548",
"PercentFemale": "49.54903116",
"LifeExpectancy": "72.277",
"Inflation": "7.050095682",
"HealthSpendPctGDP": "5.868259515",
"GDPperCapita": "1578.636338",
"PctGDPgrowth": "14.24364667",
"TradeBalance": "-6.514005896",
"PctEmploy": "68.5",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "5.104292353",
"PctHIV": "0.3",
"Long": "-58.00",
"Lat": "-23.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Peru",
"CountryCode": "PER",
"ShortName": "Peru",
"AvgLong": "-76.00",
"Row": "22",
"Col": "2",
"Region": "Americas",
"Continent": "South America",
"Population": "29076512",
"PercentFemale": "49.89040983",
"LifeExpectancy": "73.76497561",
"Inflation": "4.528343869",
"HealthSpendPctGDP": "5.079491057",
"GDPperCapita": "3180.374608",
"PctGDPgrowth": "8.784972819",
"TradeBalance": "2.723777762",
"PctEmploy": "71.09999847",
"PctChildEmployment": "",
"GovtDebt": "22.08310194",
"PopOver65": "6.085960379",
"PctHIV": "0.4",
"Long": "-76.00",
"Lat": "-10.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Philippines",
"CountryCode": "PHL",
"ShortName": "Philippines",
"AvgLong": "122.00",
"Row": "12",
"Col": "20",
"Region": "APAC",
"Continent": "South-east Asia",
"Population": "93260798",
"PercentFemale": "49.83556971",
"LifeExpectancy": "68.48431707",
"Inflation": "4.222388865",
"HealthSpendPctGDP": "3.613354708",
"GDPperCapita": "1383.404865",
"PctGDPgrowth": "7.632263915",
"TradeBalance": "-1.812905364",
"PctEmploy": "59.59999847",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "3.635251974",
"PctHIV": "0.1",
"Long": "122.00",
"Lat": "13.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Poland",
"CountryCode": "POL",
"ShortName": "Poland",
"AvgLong": "20.00",
"Row": "4",
"Col": "11",
"Region": "EMEA",
"Continent": "Europe",
"Population": "38183683",
"PercentFemale": "51.75447649",
"LifeExpectancy": "76.24634146",
"Inflation": "1.403469075",
"HealthSpendPctGDP": "7.461077635",
"GDPperCapita": "6574.296118",
"PctGDPgrowth": "3.898076992",
"TradeBalance": "-1.207151607",
"PctEmploy": "50.5",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "13.61554796",
"PctHIV": "0.1",
"Long": "20.00",
"Lat": "52.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Portugal",
"CountryCode": "PRT",
"ShortName": "Portugal",
"AvgLong": "-8.00",
"Row": "8",
"Col": "6",
"Region": "EMEA",
"Continent": "Europe",
"Population": "10637346",
"PercentFemale": "51.5596354",
"LifeExpectancy": "79.02682927",
"Inflation": "1.05692184",
"HealthSpendPctGDP": "10.99953767",
"GDPperCapita": "11747.58549",
"PctGDPgrowth": "1.400684109",
"TradeBalance": "-7.167441653",
"PctEmploy": "55.29999924",
"PctChildEmployment": "",
"GovtDebt": "94.45385033",
"PopOver65": "17.94121196",
"PctHIV": "0.7",
"Long": "-8.00",
"Lat": "39.50"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Puerto Rico",
"CountryCode": "PRI",
"ShortName": "Puerto Rico",
"AvgLong": "-66.50",
"Row": "12",
"Col": "5",
"Region": "Americas",
"Continent": "Central America",
"Population": "3721978",
"PercentFemale": "51.90961131",
"LifeExpectancy": "78.91329268",
"Inflation": "3.24195172",
"HealthSpendPctGDP": "",
"GDPperCapita": "16910.46054",
"PctGDPgrowth": "-2.072885907",
"TradeBalance": "-14.39297531",
"PctEmploy": "37.20000076",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "12.82466913",
"PctHIV": "",
"Long": "-66.50",
"Lat": "18.25"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Qatar",
"CountryCode": "QAT",
"ShortName": "Qatar",
"AvgLong": "51.25",
"Row": "15",
"Col": "15",
"Region": "EMEA",
"Continent": "Middle East",
"Population": "1758793",
"PercentFemale": "24.32651256",
"LifeExpectancy": "78.09758537",
"Inflation": "11.9087308",
"HealthSpendPctGDP": "1.810074887",
"GDPperCapita": "32356.40757",
"PctGDPgrowth": "16.6",
"TradeBalance": "",
"PctEmploy": "85.80000305",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "1.035653428",
"PctHIV": "",
"Long": "51.25",
"Lat": "25.50"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Romania",
"CountryCode": "ROM",
"ShortName": "Romania",
"AvgLong": "25.00",
"Row": "6",
"Col": "13",
"Region": "EMEA",
"Continent": "Europe",
"Population": "21438001",
"PercentFemale": "51.4631112",
"LifeExpectancy": "73.45853659",
"Inflation": "3.570976413",
"HealthSpendPctGDP": "5.576616167",
"GDPperCapita": "2636.787677",
"PctGDPgrowth": "0.947891354",
"TradeBalance": "-6.270768568",
"PctEmploy": "51.90000153",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "14.9155574",
"PctHIV": "0.1",
"Long": "25.00",
"Lat": "46.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Russian Federation",
"CountryCode": "RUS",
"ShortName": "Russian Federation",
"AvgLong": "100.00",
"Row": "4",
"Col": "16",
"Region": "APAC",
"Continent": "Central Asia",
"Population": "141920000",
"PercentFemale": "53.7385357",
"LifeExpectancy": "68.80487805",
"Inflation": "11.56126751",
"HealthSpendPctGDP": "5.074826314",
"GDPperCapita": "2928.005033",
"PctGDPgrowth": "4.339933303",
"TradeBalance": "8.278663932",
"PctEmploy": "58",
"PctChildEmployment": "",
"GovtDebt": "9.326862282",
"PopOver65": "12.79869543",
"PctHIV": "",
"Long": "100.00",
"Lat": "60.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Rwanda",
"CountryCode": "RWA",
"ShortName": "Rwanda",
"AvgLong": "30.00",
"Row": "20",
"Col": "13",
"Region": "EMEA",
"Continent": "Africa",
"Population": "10624005",
"PercentFemale": "50.9129655",
"LifeExpectancy": "55.05712195",
"Inflation": "2.479232687",
"HealthSpendPctGDP": "10.47811079",
"GDPperCapita": "352.5356203",
"PctGDPgrowth": "7.218691998",
"TradeBalance": "-20.54165262",
"PctEmploy": "85.30000305",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "2.654563886",
"PctHIV": "3",
"Long": "30.00",
"Lat": "-2.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Samoa",
"CountryCode": "WSM",
"ShortName": "Samoa",
"AvgLong": "-172.33",
"Row": "20",
"Col": "22",
"Region": "APAC",
"Continent": "Oceania",
"Population": "183081",
"PercentFemale": "48.35182242",
"LifeExpectancy": "72.30639024",
"Inflation": "1.417611462",
"HealthSpendPctGDP": "6.469822587",
"GDPperCapita": "1769.565011",
"PctGDPgrowth": "0.4",
"TradeBalance": "-26.60966847",
"PctEmploy": "",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "5.028921625",
"PctHIV": "",
"Long": "-172.33",
"Lat": "-13.58"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "San Marino",
"CountryCode": "SMR",
"ShortName": "San Marino",
"AvgLong": "12.42",
"Row": "7",
"Col": "9",
"Region": "EMEA",
"Continent": "Europe",
"Population": "31534",
"PercentFemale": "",
"LifeExpectancy": "83.15937916",
"Inflation": "",
"HealthSpendPctGDP": "7.126115454",
"GDPperCapita": "",
"PctGDPgrowth": "",
"TradeBalance": "",
"PctEmploy": "",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "",
"PctHIV": "",
"Long": "12.42",
"Lat": "43.77"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Sao Tome and Principe",
"CountryCode": "STP",
"ShortName": "Sao Tome",
"AvgLong": "7.00",
"Row": "20",
"Col": "10",
"Region": "EMEA",
"Continent": "Africa",
"Population": "165397",
"PercentFemale": "50.47491792",
"LifeExpectancy": "64.34929268",
"Inflation": "11.73954712",
"HealthSpendPctGDP": "7.168831296",
"GDPperCapita": "",
"PctGDPgrowth": "4.511410893",
"TradeBalance": "-52.21790799",
"PctEmploy": "",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "3.871896105",
"PctHIV": "1",
"Long": "7.00",
"Lat": "1.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Saudi Arabia",
"CountryCode": "SAU",
"ShortName": "Saudi Arabia",
"AvgLong": "45.00",
"Row": "14",
"Col": "14",
"Region": "EMEA",
"Continent": "Middle East",
"Population": "27448086",
"PercentFemale": "44.63682459",
"LifeExpectancy": "73.85041463",
"Inflation": "14.36222827",
"HealthSpendPctGDP": "4.291867213",
"GDPperCapita": "9499.37889",
"PctGDPgrowth": "4.641909814",
"TradeBalance": "19.44488811",
"PctEmploy": "47.29999924",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "2.958650742",
"PctHIV": "",
"Long": "45.00",
"Lat": "25.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Senegal",
"CountryCode": "SEN",
"ShortName": "Senegal",
"AvgLong": "-14.00",
"Row": "13",
"Col": "7",
"Region": "EMEA",
"Continent": "Africa",
"Population": "12433728",
"PercentFemale": "50.40198724",
"LifeExpectancy": "58.95407317",
"Inflation": "1.406867318",
"HealthSpendPctGDP": "5.664227304",
"GDPperCapita": "560.2574435",
"PctGDPgrowth": "4.133698456",
"TradeBalance": "-18.22933383",
"PctEmploy": "69.19999695",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "2.409076345",
"PctHIV": "0.7",
"Long": "-14.00",
"Lat": "14.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Serbia",
"CountryCode": "SRB",
"ShortName": "Serbia",
"AvgLong": "21.00",
"Row": "7",
"Col": "12",
"Region": "EMEA",
"Continent": "Europe",
"Population": "7291436",
"PercentFemale": "50.51175795",
"LifeExpectancy": "73.93658537",
"Inflation": "9.035905775",
"HealthSpendPctGDP": "10.36114619",
"GDPperCapita": "1194.639994",
"PctGDPgrowth": "0.954303376",
"TradeBalance": "-16.50240234",
"PctEmploy": "37.92793382",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "14.34715046",
"PctHIV": "0.1",
"Long": "21.00",
"Lat": "44.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Seychelles",
"CountryCode": "SYC",
"ShortName": "Seychelles",
"AvgLong": "55.67",
"Row": "23",
"Col": "15",
"Region": "EMEA",
"Continent": "Africa",
"Population": "86525",
"PercentFemale": "",
"LifeExpectancy": "73.03414634",
"Inflation": "-4.890342857",
"HealthSpendPctGDP": "3.40385947",
"GDPperCapita": "8787.766431",
"PctGDPgrowth": "6.710896556",
"TradeBalance": "",
"PctEmploy": "",
"PctChildEmployment": "",
"GovtDebt": "76.08589067",
"PopOver65": "",
"PctHIV": "",
"Long": "55.67",
"Lat": "-4.58"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Sierra Leone",
"CountryCode": "SLE",
"ShortName": "Sierra Leone",
"AvgLong": "-11.50",
"Row": "17",
"Col": "7",
"Region": "EMEA",
"Continent": "Africa",
"Population": "5867536",
"PercentFemale": "51.15339727",
"LifeExpectancy": "47.40219512",
"Inflation": "14.35444005",
"HealthSpendPctGDP": "13.06796543",
"GDPperCapita": "268.3072782",
"PctGDPgrowth": "4.9485",
"TradeBalance": "-12.43537189",
"PctEmploy": "65.30000305",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "1.888833746",
"PctHIV": "1.6",
"Long": "-11.50",
"Lat": "8.50"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Singapore",
"CountryCode": "SGP",
"ShortName": "Singapore",
"AvgLong": "103.80",
"Row": "17",
"Col": "19",
"Region": "APAC",
"Continent": "South-east Asia",
"Population": "5076700",
"PercentFemale": "49.58253529",
"LifeExpectancy": "81.64146341",
"Inflation": "8.534071277",
"HealthSpendPctGDP": "3.959612707",
"GDPperCapita": "32640.68442",
"PctGDPgrowth": "14.76321676",
"TradeBalance": "28.42162608",
"PctEmploy": "63.09999847",
"PctChildEmployment": "",
"GovtDebt": "106.9939439",
"PopOver65": "9.012452378",
"PctHIV": "0.1",
"Long": "103.80",
"Lat": "1.37"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Slovak Republic",
"CountryCode": "SVK",
"ShortName": "Slovakia",
"AvgLong": "19.50",
"Row": "5",
"Col": "12",
"Region": "EMEA",
"Continent": "Europe",
"Population": "5430099",
"PercentFemale": "51.3757939",
"LifeExpectancy": "75.11219512",
"Inflation": "0.491641303",
"HealthSpendPctGDP": "8.79029531",
"GDPperCapita": "8427.435101",
"PctGDPgrowth": "4.182900159",
"TradeBalance": "-1.305262713",
"PctEmploy": "50.59999847",
"PctChildEmployment": "",
"GovtDebt": "46.55843081",
"PopOver65": "12.08177632",
"PctHIV": "0.1",
"Long": "19.50",
"Lat": "48.67"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Slovenia",
"CountryCode": "SVN",
"ShortName": "Slovenia",
"AvgLong": "15.00",
"Row": "7",
"Col": "10",
"Region": "EMEA",
"Continent": "Europe",
"Population": "2048583",
"PercentFemale": "51.08923574",
"LifeExpectancy": "79.42195122",
"Inflation": "-1.066980391",
"HealthSpendPctGDP": "9.409751696",
"GDPperCapita": "12732.04555",
"PctGDPgrowth": "1.379539352",
"TradeBalance": "0.564650813",
"PctEmploy": "54.70000076",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "16.46333412",
"PctHIV": "0.1",
"Long": "15.00",
"Lat": "46.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Solomon Islands",
"CountryCode": "SLB",
"ShortName": "Solomon Is.",
"AvgLong": "159.00",
"Row": "17",
"Col": "21",
"Region": "APAC",
"Continent": "Oceania",
"Population": "538148",
"PercentFemale": "48.2969369",
"LifeExpectancy": "67.46519512",
"Inflation": "5.607476636",
"HealthSpendPctGDP": "8.552784479",
"GDPperCapita": "1143.787545",
"PctGDPgrowth": "7",
"TradeBalance": "-30.42915505",
"PctEmploy": "64.40000153",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "3.158053175",
"PctHIV": "",
"Long": "159.00",
"Lat": "-8.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Somalia",
"CountryCode": "SOM",
"ShortName": "Somalia",
"AvgLong": "49.00",
"Row": "18",
"Col": "15",
"Region": "EMEA",
"Continent": "Africa",
"Population": "9330872",
"PercentFemale": "50.41073332",
"LifeExpectancy": "50.89553659",
"Inflation": "",
"HealthSpendPctGDP": "",
"GDPperCapita": "",
"PctGDPgrowth": "",
"TradeBalance": "",
"PctEmploy": "52.59999847",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "2.720635328",
"PctHIV": "0.7",
"Long": "49.00",
"Lat": "10.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "South Africa",
"CountryCode": "ZAF",
"ShortName": "South Africa",
"AvgLong": "24.00",
"Row": "25",
"Col": "11",
"Region": "EMEA",
"Continent": "Africa",
"Population": "49991300",
"PercentFemale": "50.48293416",
"LifeExpectancy": "52.0814878",
"Inflation": "7.861608575",
"HealthSpendPctGDP": "8.941563913",
"GDPperCapita": "3753.445365",
"PctGDPgrowth": "2.889618876",
"TradeBalance": "-0.198126273",
"PctEmploy": "39.09999847",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "4.635502529",
"PctHIV": "17.3",
"Long": "24.00",
"Lat": "-29.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Spain",
"CountryCode": "ESP",
"ShortName": "Spain",
"AvgLong": "-4.00",
"Row": "8",
"Col": "7",
"Region": "EMEA",
"Continent": "Europe",
"Population": "46070971",
"PercentFemale": "50.62975361",
"LifeExpectancy": "81.62682927",
"Inflation": "0.399633199",
"HealthSpendPctGDP": "9.538623869",
"GDPperCapita": "15418.82018",
"PctGDPgrowth": "-0.319829017",
"TradeBalance": "-2.192713582",
"PctEmploy": "47.40000153",
"PctChildEmployment": "",
"GovtDebt": "48.43781432",
"PopOver65": "16.97057071",
"PctHIV": "0.4",
"Long": "-4.00",
"Lat": "40.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Sri Lanka",
"CountryCode": "LKA",
"ShortName": "Sri Lanka",
"AvgLong": "81.00",
"Row": "14",
"Col": "17",
"Region": "APAC",
"Continent": "Indian",
"Population": "20653000",
"PercentFemale": "50.62732895",
"LifeExpectancy": "74.72260976",
"Inflation": "7.298969955",
"HealthSpendPctGDP": "2.945193571",
"GDPperCapita": "1308.784019",
"PctGDPgrowth": "8.015959406",
"TradeBalance": "-8.307911488",
"PctEmploy": "52.20000076",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "8.164746712",
"PctHIV": "0.1",
"Long": "81.00",
"Lat": "7.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "St. Kitts and Nevis",
"CountryCode": "KNA",
"ShortName": "Saint Kitts",
"AvgLong": "-62.75",
"Row": "14",
"Col": "5",
"Region": "Americas",
"Continent": "Central America",
"Population": "52402",
"PercentFemale": "",
"LifeExpectancy": "",
"Inflation": "0.168131354",
"HealthSpendPctGDP": "6.660939854",
"GDPperCapita": "9856.212861",
"PctGDPgrowth": "-2.409297654",
"TradeBalance": "-20.20506748",
"PctEmploy": "",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "",
"PctHIV": "",
"Long": "-62.75",
"Lat": "17.33"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "St. Lucia",
"CountryCode": "LCA",
"ShortName": "Saint Lucia",
"AvgLong": "-61.13",
"Row": "17",
"Col": "4",
"Region": "Americas",
"Continent": "Central America",
"Population": "174000",
"PercentFemale": "51.32124843",
"LifeExpectancy": "74.43990244",
"Inflation": "2.562063914",
"HealthSpendPctGDP": "8.700221594",
"GDPperCapita": "5463.08385",
"PctGDPgrowth": "0.40253916",
"TradeBalance": "-12.98797057",
"PctEmploy": "",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "6.748265592",
"PctHIV": "",
"Long": "-61.13",
"Lat": "13.88"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "St. Vincent and the Grenadines",
"CountryCode": "VCT",
"ShortName": "Saint Vincent",
"AvgLong": "-61.20",
"Row": "18",
"Col": "5",
"Region": "Americas",
"Continent": "Central America",
"Population": "109333",
"PercentFemale": "49.51478511",
"LifeExpectancy": "72.11253659",
"Inflation": "3.235635536",
"HealthSpendPctGDP": "4.470599126",
"GDPperCapita": "4839.222302",
"PctGDPgrowth": "-2.785626335",
"TradeBalance": "-30.46554127",
"PctEmploy": "",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "6.775630414",
"PctHIV": "",
"Long": "-61.20",
"Lat": "13.25"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Sudan",
"CountryCode": "SDN",
"ShortName": "Sudan",
"AvgLong": "30.00",
"Row": "14",
"Col": "12",
"Region": "EMEA",
"Continent": "Africa",
"Population": "33603637",
"PercentFemale": "49.61709973",
"LifeExpectancy": "61.1082439",
"Inflation": "17.36406278",
"HealthSpendPctGDP": "6.315014334",
"GDPperCapita": "549.8570037",
"PctGDPgrowth": "5.066546798",
"TradeBalance": "2.544038276",
"PctEmploy": "48.59999847",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "3.565492064",
"PctHIV": "0.4",
"Long": "30.00",
"Lat": "15.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Suriname",
"CountryCode": "SUR",
"ShortName": "Suriname",
"AvgLong": "-56.00",
"Row": "20",
"Col": "5",
"Region": "Americas",
"Continent": "South America",
"Population": "524636",
"PercentFemale": "49.86085591",
"LifeExpectancy": "70.33531707",
"Inflation": "7.395231159",
"HealthSpendPctGDP": "7.015057497",
"GDPperCapita": "2737.334439",
"PctGDPgrowth": "4.104995375",
"TradeBalance": "",
"PctEmploy": "47.20000076",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "6.451520673",
"PctHIV": "1.1",
"Long": "-56.00",
"Lat": "4.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Swaziland",
"CountryCode": "SWZ",
"ShortName": "Swaziland",
"AvgLong": "31.50",
"Row": "24",
"Col": "13",
"Region": "EMEA",
"Continent": "Africa",
"Population": "1055506",
"PercentFemale": "50.84591284",
"LifeExpectancy": "48.34280488",
"Inflation": "6.182020718",
"HealthSpendPctGDP": "6.609107086",
"GDPperCapita": "1811.07776",
"PctGDPgrowth": "2",
"TradeBalance": "-13.39515067",
"PctEmploy": "43.70000076",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "3.35650256",
"PctHIV": "25.9",
"Long": "31.50",
"Lat": "-26.50"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Sweden",
"CountryCode": "SWE",
"ShortName": "Sweden",
"AvgLong": "15.00",
"Row": "1",
"Col": "11",
"Region": "EMEA",
"Continent": "Europe",
"Population": "9378126",
"PercentFemale": "50.19958555",
"LifeExpectancy": "81.45121951",
"Inflation": "0.849062987",
"HealthSpendPctGDP": "9.633468486",
"GDPperCapita": "32631.19271",
"PctGDPgrowth": "6.556845091",
"TradeBalance": "6.183163542",
"PctEmploy": "58.40000153",
"PctChildEmployment": "",
"GovtDebt": "39.21069198",
"PopOver65": "18.23516073",
"PctHIV": "0.2",
"Long": "15.00",
"Lat": "62.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Switzerland",
"CountryCode": "CHE",
"ShortName": "Switzerland",
"AvgLong": "8.00",
"Row": "6",
"Col": "8",
"Region": "EMEA",
"Continent": "Europe",
"Population": "7826153",
"PercentFemale": "50.85079977",
"LifeExpectancy": "82.24634146",
"Inflation": "0.546932921",
"HealthSpendPctGDP": "11.52215329",
"GDPperCapita": "38826.84298",
"PctGDPgrowth": "3.033701684",
"TradeBalance": "11.2154854",
"PctEmploy": "64.90000153",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "16.69750655",
"PctHIV": "0.4",
"Long": "8.00",
"Lat": "47.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Syrian Arab Republic",
"CountryCode": "SYR",
"ShortName": "Syria",
"AvgLong": "38.00",
"Row": "11",
"Col": "14",
"Region": "EMEA",
"Continent": "Middle East",
"Population": "20446609",
"PercentFemale": "49.38973884",
"LifeExpectancy": "75.70256098",
"Inflation": "6.264043253",
"HealthSpendPctGDP": "3.406754017",
"GDPperCapita": "1525.809293",
"PctGDPgrowth": "3.2",
"TradeBalance": "-0.428943484",
"PctEmploy": "38.79999924",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "3.942950053",
"PctHIV": "",
"Long": "38.00",
"Lat": "35.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Tajikistan",
"CountryCode": "TJK",
"ShortName": "Tajikistan",
"AvgLong": "71.00",
"Row": "10",
"Col": "17",
"Region": "APAC",
"Continent": "Central Asia",
"Population": "6878637",
"PercentFemale": "50.7929696",
"LifeExpectancy": "67.25990244",
"Inflation": "12.48209814",
"HealthSpendPctGDP": "5.982594616",
"GDPperCapita": "278.9403281",
"PctGDPgrowth": "6.5",
"TradeBalance": "-45.84967318",
"PctEmploy": "58.09999847",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "3.477912848",
"PctHIV": "0.3",
"Long": "71.00",
"Lat": "39.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Tanzania",
"CountryCode": "TZA",
"ShortName": "Tanzania",
"AvgLong": "35.00",
"Row": "21",
"Col": "14",
"Region": "EMEA",
"Continent": "Africa",
"Population": "44841226",
"PercentFemale": "50.05188975",
"LifeExpectancy": "57.3874878",
"Inflation": "6.933169212",
"HealthSpendPctGDP": "6.011428021",
"GDPperCapita": "458.7864636",
"PctGDPgrowth": "7.043072344",
"TradeBalance": "-10.7349351",
"PctEmploy": "78.90000153",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "3.135911137",
"PctHIV": "5.8",
"Long": "35.00",
"Lat": "-6.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Thailand",
"CountryCode": "THA",
"ShortName": "Thailand",
"AvgLong": "100.00",
"Row": "14",
"Col": "19",
"Region": "APAC",
"Continent": "South-east Asia",
"Population": "69122234",
"PercentFemale": "50.85177947",
"LifeExpectancy": "73.92765854",
"Inflation": "3.663192169",
"HealthSpendPctGDP": "3.882978234",
"GDPperCapita": "2712.508016",
"PctGDPgrowth": "7.810512395",
"TradeBalance": "7.429988122",
"PctEmploy": "71",
"PctChildEmployment": "",
"GovtDebt": "28.77322015",
"PopOver65": "8.887531037",
"PctHIV": "1.2",
"Long": "100.00",
"Lat": "15.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Timor-Leste",
"CountryCode": "TMP",
"ShortName": "Timor-Leste",
"AvgLong": "125.52",
"Row": "19",
"Col": "19",
"Region": "APAC",
"Continent": "South-east Asia",
"Population": "1142502",
"PercentFemale": "49.022862",
"LifeExpectancy": "61.99985366",
"Inflation": "1.433828194",
"HealthSpendPctGDP": "9.120097906",
"GDPperCapita": "420.6032484",
"PctGDPgrowth": "9.469602202",
"TradeBalance": "",
"PctEmploy": "54.40000153",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "2.933504098",
"PctHIV": "",
"Long": "125.52",
"Lat": "-8.55"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Togo",
"CountryCode": "TGO",
"ShortName": "Togo",
"AvgLong": "1.17",
"Row": "18",
"Col": "10",
"Region": "EMEA",
"Continent": "Africa",
"Population": "6027798",
"PercentFemale": "50.47622697",
"LifeExpectancy": "56.58870732",
"Inflation": "1.762499238",
"HealthSpendPctGDP": "7.652500511",
"GDPperCapita": "265.9220492",
"PctGDPgrowth": "4.038430263",
"TradeBalance": "-17.03952133",
"PctEmploy": "74.59999847",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "3.403332361",
"PctHIV": "3.5",
"Long": "1.17",
"Lat": "8.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Tonga",
"CountryCode": "TON",
"ShortName": "Tonga",
"AvgLong": "-175.00",
"Row": "21",
"Col": "22",
"Region": "APAC",
"Continent": "Oceania",
"Population": "104058",
"PercentFemale": "49.9221588",
"LifeExpectancy": "72.15065854",
"Inflation": "4.283990855",
"HealthSpendPctGDP": "5.071243836",
"GDPperCapita": "2069.226162",
"PctGDPgrowth": "2.690242502",
"TradeBalance": "-44.80647999",
"PctEmploy": "",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "5.868842376",
"PctHIV": "",
"Long": "-175.00",
"Lat": "-20.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Trinidad and Tobago",
"CountryCode": "TTO",
"ShortName": "Trinidad + Tobago",
"AvgLong": "-61.00",
"Row": "19",
"Col": "4",
"Region": "Americas",
"Continent": "Central America",
"Population": "1341465",
"PercentFemale": "51.53917545",
"LifeExpectancy": "69.755",
"Inflation": "6.916921038",
"HealthSpendPctGDP": "5.675349224",
"GDPperCapita": "10515.63403",
"PctGDPgrowth": "0",
"TradeBalance": "24.93641274",
"PctEmploy": "62.79999924",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "6.960300865",
"PctHIV": "1.5",
"Long": "-61.00",
"Lat": "11.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Tunisia",
"CountryCode": "TUN",
"ShortName": "Tunisia",
"AvgLong": "9.00",
"Row": "12",
"Col": "10",
"Region": "EMEA",
"Continent": "Africa",
"Population": "10549100",
"PercentFemale": "50.00380691",
"LifeExpectancy": "74.6",
"Inflation": "4.612138666",
"HealthSpendPctGDP": "6.207470502",
"GDPperCapita": "3143.533869",
"PctGDPgrowth": "3",
"TradeBalance": "-5.316111467",
"PctEmploy": "40.70000076",
"PctChildEmployment": "",
"GovtDebt": "40.49044101",
"PopOver65": "6.952405196",
"PctHIV": "0.1",
"Long": "9.00",
"Lat": "34.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Turkey",
"CountryCode": "TUR",
"ShortName": "Turkey",
"AvgLong": "35.00",
"Row": "10",
"Col": "13",
"Region": "EMEA",
"Continent": "Middle East",
"Population": "72752325",
"PercentFemale": "50.12496164",
"LifeExpectancy": "73.69665854",
"Inflation": "5.675739721",
"HealthSpendPctGDP": "6.740391064",
"GDPperCapita": "5356.000439",
"PctGDPgrowth": "9.156952929",
"TradeBalance": "-5.550637209",
"PctEmploy": "43.59999847",
"PctChildEmployment": "",
"GovtDebt": "50.74458108",
"PopOver65": "5.976200761",
"PctHIV": "0.1",
"Long": "35.00",
"Lat": "39.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Turkmenistan",
"CountryCode": "TKM",
"ShortName": "Turkmenistan",
"AvgLong": "60.00",
"Row": "10",
"Col": "16",
"Region": "APAC",
"Continent": "Central Asia",
"Population": "5041995",
"PercentFemale": "50.76093887",
"LifeExpectancy": "64.8635122",
"Inflation": "0.335056333",
"HealthSpendPctGDP": "2.496401007",
"GDPperCapita": "1209.794679",
"PctGDPgrowth": "9.2",
"TradeBalance": "32.46591761",
"PctEmploy": "54",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "4.122495163",
"PctHIV": "",
"Long": "60.00",
"Lat": "40.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Turks and Caicos Islands",
"CountryCode": "TCA",
"ShortName": "Turks + Caicos",
"AvgLong": "-71.58",
"Row": "11",
"Col": "4",
"Region": "Americas",
"Continent": "Central America",
"Population": "38354",
"PercentFemale": "",
"LifeExpectancy": "",
"Inflation": "",
"HealthSpendPctGDP": "",
"GDPperCapita": "",
"PctGDPgrowth": "",
"TradeBalance": "",
"PctEmploy": "",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "",
"PctHIV": "",
"Long": "-71.58",
"Lat": "21.75"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Tuvalu",
"CountryCode": "TUV",
"ShortName": "Tuvalu",
"AvgLong": "178.00",
"Row": "18",
"Col": "21",
"Region": "APAC",
"Continent": "Oceania",
"Population": "9827",
"PercentFemale": "",
"LifeExpectancy": "",
"Inflation": "3.286000703",
"HealthSpendPctGDP": "16.4353873",
"GDPperCapita": "1559.983698",
"PctGDPgrowth": "-3.001219238",
"TradeBalance": "",
"PctEmploy": "",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "",
"PctHIV": "",
"Long": "178.00",
"Lat": "-8.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Uganda",
"CountryCode": "UGA",
"ShortName": "Uganda",
"AvgLong": "32.00",
"Row": "19",
"Col": "13",
"Region": "EMEA",
"Continent": "Africa",
"Population": "33424683",
"PercentFemale": "50.02657467",
"LifeExpectancy": "53.61463415",
"Inflation": "9.511970876",
"HealthSpendPctGDP": "9.009050447",
"GDPperCapita": "379.9914906",
"PctGDPgrowth": "5.9",
"TradeBalance": "-10.15525891",
"PctEmploy": "74.59999847",
"PctChildEmployment": "",
"GovtDebt": "32.31396343",
"PopOver65": "2.506010304",
"PctHIV": "7",
"Long": "32.00",
"Lat": "1.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Ukraine",
"CountryCode": "UKR",
"ShortName": "Ukraine",
"AvgLong": "32.00",
"Row": "5",
"Col": "13",
"Region": "EMEA",
"Continent": "Europe",
"Population": "45870700",
"PercentFemale": "53.98359971",
"LifeExpectancy": "70.27560976",
"Inflation": "13.75042084",
"HealthSpendPctGDP": "7.721766808",
"GDPperCapita": "1036.837506",
"PctGDPgrowth": "4.2",
"TradeBalance": "-2.81801899",
"PctEmploy": "54.09999847",
"PctChildEmployment": "",
"GovtDebt": "29.88033095",
"PopOver65": "15.45431956",
"PctHIV": "0.8",
"Long": "32.00",
"Lat": "49.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "United Arab Emirates",
"CountryCode": "ARE",
"ShortName": "U.A.E.",
"AvgLong": "54.00",
"Row": "15",
"Col": "16",
"Region": "EMEA",
"Continent": "Middle East",
"Population": "7511690",
"PercentFemale": "30.46046895",
"LifeExpectancy": "76.57360976",
"Inflation": "8.549032358",
"HealthSpendPctGDP": "3.65963853",
"GDPperCapita": "21088.26438",
"PctGDPgrowth": "1.432129773",
"TradeBalance": "9.176901952",
"PctEmploy": "75.90000153",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "0.427307304",
"PctHIV": "",
"Long": "54.00",
"Lat": "24.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "United Kingdom",
"CountryCode": "GBR",
"ShortName": "United Kingdom",
"AvgLong": "-2.00",
"Row": "4",
"Col": "7",
"Region": "EMEA",
"Continent": "Europe",
"Population": "62231336",
"PercentFemale": "50.80962422",
"LifeExpectancy": "80.40243902",
"Inflation": "2.766614789",
"HealthSpendPctGDP": "9.635506878",
"GDPperCapita": "28244.33694",
"PctGDPgrowth": "1.799319905",
"TradeBalance": "-2.148006674",
"PctEmploy": "57.09999847",
"PctChildEmployment": "",
"GovtDebt": "82.67145971",
"PopOver65": "16.58755453",
"PctHIV": "0.3",
"Long": "-2.00",
"Lat": "54.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "United States",
"CountryCode": "USA",
"ShortName": "United States",
"AvgLong": "-97.00",
"Row": "7",
"Col": "2",
"Region": "Americas",
"Continent": "North America",
"Population": "309349689",
"PercentFemale": "50.66124908",
"LifeExpectancy": "78.24146341",
"Inflation": "0.70631934",
"HealthSpendPctGDP": "17.88732687",
"GDPperCapita": "37329.61591",
"PctGDPgrowth": "3.021717108",
"TradeBalance": "-3.548691346",
"PctEmploy": "57.5",
"PctChildEmployment": "",
"GovtDebt": "76.98438909",
"PopOver65": "13.05941343",
"PctHIV": "0.7",
"Long": "-97.00",
"Lat": "38.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Uruguay",
"CountryCode": "URY",
"ShortName": "Uruguay",
"AvgLong": "-56.00",
"Row": "24",
"Col": "4",
"Region": "Americas",
"Continent": "South America",
"Population": "3356584",
"PercentFemale": "51.7357885",
"LifeExpectancy": "76.23682927",
"Inflation": "5.483885182",
"HealthSpendPctGDP": "8.351893933",
"GDPperCapita": "9096.794459",
"PctGDPgrowth": "8.894820103",
"TradeBalance": "0.829821717",
"PctEmploy": "61.09999847",
"PctChildEmployment": "",
"GovtDebt": "45.20174024",
"PopOver65": "13.76065443",
"PctHIV": "0.6",
"Long": "-56.00",
"Lat": "-33.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Uzbekistan",
"CountryCode": "UZB",
"ShortName": "Uzbekistan",
"AvgLong": "64.00",
"Row": "9",
"Col": "16",
"Region": "APAC",
"Continent": "Central Asia",
"Population": "28562400",
"PercentFemale": "50.29735065",
"LifeExpectancy": "68.001",
"Inflation": "19.55160889",
"HealthSpendPctGDP": "5.805581996",
"GDPperCapita": "941.6718455",
"PctGDPgrowth": "8.5",
"TradeBalance": "0.542725778",
"PctEmploy": "54",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "4.352169683",
"PctHIV": "",
"Long": "64.00",
"Lat": "41.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Vanuatu",
"CountryCode": "VUT",
"ShortName": "Vanuatu",
"AvgLong": "167.00",
"Row": "19",
"Col": "21",
"Region": "APAC",
"Continent": "Oceania",
"Population": "239651",
"PercentFemale": "49.06009155",
"LifeExpectancy": "70.8194878",
"Inflation": "2.900072765",
"HealthSpendPctGDP": "5.246691991",
"GDPperCapita": "1522.38404",
"PctGDPgrowth": "1.460583916",
"TradeBalance": "-6.516997202",
"PctEmploy": "",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "3.451685993",
"PctHIV": "",
"Long": "167.00",
"Lat": "-16.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Venezuela, RB",
"CountryCode": "VEN",
"ShortName": "Venezuela",
"AvgLong": "-66.00",
"Row": "20",
"Col": "3",
"Region": "Americas",
"Continent": "South America",
"Population": "28834000",
"PercentFemale": "49.82335834",
"LifeExpectancy": "74.12731707",
"Inflation": "45.9432687",
"HealthSpendPctGDP": "4.906099505",
"GDPperCapita": "5528.363114",
"PctGDPgrowth": "-1.488791251",
"TradeBalance": "10.92392045",
"PctEmploy": "61",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "5.601066285",
"PctHIV": "0.5",
"Long": "-66.00",
"Lat": "8.00"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Vietnam",
"CountryCode": "VNM",
"ShortName": "Viet Nam",
"AvgLong": "106",
"Row": "12",
"Col": "19",
"Region": "APAC",
"Continent": "South-east Asia",
"Population": "86927700",
"PercentFemale": "50.57635909",
"LifeExpectancy": "74.8282439",
"Inflation": "11.86007518",
"HealthSpendPctGDP": "6.840559857",
"GDPperCapita": "722.8100533",
"PctGDPgrowth": "6.783424448",
"TradeBalance": "-10.27540822",
"PctEmploy": "75.19999695",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "6.003516625",
"PctHIV": "0.5",
"Long": "106",
"Lat": "16"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Virgin Islands (U.S.)",
"CountryCode": "VIR",
"ShortName": "Virgin Is., U.S.",
"AvgLong": "-64.8333",
"Row": "13",
"Col": "5",
"Region": "Americas",
"Continent": "Central America",
"Population": "109750",
"PercentFemale": "52.63901115",
"LifeExpectancy": "79.18943902",
"Inflation": "",
"HealthSpendPctGDP": "",
"GDPperCapita": "",
"PctGDPgrowth": "",
"TradeBalance": "",
"PctEmploy": "",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "14.36234595",
"PctHIV": "",
"Long": "-64.8333",
"Lat": "18.3333"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "West Bank and Gaza",
"CountryCode": "WBG",
"ShortName": "West Bank and Gaza",
"AvgLong": "31.516667",
"Row": "13",
"Col": "13",
"Region": "EMEA",
"Continent": "Middle East",
"Population": "3905364",
"PercentFemale": "49.24692859",
"LifeExpectancy": "72.64368293",
"Inflation": "",
"HealthSpendPctGDP": "",
"GDPperCapita": "",
"PctGDPgrowth": "",
"TradeBalance": "",
"PctEmploy": "30.70000076",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "2.746886011",
"PctHIV": "",
"Long": "31.516667",
"Lat": "34.45"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Yemen, Rep.",
"CountryCode": "YEM",
"ShortName": "Yemen",
"AvgLong": "48",
"Row": "16",
"Col": "15",
"Region": "EMEA",
"Continent": "Middle East",
"Population": "24052514",
"PercentFemale": "49.67846604",
"LifeExpectancy": "65.03046341",
"Inflation": "24.16101576",
"HealthSpendPctGDP": "5.184683315",
"GDPperCapita": "608.5960601",
"PctGDPgrowth": "7.702205243",
"TradeBalance": "-4.105868338",
"PctEmploy": "41.5",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "2.55163348",
"PctHIV": "0.2",
"Long": "48",
"Lat": "15"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Zambia",
"CountryCode": "ZMB",
"ShortName": "Zambia",
"AvgLong": "30",
"Row": "22",
"Col": "12",
"Region": "EMEA",
"Continent": "Africa",
"Population": "12926409",
"PercentFemale": "49.88715345",
"LifeExpectancy": "48.4554878",
"Inflation": "11.68718864",
"HealthSpendPctGDP": "5.891185535",
"GDPperCapita": "434.6598042",
"PctGDPgrowth": "7.620163433",
"TradeBalance": "11.88186597",
"PctEmploy": "66.90000153",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "3.050761084",
"PctHIV": "12.7",
"Long": "30",
"Lat": "-15"
},
{
"Year": "2010",
"YearCode": "YR2010",
"FullName": "Zimbabwe",
"CountryCode": "ZWE",
"ShortName": "Zimbabwe",
"AvgLong": "30",
"Row": "23",
"Col": "12",
"Region": "EMEA",
"Continent": "Africa",
"Population": "12571454",
"PercentFemale": "50.70423039",
"LifeExpectancy": "49.86087805",
"Inflation": "10.56100252",
"HealthSpendPctGDP": "",
"GDPperCapita": "322.5569276",
"PctGDPgrowth": "9.62018498",
"TradeBalance": "-30.84587584",
"PctEmploy": "82.59999847",
"PctChildEmployment": "",
"GovtDebt": "",
"PopOver65": "4.207596035",
"PctHIV": "15.2",
"Long": "30",
"Lat": "-20"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment