If I add the water area and the land area of the world, I get the same number as if I asked for the total area of the world in the first place:
In[1]:= {CountryData["World", "WaterArea"] + CountryData["World", "LandArea"],
CountryData["World", "Area"]}
Out[1]= {5.10066*10^8, 5.10066*10^8}
Now, if I add the area of all the countries, it does not add up to the total land area of the world:
In[2]:= {Total[CountryData[#, "Area"] & /@ CountryData[]],
CountryData["World", "LandArea"]}
Out[2]= {1.35936*10^8, 1.4912*10^8}
So my question is: are some countries missing? Are the ice caps to blame?
CountryData[]. – J. M.'s missing motivation Sep 04 '12 at 21:55CountryData["World", "LandArea"] - CountryData["Antarctica", "Area"] < Total[CountryData[#, "Area"] & /@ CountryData[]]– Dr. belisarius Sep 04 '12 at 21:56Total[Flatten[CountryData[#, "Area"] & /@ CountryData["Continents"]]]withCountryData["World", "LandArea"]. Curious indeed. – J. M.'s missing motivation Sep 04 '12 at 22:01Complement[Flatten[CountryData[#] & /@ CountryData["Continents"]], CountryData[]]– Dr. belisarius Sep 04 '12 at 22:04CountryData["World", "LandArea"]... – J. M.'s missing motivation Sep 04 '12 at 22:10CountryData. We are not part of Australia yet. :-) – Matariki Sep 05 '12 at 01:31