listDatasetsWithData.php

Returns a JSON array containing any datasets with data available.
These are the same options seen in the dropdown menu for which year and month you want to view.

Dataset name format

OSMIndicates the map source Open Street Map2021The year08The month (August)

Example Output

["OSM202103","OSM202106","OSM202107","OSM202108"]

listAvailableCountries.php

Returns a JSON object containing a list oc countries where any amount of data is available.
valid indicates if the request was successful. If it is false, the contries array will
not be available, instead reason will be added containing a short string related to the issue.

Example Output

JSON output
                        {
                            "valid": true,
                                "countries": [
                                "Indonesia",
                                "Bangladesh",
                                "Iran (Islamic Republic of)",
                                "Venezuela",
                                "Mayotte",
                                "Brunei Darussalam",
                                "Kiribati",
                                "Luxembourg",
                                "Czech Republic",
                                "Aksai Chin",
                                "Montenegro",
                                "Uganda",
                                "Syrian Arab Republic",
                                "Cambodia",
                                "Ireland",
                                "Papua New Guinea",
                                "Singapore",
                                "San Marino",
                                "American Samoa",
                                "Portugal",
                                "U.K. of Great Britain and Northern Ireland",
                                "Finland",
                                "Colombia",
                                "Malta",
                                "Albania",
                                "Ukraine",
                                "Saudi Arabia",
                                "Algeria",
                                "France",
                                "Slovakia",
                                "Israel",
                                "Malaysia",
                                "Madagascar",
                                "Kuwait",
                                "Turkey",
                                "Rwanda",
                                "Zimbabwe",
                                "Lao People's Democratic Republic",
                                "China",
                                "Belarus",
                                "Armenia",
                                "Netherlands",
                                "Lesotho",
                                "Paraguay",
                                "Gabon",
                                "Australia",
                                "Martinique",
                                "Serbia",
                                "Bosnia & Herzegovina",
                                "Reunion",
                                "Bahrain",
                                "Spain",
                                "Congo",
                                "United Arab Emirates",
                                "Georgia",
                                "Belgium",
                                "Monaco",
                                "Burundi",
                                "Democratic Republic of the Congo",
                                "Bhutan",
                                "Madeira Islands",
                                "Republic of Korea",
                                "The former Yugoslav Republic of Macedonia",
                                "Thailand",
                                "El Salvador",
                                "Italy",
                                "Democratic People's Republic of Korea",
                                "Uruguay",
                                "Oman",
                                "Fiji",
                                "Holy See",
                                "Germany",
                                "Eritrea",
                                "Canada",
                                "Argentina",
                                "United Republic of Tanzania",
                                "Namibia",
                                "Liechtenstein",
                                "Azerbaijan",
                                "Slovenia",
                                "Egypt",
                                "Greece",
                                "Afghanistan",
                                "India",
                                "Timor-Leste",
                                "Vietnam",
                                "South Africa",
                                "Peru",
                                "Azores Islands",
                                "Guadeloupe",
                                "Japan",
                                "Denmark",
                                "Jammu-Kashmir",
                                "Arunachal Pradesh",
                                "United States of America",
                                "Mozambique",
                                "Switzerland",
                                "New Zealand",
                                "Norway",
                                "Honduras",
                                "Belize",
                                "Botswana",
                                "Pakistan",
                                "Russian Federation",
                                "Brazil",
                                "Austria",
                                "Guatemala",
                                "Bolivia",
                                "Hala'ib Triangle",
                                "Lithuania",
                                "Croatia",
                                "Libyan Arab Jamahiriya",
                                "Sudan",
                                "Morocco",
                                "Swaziland",
                                "Myanmar",
                                "Mexico",
                                "Guyana",
                                "Nepal",
                                "Poland",
                                "French Guiana",
                                "Greenland",
                                "Jersey",
                                "Gibraltar",
                                "Andorra"
                            ]
                        }
                    

statsAt.php

Returns the metrics at a given zoom 16 mercator tile.
Currently available metrics are:

Example outputs

Failure

{"valid":false,"reason":"No Data"}

Success

{
    "valid": true,
    "average":47.5334873888006,
    "median":2.39824774227086,
    "median_count":1897.01396413625
}