UK Semiconductor Centre | Ecosystem Directory
UK semiconductor centre

Explore the ecosystem

Discover organisations across the UK semiconductor ecosystem by role, value chain position, capability and technology domain.

This proof of concept shows how the UK semiconductor ecosystem can be made easier to navigate: from raising funding and finding partners, to identifying design, manufacturing, packaging, research and supply-chain capabilities across the UK.

Search the directory
What are you trying to do?

Directory results

0 organisations found
JSON placeholder: paste your full directory JSON into the marked script block below. This file is set up as a complete single-page PoC shell.
Start the conversation

Get in touch and help shape the UK semiconductor ecosystem.

Contact us
'; resultCount.textContent = "0 organisations found"; return; } resultCount.textContent = orgs.length + (orgs.length === 1 ? " organisation found" : " organisations found"); orgs.forEach(function(org) { const card = document.createElement("div"); card.className = "company-card"; card.innerHTML = '

' + (org.name || "") + '

' + '' + (org.website || "No website") + '' + '

' + (org.description || "") + '

' + '
' + 'Ecosystem role' + 'Value chain' + 'Capability' + 'Technology domain' + '
'; cards.appendChild(card); }); } searchBox.addEventListener("input", function(e) { const q = (e.target.value || "").toLowerCase().trim(); const filtered = DATA.orgs.filter(function(org) { return (org.name || "").toLowerCase().includes(q) || (org.description || "").toLowerCase().includes(q); }); renderCards(filtered); }); renderCards(DATA.orgs);