Skip to content

Glatek/clc-eu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

22 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

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']
}

About

🏞 πŸŒ… πŸŒ„ JavaScript module to get Corine Land Cover data from the European Environment Agency.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published