Back to data catalog

Deforestation API

Aggregated deforestation data on a global scale

More info

Data sources

The deforestation data covers the period from 2001 to 2022 and is provided by the Global Land Analysis and Discovery (GLAD) laboratory at the University of Maryland, in partnership with Global Forest Watch (GFW). The data are freely available for use under a Creative Commons Attribution 4.0 International License. River basin polygons data is provided by HydroSHEDS. The basin data are feely available for both non-commercial and commercial use under a licence agreement included in the HydroSHEDS Technical Documentation.

Processing

Using the river basin polygons, the deforestation data are aggregated per basin and year.

Examples

Example 1

Get the total forest cover loss within the queried river basin over the given time period.

1import io.openepi.common.ApiException;
2import io.openepi.deforestation.api.DeforestationApi;
3import io.openepi.deforestation.model.DeforestationBasinGeoJSON;
4import java.math.BigDecimal;
5
6public class Main {
7    public static void main(String[] args) {
8        DeforestationApi api = new DeforestationApi();
9        try {
10            BigDecimal lon = new BigDecimal("30.06");
11            BigDecimal lat = BigDecimal.valueOf(-1.94);
12
13            DeforestationBasinGeoJSON response = api.lossyearBasinGet(lon, lat, null, null, null, null, 2010, 2019);
14            
15            // Get the total forest cover loss within the returned river basin over the time period
16            BigDecimal loss = response.getFeatures().get(0).getProperties().getDaterangeTotTreeloss();
17            System.out.println("Total forest cover loss: " + loss + " km^2");
18        } catch (ApiException e) {
19            System.err.println("Exception when calling DeforestationApi#lossyearBasinGet");
20            e.printStackTrace();
21        }
22    }
23}