science-release-map / src /constants /organizations.ts
cgeorgiaw's picture
cgeorgiaw HF Staff
Update src/constants/organizations.ts
0586937 verified
raw
history blame
2.74 kB
import { ProviderInfo } from "../types/heatmap";
// Scientific area tags
export const SCIENTIFIC_TAGS = [
{ id: "antibody", label: "antibody" },
{ id: "materials-science", label: "materials-science" },
{ id: "drug-discovery", label: "drug-discovery" },
{ id: "biology", label: "biology" },
{ id: "medicine", label: "medicine" },
{ id: "physics", label: "physics" },
{ id: "chemistry", label: "chemistry" },
{ id: "education", label: "education" },
{ id: "quantum", label: "quantum" },
];
export const ORGANIZATIONS: ProviderInfo[] = [
{
color: "#ff7000",
authors: ["LeMaterial", "Entalpic"],
tags: ["materials-science", "chemistry"]
},
{
color: "#1877F2",
authors: ["arcinstitute"],
tags: ["biology", "medicine", "drug-discovery"]
},
{
color: "#10A37F",
authors: ["SandboxAQ"],
tags: ["physics", "materials-science", "quantum"]
},
{
color: "#DB4437",
authors: ["polymathic-ai"],
tags: ["physics", "data"]
},
{
color: "#F45098",
authors: ["NASA-AIML", "nasa-ibm-ai4science", "nasa-impact"],
tags: ["physics", "data", "education", "heliophysics", "astronomy"]
},
{
color: "#FEB800",
authors: ["facebook"],
tags: ["data", "education", "chemistry"]
},
{
color: "#76B900",
authors: ["nvidia"],
tags: ["data", "physics", "materials-science"]
},
{
color: "#0088cc",
authors: ["Merck"],
tags: ["drug-discovery", "medicine", "biology"]
},
{
color: "#cc785c",
authors: ["wanglab"],
tags: ["biology", "medicine"]
},
{
color: "#0088cc",
authors: ["jablonkagroup"],
tags: ["materials-science", "chemistry"]
},
{
color: "#4C6EE6",
authors: ["Orbital-Materials"],
tags: ["materials-science", "physics"]
},
{
color: "#ff7000",
authors: ["Xaira-Therapeutics"],
tags: ["drug-discovery", "medicine", "biology", "antibody"]
},
{
color: "#4C6EE6",
authors: ["tahoebio"],
tags: ["drug-discovery", "medicine", "biology", "single-cell"]
},
{
color: "#FEC912",
authors: ["hugging-science"],
tags: ["data", "education", "biology", "physics"]
},
{
color: "#ff7000",
authors: ["miriad"],
tags: ["data", "medicine", "biology"]
},
{
color: "#76B900",
authors: ["camlab-ethz"],
tags: ["data", "physics"]
},
{
color: "#FEC912",
authors: ["atomind"],
tags: ["materials-science", "chemistry"]
},
{
color: "#FEB800",
authors: ["futurehouse"],
tags: ["science", "chemistry", "education"]
},
{
color: "#ff7000",
authors: ["ginkgo-datapoints"],
tags: ["biology", "antibody", "medicine", "drug-discovery"]
},
];