-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatasets.json
More file actions
98 lines (98 loc) · 2.89 KB
/
Copy pathdatasets.json
File metadata and controls
98 lines (98 loc) · 2.89 KB
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
[
{
"slug": "country-codes",
"namespace": "reference",
"name": "Country Codes",
"description": "ISO 3166-1 country names with their alpha-2 and alpha-3 codes.",
"file": "country-codes.csv",
"format": "csv",
"profile": "frictionless-tabular",
"schema": {
"primaryKey": "alpha3",
"fields": [
{
"name": "name",
"type": "string",
"title": "Country name",
"description": "Common English short name of the country.",
"constraints": { "required": true }
},
{
"name": "alpha2",
"type": "string",
"title": "Alpha-2 code",
"description": "ISO 3166-1 alpha-2 two-letter code.",
"constraints": { "required": true, "unique": true, "pattern": "^[A-Z]{2}$" }
},
{
"name": "alpha3",
"type": "string",
"title": "Alpha-3 code",
"description": "ISO 3166-1 alpha-3 three-letter code.",
"constraints": { "required": true, "unique": true, "pattern": "^[A-Z]{3}$" }
}
]
},
"licenses": [
{
"name": "ODbL-1.0",
"title": "Open Data Commons Open Database License 1.0",
"path": "https://opendatacommons.org/licenses/odbl/1-0/"
}
],
"sources": [
{
"title": "ISO 3166-1",
"path": "https://www.iso.org/iso-3166-country-codes.html"
}
],
"keywords": ["countries", "iso", "reference"],
"version": "1.0.0"
},
{
"slug": "population-2022",
"namespace": "reference",
"name": "World Population 2022",
"description": "Estimated mid-year population for a sample of countries.",
"file": "population-2022.csv",
"format": "csv"
},
{
"slug": "co2-emissions",
"namespace": "reference",
"name": "CO₂ Emissions per Capita",
"description": "Tonnes of CO₂ emitted per person for a sample of countries.",
"file": "co2-emissions.csv",
"format": "csv"
},
{
"slug": "country-indicators",
"namespace": "reference",
"name": "Country Indicators (bundle)",
"description": "A multi-resource dataset: reference codes plus population and CO₂ indicators for a sample of countries.",
"keywords": ["countries", "reference", "indicators"],
"resources": [
{
"name": "codes",
"path": "country-codes.csv",
"format": "csv",
"title": "Country codes",
"description": "ISO 3166-1 names with alpha-2 and alpha-3 codes."
},
{
"name": "population",
"path": "population-2022.csv",
"format": "csv",
"title": "Population 2022",
"description": "Estimated mid-year population."
},
{
"name": "co2",
"path": "co2-emissions.csv",
"format": "csv",
"title": "CO₂ emissions per capita",
"description": "Tonnes of CO₂ emitted per person."
}
]
}
]