function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 8046], ['Algeria', 15], ['American Samoa', 66], ['Angola', 24], ['Antarctica', 0], ['Argentina', 75], ['Ashmore and Cartier Islands', 14], ['Australia', 1246], ['Azerbaijan', 27], ['Bahamas', 12], ['Bahrain', 8], ['Bangladesh', 39], ['Barbados', 1], ['Belgium', 3], ['Belize', 8], ['Belize, Honduras', 0], ['Bolivia', 1], ['Bonaire, Sint Eustatius and Saba', 11], ['Brazil', 923], ['British Indian Ocean Territory', 0], ['Brunei', 24], ['Burundi', 0], ['Cambodia', 9], ['Cameroon', 1], ['Cape Verde', 8], ['Central African Republic', 0], ['Chile', 5], ['China', 267], ['Christmas Island', 14], ['Colombia', 39], ['Comoros', 63], ['Cook Islands', 13], ['Costa Rica', 10], ['Croatia', 14], ['Cuba', 11], ['Curaçao', 4], ['Cyprus', 0], ['Democratic Republic of the Congo', 81], ['Djibouti', 2], ['Dominica', 4], ['Dominican Republic', 3], ['Ecuador', 27], ['Egypt', 190], ['El Salvador', 18], ['Equatorial Guinea', 4], ['Eritrea', 36], ['Ethiopia', 5], ['Fiji', 425], ['France', 37], ['French Guiana', 4], ['French Polynesia', 39], ['Gabon', 2], ['Georgia', 76], ['Ghana', 7], ['Grenada', 5], ['Guam', 90], ['Guatemala', 1], ['Guinea-Bissau', 12], ['Guyana', 63], ['Honduras', 14], ['Hong Kong', 9], ['Iceland', 513], ['India', 777], ['Indonesia', 1116], ['Iran', 164], ['Iraq', 6], ['Israel', 90], ['Italy', 40], ['Jamaica', 5], ['Japan', 1577], ['Jordan', 81], ['Kazakhstan', 7], ['Kenya', 14], ['Kiribati', 31], ['Kuwait', 5], ['Laos', 185], ['Lebanon', 25], ['Liberia', 1], ['Macao', 3], ['Macedonia', 1], ['Madagascar', 1326], ['Madagascar, Réunion', 1], ['Malawi', 67], ['Malaysia', 531], ['Maldives', 107], ['Marshall Islands', 140], ['Mauritania', 25], ['Mauritius', 75], ['Mayotte', 14], ['Mexico', 715], ['Micronesia', 36], ['Morocco', 1], ['Mozambique', 474], ['Myanmar', 175], ['Namibia', 2], ['New Caledonia', 130], ['New Zealand', 96], ['Nicaragua', 19], ['Niger', 2], ['Nigeria', 0], ['Niue', 2], ['Norfolk Island', 6], ['Northern Mariana Islands', 12], ['Norway', 3], ['Oman', 51], ['Pakistan', 10], ['Palau', 233], ['Panama', 49], ['Papua New Guinea', 324], ['Paraguay', 3], ['Peru', 28], ['Philippines', 799], ['Pitcairn', 10], ['Portugal', 4], ['Puerto Rico', 11], ['Qatar', 2], ['Republic of the Congo', 0], ['Romania', 1], ['Russia', 15], ['Réunion', 12], ['Saint Helena, Ascension and Tristan da Cunha', 19], ['Saint Vincent and the Grenadines', 4], ['Samoa', 16], ['Sao Tome and Principe', 6], ['Saudi Arabia', 180], ['Senegal', 14], ['Serbia', 3], ['Seychelles', 144], ['Sierra Leone', 0], ['Singapore', 139], ['Solomon Islands', 88], ['Somalia', 50], ['South Africa', 266], ['South Georgia and the South Sandwich Islands', 0], ['South Korea', 2], ['Spain', 37], ['Sri Lanka', 42], ['Sudan', 48], ['Suriname', 8], ['Sweden', 1], ['Switzerland', 1], ['Syria', 5], ['Taiwan', 1316], ['Tanzania', 76], ['Thailand', 471], ['Tokelau', 2], ['Tonga', 61], ['Trinidad and Tobago', 20], ['Turkey', 44], ['Turkmenistan', 7], ['Tuvalu', 3], ['Uganda', 164], ['Ukraine', 8], ['United Arab Emirates', 3], ['United Kingdom', 4], ['United Kingdom, british overseas territories', 0], ['United States Pacific Island Wildlife Refuges', 37], ['United States Virgin Islands', 3], ['United States of America', 696], ['United States of America, Northern Mariana Islands', 0], ['Uruguay', 139], ['Vanuatu', 63], ['Venezuela', 42], ['Vietnam', 755], ['Virgin Islands', 1], ['Wake Island', 4], ['Wallis and Futuna', 1], ['Yemen', 18], ['Zambia', 55], ['africa', 84], ['amrican samoa', 5], ['ascension island', 4], ['central pacific', 0], ['indian ocean', 0], ['ireland island', 77], ['isla san cristobal', 1], ['martinique island', 1], ['new guinea', 0], ['pacific', 0], ['papua new gunea', 106], ['red sea', 0], ['reunion island', 2], ['scotia sea', 0], ['socotra island', 18], ['south', 0], ['south china sea', 0], ['south orkney islands', 0], ['tobago island', 1], ['tonga island', 6] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=27678', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 189, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);