function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 85416], ['Afghanistan', 4], ['American Samoa', 354], ['Angola', 1], ['Anguilla', 1], ['Antarctica', 247], ['Antigua and Barbuda', 4], ['Argentina', 82], ['Aruba', 3], ['Ashmore and Cartier Islands', 1], ['Australia', 1380], ['Austria', 24], ['Bahamas', 96], ['Barbados', 12], ['Belgium', 7], ['Belize', 2], ['Bermuda', 88], ['Bonaire, Sint Eustatius and Saba', 6], ['Bonaire, Sint Eustatius and Saba, Netherlands', 1], ['Bouvet Island', 462], ['Brazil', 3196], ['Brunei', 8], ['Bulgaria', 2], ['Cameroon', 2], ['Canada', 92], ['Cape Verde', 9], ['Central African Republic', 4], ['Chad', 25], ['Chile', 513], ['China', 1542], ['Christmas Island', 1], ['Colombia', 205], ['Costa Rica', 27], ['Cuba', 21], ['Curaçao', 3], ['Czech Republic', 2], ['Denmark', 7], ['Djibouti', 5], ['Dominica', 3], ['Dominican Republic', 8], ['Ecuador', 24], ['Ecuador, Saint Helena, Ascension and Tristan da Cunha', 1], ['Egypt', 23], ['El Salvador', 10], ['Falkland Islands', 19], ['Fiji', 21], ['France', 292], ['French Polynesia', 4], ['Gabon', 6], ['Georgia', 5991], ['Germany', 8], ['Gibraltar', 5], ['Greenland', 18], ['Greenland, Iceland', 1], ['Grenada', 1], ['Guadeloupe', 3], ['Guam', 2], ['Guernsey', 1], ['Guinea-Bissau', 6], ['Haiti', 9], ['Heard Island and McDonald Islands', 6], ['Hong Kong', 4], ['Iceland', 586], ['Iceland, Mexico', 1], ['India', 17], ['Indonesia', 1695], ['Indonesia, Palau', 1], ['Iran', 51], ['Ireland', 29], ['Israel', 12], ['Italy', 689], ['Jamaica', 25], ['Japan', 2280], ['Jersey', 1], ['Jordan', 2], ['Kazakhstan', 4], ['Kenya', 11], ['Kiribati', 8], ['Kuwait', 2], ['Madagascar', 28], ['Madagascar, Seychelles, Maldives', 10], ['Malaysia', 42], ['Maldives', 53], ['Malta', 1], ['Marshall Islands', 6], ['Martinique', 1], ['Mauritania', 6], ['Mauritius', 2], ['Mexico', 224], ['Monaco', 3], ['Morocco', 169], ['Mozambique', 1], ['Myanmar', 1], ['Namibia', 1], ['Netherlands', 13], ['New Caledonia', 724], ['New Zealand', 2050], ['Northern Mariana Islands', 2], ['Norway', 643], ['Norway, jan mayen island', 1], ['Oman', 10], ['Pakistan', 4], ['Palau', 198], ['Panama', 47], ['Papua New Guinea', 15], ['Peru', 7], ['Philippines', 2386], ['Poland', 2], ['Portugal', 93], ['Puerto Rico', 2596], ['Russia', 7], ['Réunion', 1], ['Saint Helena, Ascension and Tristan da Cunha', 33], ['Saint Kitts and Nevis', 12], ['Saint Lucia', 2464], ['Saint Pierre and Miquelon', 15], ['Saint Vincent and the Grenadines', 175], ['Samoa', 1], ['Sao Tome and Principe', 6], ['Saudi Arabia', 17], ['Senegal', 1], ['Serbia', 1], ['Seychelles', 197], ['Singapore', 47], ['Slovenia', 1], ['Solomon Islands', 1], ['Somalia', 3], ['South Africa', 272], ['South Georgia and the South Sandwich Islands', 16], ['South Georgia and the South Sandwich Islands, Antarctica', 1], ['South Korea', 4], ['Spain', 92], ['Sri Lanka', 7], ['Sudan', 10], ['Suriname', 137], ['Svalbard and Jan Mayen', 1], ['Sweden', 13], ['Switzerland', 67], ['Taiwan', 23], ['Tanzania', 171], ['Thailand', 3], ['Tokelau', 1], ['Tonga', 5], ['Trinidad and Tobago', 1], ['Tunisia', 1], ['Turkey', 10], ['Turkmenistan', 1], ['Turks and Caicos Islands', 1], ['Ukraine', 1], ['United Arab Emirates', 1], ['United Kingdom', 1096], ['United Kingdom, South Georgia and the South Sandwich Islands', 1], ['United States Pacific Island Wildlife Refuges', 107], ['United States Pacific Island Wildlife Refuges, Kiribati', 1], ['United States Virgin Islands', 6], ['United States of America', 546], ['Uruguay', 5], ['Vanuatu', 10], ['Venezuela', 10], ['Vietnam', 7], ['Virgin Islands', 24], ['Wake Island', 10], ['Western Sahara', 9], ['Yemen', 14], ['ambon island', 1], ['ascension island', 769], ['guadalupe island', 1], ['salvador island', 1], ['south georgia island', 22], ['st. helena island.', 4], ['tristan da cunha island', 1], ['turks island', 2], ['wales island', 2], ['wallis island', 2], ['zanzibar island', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=121547', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 175, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);