function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 11756], ['Afghanistan', 2], ['Algeria', 6], ['Angola', 12], ['Anguilla', 1], ['Antarctica', 673], ['Antigua and Barbuda', 12], ['Argentina', 5], ['Ashmore and Cartier Islands', 1], ['Australia', 1996], ['Bahamas', 5], ['Barbados', 2], ['Belize', 109], ['Benin', 0], ['Bermuda', 55], ['Bonaire, Sint Eustatius and Saba', 1], ['Brazil', 2846], ['British Virgin Islands', 2], ['Brunei', 14], ['Bulgaria', 18], ['Cameroon', 1], ['Canada', 27], ['Cape Verde', 5], ['Chile', 183], ['China', 252], ['Christmas Island', 4], ['Clipperton Island', 120], ['Colombia', 24], ['Cook Islands', 6], ['Costa Rica', 59], ['Croatia', 15], ['Cuba', 18], ['Curaçao', 6], ['Cyprus', 4], ['Democratic Republic of the Congo', 1], ['Denmark', 20], ['Djibouti', 85], ['Dominican Republic', 5], ['Ecuador', 23], ['Egypt', 23], ['El Salvador', 6], ['Equatorial Guinea', 6], ['Falkland Islands', 1], ['Fiji', 79], ['France', 262], ['French Guiana', 1], ['French Polynesia', 71], ['Georgia', 8], ['Germany', 30], ['Greece', 2], ['Greenland', 3], ['Grenada', 2], ['Guadeloupe', 2], ['Guam', 26], ['Guernsey', 1], ['Guinea-Bissau', 20], ['Guinea-Bissau, Equatorial Guinea', 1], ['Guyana', 1], ['Haiti', 7], ['Honduras', 4], ['Hong Kong', 50], ['Iceland', 198], ['India', 32], ['Indonesia', 97], ['Iran', 30], ['Ireland', 9], ['Israel', 9], ['Italy', 29], ['Ivory Coast', 42], ['Jamaica', 28], ['Japan', 802], ['Jordan', 2], ['Kenya', 5], ['Kiribati', 4], ['Kuwait', 1], ['Liberia', 1], ['Madagascar', 15], ['Malaysia', 1], ['Maldives', 1], ['Malta', 1], ['Marshall Islands', 19], ['Mauritius', 2], ['Mexico', 16909], ['Micronesia', 2], ['Monaco', 15], ['Morocco', 16], ['Mozambique', 14], ['Namibia', 0], ['Netherlands', 14], ['New Caledonia', 43], ['New Zealand', 26], ['Nicaragua', 2], ['Northern Cyprus', 4], ['Northern Mariana Islands', 18], ['Norway', 1156], ['Oman', 16], ['Pakistan', 2], ['Palau', 5], ['Panama', 58], ['Papua New Guinea', 16], ['Peru', 102], ['Philippines', 295], ['Poland', 19], ['Portugal', 112], ['Puerto Rico', 16], ['Republic of the Congo', 50], ['Romania', 1], ['Russia', 74], ['Saint Barthelemy', 2], ['Saint Helena, Ascension and Tristan da Cunha', 1], ['Saint Kitts and Nevis', 4], ['Saint Lucia', 6], ['Saint Pierre and Miquelon', 42], ['Saint Vincent and the Grenadines', 4], ['Samoa', 10], ['Sao Tome and Principe', 5], ['Saudi Arabia', 25], ['Senegal', 9], ['Serbia', 2], ['Seychelles', 17], ['Singapore', 532], ['Sint Martin', 5], ['Solomon Islands', 25], ['South Africa', 178], ['South Georgia and the South Sandwich Islands', 6], ['South Korea', 56], ['Spain', 37928], ['Sri Lanka', 5], ['Sudan', 1], ['Svalbard and Jan Mayen', 197], ['Sweden', 334], ['Switzerland', 189], ['Taiwan', 137], ['Tanzania', 5], ['Thailand', 352], ['Timor-Leste', 41], ['Tonga', 3], ['Trinidad and Tobago', 3], ['Tunisia', 3], ['Turkey', 698], ['United Kingdom', 742], ['United States Pacific Island Wildlife Refuges', 1], ['United States Virgin Islands', 2], ['United States of America', 834], ['Uruguay', 2], ['Vanuatu', 1], ['Venezuela', 19], ['Vietnam', 3], ['Virgin Islands', 7], ['Wallis and Futuna', 1], ['Western Sahara', 1], ['Yemen', 34], ['abyssal pacific ocean', 1], ['ambon island', 321], ['guadalupe island', 3], ['hormuz island', 0], ['isla tortuga', 5], ['la reunion island', 1], ['martinique island', 1], ['new guinea', 0], ['reunion island', 2], ['réunion island', 1], ['saint helena island', 2], ['socotra island', 1], ['tonga island', 2], ['turks and caicos', 1], ['unites states of america', 11] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=82117', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 167, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);