Skip to content

Latest commit

 

History

History
314 lines (290 loc) · 19.8 KB

File metadata and controls

314 lines (290 loc) · 19.8 KB
layout subsite-galaxy
website https://earth-system.usegalaxy.eu
subdomain earth-system

Welcome to Galaxy for Earth System Sciences -- a web platform to get, process, analyze and visualize environmental data

Galaxy for earth system sciences



Guide tour

Are you new to Galaxy, or returning after a long time, and looking for help to get started?

Tutorials

Want to learn about earth science analyses?

Workflows

Write earth-system in the search !



<iframe id="displayhere" frameborder="0" style="display:none;" width="100%" height="700"></iframe>



<iframe id="displayhere3" frameborder="0" style="display:none;" width="100%" height="700"></iframe>

Partnerships

Data Terra - EOSC Node

EOSC European commission

Hunga Tonga usecase

EOSC

Hackathon, where it all began

Want to know more ?

TOOLS

TerriaMap

Several tools corresponding to these usecase can be found in Galaxy's left sidebar in the interactive tools section under the Ocean and Land & soil and the Earth System tools section.



<iframe id="displayhere2" frameborder="0" style="display:none;" width="100%" height="700"></iframe>



Credits

Credits



Galaxy for earth system sciences

<script> document.addEventListener('DOMContentLoaded', function() { // Retrieve all links that trigger the display of the iframe const links = document.querySelectorAll('.show-iframe'); links.forEach(link => { link.addEventListener('click', function(e) { e.preventDefault();// Prevent default behavior (navigate to another link) // Retrieve the target URL const targetUrl = link.getAttribute('href'); // Hide all iframes const iframes = document.querySelectorAll('iframe'); iframes.forEach(iframe => iframe.style.display = 'none'); // Display the iframe corresponding to the clicked link const targetId = link.getAttribute('data-target'); const targetIframe = document.getElementById(targetId); if (targetIframe) { // Update the URL of the iframe with the target link targetIframe.src = targetUrl; // <-- Insert link into iframe targetIframe.style.display = 'block'; targetIframe.scrollIntoView({ block: 'start', behavior: 'smooth', inline: 'nearest'}); } }); }); }); </script>