-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathdatapackage.json
More file actions
123 lines (123 loc) · 3.54 KB
/
datapackage.json
File metadata and controls
123 lines (123 loc) · 3.54 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
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
{
"description": "Country, regional and world GDP in current US Dollars ($). Regional means collections of countries e.g. Europe & Central Asia. Data is sourced from the World Bank and turned into a standard normalized CSV.",
"image": "http://assets.okfn.org/p/opendatahandbook/img/data-wrench.png",
"keywords": [
"GDP",
"World",
"Gross Domestic Product",
"Time series"
],
"last_updated": "2026-04-08",
"licenses": [
{
"name": "CC-BY-4.0",
"path": "https://creativecommons.org/licenses/by/4.0/",
"title": "Creative Commons Attribution 4.0"
}
],
"name": "gdp",
"views": [
{
"name": "top-economies",
"title": "GDP of the World's 10 Largest Economies (2000\u20132023)",
"description": "GDP in current USD for the top 10 economies since 2000. The US has held a commanding lead throughout, while China's rapid ascent is the defining economic shift of the century. India overtook the UK and France in the early 2020s.",
"resources": [
"top-economies"
],
"specType": "plot",
"spec": {
"height": 460,
"marginLeft": 65,
"marginRight": 20,
"x": {
"label": "Year",
"tickFormat": ".0f"
},
"y": {
"label": "GDP (USD Trillion)",
"grid": true
},
"color": {
"legend": true
},
"marks": [
{
"type": "line",
"x": "year",
"y": "gdp_trillion",
"stroke": "country",
"strokeWidth": 2,
"tip": true
}
]
}
}
],
"resources": [
{
"name": "top-economies",
"path": "data/top-economies.csv",
"format": "csv",
"mediatype": "text/csv",
"description": "GDP in current USD trillions for the world's 10 largest economies, covering 2000–2023. Derived from the main gdp resource.",
"schema": {
"fields": [
{
"name": "country",
"type": "string",
"description": "Country name"
},
{
"name": "year",
"type": "year",
"description": "Year of the GDP observation"
},
{
"name": "gdp_trillion",
"type": "number",
"description": "GDP in current USD trillions"
}
]
}
},
{
"name": "gdp",
"path": "data/gdp.csv",
"description": "Country, regional and world GDP in current USD. Each row is one country/region for one year. Sourced from the World Bank indicator NY.GDP.MKTP.CD.",
"schema": {
"fields": [
{
"name": "Country Name",
"type": "string",
"description": "Country or region name as given by the World Bank"
},
{
"name": "Country Code",
"type": "string",
"description": "ISO 3166-1 alpha-3 country code or World Bank region code"
},
{
"name": "Year",
"type": "year",
"description": "Year of the GDP observation"
},
{
"description": "GDP in current USD",
"name": "Value",
"type": "number"
}
]
}
}
],
"sources": [
{
"name": "World Bank and OECD",
"path": "http://data.worldbank.org/indicator/NY.GDP.MKTP.CD",
"title": "World Bank and OECD"
}
],
"title": "Country, Regional and World GDP (Gross Domestic Product)",
"version": "2026",
"collection": "economic-data"
}