Access historical burned area data from all over Europe.

This service gives you access to landcover related data - currently only based on Corine Landcover.

The database includes:

  1. Corine Landcover 2012
  2. Corine Landcover 2018

The data is provided in json/geojson format.

<aside> 🇪🇺 Coverage: Europe

</aside>

ENDPOINTS

GET /landcover
GET /landcover/id

List Landcover

Retrieve a list of landcover data filtered by corresponding parameters.

Parameter Description Mandatory
year filter by the year the data was produced (default: 2018) No
nuts_id filter by nuts id to receive data for a specific nuts region (e.g. MT00 for Malta) No
code filter by clc code (e.g.: 111) No
limit limit on the number of objects to be returned (default: 5) No
lat latitude No
lon longitude No

Returns

Returns a GEOJSON FeatureCollection of landcover data.

If no filter parameters are defined the first datasets from the database are returned with the default limit of 5.

GET /landcover

curl

curl <https://api.riscognition.io/landcover> \\
-H "Authorization: Bearer YOUR-API-KEY"

python

headers = {'Authorization': 'Bearer YOUR-API-KEY'}
response = requests.get("<https://api.riscognition.io/landcover>", headers = headers)

Retrieve a single Landcover object

Retrieve a landcover polygon by its unique CLC ID.

<aside> ⚠️ All IDs are specified with hyphen (e.g. EU-1) and not with underscore as in CLC 2018.

</aside>

| --- | --- | --- |

Returns

Returns a GeoJson FeatureCollection with a single landcover feature.

GET /landcover/:id

curl

curl "<https://api.riscognition.io/landcover/EU-1>" \\
-H "Authorization: Bearer YOUR-API-KEY"

python

headers = {'Authorization': 'Bearer YOUR-API-KEY'}
response = requests.get("<https://api.riscognition.io/landcover/EU-1>", headers = headers)