function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 67793], ['Afghanistan', 327], ['Algeria', 27], ['American Samoa', 12], ['Angola', 5], ['Antarctica', 4763], ['Antigua and Barbuda', 2], ['Argentina', 134], ['Aruba', 0], ['Australia', 2724], ['Bahamas', 3133], ['Barbados', 760], ['Belgium', 13], ['Belize', 1], ['Bermuda', 4], ['Bonaire, Sint Eustatius and Saba', 3], ['Bouvet Island', 1103], ['Brazil', 2685], ['British Indian Ocean Territory', 2], ['British Virgin Islands', 1], ['Canada', 1226], ['Cape Verde', 21], ['Chile', 4722], ['China', 154], ['Christmas Island', 19], ['Colombia', 11], ['Comoros', 8], ['Cook Islands', 1], ['Costa Rica', 25], ['Cuba', 23], ['Curaçao', 4], ['Democratic Republic of the Congo', 1], ['Denmark', 2], ['Djibouti', 1], ['Dominica', 2], ['Ecuador', 7], ['Egypt', 6], ['El Salvador', 15], ['Falkland Islands', 9], ['Fiji', 12], ['France', 138], ['French Guiana', 4], ['Gabon', 1], ['Georgia', 1], ['Germany', 17], ['Ghana', 8], ['Greece', 102], ['Greenland', 2], ['Grenada', 7], ['Guadeloupe', 4], ['Guam', 5], ['Guinea-Bissau', 29], ['Guyana', 91], ['Haiti', 0], ['Heard Island and McDonald Islands', 26], ['Honduras, Jamaica', 4], ['Hong Kong', 3], ['Iceland', 591], ['Iceland, Maldives', 1], ['Iceland, Philippines', 3], ['India', 15], ['Indonesia', 147], ['Indonesia, ambon island', 1], ['Ireland', 12], ['Italy', 2], ['Japan', 878], ['Kenya', 451], ['Liberia', 2], ['Luxembourg', 1], ['Macao', 11], ['Madagascar', 13177], ['Malaysia', 886], ['Maldives', 234], ['Marshall Islands', 3], ['Martinique', 1], ['Mauritania', 49], ['Mauritius', 30], ['Mayotte', 2532], ['Mexico', 2985], ['Micronesia', 21], ['Monaco', 4], ['Morocco', 37], ['Mozambique', 2216], ['Myanmar', 1534], ['Namibia', 3], ['New Caledonia', 9592], ['New Zealand', 4778], ['Nicaragua', 231], ['Northern Mariana Islands', 3], ['Norway', 106], ['Oman', 11], ['Pakistan', 3], ['Palau', 12], ['Panama', 27], ['Papua New Guinea', 7], ['Peru', 1287], ['Philippines', 1082], ['Philippines, Vanuatu, Solomon Islands', 1], ['Portugal', 10], ['Puerto Rico', 1], ['Russia', 2], ['Réunion', 4], ['Saint Helena, Ascension and Tristan da Cunha', 5], ['Saint Kitts and Nevis', 2], ['Saint Lucia', 1], ['Saint Pierre and Miquelon', 63], ['Saint Vincent and the Grenadines', 46], ['Samoa', 5], ['Sao Tome and Principe', 5], ['Saudi Arabia', 13], ['Senegal', 64], ['Seychelles', 79], ['Singapore', 14], ['Solomon Islands', 1127], ['Somalia', 241], ['South Africa', 474], ['South Africa, Madagascar, Mayotte', 1], ['South Georgia and the South Sandwich Islands', 13], ['South Korea', 1], ['Spain', 10], ['Sri Lanka', 66], ['Sudan', 10], ['Sweden', 1], ['Switzerland', 11], ['Taiwan', 307], ['Tanzania', 13], ['Thailand', 7], ['Tonga', 337], ['Trinidad and Tobago', 4], ['Tunisia', 30], ['Turkey', 4], ['Tuvalu', 1], ['United Kingdom', 1270], ['United States Pacific Island Wildlife Refuges', 13], ['United States of America', 46], ['Vanuatu', 22], ['Vanuatu, Philippines', 1], ['Venezuela', 11], ['Vietnam', 8], ['Virgin Islands', 2], ['Wake Island', 8], ['Wallis and Futuna', 1], ['Western Sahara', 14], ['Yemen', 4], ['cape verde island', 1], ['comore island, Comoros', 2], ['georgia island', 0], ['guadeloupe island', 1], ['guam island', 9], ['isla san pedro', 1], ['la reunion island', 1], ['mauritius island', 1], ['patagonia', 1], ['reunion island', 7], ['réunion island', 1], ['shetland island', 1], ['south australia', 1], ['south georgia island', 6678], ['south orkney islands', 2], ['st. vincent island.', 553], ['timor', 2], ['tortuga island', 112], ['tristan da cunha island', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=144917', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 163, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);