Project

General

Profile

1
export interface member {
2
  name: string,
3
  role: string,
4
  affiliation: string,
5
  country: string,
6
  responsibilities: string,
7
  photo: string,
8
  active?: boolean
9
}
10

    
11
export const team: member[] = [
12
  {
13
    name: 'Alessia Bardi',
14
    role: 'Researcher / Product Manager of the OpenAIRE Research Community Dashboard (CONNECT)',
15
    affiliation: 'Institute of Information Science and Technologies, Italian National Research Council',
16
    country: 'Italy',
17
    responsibilities:
18
      'Responsible for the design and operation of the pipeline for the materialisation and data quality evaluation of the graph\n' +
19
      'Responsible for the integration of content for the communities using OpenAIRE CONNECT services.',
20
    photo: 'alessia.jpg'
21
  },
22
  {
23
    name: 'Amelie Bäcker',
24
    role: 'Librarian',
25
    affiliation: 'Bielefeld University Library',
26
    country: 'Germany',
27
    responsibilities: 'Metadata integration (standard cases), helpdesk support (OpenAIRE Guidelines, metadata integration).',
28
    photo: 'amelie.jpg'
29
  },
30
  {
31
    name: 'Andrea Dell Amico',
32
    role: 'Τechnical Team - Systems Administrator',
33
    affiliation: 'Institute of Information Science and Technologies, Italian National Research Council',
34
    country: 'Italy',
35
    responsibilities: 'Working on the computing and storage infrastructure on the CNR side, maintaining the Hadoop and ElasticSearch clusters.',
36
    photo: 'dell_amico.jpg'
37
  },
38
  {
39
    name: 'Andrea Mannocci',
40
    role: 'Researcher/Data scientist',
41
    affiliation: 'Institute of Information Science and Technologies, Italian National Research Council',
42
    country: 'Italy',
43
    responsibilities: 'Working on data analysis and quality of data.',
44
    photo: 'mannocci.jpg'
45
  },
46
  {
47
    name: 'Andreas Czerniak',
48
    role: 'OpenAIRE Project Officer',
49
    affiliation: 'Bielefeld University Library',
50
    country: 'Germany',
51
    responsibilities: 'Responsible with the UniBI team for the aggregation (collection and transformation) of metadata.',
52
    photo: 'czerniak.jpg'
53
  },
54
  {
55
    name: 'Claudio Atzori',
56
    role: 'Software & Data Engineer / Data quality',
57
    affiliation: 'Institute of Information Science and Technologies, Italian National Research Council',
58
    country: 'Italy',
59
    responsibilities:
60
      'Responsible for the design of graph processing pipeline, glueing the different stages together, from the content aggregation, to the end of the supply chain at the indexing stage.',
61
    photo: 'claudio.jpg'
62
  },
63
  {
64
    name: 'Eleni Zacharia-Lamprou',
65
    role: 'Software Engineer - Postdoctoral Researcher',
66
    affiliation: 'Athena Research Center (ARC)',
67
    country: 'Greece',
68
    responsibilities: 'Implementation of Text and Data Mining (TDM) modules, used in the graph Enrichment phase.',
69
    photo: 'eleni.jpg'
70
  },
71
  {
72
    name: 'Enrico Ottonello',
73
    role: 'Technical Team',
74
    affiliation: 'Institute of Information Science and Technologies, Italian National Research Council',
75
    country: 'Italy',
76
    responsibilities: 'Data engineering, aggregation, data curation along the graph enrichment steps.',
77
    photo: 'enrico.jpg'
78
  },
79
  {
80
    name: 'Harry Dimitropoulos',
81
    role: 'Senior Scientific Associate',
82
    affiliation: 'Athena Research Center (ARC)',
83
    country: 'Greece',
84
    responsibilities: 'Responsible for the Text and Data Mining (TDM) modules used in the graph Enrichment phase.',
85
    photo: 'dimitropoulos.jpg'
86
  },
87
  {
88
    name: 'Lampros Smyrnaios',
89
    role: 'Software & Data Engineer / Research Assistant',
90
    affiliation: 'Athena Research Center (ARC)',
91
    country: 'Greece',
92
    responsibilities: 'Development of a software to extract the full-texts from publications\' web-pages. These full-texts are used by the Text and Data Mining (TDM) modules. Implementation of Text and Data Mining (TDM) modules, used in the graph Enrichment phase.',
93
    photo: 'lampros.jpg'
94
  },
95
  {
96
    name: 'Michele De Bonis',
97
    role: 'Technical Team',
98
    affiliation: 'Institute of Information Science and Technologies, Italian National Research Council',
99
    country: 'Italy',
100
    responsibilities: 'Responsible for the deduplication phase and the creation of algorithms to identify groups of data into the graph.',
101
    photo: 'de_bonis.jpg'
102
  },
103
  {
104
    name: 'Miriam Baglioni',
105
    role: 'Researcher / Software & Data Engineer / Data quality',
106
    affiliation: 'Institute of Information Science and Technologies, Italian National Research Council',
107
    country: 'Italy',
108
    responsibilities: 'Responsible for the graph enrichment steps not related to mining, and to the production of the graph dumps.',
109
    photo: 'miriam.jpeg'
110
  },
111
  {
112
    name: 'Paolo Manghi',
113
    role: 'Chief Technical Officer',
114
    affiliation: 'Institute of Information Science and Technologies, Italian National Research Council',
115
    country: 'Italy',
116
    responsibilities: 'Responsible for the design and roadmapping of the OpenAIRE infrastructure services, their operation, evolution, and interaction with third-parties.',
117
    photo: 'paolo.png'
118
  },
119
  {
120
    name: 'Sandro La Bruzzo',
121
    role: 'Technical Team',
122
    affiliation: 'Institute of Information Science and Technologies, Italian National Research Council',
123
    country: 'Italy',
124
    responsibilities: 'Responsible for the graph enrichment steps including the generation of DOIBoost.',
125
    photo: 'sandro.jpg'
126
  },
127
  {
128
    name: 'Yannis Foufoulas',
129
    role: 'Software Engineer / Researcher',
130
    affiliation: 'Athena Research Center (ARC)',
131
    country: 'Greece',
132
    responsibilities: 'Implementation of Text and Data Mining (TDM) modules used in the graph Enrichment phase.',
133
    photo: 'yiannis.jpg'
134
  }
135
]
(8-8/8)