-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
165 lines (165 loc) · 5.21 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="favicon.ico" />
<link href="index.css" type="text/css" rel="stylesheet" />
<link
href="assets/fonts/PFRegalDisplayPro/font.css"
type="text/css"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css?family=Montserrat"
rel="stylesheet"
/>
<title>COSMOS</title>
</head>
<body>
<div class="scroll-container">
<a href="#top"
><img src="assets/img/fleche_back_top.svg" alt="Back to top"
/></a>
</div>
<div class="header">
<div class="background-img">
<img src="assets/img/header.png" />
</div>
<div class="text-img">
<img src="assets/img/header-text.svg" />
</div>
</div>
<a href="#" id="handle-menu" class="burger">
<span class="burger-icon">
<span></span>
<span></span>
<span></span>
</span>
</a>
<div class="menu" id="menu">
<div class="menu-item menu-item-active">Home</div>
<a href="./2024/index.html" class="menu-item"><div>2024 Edition</div></a>
</div>
<div class="content">
<div class="page-name">Smart Metadata Manifesto</div>
<div class="introduction">
Data is a major asset for all organizations, and this is particularly
true in Official Statistics.
</div>
<div class="text-bold">
<p>
In Europe, the
<a
href="https://eur-lex.europa.eu/legal-content/EN/TXT/HTML/?uri=CELEX:52020DC0066&from=EN"
>European strategy for data</a
>
aims at creating a single market for data that will ensure global
competitiveness and data sovereignty.
</p>
</div>
<div class="text">
<p>
Internationally, the
<a href="https://opendatacharter.net/">Open Data Charter</a> aims at
enabling open data to support transparent, accountable, efficient and
effective public and private sectors.
</p>
<p>
Globally, the
<a href="https://www.go-fair.org/">FAIR movement</a> aims at making
data easier to find and use.
</p>
<p>
Many other initiatives embrace the same goals accross the world of
scientific and policy research.
</p>
<p>
All these support the Open Science vision of open publication and
access to scientific knowledge to enable collaborative networks at all
levels of society.
</p>
<p>
But realisation comes soon that data is unusable without metadata and
that the FAIR principles actually boil down to requirements on
metadata:
</p>
<ul>
<li>interoperable and linked concepts</li>
<li>standardized description and representation of data</li>
<li>cataloging and data search</li>
</ul>
<p>We need metadata that are:</p>
<ul>
<li>standard: they can be understood and used everywhere</li>
<li>
active: they are machine-actionable and drive the statistical
process
</li>
<li>
FAIR: they make data findable, accessible, interoperable and
reusable
</li>
</ul>
<p>
Rich metadata explain what data are and what they can do; they enhance
data quality and usability.
</p>
<p>We propose to brand these “Smart Metadata”.</p>
<p>
The COSMOS conference is a place for the Official Statistics community
to envision how to best define, share, use and manage smart metadata,
to fully realize data’s potential.
</p>
</div>
</div>
<div class="footer">
<span class="sponsors">
<a
href="https://www.insee.fr/en/accueil"
target="_blank"
rel="noreferrer noopener"
>
<img src="assets/img/logo_insee.png" alt="Logo Insee" width="38px" />
</a>
<a
href="https://www.casd.eu/en/"
target="_blank"
rel="noreferrer noopener"
>
<img
src="assets/img/logo_casd.svg"
alt="Logo CASD"
width="120px"
height="auto"
/>
</a>
<a href="https://codata.org/" target="_blank" rel="noreferrer noopener">
<img src="assets/img/logo-cdt.svg" alt="Logo CDT" width="112px" />
</a>
<img
src="assets/img/logo_ms.svg"
alt="Logo Making Sense"
width="64px"
/>
</span>
<span class="links">
<a
href="https://github.com/FranckCo/COSMOS-Website"
target="_blank"
rel="noreferrer noopener"
>
<img src="assets/img/github.svg" alt="Logo Github" />
</a>
<a
href="mailto:[email protected]"
target="_blank"
rel="noreferrer noopener"
>
<img src="assets/img/mail.svg" alt="Mail" />
</a>
</span>
</div>
</body>
<script src="menu-burger.js"></script>
</html>