clc-eu

Corine Land Cover data from European Environment Agency

Usage no npm install needed!

<script type="module">
  import clcEu from 'https://cdn.skypack.dev/clc-eu';
</script>

README

clc-eu 🏞 🌅 🌄

This is a JavaScript module that gives you the Corine Land Cover information of a lat/long pair or an Open Location Code.

Only terrain data within the EU is covered as this uses the Corine Land Cover data from 2018 provided by the European Environment Agency.

Methods

async getTerrainDataFromPlotCode(plotCode)
async getTerrainDataFromLatLong({ latitude, longitude })

These both returns { [string]: []string } where the key is the plot code and the array contains the available terrains within that Open Location Code-plot.

Example:

{ '9FFGWP5P+2R': [ 'Continuous urban fabric' ] }

Usage

import { getTerrainDataFromLatLong } from 'clc-eu';

export async function fetchTerrainDataForMonolittenInOslo () {
  const result = await getTerrainDataFromLatLong({
    latitude: 59.927666,
    longitude: 10.698893
  });

  return result; // ['Green urban areas']
}