Skip to content

Latest commit

 

History

History
154 lines (137 loc) · 6.62 KB

File metadata and controls

154 lines (137 loc) · 6.62 KB
layout home
hero
text tagline background image actions
European innovation in Earth Observation - for citizens and society
RACE brings together environmental, economic and societal indicators developed by European industry, research institutes, academia and citizens, based on ESA and Copernicus Earth Observation data - presented through an interactive dashboard and contextual stories
./assets/RACE_KV_2022_NOtitleNOlogo_darken.jpg
./assets/RACE_KV_2022.jpg
theme text link
cta
Explore Dashboard
/explore
theme text link
alt
Discover Stories
/stories

Explore RACE

RACE (Rapid Action for Citizens with Earth Observation) is a collaborative Earth Observation innovation initiative by ESA and the European Commission - DG DEFIS with contributions from a wide network of European partners. Its purpose is showcase accessible and meaningful indicators on topics that relate to everyday life, such as pollution and environment, the economy, and society, derived from Earth Observations and other open data sources. RACE indicators are developed by companies, research institutes, academia, and Copernicus services, showcasing the breadth of European EO capabilities and their relevance to everyday life.

By allowing users to explore examples of what EO can reveal about their surroundings and places of interest and presenting these insights through interactive tools and stories, RACE aims to encourage curiosity and helps citizens appreciate the role and potential of EO in modern society.

RACE resources and data are openly available, offering companies, researchers, and developers opportunities to build upon the data and explore new applications that reflect Europe’s evolving EO innovation landscape.

Stories that make sense of data

Why RACE matters

<script setup> import { onMounted, ref } from "vue"; import { withBase } from 'vitepress' const stories = ref([]); const getStories = async () => { const response = await fetch("https://esa-eodashboards.github.io/RACE-narratives/narratives.json"); const json = await response.json(); stories.value = json.reverse(); } getStories(); </script>