Skip to main content

From Fragments to Insights: Making Scientific Knowledge Discoverable - Results and opportunities from the SciLake project

From Fragments to Insights: Making Scientific Knowledge Discoverable Results and opportunities from the SciLake project. TUESDAY 10 March 9:00-12:30 CET. ONLINE, REGISTRATION REQUIRED

Scientific research today faces a critical challenge: valuable knowledge is scattered across countless sources, making discovery difficult and hindering informed decision-making. After three years of collaborative research and innovation, SciLake has created practical solutions using the technology and expertise of the OpenAIRE Graph that give researchers the tools to turn their domain knowledge into standardized, interoperable Scientific Knowledge Graphs (SKGs).

Bridging Domain Expertise and Knowledge Management

SciLake bridges the gap between domain expertise and technical knowledge management. While scientists understand their fields deeply, they often lack the specialized skills to organize knowledge effectively. Conversely, technical experts need domain insights to structure information meaningfully.

Through collaboration with experts in neuroscience, cancer, transportation, and energy research, SciLake has created a highly customizable ecosystem of components for seamless data access and knowledge discovery.

Program Highlights

  • Two expert panels on
    • Turning scattered knowledge into living knowledgs graphs
    • Unlocking hidden patterns in knowledge graphs
  • Live demonstrations from four domain-specific pilot applications
  • Q&A sessions

Learn more & register here!

Event Information

Event Date Tuesday, 10 March 2026
Event End Date Tuesday, 10 March 2026
document.addEventListener("DOMContentLoaded", function() { function fixImages() { document.querySelectorAll('img').forEach(function(img) { var src = img.getAttribute('src'); if (src && src.startsWith('images/')) { img.setAttribute('src', '/' + src); } }); } // Εκτέλεση κατά το πρώτο φόρτωμα fixImages(); // Παρακολούθηση της σελίδας για dynamic αλλαγές (π.χ. lazy loading) var observer = new MutationObserver(fixImages); observer.observe(document.body, { childList: true, subtree: true }); }); document.addEventListener("DOMContentLoaded", function() { function bypassBrokenCache() { document.querySelectorAll('img').forEach(function(img) { var currentSrc = img.getAttribute('src'); if (currentSrc) { // Περίπτωση Α: Η εικόνα περνάει από το com_ajax cache του YOOtheme if (currentSrc.includes('com_ajax') && currentSrc.includes('&src=images/')) { // Απομονώνουμε το κομμάτι μετά το &src= var parts = currentSrc.split('&src='); if (parts[1]) { var realPath = parts[1].split('&')[0]; // Παίρνουμε μόνο το path της εικόνας img.setAttribute('src', '/' + decodeURIComponent(realPath)); } } // Περίπτωση Β: Η εικόνα είναι απλό relative path χωρίς slash else if (currentSrc.startsWith('images/')) { img.setAttribute('src', '/' + currentSrc); } } }); } // Εκτέλεση παντού και συνεχώς (για lazy loading και tabs) bypassBrokenCache(); var observer = new MutationObserver(bypassBrokenCache); observer.observe(document.body, { childList: true, subtree: true }); document.addEventListener('click', function() { setTimeout(bypassBrokenCache, 50); setTimeout(bypassBrokenCache, 200); }); });