function drawChartSpecimensByCountry() { var chartData = google.visualization.arrayToDataTable([ ['Series', 'Specimen Count (overall)'], ['', 94043], ['Afghanistan', 159], ['Akrotiri', 3], ['Albania', 226], ['Algeria', 688], ['American Samoa', 4], ['Angola', 15], ['Angola, Cameroon', 1], ['Angola, Eritrea, Kenya, Namibia, South Africa, Sudan, Swaziland,', 1], ['Anguilla', 11], ['Antigua and Barbuda', 100], ['Antigua and Barbuda, Argentina, Aruba, Barbados, Belize, Bermuda', 1], ['Argentina', 1015], ['Argentina, Paraguay', 1], ['Armenia', 3], ['Aruba', 1], ['Australia', 468], ['Austria', 92], ['Azerbaijan', 1], ['Bahamas', 412], ['Bangladesh', 0], ['Barbados', 12], ['Belarus', 1], ['Belgium', 324], ['Belize', 23], ['Benin', 5], ['Bermuda', 0], ['Bhutan', 5], ['Bolivia', 219], ['Bosnia and Herzegovina', 0], ['Botswana', 5], ['Brazil', 11552], ['British Virgin Islands', 12], ['Brunei', 25], ['Bulgaria', 765], ['Burundi', 794], ['Cambodia', 47], ['Cameroon', 212], ['Canada', 12], ['Cayman Islands', 4], ['Central African Republic', 2287], ['Chile', 505], ['China', 2369], ['Colombia', 1294], ['Comoros', 48], ['Cook Islands', 1], ['Costa Rica', 770], ['Croatia', 4], ['Cuba', 207], ['Cyprus', 519], ['Czech Republic', 1], ['Democratic Republic of the Congo', 1719], ['Denmark', 91], ['Dominica', 1], ['Dominican Republic', 298], ['Ecuador', 99], ['Egypt', 91], ['El Salvador', 7], ['Equatorial Guinea', 7], ['Eritrea', 4], ['Ethiopia', 14], ['Fiji', 2], ['Finland', 71], ['France', 914], ['France, Germany', 1], ['French Guiana', 43128], ['Gabon', 2958], ['Gambia', 880], ['Georgia', 31], ['Germany', 36], ['Ghana', 93], ['Greece', 109], ['Grenada', 15], ['Grenada, Guadeloupe, Guatemala, Guyana', 1], ['Grenada, Guadeloupe, Guatemala, Haiti', 1], ['Guam', 44], ['Guatemala', 374], ['Guinea-Bissau', 1039], ['Guyana', 63], ['Haiti', 15], ['Heard Island and McDonald Islands', 1], ['Honduras', 184], ['Hong Kong', 756], ['Hungary', 46], ['Iceland', 2903], ['India', 5034], ['Indonesia', 369], ['Iran', 241], ['Iraq', 1], ['Ireland', 1], ['Isle of Man', 12], ['Israel', 60], ['Italy', 899], ['Ivory Coast', 250], ['Jamaica', 1], ['Japan', 133], ['Jordan', 63], ['Kazakhstan', 51], ['Kenya', 1883], ['Kiribati', 1], ['Kuwait', 5], ['Kyrgyzstan', 0], ['Laos', 8], ['Lebanon', 1], ['Lesotho', 0], ['Liberia', 4], ['Lithuania', 2], ['Macao', 50], ['Macedonia', 34], ['Madagascar', 3214], ['Malawi', 0], ['Malaysia', 1190], ['Malta', 5], ['Marshall Islands', 0], ['Mauritius', 26], ['Mayotte', 10], ['Mexico', 3274], ['Micronesia', 27], ['Mongolia', 2], ['Montserrat', 2], ['Morocco', 957], ['Mozambique', 467], ['Mozambique, Namibia, South Africa', 34], ['Myanmar', 41], ['Namibia', 36], ['Nepal', 37], ['Netherlands', 3], ['New Caledonia', 60], ['Nicaragua', 191], ['Niger', 1], ['Nigeria', 9], ['Norfolk Island', 195], ['Northern Mariana Islands', 0], ['Oman', 340], ['Pakistan', 1], ['Palau', 1], ['Palestine', 5], ['Panama', 63], ['Papua New Guinea', 112], ['Paraguay', 35], ['Peru', 138], ['Philippines', 220], ['Poland', 3], ['Portugal', 8], ['Puerto Rico', 92], ['Qatar', 513], ['Republic of the Congo', 15], ['Romania', 3], ['Russia', 18], ['Rwanda', 12], ['RĂ©union', 16], ['Saint Helena, Ascension and Tristan da Cunha', 4], ['Saint Kitts and Nevis', 7], ['Saint Lucia', 11], ['Saint Pierre and Miquelon', 6], ['Saint Vincent and the Grenadines', 5], ['Samoa', 6], ['Sao Tome and Principe', 25], ['Saudi Arabia', 3428], ['Senegal', 869], ['Serbia', 8], ['Seychelles', 33], ['Sierra Leone', 16], ['Singapore', 524], ['Sint Martin', 4], ['Slovakia', 0], ['Slovenia', 4], ['Solomon Islands', 7], ['Somalia', 26], ['South Africa', 366], ['Spain', 602], ['Spain, France', 1], ['Sri Lanka', 23], ['Sudan', 14], ['Suriname', 16], ['Swaziland', 4], ['Sweden', 5], ['Switzerland', 109], ['Syria', 0], ['Taiwan', 988], ['Tanzania', 98], ['Thailand', 1743], ['Tonga', 5], ['Trinidad and Tobago', 18], ['Tunisia', 1841], ['Turkey', 4615], ['Turkmenistan', 11], ['Turks and Caicos Islands', 3], ['Uganda', 721], ['Ukraine', 76], ['United Arab Emirates', 14], ['United Kingdom', 8], ['United States Virgin Islands', 11], ['United States of America', 934], ['Uruguay', 354], ['Uzbekistan', 2], ['Uzbekistan, Turkmenistan', 101], ['Uzbekistan, Turkmenistan, Kyrgyzstan, Tajikistan, Afghanistan', 107], ['Vanuatu', 1], ['Venezuela', 202], ['Vietnam', 1114], ['Wake Island', 2], ['Wallis and Futuna', 2], ['Yemen', 517], ['Zambia', 1333], ['Zimbabwe', 33], ['akrotiri uk', 8], ['daghestan', 0], ['east africa', 2], ['guam i.', 1], ['guyane francaise', 1], ['island reunion', 1], ['makassar', 0], ['malaya', 19], ['marshall', 0], ['neth. new guinea.', 0], ['new guinea', 0], ['new south wales', 36], ['pulau', 10], ['serbia-montenegro', 0], ['socotra island', 1], ['sumatra', 1], ['turkestan', 0], ['united', 2], ['yemen island', 1] ]); var chartOptions = { region: 'world', fontSize: 'automatic', title: 'n=216802', doWeHaveDanglingCommas: 'No ;-)' }; if (window.customizeGoogleChartOptions) customizeGoogleChartOptions(chartOptions, 'SpecimensByCountry', 'geo', 225, 0); var chart = new google.visualization.GeoChart(document.getElementById('chartDivSpecimensByCountry')); chart.draw(chartData, chartOptions); } google.load('visualization', '1', {'packages': ['geochart']}); google.setOnLoadCallback(drawChartSpecimensByCountry);