USEFUL SITES :
Write for Us
SELECT TOP 5 Country, [2004] FROM dbo.WorldCO2Emissions ORDER BY [2004] DESC Clean up Our next step is to join the country polygons with the statistical data, we will have to join on country name but unfortunately these can be slightly different. I found this was a short manual process of matching those currently not joined as best as possible by renaming to match. Many data sets use the 3 letter country code which is more reliable. Important to note is that the world is an ever changing place, the names of countries and their borders shift often. For example the statistical data for 1990 contains CO2 emissions for the USSR. I would need to match to a set of World geography from 1990 to be accurate. I will stick with 2004 only here. I find the best thing to do with data visualisation is to ask a specific question of the data. In this case we ask, What does the World look like if its land mass is reallocated based on CO2 emissions per country in 2004? In part 2 will show how we can anser this question with SQL Server 2008.