function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 4886], ['Algeria', 2], ['American Samoa', 6], ['Angola', 0], ['Antarctica', 15], ['Argentina', 18], ['Armenia', 2], ['Australia', 47], ['Austria', 3], ['Bahamas', 0], ['Belize', 0], ['Bhutan', 1], ['Bolivia', 820], ['Bosnia and Herzegovina', 2], ['Brazil', 442], ['Cameroon', 34], ['Canada', 902], ['Chile', 42], ['China', 100], ['Colombia', 14], ['Comoros', 2], ['Costa Rica', 3], ['Cuba', 1], ['Czech Republic', 4], ['Democratic Republic of the Congo', 24], ['Dominica', 0], ['Dominican Republic', 1], ['Ecuador', 17], ['Falkland Islands', 8], ['Fiji', 9], ['Finland', 1], ['France', 8], ['Gabon', 0], ['Georgia', 1], ['Germany', 97], ['Ghana', 0], ['Greece', 32], ['Greenland', 2], ['Guadeloupe', 1], ['Guatemala', 1], ['Guinea-Bissau', 22], ['Guyana', 0], ['Honduras', 1], ['Iceland', 8], ['India', 40], ['Indonesia', 6], ['Iran', 24], ['Iraq', 1], ['Ireland', 6], ['Israel', 1], ['Italy', 5], ['Ivory Coast', 2047], ['Jamaica', 1], ['Japan', 11], ['Kazakhstan', 642], ['Kenya', 7], ['Lebanon', 2], ['Lesotho', 3100], ['Luxembourg', 1], ['Madagascar', 16], ['Malaysia', 13], ['Martinique', 0], ['Mauritius', 0], ['Mauritius, Madagascar', 1], ['Mexico', 6], ['Micronesia', 14], ['Mongolia', 4], ['Myanmar', 3], ['Nepal', 6], ['Netherlands', 2], ['New Caledonia', 9], ['New Zealand', 2025], ['Nicaragua', 0], ['Nigeria', 5], ['Northern Mariana Islands', 4], ['Norway', 2], ['Pakistan', 8], ['Palestine', 6], ['Panama', 4], ['Papua New Guinea', 124], ['Paraguay', 152], ['Peru', 7], ['Philippines', 4], ['Poland', 1], ['Portugal', 2], ['Puerto Rico', 2], ['Republic of the Congo', 1], ['Russia', 8], ['Rwanda', 1], ['RĂ©union', 26], ['Saint Helena, Ascension and Tristan da Cunha', 530], ['Saint Vincent and the Grenadines', 0], ['Samoa', 6], ['Sao Tome and Principe', 2], ['Seychelles', 2], ['Sierra Leone', 2022], ['Singapore', 2], ['Solomon Islands', 2], ['Solomon Islands, Iceland', 2], ['South Africa', 45], ['South Georgia and the South Sandwich Islands', 1], ['South Korea', 1], ['Spain', 4], ['Sri Lanka', 1], ['Suriname', 0], ['Sweden', 4], ['Syria', 2], ['Taiwan', 74], ['Tanzania', 6], ['Thailand', 18], ['Togo', 6], ['Trinidad and Tobago', 0], ['Turkey', 52], ['Turks and Caicos Islands', 1], ['Uganda', 6], ['United Kingdom', 11], ['United States of America', 32], ['Vanuatu', 1], ['Venezuela', 16], ['Vietnam', 5], ['Yemen', 156], ['Zambia', 2022], ['reunion island', 4], ['south america', 2] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=20967', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 124, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);