Raw Climate Data

URL
https://climate.mapresso.com/api/data/?lat=lat&lon=lon
Example
https://climate.mapresso.com/api/data/?lat=23.13&lon=-82.361

{
    "results": {
        "location": {
            "lat": "23.13",
            "lon": "-82.361"
        }
    },
    "status": "OK",
    "data": [{
        "month": 1,
        "temp": 22.15,
        "prec": 55.7
    }, {
        "month": 2,
        "temp": 22.75,
        "prec": 65.7
    }, {
        "month": 3,
        "temp": 23.65,
        "prec": 48.4
    }, {
        "month": 4,
        "temp": 25.05,
        "prec": 78.3
    }, {
        "month": 5,
        "temp": 26.55,
        "prec": 117.3
    }, {
        "month": 6,
        "temp": 27.55,
        "prec": 229
    }, {
        "month": 7,
        "temp": 28.15,
        "prec": 141.4
    }, {
        "month": 8,
        "temp": 28.15,
        "prec": 165.9
    }, {
        "month": 9,
        "temp": 27.45,
        "prec": 205.4
    }, {
        "month": 10,
        "temp": 26.35,
        "prec": 143.2
    }, {
        "month": 11,
        "temp": 24.65,
        "prec": 77.4
    }, {
        "month": 12,
        "temp": 23.15,
        "prec": 53
    }]
}
                

Köppen-Geiger Classification

URL, Version 1: Latitude, Longitude
https://climate.mapresso.com/api/koeppen/?
    lat=lat&lon=lon
Example
https://climate.mapresso.com/api/koeppen/? 
    lat=23.13&lon=-82.361

{
    "results": {
        "lat": "23.13",
        "lon": "-82.361",
        "version": "0.80"
    },
    "status": "OK",
    "data": [{
        "type": "K\u00f6ppen-Geiger",
        "code": "Am",
        "short": "KG",
        "text": "Tropical monsoon climate"
    }, {
        "type": "K\u00f6ppen-Geiger, Kottek",
        "code": "Am",
        "short": "KGk",
        "text": "Tropical monsoon climate"
    }, {
        "type": "K\u00f6ppen-Geiger, Peel",
        "code": "Am",
        "short": "KGp",
        "text": "Tropical monsoon climate"
    }, {
        "type": "Cannon",
        "code": "3hW",
        "short": "C"
    }, {
        "type": "Trewartha",
        "code": "Aw",
        "short": "T",
        "text": "Tropical Wet-And-Dry"
    }]
}}
                    
URL, Version 2: Monthly Temperature [ºC] and Preciptiation [mmm] Values
https://climate.mapresso.com/api/koeppen/?
    temp=J,F,M,A,M,J,J,A,S,O,N,D
    &prec=J,F,M,A,M,J,J,A,S,O,N,D
Example

https://climate.mapresso.com/api/koeppen/?
    temp=1.3,2.1,5.9,9.3,13.9,17.1,19.2,18.7,14.9,10.7,5.2,2.3
    &prec=70,67,81,83,117,123,127,123,102,87,81,90
 
{
    "results": {
        "lat": "",
        "lon": "",
        "version": "0.80"
    },
    "status": "OK",
    "data": [{
        "type": "K\u00f6ppen-Geiger",
        "code": "Cfb",
        "short": "KG",
        "text": "Temperate oceanic climate"
    }, {
        "type": "K\u00f6ppen-Geiger, Kottek",
        "code": "Cfb",
        "short": "KGk",
        "text": "Temperate oceanic climate"
    }, {
        "type": "K\u00f6ppen-Geiger, Peel",
        "code": "Cfb",
        "short": "KGp",
        "text": "Temperate oceanic climate"
    }, {
        "type": "Cannon",
        "code": "4HW",
        "short": "C"
    }, {
        "type": "Trewartha",
        "code": "Do",
        "short": "T",
        "text": "Temperate Oceanic"
    }]
}