CINXE.COM

Home | Peer 2025

<!DOCTYPE html> <html lang="en"> <head><base href="https://www.peer.eu/"> <meta charset="utf-8"> <!-- concept & creation by ifabrik.de, Leipzig This website is powered by TYPO3 - inspiring people to share! TYPO3 is a free open source Content Management Framework initially created by Kasper Skaarhoj and licensed under GNU/GPL. TYPO3 is copyright 1998-2025 of Kasper Skaarhoj. Extensions are copyright of their respective owners. Information and contribution at https://typo3.org/ --> <title>Home | Peer 2025</title> <meta name="generator" content="TYPO3 CMS"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <meta name="robots" content="index,follow"> <meta name="twitter:card" content="summary"> <meta name="designer" content="i-fabrik GmbH"> <meta name="format-detection" content="telephone=no"> <meta name="google" content="notranslate"> <meta name="language" content="en"> <meta name="date" content="2025-01-22"> <meta name="id:page" content="1"> <meta name="id:language" content="0"> <link rel="stylesheet" href="dist/default/media/fonts/@fortawesome/fontawesome-pro/css/all.min.css?1734968893" media="all" nonce="uK5v8NMKwVdkn29lr2FYPdTJ8Svns5szvQstaZiukv5uJgbM1nFo7g"> <link rel="stylesheet" href="typo3temp/assets/compressed/merged-77fe53a1e66ad9a820eacf2a94ca8a9b-990cb72beb70b8f4595192a0f3169f4e.css?1737545614" media="all" nonce="uK5v8NMKwVdkn29lr2FYPdTJ8Svns5szvQstaZiukv5uJgbM1nFo7g"> <style media="all" nonce="uK5v8NMKwVdkn29lr2FYPdTJ8Svns5szvQstaZiukv5uJgbM1nFo7g"> /*<![CDATA[*/ <!-- /*! * Peer 2024 1.0.7 * https://www.ifabrik.de/ * * Copyright 2023 i-fabrik GmbH * * Released on January 22, 2025 * * Author: i-fabrik GmbH * Contributor: Heiko Pfefferkorn <heiko.pfefferkorn@ifabrik.de> */ @charset "UTF-8"; .page-logo { --page-logo-color: var(--wp-color-primary); --page-logo-height: 1em; --page-logo-width: auto; display: inline-block; } .page-logo > svg { height: var(--page-logo-height); width: var(--page-logo-width); } /** * Überschriftselektoren zusammenstellen<br/> * * @example scss * $var : heading-selectors(); * // = h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 * * $var : heading-selectors(1, 6, false); * // = h1, h2, h3, h4, h5, h6 * * $var : heading-selectors(3, 4); * // = h3, .h3, h4, .h4 * * // Abfangen von nicht korrekten Angaben (`< 1`, `> 6`). * $var : heading-selectors(0, 0); * $var : heading-selectors(-1, 0); * $var : heading-selectors(7, -15); * // = h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 * * $var : heading-selectors(0, 2); * // = h1, .h1, h2, .h2 * * // Vertauschte Werte. * $var : heading-selectors(3, 1); * // = h3, .h3, h4, .h4, h5, .h5, h6, .h6 */ /** * Replace `$search` with `$replace` in `$string` */ /** * SVG-XML-String kodieren */ /** * Einheit eines Wertes entfernen. * * @example * $var : strip-unit(16px); * // = 16 */ /** * Einheit eines Wertes entfernen. * * @example * $var : get-unit(16px); * // = px */ /** * Höhenangabe ´vh´ auf Basis einer Rootvariable, wird per JS gesetzt berechnen. * (https://chanind.github.io/javascript/2019/09/28/avoid-100vh-on-mobile-web.html) * * @example scss * // Rootvariable `--vh` wurde per JS mit dem Wert ´6.4px´ (Browserhöhe ist 640px) gesetzt * * $var : vh(50); * // = calc(var(--vh, 1vh) * 50); // berechnet wird demzufolge 320px * * // Mit Prefix der Rootvariable (`--ws-vh`) * * $var : vh(25, 'ws-'); * // = calc(var(--ws-vh, 1vh) * 25); // berechnet wid demzufolge 160px */ /** * Prüft ob `$val` null ist. * * @example scss * $var : is-null(null); * // = true * * $var : is-null(0); * // = false */ /** * Prüft ob `$val` leer ist. * * @example scss * $var : is-empty(); * // = true * * $var : is-empty(''); * // = true * * $var : is-empty('foo'); * // = false */ /** * Prüft ob `$val` numerisch ist. * * @example scss * $var : is-numeric(1); * // = true * * $var : is-numeric('2'); * // = false * * $var : is-numeric(3rem); * // = false */ /** * Prüft ob `$val` boolean ist. * * @example scss * $var : is-bool(true); * // = true * * $var : is-bool(false); * // = false * * $var : is-bool(1); * // = true * * $var : is-bool(0); * // = false * * $var : is-bool(null); * // = false */ /** * Prüft ob `$val` ein String ist. * * @example scss * $var : is-string(foo); * // = true * * $var : is-string('bar'); * // = true * * $var : is-string(0); * // = false */ /** * Prüft ob `$val` eine Liste ist. * * @example scss * $var : is-list(a b c d); * // = true * * $var : is-list(lorem, ipsum); * // = true * * $var : is-list(foo); * // = false */ /** * Prüft ob `$val` eine Map ist. * * @example scss * $var : is-map((a: b)); * // = true * * $var : is-list(foo); * // = false */ /** * Farbton (Hue) eines Hexwertes zurückgeben. * * @example * get-hue(#6176ff); * // = 232 */ /** * Sättigung (Saturation) eines Hexwertes zurückgeben. * * @example * get-saturation(#6176ff); * // = 100% */ /** * Helligkeit (Lightness) eines Hexwertes zurückgeben. * * @example * get-lightness(#6176ff); * // = 69% */ /** * Überschreiben der SCSS-Konvertierungsfunktion `hsl()` zu einer realen * `hsl()`-Angabe. * * @example * hsl(232, 100%, 69%); * // = hsl(232, 100%, 69%) * * hsl(232, 100, 69); * // = hsl(232, 100%, 69%) * * hsl(#6176ff); * // = hsl(232, 100%, 69%) * * hsl(var(--color-hue), 100%, 69%); * // = hsl(var(--color-hue), 100%, 69%) * * hsl(var(--color-hue), var(--color-saturation), var(--color-lightness)); * // = hsl(var(--color-hue), var(--color-saturation), var(--color-lightness)) */ /** * Überschreiben der SCSS-Konvertierungsfunktion `hsla()` zu einer realen * `hsla()`-Angabe. * * @example * hsla(232, 100%, 69%, 0.75); * // = hsla(232, 100%, 69%, 0.75) * * hsla(232, 100, 69, 0.75); * // = hsla(232, 100%, 69%, 0.75) * * hsla(#6176ff, 0.75); * // = hsla(232, 100%, 69%, 0.75) * * hsla(#6176ff); * // = hsla(232, 100%, 69%, 1) * * hsla(var(--color-hue), 100%, 69%); * // = hsla(var(--color-hue), 100%, 69%, 1) * * hsla(var(--color-hue), var(--color-saturation), var(--color-lightness)); * // = hsla(var(--color-hue), var(--color-saturation), var(--color-lightness), 1) * * hsla(#6176ff, var(--opacity)); * // = hsla(232, 100%, 69%, var(--opacity)) */ /** * Überschreiben der SCSS-Konvertierungsfunktion `rgb()` zu einer realen * `rgb()`-Angabe. * * @example * rgb(97, 118, 255); * // = rgb(97, 118, 255) * * rgb(#6176ff); * // = rgb(97, 118, 255) * * // `--color : 97, 118, 255;` * rgb(var(--color)); * // = rgb(var(--color)) */ /** * Überschreiben der SCSS-Konvertierungsfunktion `rgba()` zu einer realen * `rgba()`-Angabe. * * @example * rgba(97, 118, 255, 0.75); * // = rgba(97, 118, 255, 0.75) * * rgba(97, 118, 255); * // = rgba(97, 118, 255, 1) * * rgba(#6176ff, 0.75); * // = rgba(97, 118, 255, 0.75) * * rgba(#6176ff); * // = rgba(97, 118, 255, 1) * * // `--color : 97, 118, 255;` * rgba(var(--color)); * // = rgba(var(--color), 1) * * // `--color : 97, 118, 255;` * // `--opcity : 0.75;` * rgba(var(--color), var(--opacity)); * // = rgba(var(--color), var(--opacity)) */ /** * Minimale Breakpointweite.<br/> * <small>_Null für den kleinsten (ersten) Breakpoint._</small> * * @example scss * $breakpoints : ( * 'xxs' : 0, * 'xs' : 420px, * 's' : 576px, * 'm' : 768px, * 'l' : 992px * ); * * $var : breakpoint-min('xs'); * // = 420px */ /** * Maximale Breakpointweite.<br/> * <small>_Null für den größten (letzten) Breakpoint. Der Maximalwert wird als Minimum des nächsten Breakpointwertes minus 1px berechnet._</small> * * @example scss * $breakpoints : ( * 'xxs' : 0, * 'xs' : 420px, * 's' : 576px, * 'm' : 768px, * 'l' : 992px * ); * * $var : breakpoint-max('xs'); * // = 575px */ /** * Name des nächsten Breakpoints.<br/> * <small>_Null für den letzten Breakpoint._</small> * * @example scss * $breakpoints : ( * 'xxs' : 0, * 'xs' : 420px, * 's' : 576px, * 'm' : 768px, * 'l' : 992px * ); * * $var : breakpoint-next('xs'); * // = s * * $var : breakpoint-next('s'); * // = m */ /** * Anwendung von Definitionen (`@content`) ab dem Breakpoint `$name` und höher * (mobile first). * * @example scss * $breakpoints : ( * 'xxs' : 0, * 'xs' : 420px, * 's' : 576px, * 'm' : 768px, * 'l' : 992px * ); * * .container { * background : #fff; * * @include media-breakpoint-up('s') { * background : #ccc; * } * } * * @example css - Result * .container { * background : #fff; * } * * @media (min-width: 576px) { * .container { * background : #ccc; * } * } */ /** * Anwendung von Definitionen (`@content`) ab der Maximalbreite des Breakpoint * `$name` und kleiner (desktop first). * * @example scss * $breakpoints : ( * 'xxs' : 0, * 'xs' : 420px, * 's' : 576px, * 'm' : 768px, * 'l' : 992px * ); * * .container { * background : #fff; * * @include media-breakpoint-down('s') { * background : #ccc; * } * } * * @example css - Result * .container { * background : #fff; * } * * @media (max-width: 767px) { * .container { * background : #ccc; * } * } */ /** * Shortcut-Funktion für `media-breakpoint-up()` und `media-breakpoint-down()`. */ /** * Anwendung von Definitionen (`@content`) zwischen Minimumbreite `$lower` und * Maximumbreite `$upper`. * * @example scss * $breakpoints : ( * 'xxs' : 0, * 'xs' : 420px, * 's' : 576px, * 'm' : 768px, * 'l' : 992px * ); * * .container { * background : #fff; * * @include media-breakpoint-between('xs', 'm') { * background : #ccc; * } * } * * @example css - Result * .container { * background : #fff; * } * * @media (min-width : 420px) and (max-width : 991px) { * .container { * background : #ccc; * } * } */ /** * Anwendung von Definitionen (`@content`) nur innerhalb der Minimum- und * Maxiamlbreite des Breakpoints `$name`. * * @example scss * $breakpoints : ( * 'xxs' : 0, * 'xs' : 420px, * 's' : 576px, * 'm' : 768px, * 'l' : 992px * ); * * .container { * background : #fff; * * @include media-breakpoint-only('s') { * background : #ccc; * } * } * * @example css - Result * .container { * background : #fff; * } * * @media (min-width: 576px) and (max-width: 767px) { * .container { * background : #ccc; * } * } */ /** * Kontextbasierten Selektor etwas vereinfachen ;). */ /** * On `:disabled` */ /** * On `.not(:disabled)` */ /** * On `:readonly` */ /** * On `:hover` */ /** * On `:active` */ /** * On `:focus` */ /** * On `:hover, :focus` */ /** * On `:hover, :active, :focus` */ /** * Webfonts mit `@font-face` integrieren. * * Bzgl. moderner Browser (Stand Anfang 2019) wird normalerweise nur `woff2` und * `woff` benötigt. Eine Prüfung auf das Schriftformat bzgl. einer Erweiterung * der URL wird nur für `eot` und `ttf` durchgeführt! * * `woff2` moderne Browser * `woff` IE 11 * `eot` IE6-IE8 * `ttf` Safari, Android, iOS * * @example scss * @include font-face( * 'Example-Regular', * 'example/', * ( * woff2 : 'example-regular.woff2', * woff : 'example-regular.woff', * eot : 'example-regular.eot', * ttf : 'example-regular.ttf' * ) * ); * * @example css - Result * @font-face { * font-family : 'Example-Regular'; * font-display: swap; * src : url('/dist/example/example-regular.woff2') format('woff2'), * url('/dist/example/example-regular.woff') format('woff'), * url('/dist/example/example-regular.eot?#iefix') format('embedded-opentype'), * url('/dist/example/example-regular.ttf') format('truetype'); * } */ /** * Generieren von Selektoren bzgl. Validierungsstatus */ /* stylelint-disable-line scss/dollar-variable-pattern */ /* stylelint-disable-line scss/dollar-variable-pattern */ /** * Scrollen eines Containers deaktivieren. */ /** * Helper class integrieren. */ /** * Textelement bei Klick vollständig ausgewählen. */ /** * Textelement nicht auswählbar. */ /** * ´Aufspannen´ eines Links. * Ein Elternelement muss dazu mit `position: relative;` definiert sein! */ /** * Inhalte visuell ausblenden aber für unterstützende Technologien zugänglich * halten. */ /** * Zeige Inhalt nur wenn er fokussiert wird/wurde. */ .page-header { align-items: center; background-color: var(--wp-color-white); color: var(--wp-color-text); display: grid; grid-auto-columns: max-content max-content; grid-auto-rows: max-content max-content; grid-template-areas: "logo controls" "logo controls"; justify-content: space-between; padding: calc(var(--wp-spacing-s) * 3) var(--wp-spacing); position: sticky; row-gap: calc(var(--wp-spacing-s) * 3); top: 0; z-index: var(--wp-zindex-page-header); } @media (min-width: 992px) { .page-header { align-items: start; grid-template-areas: "logo search" "mainnav mainnav"; padding: calc(var(--wp-spacing) * 2.5) var(--wp-spacing-xl) 0 var(--wp-spacing-xl); } } @media (min-width: 1600px) { .page-header { grid-template-areas: "logo search" "logo mainnav"; } } .page-header-sentinel { height: var(--wp-page-header-height); left: 0; pointer-events: none; position: absolute; top: 0; width: 1px; } .page-header .page-logo { --wp-page-logo-height: 3rem; grid-area: logo; } @media (min-width: 768px) { .page-header .page-logo { --wp-page-logo-height: 4rem; } } @media (min-width: 1600px) { .page-header .page-logo { --wp-page-logo-height: 6rem; } } .page-header .main-nav.nav { display: none; grid-area: mainnav; } @media (min-width: 992px) { .page-header .main-nav.nav { display: flex; justify-self: end; } } .page-header .main-nav.nav > .nav-list { flex-direction: row; } .page-header .search-box { display: none; grid-area: search; } @media (min-width: 992px) { .page-header .search-box { display: block; } } .page-header .search-box > .form { margin-left: auto; max-width: 500px; } .page-header .controls { align-items: center; display: flex; gap: 1rem; grid-area: controls; margin-left: auto; } @media (min-width: 992px) { .page-header .controls { display: none; } } .page-header .controls .icon-button { min-width: unset; } .page-header .controls .icon-button[aria-controls=page-search] { --ifabsh-icon-button-color: var(--wp-color-primary); --ifabsh-icon-button-color-hover: currentColor; font-size: 26px; } .page-header .controls .icon-button[aria-controls=page-menu-drawer] { --ifabsh-icon-button-color: var(--wp-color-secondary); --ifabsh-icon-button-color-hover: currentColor; font-size: 28px; } html.page-header-is-sticky { --wp-page-header-height: 3rem; --wp-page-header-logo-height: 1.5rem; } @media (min-width: 992px) { html.page-header-is-sticky { --wp-page-header-height: 4rem; --wp-page-header-logo-height: 1.75rem; } } html.page-header-is-sticky body:not(.-page-search-open) .page-header { box-shadow: 0 0 10px var(--wp-color-grey-dark); } html.page-header-is-sticky body.-page-search-open .page-search { box-shadow: 0 0 10px var(--wp-color-grey-dark); }--> /*]]>*/ </style> <link rel="stylesheet" href="dist/default/main.css?1737550294" media="all" nonce="uK5v8NMKwVdkn29lr2FYPdTJ8Svns5szvQstaZiukv5uJgbM1nFo7g"> <link href="/dist/default/modules/news/list.css?1737549109" rel="stylesheet" > <link href="/dist/default/pages/homepage.css?1737549109" rel="stylesheet" > <link as="font" crossorigin href="dist/default/media/fonts/@fortawesome/fontawesome-pro/webfonts/fa-regular-400.woff2" rel="preload"/> <link as="font" crossorigin href="dist/default/media/fonts/@fortawesome/fontawesome-pro/webfonts/fa-brands-400.woff2" rel="preload"/> <link as="font" crossorigin href="dist/default/media/fonts/@fortawesome/fontawesome-pro/webfonts/fa-solid-900.woff2" rel="preload"/> <link as="font" crossorigin href="dist/default/media/fonts/pt-sans/pt-sans-regular.woff2" rel="preload"/> <link as="font" crossorigin href="dist/default/media/fonts/pt-sans/pt-sans-bold.woff2" rel="preload"/> <link rel="apple-touch-icon" sizes="180x180" href="dist/default/media/favicons/apple-touch-icon.png"/> <link rel="icon" type="image/png" sizes="32x32" href="dist/default/media/favicons/favicon-32x32.png"/> <link rel="icon" type="image/png" sizes="16x16" href="dist/default/media/favicons/favicon-16x16.png"/> <link rel="manifest" href="dist/default/media/favicons/site.webmanifest"/> <link rel="mask-icon" href="dist/default/media/favicons/safari-pinned-tab.svg" color="#323f6c"/> <meta name="msapplication-TileColor" content="#6176ff"/> <meta name="msapplication-config" content="dist/default/media/browserconfig.xml"/> <meta name="theme-color" content="#6176ff"/> <script nonce="uK5v8NMKwVdkn29lr2FYPdTJ8Svns5szvQstaZiukv5uJgbM1nFo7g"> window.pageInstance = window.pageInstance || {settings: {}}; window.pageInstance.settings['paths'] = {'dist' : 'dist/'}; window.pageInstance.settings['language'] = {'uid' : 0, 'label': 'en'}; window.pageInstance.settings['statistic'] = {}; window.pageInstance.settings['translations'] = {'close': 'close', 'open': 'open', 'passwordShowHide': 'Show/Hide password', 'passwordHidden': 'Password hidden', 'passwordVisible': 'Password visible', 'slider' : {'first': 'first item', 'goTo': 'go to item {{index}}', 'last': 'last item', 'next': 'next item', 'prev': 'first item'}, 'dialogs': {'confirmButtonText': 'yes', 'cancelButtonText' : 'Cancel', 'confirmTitle' : 'Confirmation'}}; window.pageInstance.settings['maps'] = {'defaultLat': 51.1099714, 'defaultLon': 10.1877937 , 'google' : {'id': 'AIzaSyAwFBqwzcaIQti-lCfSwoVGcAwJBMDAyXA', 'library': ''}}; </script> <meta content="1" name="pageId"/><meta content="0" name="languageID"/> <link rel="canonical" href="https://www.peer.eu/"/> </head> <body id="p1" class=" page-layout-homepage "> <!--TYPO3SEARCH_end--><div class="skip-to sr-only"><a class="skip-to__link sr-only" href="/#main-nav"><span>Skip to page navigation</span></a><a class="skip-to__link sr-only" href="/#page-main"><span>Skip to page content</span></a><a class="skip-to__link sr-only" href="/#page-footer"><span>Skip to page footer</span></a></div><!--TYPO3SEARCH_begin--><div class="page" id="page"><!--TYPO3SEARCH_end--><header class="page-header" id="page-header" tabindex="-1"><a aria-label="Homepage" class="page-logo rs_preserve rs_skip" href="/" rel="follow" target="_top" ><img src="dist/default/media/logo.svg" width="295" height="90" alt="" /></a><!-- FIXME : FLUID EROOR - ViewHelerp `f:form` without Extbase --><div class="search-box rs_preserve rs_skip"><!----><form class="form" action="/suche?tx_indexedsearch_pi2%5Baction%5D=search&amp;tx_indexedsearch_pi2%5Bcontroller%5D=Search&amp;cHash=1f821d106490b6771a24e2e45d209f6f" method="post"><div><input type="hidden" name="tx_indexedsearch_pi2[__referrer][@extension]" value="IndexedSearch"><input type="hidden" name="tx_indexedsearch_pi2[__referrer][@controller]" value="Search"><input type="hidden" name="tx_indexedsearch_pi2[__referrer][@action]" value="form"><input type="hidden" name="tx_indexedsearch_pi2[__referrer][arguments]" value="YTowOnt9e551c55ba47e0003b056e287440cb230481a178b"><input type="hidden" name="tx_indexedsearch_pi2[__referrer][@request]" value="{&quot;@extension&quot;:&quot;IndexedSearch&quot;,&quot;@controller&quot;:&quot;Search&quot;,&quot;@action&quot;:&quot;form&quot;}21b5dffac2de57cc7ee5e06c70bab446a46966fc"><input type="hidden" name="tx_indexedsearch_pi2[__trustedProperties]" value="{&quot;search&quot;:{&quot;_sections&quot;:1,&quot;_freeIndexUid&quot;:1,&quot;pointer&quot;:1,&quot;ext&quot;:1,&quot;searchType&quot;:1,&quot;defaultOperand&quot;:1,&quot;mediaType&quot;:1,&quot;sortOrder&quot;:1,&quot;group&quot;:1,&quot;languageUid&quot;:1,&quot;desc&quot;:1,&quot;numberOfResults&quot;:1,&quot;extendedSearch&quot;:1,&quot;sword&quot;:1}}996df33c70a55cb693de47832d51a0f252fba395"></div><div class="tx-indexedsearch-hidden-fields"><input type="hidden" name="tx_indexedsearch_pi2[search][_sections]" value="0"><input type="hidden" name="tx_indexedsearch_pi2[search][_freeIndexUid]" value="_"><input type="hidden" name="tx_indexedsearch_pi2[search][pointer]" value="0"><input type="hidden" name="tx_indexedsearch_pi2[search][ext]" value=""><input type="hidden" name="tx_indexedsearch_pi2[search][searchType]" value="1"><input type="hidden" name="tx_indexedsearch_pi2[search][defaultOperand]" value="0"><input type="hidden" name="tx_indexedsearch_pi2[search][mediaType]" value="-1"><input type="hidden" name="tx_indexedsearch_pi2[search][sortOrder]" value="rank_weight"><input type="hidden" name="tx_indexedsearch_pi2[search][group]" value=""><input type="hidden" name="tx_indexedsearch_pi2[search][languageUid]" value="0"><input type="hidden" name="tx_indexedsearch_pi2[search][desc]" value=""><input type="hidden" name="tx_indexedsearch_pi2[search][numberOfResults]" value="10"><input type="hidden" name="tx_indexedsearch_pi2[search][extendedSearch]" value=""></div><fieldset><div class="tx-indexedsearch-form form-group"><div class="input-group"><input class="tx-indexedsearch-searchbox-sword form-control search-box__input" id="tx-indexedsearch-searchbox-sword" type="text" name="tx_indexedsearch_pi2[search][sword]" value=""><button name="search[submitButton]" id="tx-indexedsearch-searchbox-button-submit" class="tx-indexedsearch-searchbox-button button -secondary -circle"><span class="button__label"><i class="fas fa-magnifying-glass"></i></span></button></div></div></fieldset></form></div><nav aria-labelledby="nav-desc-83" class="nav main-nav" data-nav="main" id="main-nav"><span class="nav-desc" id="nav-desc-83">Main navigation</span><ul class="nav-list "><li class="nav-item "><a href="/research" target="_top" class="nav-link"><span class="nav-link__label">Research</span></a></li><li class="nav-item "><a href="/research-facilities" target="_top" class="nav-link"><span class="nav-link__label">Research Facilities</span></a></li><li class="nav-item -has-sub"><a href="/projects" target="_top" class="nav-link"><span class="nav-link__label">Projects</span><span aria-hidden="true" class="nav-link__suffix"><span aria-hidden="true" class="icon fa-regular fa-chevron-down " data-icon ></span></span></a><div aria-label="Submenu for Projects" class="nav-container -sub"><ul class="nav-list "><li class="nav-item "><a href="/projects/bioeconomy-and-green-engineering-peer-ge" target="_top" class="nav-link"><span class="nav-link__label">Bioeconomy and green engineering (PEER GE)</span></a></li><li class="nav-item "><a href="/projects/peer-research-on-sustainable-development-goals" target="_top" class="nav-link"><span class="nav-link__label">PEER Research on Sustainable Development Goals</span></a></li><li class="nav-item -has-sub"><a href="/projects/peer-climate-change-projects" target="_top" class="nav-link"><span class="nav-link__label">PEER Climate Change Projects</span><span aria-hidden="true" class="nav-link__suffix"><span aria-hidden="true" class="icon fa-regular fa-chevron-down " data-icon ></span></span></a><div aria-label="Submenu for PEER Climate Change Projects" class="nav-container -sub"><ul class="nav-list "><li class="nav-item "><a href="/projects/peer-climate-change-projects/climate-change-project-1" target="_top" class="nav-link"><span class="nav-link__label">Climate Change Project 1</span></a></li><li class="nav-item "><a href="/projects/peer-climate-change-projects/climate-change-project-2" target="_top" class="nav-link"><span class="nav-link__label">Climate Change Project 2</span></a></li></ul></div></li></ul></div></li><li class="nav-item -has-sub"><a href="/publications" target="_top" class="nav-link"><span class="nav-link__label">Publications</span><span aria-hidden="true" class="nav-link__suffix"><span aria-hidden="true" class="icon fa-regular fa-chevron-down " data-icon ></span></span></a><div aria-label="Submenu for Publications" class="nav-container -sub"><ul class="nav-list "><li class="nav-item "><a href="/publications/position-papers-and-statements" target="_top" class="nav-link"><span class="nav-link__label">Position Papers and Statements</span></a></li><li class="nav-item "><a href="/publications/implementing-the-green-economy" target="_top" class="nav-link"><span class="nav-link__label">Implementing the Green Economy</span></a></li><li class="nav-item "><a href="/publications/spatial-assessment-of-ecosystem-services-phase-1" target="_top" class="nav-link"><span class="nav-link__label">Spatial assessment of ecosystem services (phase 1)</span></a></li><li class="nav-item "><a href="/publications/spatial-assessment-of-ecosystem-services-phase-2" target="_top" class="nav-link"><span class="nav-link__label">Spatial assessment of ecosystem services (phase 2)</span></a></li><li class="nav-item "><a href="/publications/brochures" target="_top" class="nav-link"><span class="nav-link__label">Brochures</span></a></li></ul></div></li><li class="nav-item -has-sub"><a href="/about-peer" target="_top" class="nav-link"><span class="nav-link__label">About PEER</span><span aria-hidden="true" class="nav-link__suffix"><span aria-hidden="true" class="icon fa-regular fa-chevron-down " data-icon ></span></span></a><div aria-label="Submenu for About PEER" class="nav-container -sub"><ul class="nav-list "><li class="nav-item "><a href="/about-peer/peer-for-policymakers" target="_top" class="nav-link"><span class="nav-link__label">PEER for Policymakers</span></a></li><li class="nav-item "><a href="/about-peer/peer-for-researchers" target="_top" class="nav-link"><span class="nav-link__label">PEER for Researchers</span></a></li><li class="nav-item "><a href="/about-peer/strategic-research-areas" target="_top" class="nav-link"><span class="nav-link__label">Strategic Research Areas</span></a></li><li class="nav-item "><a href="/about-peer/governance" target="_top" class="nav-link"><span class="nav-link__label">Governance</span></a></li><li class="nav-item -has-sub"><a href="/about-peer/centres" target="_top" class="nav-link"><span class="nav-link__label">Centres</span><span aria-hidden="true" class="nav-link__suffix"><span aria-hidden="true" class="icon fa-regular fa-chevron-down " data-icon ></span></span></a><div aria-label="Submenu for Centres" class="nav-container -sub"><ul class="nav-list "><li class="nav-item "><a href="/about-peer/centres/ukceh-uk-centre-for-ecology-hydrology" target="_top" class="nav-link"><span class="nav-link__label">UKCEH - UK Centre for Ecology &amp; Hydrology</span></a></li><li class="nav-item "><a href="/about-peer/centres/ciens-oslo-centre-for-interdisciplinary-environmental-a" target="_top" class="nav-link"><span class="nav-link__label">CIENS - Oslo Centre for Interdisciplinary Environmental and Social Research (Norway)</span></a></li><li class="nav-item "><a href="/about-peer/centres/dce-danish-centre-for-environment-and-energy" target="_top" class="nav-link"><span class="nav-link__label">DCE - Danish Centre for Environment and Energy, Aarhus University, Denmark</span></a></li><li class="nav-item "><a href="/about-peer/centres/jrc-european-commission-joint-research-centre" target="_top" class="nav-link"><span class="nav-link__label">JRC - European Commission - Joint Research Centre</span></a></li><li class="nav-item "><a href="/about-peer/centres/syke-finnish-environment-institute" target="_top" class="nav-link"><span class="nav-link__label">Syke - Finnish Environment Institute (Finland)</span></a></li><li class="nav-item "><a href="/about-peer/centres/ufz-helmholtz-centre-for-environmental-research" target="_top" class="nav-link"><span class="nav-link__label">UFZ - Helmholtz Centre for Environmental Research (Germany)</span></a></li><li class="nav-item "><a href="/about-peer/centres/inrae-national-research-institute-for-agriculture-food-and-the-environment" target="_top" class="nav-link"><span class="nav-link__label">INRAE - National Research Institute for Agriculture, Food and the Environment (France)</span></a></li><li class="nav-item "><a href="/about-peer/centres/wenr-wageningen-environmental-research" target="_top" class="nav-link"><span class="nav-link__label">WENR - Wageningen Environmental Research</span></a></li></ul></div></li><li class="nav-item "><a href="/about-peer/contact" target="_top" class="nav-link"><span class="nav-link__label">Contact</span></a></li></ul></div></li><li class="nav-item "><a href="/news" target="_top" class="nav-link"><span class="nav-link__label">News</span></a></li><li class="nav-item "><a href="/events" target="_top" class="nav-link"><span class="nav-link__label">Events</span></a></li></ul></nav><div class="controls"><button class="icon-button rs_preserve rs_skip" aria-controls="page-search" aria-label="Show search" type="button"><span aria-hidden="true" class="icon-button__icon"><span aria-hidden="true" class="icon fas fa-search" data-icon></span></span></button><button aria-controls="page-menu-drawer" aria-label="Show navigation" class="icon-button" type="button"><span aria-hidden="true" class="icon-button__icon"><span aria-hidden="true" class="icon fas fa-bars" data-icon data-off></span><span aria-hidden="true" class="icon fas fa-times" data-icon data-on></span></span></button></div></header><!--TYPO3SEARCH_begin--><!--TYPO3SEARCH_end--><div aria-hidden="true" aria-label="Search" class="page-search" hidden id="page-search" role="search"><!-- FIXME : FLUID EROOR - ViewHelerp `f:form` without Extbase --><div class="search-box rs_preserve rs_skip"><!----><form class="form" action="/suche?tx_indexedsearch_pi2%5Baction%5D=search&amp;tx_indexedsearch_pi2%5Bcontroller%5D=Search&amp;cHash=1f821d106490b6771a24e2e45d209f6f" method="post"><div><input type="hidden" name="tx_indexedsearch_pi2[__referrer][@extension]" value="IndexedSearch"><input type="hidden" name="tx_indexedsearch_pi2[__referrer][@controller]" value="Search"><input type="hidden" name="tx_indexedsearch_pi2[__referrer][@action]" value="form"><input type="hidden" name="tx_indexedsearch_pi2[__referrer][arguments]" value="YTowOnt9e551c55ba47e0003b056e287440cb230481a178b"><input type="hidden" name="tx_indexedsearch_pi2[__referrer][@request]" value="{&quot;@extension&quot;:&quot;IndexedSearch&quot;,&quot;@controller&quot;:&quot;Search&quot;,&quot;@action&quot;:&quot;form&quot;}21b5dffac2de57cc7ee5e06c70bab446a46966fc"><input type="hidden" name="tx_indexedsearch_pi2[__trustedProperties]" value="{&quot;search&quot;:{&quot;_sections&quot;:1,&quot;_freeIndexUid&quot;:1,&quot;pointer&quot;:1,&quot;ext&quot;:1,&quot;searchType&quot;:1,&quot;defaultOperand&quot;:1,&quot;mediaType&quot;:1,&quot;sortOrder&quot;:1,&quot;group&quot;:1,&quot;languageUid&quot;:1,&quot;desc&quot;:1,&quot;numberOfResults&quot;:1,&quot;extendedSearch&quot;:1,&quot;sword&quot;:1}}996df33c70a55cb693de47832d51a0f252fba395"></div><div class="tx-indexedsearch-hidden-fields"><input type="hidden" name="tx_indexedsearch_pi2[search][_sections]" value="0"><input type="hidden" name="tx_indexedsearch_pi2[search][_freeIndexUid]" value="_"><input type="hidden" name="tx_indexedsearch_pi2[search][pointer]" value="0"><input type="hidden" name="tx_indexedsearch_pi2[search][ext]" value=""><input type="hidden" name="tx_indexedsearch_pi2[search][searchType]" value="1"><input type="hidden" name="tx_indexedsearch_pi2[search][defaultOperand]" value="0"><input type="hidden" name="tx_indexedsearch_pi2[search][mediaType]" value="-1"><input type="hidden" name="tx_indexedsearch_pi2[search][sortOrder]" value="rank_weight"><input type="hidden" name="tx_indexedsearch_pi2[search][group]" value=""><input type="hidden" name="tx_indexedsearch_pi2[search][languageUid]" value="0"><input type="hidden" name="tx_indexedsearch_pi2[search][desc]" value=""><input type="hidden" name="tx_indexedsearch_pi2[search][numberOfResults]" value="10"><input type="hidden" name="tx_indexedsearch_pi2[search][extendedSearch]" value=""></div><fieldset><div class="tx-indexedsearch-form form-group"><div class="input-group"><input class="tx-indexedsearch-searchbox-sword form-control search-box__input" id="tx-indexedsearch-searchbox-sword" type="text" name="tx_indexedsearch_pi2[search][sword]" value=""><button name="search[submitButton]" id="tx-indexedsearch-searchbox-button-submit" class="tx-indexedsearch-searchbox-button button -secondary -circle"><span class="button__label"><i class="fas fa-magnifying-glass"></i></span></button></div></div></fieldset></form></div></div><!--TYPO3SEARCH_begin--><!--TYPO3SEARCH_begin--><main class="page-main" id="page-main" tabindex="-1"><section class="section section-hero" id="section-hero"><div class="section-body"><div class="section-body__inner"><div class="ce ce-deck" data-ce="deck" id="c462"><div class="deck " data-c="deck" data-columns="3" ><div class="deck__container"><div class="ce ce-text-block" data-c="text-block" data-ce="text-block" id="c463"><div class="text-block "><div class="text-block__inner"><div class="text-block-text"><h2 class="text-align-center"><strong>Researchers</strong></h2><p class="text-align-center">PEER members are dedicated exclusively to environmental research focusing on the interaction between man and the environment and sustainable development.</p><p class="text-align-center"><a href="/research" target="_top" class="link-page">more</a><br>&nbsp;</p></div></div></div></div><div class="ce ce-text-block" data-c="text-block" data-ce="text-block" id="c464"><div class="text-block "><div class="text-block__inner"><div class="text-block-text"><h2 class="text-align-center"><strong>Policymakers</strong></h2><p class="text-align-center">PEER combines forces to follow a joint strategy in environmental sciences, to enhance ecological research and to strengthen the knowledge base for the sustainable development. &nbsp;</p><p class="text-align-center"><a href="/about-peer/peer-for-policymakers" target="_top" class="link-page">more</a></p></div></div></div></div><div class="ce ce-text-block" data-c="text-block" data-ce="text-block" id="c465"><div class="text-block "><div class="text-block__inner"><div class="text-block-text"><h2 class="text-align-center"><strong>Strategic Areas</strong></h2><p class="text-align-center">PEER has defined three Strategic Areas for research in our network: Biodiversity, Climate Action and Adaptation as well as Urban Environmental Sustainability.</p><p class="text-align-center"><a href="/about-peer/strategic-research-areas" target="_top" class="link-page">more</a></p></div></div></div></div></div></div></div></div></div></section><section class="section " data-ce="section" id="c493"><div class="section-body"><div class="section-body__inner"><div class="ce ce-text-block" data-c="text-block" data-ce="text-block" id="c494"><div class="text-block -media-right"><div class="text-block__inner"><div class="text-block-text"><h2><span>WELCOME TO PEER</span></h2><p><span class="text-size-l">Welcome message from Thierry Caquet, Environment Scientific Director at INRAE.</span></p></div><div class="text-block-media"><div class="player player-video rs_preserve " data-c="video" data-player="video" data-player-type="html5" id="player-1771"><div class="player-media"><div class="player-media__player"><video allow="autoplay" data-player-media class="player-media__video" crossorigin muted="muted" playsinline preload="none" tabindex="-1" title="Video" controls ><source src="files/user_upload/about/video/Thierry_Caquet_Film_PEER%20FullHDcut.mp4" size="720" type="video/mp4"/> Your browser doesn&#039;t support the video element! </video></div><div class="player-media__poster"><img alt="Video Poster" data-sizes="(max-width:786px) 100vw, 50vw" data-src="fileadmin/_processed_/files/1/0/csm_PEER_logo_c2e0f8fbf6.png" data-srcset="fileadmin/_processed_/files/1/0/csm_PEER_logo_7eb43bcace.png 576w , fileadmin/_processed_/files/1/0/csm_PEER_logo_9b4e126e26.png 768w , fileadmin/_processed_/files/1/0/csm_PEER_logo_5a5ae8778b.png 992w , fileadmin/_processed_/files/1/0/csm_PEER_logo_6821560547.png 1200w , fileadmin/_processed_/files/1/0/csm_PEER_logo_973f4d84f3.png 1400w" height="359" loading="lazy" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" width="640" /><button class="icon-button player-media__play" data-player-control="play" type="button" title="Play video"><span class="icon-button__icon"><span aria-hidden="true" class="icon fas fa-play" data-icon></span></span></button></div></div><script type="application/ld+json"> {"@context" : "https://schema.org/", "@type" : "VideoObject", "description" : "...", "name" : "Video", "uploadDate" : "2025-01-22T06:06", "embedUrl" : "files/user_upload/about/video/Thierry_Caquet_Film_PEER%20FullHDcut.mp4" ,"thumbnailUrl" : [""]} </script></div></div></div></div></div></div></div></section><section class="section -colored -primary-light" data-ce="section" id="c457"><div class="section-body"><div class="section-body__inner"><!--TYPO3SEARCH_begin--><div class="ce welcomemap" data-c="welcomemap" data-ce="welcomemap" id="c458"><div class="text-block -media-left"><div class="text-block__inner"><div class="text-block-text"><p class=""><strong>OUR VISION</strong></p><h2 class=""><span class="text-color-primary">To be a world leader in integrating knowledge and expertise for sustainable development</span></h2><a href="/about-peer" target="_top" title="Learn more about Peer">Learn more about Peer</a></div><div class="text-block-media"><div class="map-frame" id="c458" data-ce="map"><div class="map-frame__iframe"><iframe data-map="https://snazzymaps.com/embed/221562"></iframe><div class="privacy-info"><div class="privacy-info__container"><p class="privacy-info__text">This map (provider Google) could transfer data to third parties therefore requires your consent to our <a href="/datenschutz">privacy policy</a>.</p><div class="privacy-info__controls rs_preserve rs_skip"><button aria-label="Open cookie preferences" data-privacy-settings class="icon-button privacy-info__button" type="button"><span aria-hidden="true" class="icon-button__icon"><span aria-hidden="true" class="icon far fa-gear" data-icon></span></span></button></div></div></div></div></div></div></div></div></div><!--TYPO3SEARCH_end--></div></div></section><section class="section " data-ce="section" id="c466"><div class="section-body"><div class="section-body__inner"><div id="c467" data-c="" class=""><div class="header " data-ce="header"><h2 class="header__title "><span>News</span></h2></div><!--TYPO3SEARCH_end--><div class="news-group" id="c467"><div class="deck " data-c="deck" data-columns="2" ><div class="deck__container"><article class="card "><div class="card__media"><figure class="figure rs_preserve " data-c="image" data-type="image"><picture class="picture rs_skip" ><source media="(min-width: 1400px)" data-srcset="fileadmin/_processed_/files/7/9/csm_pic_20250310110253_264a061d82_6c0af45347.jpg"/><source media="(min-width: 1200px)" data-srcset="fileadmin/_processed_/files/7/9/csm_pic_20250310110253_264a061d82_27f50bfb8d.jpg"/><source media="(min-width: 992px)" data-srcset="fileadmin/_processed_/files/7/9/csm_pic_20250310110253_264a061d82_0204d40564.jpg"/><source media="(min-width: 768px)" data-srcset="fileadmin/_processed_/files/7/9/csm_pic_20250310110253_264a061d82_f339a920bc.jpg"/><source media="(min-width: 576px)" data-srcset="fileadmin/_processed_/files/7/9/csm_pic_20250310110253_264a061d82_a155809fd7.jpg"/><img alt="The Map Butterfly (Araschnia levana), a butterfly species that has become rarer since 2005. Photo: Elisabeth Rieger" class="lazyload" loading="lazy" data-src="fileadmin/_processed_/files/7/9/csm_pic_20250310110253_264a061d82_144c085639.jpg" height="384" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" title="The Map Butterfly (Araschnia levana), a butterfly species that has become rarer since 2005. " width="576"/><script type="application/ld+json">{"@context": "https://schema.org", "@type": "ImageObject", "author": "", "contentUrl": "https://www.peer.eu/fileadmin/_processed_/files/7/9/csm_pic_20250310110253_264a061d82_79c0d4f5b5.jpg", "description": "The Map Butterfly (Araschnia levana), a butterfly species that has become rarer since 2005. Photo: Elisabeth Rieger", "name": "The Map Butterfly (Araschnia levana), a butterfly species that has become rarer since 2005. "}</script></picture></figure></div><header class="card__header"><span class="badge -default"><i class="far fa-calendar"></i><span class="date">21.03.2025 </span></span></header><div class="card__body"><div aria-level="3" class="card-title" role="heading"><h3><a class="title" target="_top" href="/news/detail/an-insect-census-20-years-of-butterfly-monitoring-in-germany"><span>An insect census: 20 years of butterfly monitoring in Germany</span></a></h3></div><p>For 20 years, dedicated volunteers have been active throughout Germany to record the occurrence of these popular…</p></div><footer class="card__footer"><a aria-label="Detail: An insect census: 20 years of butterfly monitoring in Germany" class="button -gradient" target="_top" href="/news/detail/an-insect-census-20-years-of-butterfly-monitoring-in-germany"><span class="button__prefix"><i class="fal fa-newspaper"></i></span><span class="button__label">read more</span></a></footer><script type="application/ld+json"> {"@context" : "https://schema.org", "mainEntityOfPage" : {"@type" : "WebPage", "@id" : "https://google.com/article"}, "@type" : "NewsArticle", "headline" : "An insect census: 20 years of butterfly monitoring in Germany" ,"copyrightHolder" : "Peer" ,"copyrightYear" : "2025" ,"dateModified": "2025-03-21T13:06:53" ,"datePublished": "2025-03-21T12:56:40" ,"description" : "For 20 years, dedicated volunteers have been active throughout Germany to record the occurrence of these popular insects. This "Butterfly Monitoring Germany" (TMD) project was launched in 2005 by scientists from the Helmholtz Centre for Environmental Research (UFZ) and members of the Society for Butterfly Conservation (GfS). This project has since provided much valuable information, not only about the butterfly world, but also about how land use and climate change are changing the state of nature as a whole. " ,"image": ["https://www.peer.eu/fileadmin/_processed_/files/7/9/csm_pic_20250310110253_264a061d82_79c0d4f5b5.jpg"] ,"publisher" : {"@type" : "Organization", "name" : "Peer", "email" : "", "logo" : {"@type" : "ImageObject", "url" : "https://www.peer.eu/dist/default/media/logo.svg"}}} </script></article><article class="card "><div class="card__media"><figure class="figure rs_preserve " data-c="image" data-type="image"><picture class="picture rs_skip" ><source media="(min-width: 1400px)" data-srcset="fileadmin/_processed_/files/e/1/csm_6ef28514-a349-4e2a-b3b2-1d46fa1406bf_shutterstock_1470392375_750x400_e64ea9ce5f.jpg"/><source media="(min-width: 1200px)" data-srcset="fileadmin/_processed_/files/e/1/csm_6ef28514-a349-4e2a-b3b2-1d46fa1406bf_shutterstock_1470392375_750x400_23d4f543c1.jpg"/><source media="(min-width: 992px)" data-srcset="fileadmin/_processed_/files/e/1/csm_6ef28514-a349-4e2a-b3b2-1d46fa1406bf_shutterstock_1470392375_750x400_290b6b32d8.jpg"/><source media="(min-width: 768px)" data-srcset="fileadmin/_processed_/files/e/1/csm_6ef28514-a349-4e2a-b3b2-1d46fa1406bf_shutterstock_1470392375_750x400_b88b1bdb72.jpg"/><source media="(min-width: 576px)" data-srcset="fileadmin/_processed_/files/e/1/csm_6ef28514-a349-4e2a-b3b2-1d46fa1406bf_shutterstock_1470392375_750x400_b1e1718c05.jpg"/><img alt="" class="lazyload" loading="lazy" data-src="fileadmin/_processed_/files/e/1/csm_6ef28514-a349-4e2a-b3b2-1d46fa1406bf_shutterstock_1470392375_750x400_c7d73c087e.jpg" height="308" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" title="" width="576"/><script type="application/ld+json">{"@context": "https://schema.org", "@type": "ImageObject", "author": "", "contentUrl": "https://www.peer.eu/fileadmin/_processed_/files/e/1/csm_6ef28514-a349-4e2a-b3b2-1d46fa1406bf_shutterstock_1470392375_750x400_f13895c802.jpg", "description": "", "name": ""}</script></picture></figure></div><header class="card__header"><span class="badge -default"><i class="far fa-calendar"></i><span class="date">20.03.2025 </span></span></header><div class="card__body"><div aria-level="3" class="card-title" role="heading"><h3><a class="title" target="_top" href="/news/detail/what-stops-the-growth-of-siberian-wildfires"><span>What stops the growth of Siberian wildfires?</span></a></h3></div><p>In recent years, millions of hectares of forest have burned in northern Siberia. These wildfires led to record-breaking…</p></div><footer class="card__footer"><a aria-label="Detail: What stops the growth of Siberian wildfires?" class="button -gradient" target="_top" href="/news/detail/what-stops-the-growth-of-siberian-wildfires"><span class="button__prefix"><i class="fal fa-newspaper"></i></span><span class="button__label">read more</span></a></footer><script type="application/ld+json"> {"@context" : "https://schema.org", "mainEntityOfPage" : {"@type" : "WebPage", "@id" : "https://google.com/article"}, "@type" : "NewsArticle", "headline" : "What stops the growth of Siberian wildfires?" ,"copyrightHolder" : "Peer" ,"copyrightYear" : "2025" ,"dateModified": "2025-03-31T11:10:07" ,"datePublished": "2025-03-20T10:55:00" ,"description" : "In recent years, millions of hectares of forest have burned in northern Siberia. These wildfires led to record-breaking carbon emissions and severe air pollution. A new study has identified the key factors that have limited the growth of these fires. The researchers discovered that both weather conditions and landscape features play crucial roles in stopping fire spread in this area. A shift from hot and dry to cold and wet weather is the main limiting factor for fire propagation. However, with climate change, hot and dry days are expected to become more frequent, which might result in the growth of even larger fires in the future." ,"image": ["https://www.peer.eu/fileadmin/_processed_/files/e/1/csm_6ef28514-a349-4e2a-b3b2-1d46fa1406bf_shutterstock_1470392375_750x400_f13895c802.jpg"] ,"publisher" : {"@type" : "Organization", "name" : "Peer", "email" : "", "logo" : {"@type" : "ImageObject", "url" : "https://www.peer.eu/dist/default/media/logo.svg"}}} </script></article><article class="card "><div class="card__media"><figure class="figure rs_preserve " data-c="image" data-type="image"><picture class="picture rs_skip" ><source media="(min-width: 1400px)" data-srcset="fileadmin/_processed_/files/9/8/csm_20250318-SOC_698c03802f.png"/><source media="(min-width: 1200px)" data-srcset="fileadmin/_processed_/files/9/8/csm_20250318-SOC_505a72764f.png"/><source media="(min-width: 992px)" data-srcset="fileadmin/_processed_/files/9/8/csm_20250318-SOC_fbdf00d8d7.png"/><source media="(min-width: 768px)" data-srcset="fileadmin/_processed_/files/9/8/csm_20250318-SOC_0969cbb250.png"/><source media="(min-width: 576px)" data-srcset="fileadmin/_processed_/files/9/8/csm_20250318-SOC_11fdf9d92c.png"/><img alt="" class="lazyload" loading="lazy" data-src="fileadmin/_processed_/files/9/8/csm_20250318-SOC_3804dae2c3.png" height="334" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" title="" width="576"/><script type="application/ld+json">{"@context": "https://schema.org", "@type": "ImageObject", "author": "", "contentUrl": "https://www.peer.eu/fileadmin/_processed_/files/9/8/csm_20250318-SOC_05cad2ed28.png", "description": "Soils are a large reservoir of carbon. &copy; indyntk - stock.adobe.com", "name": ""}</script></picture></figure></div><header class="card__header"><span class="badge -default"><i class="far fa-calendar"></i><span class="date">18.03.2025 </span></span></header><div class="card__body"><div aria-level="3" class="card-title" role="heading"><h3><a class="title" target="_top" href="/news/detail/soil-organic-carbon-is-at-risk-in-a-large-part-of-european-agricultural-land"><span>Soil organic carbon is at risk in a large part of European agricultural land</span></a></h3></div><p>Further loss of soil carbon would negatively impact EU climate change mitigation efforts and food security.</p></div><footer class="card__footer"><a aria-label="Detail: Soil organic carbon is at risk in a large part of European agricultural land" class="button -gradient" target="_top" href="/news/detail/soil-organic-carbon-is-at-risk-in-a-large-part-of-european-agricultural-land"><span class="button__prefix"><i class="fal fa-newspaper"></i></span><span class="button__label">read more</span></a></footer><script type="application/ld+json"> {"@context" : "https://schema.org", "mainEntityOfPage" : {"@type" : "WebPage", "@id" : "https://google.com/article"}, "@type" : "NewsArticle", "headline" : "Soil organic carbon is at risk in a large part of European agricultural land" ,"copyrightHolder" : "Peer" ,"copyrightYear" : "2025" ,"dateModified": "2025-03-18T17:09:40" ,"datePublished": "2025-03-18T17:07:38" ,"description" : "Further loss of soil carbon would negatively impact EU climate change mitigation efforts and food security." ,"image": ["https://www.peer.eu/fileadmin/_processed_/files/9/8/csm_20250318-SOC_05cad2ed28.png"] ,"publisher" : {"@type" : "Organization", "name" : "Peer", "email" : "", "logo" : {"@type" : "ImageObject", "url" : "https://www.peer.eu/dist/default/media/logo.svg"}}} </script></article><article class="card "><div class="card__media"><figure class="figure rs_preserve " data-c="image" data-type="image"><picture class="picture rs_skip" ><source media="(min-width: 1400px)" data-srcset="fileadmin/_processed_/files/4/b/csm_20250312-MarineLitter_5e2edd9004.png"/><source media="(min-width: 1200px)" data-srcset="fileadmin/_processed_/files/4/b/csm_20250312-MarineLitter_91ec9192eb.png"/><source media="(min-width: 992px)" data-srcset="fileadmin/_processed_/files/4/b/csm_20250312-MarineLitter_bcf7296de3.png"/><source media="(min-width: 768px)" data-srcset="fileadmin/_processed_/files/4/b/csm_20250312-MarineLitter_9392f45c02.png"/><source media="(min-width: 576px)" data-srcset="fileadmin/_processed_/files/4/b/csm_20250312-MarineLitter_5a0d870797.png"/><img alt="" class="lazyload" loading="lazy" data-src="fileadmin/_processed_/files/4/b/csm_20250312-MarineLitter_b56fa65732.png" height="363" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" title="" width="576"/><script type="application/ld+json">{"@context": "https://schema.org", "@type": "ImageObject", "author": "", "contentUrl": "https://www.peer.eu/fileadmin/_processed_/files/4/b/csm_20250312-MarineLitter_92280237a9.png", "description": "The Mediterranean Sea, as a semi-enclosed body of water with limited exchange with the open ocean, is particularly vulnerable to pollution &copy; Caladan Oceanic 2025", "name": ""}</script></picture></figure></div><header class="card__header"><span class="badge -default"><i class="far fa-calendar"></i><span class="date">12.03.2025 </span></span></header><div class="card__body"><div aria-level="3" class="card-title" role="heading"><h3><a class="title" target="_top" href="/news/detail/plastic-bags-cups-and-other-litter-found-at-deepest-point-of-mediterranean-sea"><span>Plastic bags, cups, and other litter found at deepest point of Mediterranean Sea</span></a></h3></div><p>The seabed marine litter pollution in the deep Mediterranean is among the worst in the world. </p></div><footer class="card__footer"><a aria-label="Detail: Plastic bags, cups, and other litter found at deepest point of Mediterranean Sea" class="button -gradient" target="_top" href="/news/detail/plastic-bags-cups-and-other-litter-found-at-deepest-point-of-mediterranean-sea"><span class="button__prefix"><i class="fal fa-newspaper"></i></span><span class="button__label">read more</span></a></footer><script type="application/ld+json"> {"@context" : "https://schema.org", "mainEntityOfPage" : {"@type" : "WebPage", "@id" : "https://google.com/article"}, "@type" : "NewsArticle", "headline" : "Plastic bags, cups, and other litter found at deepest point of Mediterranean Sea" ,"copyrightHolder" : "Peer" ,"copyrightYear" : "2025" ,"dateModified": "2025-03-12T15:21:25" ,"datePublished": "2025-03-12T15:17:44" ,"description" : "The seabed marine litter pollution in the deep Mediterranean is among the worst in the world. " ,"image": ["https://www.peer.eu/fileadmin/_processed_/files/4/b/csm_20250312-MarineLitter_92280237a9.png"] ,"publisher" : {"@type" : "Organization", "name" : "Peer", "email" : "", "logo" : {"@type" : "ImageObject", "url" : "https://www.peer.eu/dist/default/media/logo.svg"}}} </script></article><article class="card "><div class="card__media"><figure class="figure rs_preserve " data-c="image" data-type="image"><picture class="picture rs_skip" ><source media="(min-width: 1400px)" data-srcset="fileadmin/_processed_/files/4/9/csm_20250303-WaterWatchList_adca49197f.png"/><source media="(min-width: 1200px)" data-srcset="fileadmin/_processed_/files/4/9/csm_20250303-WaterWatchList_363df1f874.png"/><source media="(min-width: 992px)" data-srcset="fileadmin/_processed_/files/4/9/csm_20250303-WaterWatchList_b290b19583.png"/><source media="(min-width: 768px)" data-srcset="fileadmin/_processed_/files/4/9/csm_20250303-WaterWatchList_d533b8045b.png"/><source media="(min-width: 576px)" data-srcset="fileadmin/_processed_/files/4/9/csm_20250303-WaterWatchList_68b659987e.png"/><img alt="" class="lazyload" loading="lazy" data-src="fileadmin/_processed_/files/4/9/csm_20250303-WaterWatchList_4eaacfb076.png" height="384" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" title="" width="576"/><script type="application/ld+json">{"@context": "https://schema.org", "@type": "ImageObject", "author": "", "contentUrl": "https://www.peer.eu/fileadmin/_processed_/files/4/9/csm_20250303-WaterWatchList_6e2f595ace.png", "description": "&copy; Edwin Tan, Getty Images", "name": ""}</script></picture></figure></div><header class="card__header"><span class="badge -default"><i class="far fa-calendar"></i><span class="date">03.03.2025 </span></span></header><div class="card__body"><div aria-level="3" class="card-title" role="heading"><h3><a class="title" target="_top" href="/news/detail/new-substances-added-to-the-eus-surface-water-watchlist"><span>New substances added to the EU's surface water watchlist</span></a></h3></div><p>It contains twelve pollutants, the impacts of which have been identified as having the possibility for widespread…</p></div><footer class="card__footer"><a aria-label="Detail: New substances added to the EU&amp;#039;s surface water watchlist" class="button -gradient" target="_top" href="/news/detail/new-substances-added-to-the-eus-surface-water-watchlist"><span class="button__prefix"><i class="fal fa-newspaper"></i></span><span class="button__label">read more</span></a></footer><script type="application/ld+json"> {"@context" : "https://schema.org", "mainEntityOfPage" : {"@type" : "WebPage", "@id" : "https://google.com/article"}, "@type" : "NewsArticle", "headline" : "New substances added to the EU&#039;s surface water watchlist" ,"copyrightHolder" : "Peer" ,"copyrightYear" : "2025" ,"dateModified": "2025-03-13T17:05:46" ,"datePublished": "2025-03-03T17:02:00" ,"description" : "It contains twelve pollutants, the impacts of which have been identified as having the possibility for widespread concern for the environment and human health." ,"image": ["https://www.peer.eu/fileadmin/_processed_/files/4/9/csm_20250303-WaterWatchList_6e2f595ace.png"] ,"publisher" : {"@type" : "Organization", "name" : "Peer", "email" : "", "logo" : {"@type" : "ImageObject", "url" : "https://www.peer.eu/dist/default/media/logo.svg"}}} </script></article><article class="card "><div class="card__media"><figure class="figure rs_preserve " data-c="image" data-type="image"><picture class="picture rs_skip" ><source media="(min-width: 1400px)" data-srcset="fileadmin/_processed_/files/2/6/csm_20250303-ZPMO_f38bb086ec.png"/><source media="(min-width: 1200px)" data-srcset="fileadmin/_processed_/files/2/6/csm_20250303-ZPMO_fbc65c8ad8.png"/><source media="(min-width: 992px)" data-srcset="fileadmin/_processed_/files/2/6/csm_20250303-ZPMO_58531e1298.png"/><source media="(min-width: 768px)" data-srcset="fileadmin/_processed_/files/2/6/csm_20250303-ZPMO_e41a8b6bc8.png"/><source media="(min-width: 576px)" data-srcset="fileadmin/_processed_/files/2/6/csm_20250303-ZPMO_2c2819f37e.png"/><img alt="" class="lazyload" loading="lazy" data-src="fileadmin/_processed_/files/2/6/csm_20250303-ZPMO_02b49cd45d.png" height="263" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" title="" width="471"/><script type="application/ld+json">{"@context": "https://schema.org", "@type": "ImageObject", "author": "", "contentUrl": "https://www.peer.eu/fileadmin/_processed_/files/2/6/csm_20250303-ZPMO_e7b3dde670.png", "description": "&copy; K&ugrave;mo - stock.adobe.com 2025", "name": ""}</script></picture></figure></div><header class="card__header"><span class="badge -default"><i class="far fa-calendar"></i><span class="date">03.03.2025 </span></span></header><div class="card__body"><div aria-level="3" class="card-title" role="heading"><h3><a class="title" target="_top" href="/news/detail/how-is-science-shaping-eu-action-to-reduce-pollution"><span>How is science shaping EU action to reduce pollution?</span></a></h3></div><p>With the right measures in place, the concentration of macroplastics on EU coasts could be reduced by 42% in the next…</p></div><footer class="card__footer"><a aria-label="Detail: How is science shaping EU action to reduce pollution?" class="button -gradient" target="_top" href="/news/detail/how-is-science-shaping-eu-action-to-reduce-pollution"><span class="button__prefix"><i class="fal fa-newspaper"></i></span><span class="button__label">read more</span></a></footer><script type="application/ld+json"> {"@context" : "https://schema.org", "mainEntityOfPage" : {"@type" : "WebPage", "@id" : "https://google.com/article"}, "@type" : "NewsArticle", "headline" : "How is science shaping EU action to reduce pollution?" ,"copyrightHolder" : "Peer" ,"copyrightYear" : "2025" ,"dateModified": "2025-03-03T10:48:39" ,"datePublished": "2025-03-03T10:45:21" ,"description" : "With the right measures in place, the concentration of macroplastics on EU coasts could be reduced by 42% in the next five years. European soils contain an alarming amount of harmful metal residues, but dedicated policies are expected to reduce them. " ,"image": ["https://www.peer.eu/fileadmin/_processed_/files/2/6/csm_20250303-ZPMO_e7b3dde670.png"] ,"publisher" : {"@type" : "Organization", "name" : "Peer", "email" : "", "logo" : {"@type" : "ImageObject", "url" : "https://www.peer.eu/dist/default/media/logo.svg"}}} </script></article><article class="card "><div class="card__media"><figure class="figure rs_preserve " data-c="image" data-type="image"><picture class="picture rs_skip" ><source media="(min-width: 1400px)" data-srcset="fileadmin/_processed_/files/2/4/csm_20250303-EarthSysTippingPoints_e53b570990.png"/><source media="(min-width: 1200px)" data-srcset="fileadmin/_processed_/files/2/4/csm_20250303-EarthSysTippingPoints_5b4176cfc6.png"/><source media="(min-width: 992px)" data-srcset="fileadmin/_processed_/files/2/4/csm_20250303-EarthSysTippingPoints_953894fe83.png"/><source media="(min-width: 768px)" data-srcset="fileadmin/_processed_/files/2/4/csm_20250303-EarthSysTippingPoints_e41a1a045a.png"/><source media="(min-width: 576px)" data-srcset="fileadmin/_processed_/files/2/4/csm_20250303-EarthSysTippingPoints_2897d72089.png"/><img alt="" class="lazyload" loading="lazy" data-src="fileadmin/_processed_/files/2/4/csm_20250303-EarthSysTippingPoints_e4fc4f218e.png" height="313" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" title="" width="472"/><script type="application/ld+json">{"@context": "https://schema.org", "@type": "ImageObject", "author": "", "contentUrl": "https://www.peer.eu/fileadmin/_processed_/files/2/4/csm_20250303-EarthSysTippingPoints_36f0349843.png", "description": "Warming in the Arctic is faster than elsewhere, accelerating ice melt from the Greenland ice sheet and the melting of Arctic sea ice. &copy; hperry - stock.adobe.com", "name": ""}</script></picture></figure></div><header class="card__header"><span class="badge -default"><i class="far fa-calendar"></i><span class="date">03.03.2025 </span></span></header><div class="card__body"><div aria-level="3" class="card-title" role="heading"><h3><a class="title" target="_top" href="/news/detail/earth-system-tipping-points-are-a-threat-to-europe-how-to-get-prepared"><span>Earth system tipping points are a threat to Europe – how to get prepared?</span></a></h3></div><p>Global warming is bringing the world closer to crossing tipping points, setting a path to events that could permanently…</p></div><footer class="card__footer"><a aria-label="Detail: Earth system tipping points are a threat to Europe – how to get prepared?" class="button -gradient" target="_top" href="/news/detail/earth-system-tipping-points-are-a-threat-to-europe-how-to-get-prepared"><span class="button__prefix"><i class="fal fa-newspaper"></i></span><span class="button__label">read more</span></a></footer><script type="application/ld+json"> {"@context" : "https://schema.org", "mainEntityOfPage" : {"@type" : "WebPage", "@id" : "https://google.com/article"}, "@type" : "NewsArticle", "headline" : "Earth system tipping points are a threat to Europe &ndash; how to get prepared?" ,"copyrightHolder" : "Peer" ,"copyrightYear" : "2025" ,"dateModified": "2025-03-03T10:41:21" ,"datePublished": "2025-03-03T10:34:22" ,"description" : "Global warming is bringing the world closer to crossing tipping points, setting a path to events that could permanently alter how the planet works, within years, decades or centuries." ,"image": ["https://www.peer.eu/fileadmin/_processed_/files/2/4/csm_20250303-EarthSysTippingPoints_36f0349843.png"] ,"publisher" : {"@type" : "Organization", "name" : "Peer", "email" : "", "logo" : {"@type" : "ImageObject", "url" : "https://www.peer.eu/dist/default/media/logo.svg"}}} </script></article><article class="card "><div class="card__media"><figure class="figure rs_preserve " data-c="image" data-type="image"><picture class="picture rs_skip" ><source media="(min-width: 1400px)" data-srcset="fileadmin/_processed_/files/f/6/csm_espatial_pattern_trees_2dfa9a9e88.jpg"/><source media="(min-width: 1200px)" data-srcset="fileadmin/_processed_/files/f/6/csm_espatial_pattern_trees_7c7578a13f.jpg"/><source media="(min-width: 992px)" data-srcset="fileadmin/_processed_/files/f/6/csm_espatial_pattern_trees_db0192b5de.jpg"/><source media="(min-width: 768px)" data-srcset="fileadmin/_processed_/files/f/6/csm_espatial_pattern_trees_d81872625a.jpg"/><source media="(min-width: 576px)" data-srcset="fileadmin/_processed_/files/f/6/csm_espatial_pattern_trees_29c54617b2.jpg"/><img alt="Figure: spatial distribution of tree species in species-rich tropical forests is highly complex. The figure shows the spatial position, species identity (colour) and size of individual trees in a 500 m × 1000 m study plot on Barro Colorado Island (Panama)" class="lazyload" loading="lazy" data-src="fileadmin/_processed_/files/f/6/csm_espatial_pattern_trees_c07c993d1b.jpg" height="384" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" title="The spatial distribution of tree species in species-rich tropical forests is highly complex. " width="576"/><script type="application/ld+json">{"@context": "https://schema.org", "@type": "ImageObject", "author": "", "contentUrl": "https://www.peer.eu/fileadmin/_processed_/files/f/6/csm_espatial_pattern_trees_185b023aa3.jpg", "description": "The spatial distribution of tree species in species-rich tropical forests is highly complex. The figure shows the spatial position, species identity (colour) and size of individual trees in a 500 m &times; 1000 m study plot on Barro Colorado Island (Panama), which was also analysed in the study. Photo: UFZ", "name": "The spatial distribution of tree species in species-rich tropical forests is highly complex. "}</script></picture></figure></div><header class="card__header"><span class="badge -default"><i class="far fa-calendar"></i><span class="date">27.02.2025 </span></span></header><div class="card__body"><div aria-level="3" class="card-title" role="heading"><h3><a class="title" target="_top" href="/news/detail/new-spatial-mechanism-for-the-coexistence-of-tree-species"><span>New spatial mechanism for the coexistence of tree species</span></a></h3></div><p>The reason why so many tree species can coexist in species-rich forests has long been a subject of debate in ecology.…</p></div><footer class="card__footer"><a aria-label="Detail: New spatial mechanism for the coexistence of tree species" class="button -gradient" target="_top" href="/news/detail/new-spatial-mechanism-for-the-coexistence-of-tree-species"><span class="button__prefix"><i class="fal fa-newspaper"></i></span><span class="button__label">read more</span></a></footer><script type="application/ld+json"> {"@context" : "https://schema.org", "mainEntityOfPage" : {"@type" : "WebPage", "@id" : "https://google.com/article"}, "@type" : "NewsArticle", "headline" : "New spatial mechanism for the coexistence of tree species" ,"copyrightHolder" : "Peer" ,"copyrightYear" : "2025" ,"dateModified": "2025-02-27T16:47:47" ,"datePublished": "2025-02-27T16:39:59" ,"description" : "The reason why so many tree species can coexist in species-rich forests has long been a subject of debate in ecology. This question is key to understanding the mechanisms governing the dynamics and stability of forests. An international team of scientists led by the Helmholtz Centre for Environmental Research (UFZ) has now discovered unexpected patterns in the spatial distribution of tree species, as reported in the scientific journal Nature. Their results suggest that tree species in tropical and temperate forests manifest contrasting coexistence strategies as a result of differences in the patterns of tree clustering and the abundances of tree species." ,"image": ["https://www.peer.eu/fileadmin/_processed_/files/f/6/csm_espatial_pattern_trees_185b023aa3.jpg"] ,"publisher" : {"@type" : "Organization", "name" : "Peer", "email" : "", "logo" : {"@type" : "ImageObject", "url" : "https://www.peer.eu/dist/default/media/logo.svg"}}} </script></article></div></div></div><!--TYPO3SEARCH_begin--></div></div></div></section></main><!--TYPO3SEARCH_end--><!--TYPO3SEARCH_end--><footer class="page-footer" id="page-footer" tabindex="-1"><div class="page-footer__inner"><div class="copyright">Partnership for European Environmental Research © 2025</div><div class="navigations"><nav aria-labelledby="nav-desc-78" class="nav social-nav" data-nav="social" id="social-nav"><span class="nav-desc" id="nav-desc-78">Social navigation</span><ul class="nav-list"><li class="nav-item"><a class="nav-link" href="https://www.linkedin.com/company/86294761/" target="_blank"><span class="nav-link__prefix"><i class="fab fa-linkedin"></i></span><span class="nav-link__label">LinkedIn</span></a></li></ul></nav></div></div></footer><!--TYPO3SEARCH_begin--><button class="icon-button scroll-top rs_preserve rs_skip" aria-label="Top of page" data-scroll-top="global" type="button" ><span aria-hidden="true" class="icon-button__icon"><span aria-hidden="true" class="icon far fa-chevron-up" data-icon></span></span></button></div><!--TYPO3SEARCH_end--><div class="drawer page-menu" data-label="Navigation" id="page-menu-drawer"><div data-drawer-body><nav aria-labelledby="nav-desc-45" class="nav main-nav" data-nav="main" id="main-nav"><span class="nav-desc" id="nav-desc-45">Main navigation</span><ul class="nav-list "><li class="nav-item "><a href="/research" target="_top" class="nav-link"><span class="nav-link__label">Research</span></a></li><li class="nav-item "><a href="/research-facilities" target="_top" class="nav-link"><span class="nav-link__label">Research Facilities</span></a></li><li class="nav-item -has-sub"><a href="/projects" target="_top" class="nav-link"><span class="nav-link__label">Projects</span><span aria-hidden="true" class="nav-link__suffix"><span aria-hidden="true" class="icon fa-regular fa-chevron-down " data-icon ></span></span></a><ul aria-label="Submenu for Projects" class="nav-list -sub"><li class="nav-item "><a href="/projects/bioeconomy-and-green-engineering-peer-ge" target="_top" class="nav-link"><span class="nav-link__label">Bioeconomy and green engineering (PEER GE)</span></a></li><li class="nav-item "><a href="/projects/peer-research-on-sustainable-development-goals" target="_top" class="nav-link"><span class="nav-link__label">PEER Research on Sustainable Development Goals</span></a></li><li class="nav-item -has-sub"><a href="/projects/peer-climate-change-projects" target="_top" class="nav-link"><span class="nav-link__label">PEER Climate Change Projects</span><span aria-hidden="true" class="nav-link__suffix"><span aria-hidden="true" class="icon fa-regular fa-chevron-down " data-icon ></span></span></a><ul aria-label="Submenu for PEER Climate Change Projects" class="nav-list -sub"><li class="nav-item "><a href="/projects/peer-climate-change-projects/climate-change-project-1" target="_top" class="nav-link"><span class="nav-link__label">Climate Change Project 1</span></a></li><li class="nav-item "><a href="/projects/peer-climate-change-projects/climate-change-project-2" target="_top" class="nav-link"><span class="nav-link__label">Climate Change Project 2</span></a></li></ul></li></ul></li><li class="nav-item -has-sub"><a href="/publications" target="_top" class="nav-link"><span class="nav-link__label">Publications</span><span aria-hidden="true" class="nav-link__suffix"><span aria-hidden="true" class="icon fa-regular fa-chevron-down " data-icon ></span></span></a><ul aria-label="Submenu for Publications" class="nav-list -sub"><li class="nav-item "><a href="/publications/position-papers-and-statements" target="_top" class="nav-link"><span class="nav-link__label">Position Papers and Statements</span></a></li><li class="nav-item "><a href="/publications/implementing-the-green-economy" target="_top" class="nav-link"><span class="nav-link__label">Implementing the Green Economy</span></a></li><li class="nav-item "><a href="/publications/spatial-assessment-of-ecosystem-services-phase-1" target="_top" class="nav-link"><span class="nav-link__label">Spatial assessment of ecosystem services (phase 1)</span></a></li><li class="nav-item "><a href="/publications/spatial-assessment-of-ecosystem-services-phase-2" target="_top" class="nav-link"><span class="nav-link__label">Spatial assessment of ecosystem services (phase 2)</span></a></li><li class="nav-item "><a href="/publications/brochures" target="_top" class="nav-link"><span class="nav-link__label">Brochures</span></a></li></ul></li><li class="nav-item -has-sub"><a href="/about-peer" target="_top" class="nav-link"><span class="nav-link__label">About PEER</span><span aria-hidden="true" class="nav-link__suffix"><span aria-hidden="true" class="icon fa-regular fa-chevron-down " data-icon ></span></span></a><ul aria-label="Submenu for About PEER" class="nav-list -sub"><li class="nav-item "><a href="/about-peer/peer-for-policymakers" target="_top" class="nav-link"><span class="nav-link__label">PEER for Policymakers</span></a></li><li class="nav-item "><a href="/about-peer/peer-for-researchers" target="_top" class="nav-link"><span class="nav-link__label">PEER for Researchers</span></a></li><li class="nav-item "><a href="/about-peer/strategic-research-areas" target="_top" class="nav-link"><span class="nav-link__label">Strategic Research Areas</span></a></li><li class="nav-item "><a href="/about-peer/governance" target="_top" class="nav-link"><span class="nav-link__label">Governance</span></a></li><li class="nav-item -has-sub"><a href="/about-peer/centres" target="_top" class="nav-link"><span class="nav-link__label">Centres</span><span aria-hidden="true" class="nav-link__suffix"><span aria-hidden="true" class="icon fa-regular fa-chevron-down " data-icon ></span></span></a><ul aria-label="Submenu for Centres" class="nav-list -sub"><li class="nav-item "><a href="/about-peer/centres/ukceh-uk-centre-for-ecology-hydrology" target="_top" class="nav-link"><span class="nav-link__label">UKCEH - UK Centre for Ecology &amp; Hydrology</span></a></li><li class="nav-item "><a href="/about-peer/centres/ciens-oslo-centre-for-interdisciplinary-environmental-a" target="_top" class="nav-link"><span class="nav-link__label">CIENS - Oslo Centre for Interdisciplinary Environmental and Social Research (Norway)</span></a></li><li class="nav-item "><a href="/about-peer/centres/dce-danish-centre-for-environment-and-energy" target="_top" class="nav-link"><span class="nav-link__label">DCE - Danish Centre for Environment and Energy, Aarhus University, Denmark</span></a></li><li class="nav-item "><a href="/about-peer/centres/jrc-european-commission-joint-research-centre" target="_top" class="nav-link"><span class="nav-link__label">JRC - European Commission - Joint Research Centre</span></a></li><li class="nav-item "><a href="/about-peer/centres/syke-finnish-environment-institute" target="_top" class="nav-link"><span class="nav-link__label">Syke - Finnish Environment Institute (Finland)</span></a></li><li class="nav-item "><a href="/about-peer/centres/ufz-helmholtz-centre-for-environmental-research" target="_top" class="nav-link"><span class="nav-link__label">UFZ - Helmholtz Centre for Environmental Research (Germany)</span></a></li><li class="nav-item "><a href="/about-peer/centres/inrae-national-research-institute-for-agriculture-food-and-the-environment" target="_top" class="nav-link"><span class="nav-link__label">INRAE - National Research Institute for Agriculture, Food and the Environment (France)</span></a></li><li class="nav-item "><a href="/about-peer/centres/wenr-wageningen-environmental-research" target="_top" class="nav-link"><span class="nav-link__label">WENR - Wageningen Environmental Research</span></a></li></ul></li><li class="nav-item "><a href="/about-peer/contact" target="_top" class="nav-link"><span class="nav-link__label">Contact</span></a></li></ul></li><li class="nav-item "><a href="/news" target="_top" class="nav-link"><span class="nav-link__label">News</span></a></li><li class="nav-item "><a href="/events" target="_top" class="nav-link"><span class="nav-link__label">Events</span></a></li></ul></nav></div></div><!--TYPO3SEARCH_begin--><svg style="visibility:hidden; width:0; height:0;"><!-- Logo (512 426) --><symbol id="svg-page-logo"><path style="fill: var(--page-logo-color, #6176ff)" d="M 8.5 50 C 4.3578644 50 1 53.357864 1 57.5 L 1 99 L 49.916016 50 L 8.5 50 z"/><path style="fill: var(--page-logo-color, #6176ff)" d="M 255.98828 1 L 207.07227 50 L 170.99219 86.140625 L 85.996094 86.140625 L 56.628906 56.724609 L 1 112.35352 L 1 171.28711 C 1 241.82212 58.083581 299 128.49609 299 C 198.90866 299 255.98828 241.82212 255.98828 171.28711 L 255.98828 50 L 255.98828 1 z M 75.373047 150 C 87.108495 150 96.619141 159.53129 96.619141 171.28711 C 96.621741 176.93346 94.387961 182.34529 90.402344 186.33789 C 86.416702 190.33046 81.009616 192.57355 75.373047 192.57031 C 63.637649 192.57031 54.125 183.04296 54.125 171.28711 C 54.125 159.53129 63.637649 150 75.373047 150 z M 181.61523 150 C 193.35066 150 202.86914 159.53129 202.86914 171.28711 C 202.87214 176.93346 200.63212 182.34529 196.64648 186.33789 C 192.66084 190.33046 187.25175 192.57355 181.61523 192.57031 C 169.8798 192.57031 160.36719 183.04296 160.36719 171.28711 C 160.36719 159.53129 169.8798 150 181.61523 150 z"/></symbol><!-- Placeholder (512 426) --><symbol id="svg-placeholder"><path style="fill: var(--placeholder-color, #6176ff)" d="M 8.5 50 C 4.3578644 50 1 53.357864 1 57.5 L 1 99 L 49.916016 50 L 8.5 50 z"/><path style="fill: var(--placeholder-color, #6176ff)" d="M 255.98828 1 L 207.07227 50 L 170.99219 86.140625 L 85.996094 86.140625 L 56.628906 56.724609 L 1 112.35352 L 1 171.28711 C 1 241.82212 58.083581 299 128.49609 299 C 198.90866 299 255.98828 241.82212 255.98828 171.28711 L 255.98828 50 L 255.98828 1 z M 75.373047 150 C 87.108495 150 96.619141 159.53129 96.619141 171.28711 C 96.621741 176.93346 94.387961 182.34529 90.402344 186.33789 C 86.416702 190.33046 81.009616 192.57355 75.373047 192.57031 C 63.637649 192.57031 54.125 183.04296 54.125 171.28711 C 54.125 159.53129 63.637649 150 75.373047 150 z M 181.61523 150 C 193.35066 150 202.86914 159.53129 202.86914 171.28711 C 202.87214 176.93346 200.63212 182.34529 196.64648 186.33789 C 192.66084 190.33046 187.25175 192.57355 181.61523 192.57031 C 169.8798 192.57031 160.36719 183.04296 160.36719 171.28711 C 160.36719 159.53129 169.8798 150 181.61523 150 z"/></symbol></svg><!--TYPO3SEARCH_end--><!--TYPO3SEARCH_begin--> <script data-sc-cookie-template="category" data-key="essential" data-title="Essenziell" type="text/template"><p>Essenzielle Cookies ermöglichen grundlegende Funktionen und sind für die einwandfreie Funktion der Website erforderlich.</p><table class="sc-cookie-table"><caption>SC.Cookie</caption><tbody><tr><th>Provider</th><td>Eigentümer dieser Website</td></tr><tr><th>Purpose</th><td>Speichert die vom Benutzer ausgewählten Cookieeinstellungen.</td></tr><tr><th>Cookie name</th><td>{{scCookieName}}</td></tr><tr><th>Cookie lifetime</th><td>{{scCookieLifetime}}</td></tr></tbody></table></script><script data-sc-cookie-template="category" data-key="media" data-title="Externe Medien" type="text/template"><p>Mit Ihrer Zustimmung erlauben Sie das Laden von externen Medien.</p><table class="sc-cookie-table"><caption>Google Maps</caption><tbody><tr><th>Active</th><td><span data-switch="googlemaps">Google Maps</span></td></tr><tr><th>Provider</th><td><a href="https://policies.google.com/privacy" target="_blank" rel="noreferrer nofollow noopener" title="Provider declaration of data protection">Google Ireland Limited, Gordon House, Barrow Street, Dublin 4, Ireland</a></td></tr><tr><th>Purpose</th><td>Wird zum Entsperren von Google Maps-Inhalten verwendet.</td></tr><tr><th>Cookie lifetime</th><td>6 Monate</td></tr></tbody></table><table class="sc-cookie-table"><caption>Vimeo</caption><tbody><tr><th>Active</th><td><span data-switch="vimeo">Vimeo</span></td></tr><tr><th>Provider</th><td><a href="https://vimeo.com/privacy" target="_blank" rel="noreferrer nofollow noopener" title="Provider declaration of data protection">Vimeo Inc.</a></td></tr><tr><th>Purpose</th><td>Verwendung um Vimeo-Videoinhalte zu entsperren.</td></tr></tbody></table><table class="sc-cookie-table"><caption>Youtube</caption><tbody><tr><th>Active</th><td><span data-switch="youtube">Youtube</span></td></tr><tr><th>Provider</th><td><a href="https://policies.google.com/privacy" target="_blank" rel="noreferrer nofollow noopener" title="Provider declaration of data protection">Google Ireland Limited, Gordon House, Barrow Street, Dublin 4, Ireland</a></td></tr><tr><th>Purpose</th><td>Verwendung um Youtube-Videoinhalte zu entsperren.</td></tr></tbody></table></script><script data-sc-cookie-template="category" data-key="statistic" data-title="Statistiken" type="text/template"><p>Statistik Cookies erfassen Informationen anonym. Diese Informationen helfen uns zu verstehen, wie unsere Besucher unsere Website nutzen.</p><table class="sc-cookie-table"><caption>Matomo</caption><tbody><tr><th>Active</th><td><span data-switch="matomo">Matomo</span></td></tr><tr><th>Provider</th><td><a href="https://matomo.org/privacy-policy/" target="_blank" rel="noreferrer nofollow noopener" title="Provider declaration of data protection">Matomo</a></td></tr><tr><th>Purpose</th><td>Erzeugt statistische Daten darüber, wie der Besucher die Website nutzt.</td></tr></tbody></table></script><script type="application/json" data-sc-cookie-params>{ "cookie": { "name": "sccookie", "lifetimeFormats": { "day": { "singular": "{{n}} day", "plural" : "{{n}} days" }, "hour": { "singular": "{{n}} hour", "plural" : "" }, "week": { "singular": "{{n}} week", "plural" : "{{n}} weeks" } } } ,"buttons": { "accept": { "text": "Accept all", "title": "Activate and save all cookie options" }, "close": { "title": "Close cookie preferences" }, "essential": { "text": "Essential cookies only", "title": "Only essential cookies wil be used" }, "edit": { "text": "Individual preferences", "title": "Open cookie preferences" }, "save": { "text": "Save", "title": "Save my cookie preferences" } } ,"trigger": { "title": "Open cookie preferences" } ,"banner": { "headerCookiesDisabled": "Information", "textCookiesDisabled" : "The use of cookies is disabled in your browser. Please enable Cookies to user our site without restrictions." } ,"preferences": { "categoryGroupEnableDisable": "activate/deactivate the complete cookie category {{category}}", "categoryEnableDisable" : "activate/deactivate {{category}}", "categorySwitchLabelOn" : "yes", "categorySwitchLabelOff" : "no", "categoryDetailsTitle" : "Detailed information about category {{category}}" } ,"header": "Datenschutz" ,"text": "Wir nutzen Cookies auf unserer Website. Einige von ihnen sind essenziell, während andere dabei helfen unsere Website und Ihre Erfahrung zu verbessern." ,"footer": "zu unseren <a href=\"/datenschutz\">Datenschutzrichtlinien</a>" ,"essentialKey": "essential" }</script> <script src="typo3temp/assets/compressed/merged-caefe4a2dca4fc3077d88a8399a96aad-8b4d83ea988b9dfb44bf24c5ca35d1c3.js?1737545614" nonce="uK5v8NMKwVdkn29lr2FYPdTJ8Svns5szvQstaZiukv5uJgbM1nFo7g"></script> <script src="dist/default/bundle.js?1734968899" defer="defer" nonce="uK5v8NMKwVdkn29lr2FYPdTJ8Svns5szvQstaZiukv5uJgbM1nFo7g"></script> <script defer="defer" src="/dist/default/modules/news/pagination.js?1741084012"></script> <script src="dist/default/main.js" defer="defer"></script> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10