Skip to content

Commit

Permalink
update slides
Browse files Browse the repository at this point in the history
  • Loading branch information
CamilleCoux committed Nov 5, 2024
1 parent b5ba879 commit ca69113
Showing 1 changed file with 40 additions and 12 deletions.
52 changes: 40 additions & 12 deletions sections/environment-data.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -132,11 +132,6 @@ Meta data or data paper...?

## Land cover

**Corine Land Cover**

[CORINE Land Cover (CLC)](https://land.copernicus.eu/en/products/corine-land-cover) is a pan-European land cover and land use inventory with 44 thematic classes, ranging from broad forested areas to individual vineyards

Updated every six years (most recent in 2018).

<br>

Expand All @@ -150,8 +145,18 @@ Each satellite has its specificities and you should read about them before anyth

Download data through many different portals: Copernicus Atmosphere Monitoring Service (CAMS) Portal, Copernicus Marine Monitoring Service (CMEMS) Portal, [Copernicus Land Monitoring Service](https://land.copernicus.eu/en) where Corine is just one of them...


## Land cover

**Corine Land Cover**

[CORINE Land Cover (CLC)](https://land.copernicus.eu/en/products/corine-land-cover) is a pan-European land cover and land use inventory with 44 thematic classes, ranging from broad forested areas to individual vineyards

Updated every six years (most recent in 2018).

<br>


**WorldCover**

> WorldCover provides the first global land cover products for 2020 and 2021 at 10m resolution, developed and validated in near-real time based on Sentinel-1 and Sentinel-2 data.
Expand Down Expand Up @@ -188,17 +193,17 @@ Metadata of the first part of our database can however already be freely explore
Super easy shapefile download [here](https://www.worldwildlife.org/publications/marine-ecoregions-of-the-world-a-bioregionalization-of-coastal-and-shelf-areas)!

<br>
<br><br>

**WWF TEOW**

> Terrestrial Ecoregions of the World
Super easy shapefile download [here](https://www.worldwildlife.org/publications/terrestrial-ecoregions-of-the-world)!

<br><br>

### Protected areas

## Protected areas

**WDPA**

Expand Down Expand Up @@ -231,28 +236,51 @@ Available features list [here](https://www.naturalearthdata.com/features/).

Also, check ou the R package `rnaturalearth`:

```{r}
:::: {.columns}

::: {.column width=40%}

```{r}
#| echo: true
#| eval: true
#| eval: false
library(rnaturalearth)
library(ggplot2)
world <- ne_countries()
africa <- ne_countries(continent = "africa")
france <- ne_countries(country = "france")
theme_set(theme_bw())
ggplot(africa) + geom_sf()
```
:::

```{r}

#| echo: true

::: {.column width=60%}

```{r}
#| echo: false
#| eval: true
library(rnaturalearth)
library(ggplot2)
world <- ne_countries()
africa <- ne_countries(continent = "africa")
france <- ne_countries(country = "france")
theme_set(theme_bw())
ggplot(africa) + geom_sf()
```

:::

::::


## Elevation & Bathymetry

**DEM**
Expand Down

0 comments on commit ca69113

Please sign in to comment.