-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathdatapackage.json
180 lines (180 loc) · 5.1 KB
/
datapackage.json
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
{
"name": "sea-level-rise",
"title": "Global Average Absolute Sea Level Change, 1880-2014",
"description": "This data contains cumulative changes in sea level for the world\u2019s oceans since 1880, based on a combination of long-term tide gauge measurements and recent satellite measurements.",
"homepage": "http://www3.epa.gov/climatechange/science/indicators/oceans/sea-level.html",
"licenses": [
{
"name": "ODC-PDDL-1.0",
"path": "http://opendatacommons.org/licenses/pddl/",
"title": "Open Data Commons Public Domain Dedication and License v1.0"
}
],
"sources": [
{
"name": "EPA (United States Environmental Protection Agency)",
"path": "http://www3.epa.gov/climatechange/images/indicator_downloads/sea-level_fig-1.csv",
"title": "EPA (United States Environmental Protection Agency)"
},
{
"name": "CSIRO (Commonwealth Scientific and Industrial Research Organisation)",
"path": "http://www.cmar.csiro.au/sealevel/GMSL_SG_2011_up.html",
"title": "CSIRO (Commonwealth Scientific and Industrial Research Organisation)"
}
],
"resources": [
{
"name": "csiro_alt_seas_inc",
"path": "data/CSIRO_Alt_seas_inc.csv",
"format": "csv",
"mediatype": "text/csv",
"schema": {
"fields": [
{
"name": "Time",
"type": "date",
"format": "any",
"description": "Year and month of GMSL calculation (YYYY-MMM)"
},
{
"name": "GMSL (monthly)",
"type": "number",
"description": "Global Mean Sea Level - monthly value in mm"
},
{
"name": "GMSL (smoothed)",
"type": "number",
"description": "Global Mean Sea Level - smoothed value in mm"
}
]
}
},
{
"name": "csiro_alt_yearly",
"path": "data/CSIRO_Alt_yearly.csv",
"format": "csv",
"mediatype": "text/csv",
"schema": {
"fields": [
{
"name": "Time",
"type": "date",
"format": "any",
"description": "Year of GMSL calculation (YYYY)"
},
{
"name": "GMSL (yearly)",
"type": "number",
"description": "Global Mean Sea Level - yearly average in mm"
}
]
}
},
{
"name": "csiro_recons_gmsl_mo_2015",
"path": "data/CSIRO_Recons_gmsl_mo_2015.csv",
"format": "csv",
"mediatype": "text/csv",
"schema": {
"fields": [
{
"name": "Time",
"type": "date",
"format": "any",
"description": "Year and month of GMSL calculation (YYYY-MMM)"
},
{
"name": "GMSL",
"type": "number",
"description": "Reconstructed Global Mean Sea Level in mm"
},
{
"name": "GMSL uncertainty",
"type": "number",
"description": "uncertainty due to reconstruction"
}
]
}
},
{
"name": "csiro_recons_gmsl_yr_2019",
"path": "data/CSIRO_Recons_gmsl_yr_2019.csv",
"format": "csv",
"mediatype": "text/csv",
"schema": {
"fields": [
{
"name": "Time",
"type": "date",
"format": "any",
"description": "Year of GMSL calculation (YYYY)"
},
{
"name": "GMSL",
"type": "number",
"description": "Reconstructed Global Mean Sea Level in mm"
},
{
"name": "GMSL uncertainty",
"type": "number",
"description": "Uncertainty due to reconstruction"
}
]
}
},
{
"name": "epa-sea-level",
"path": "data/epa-sea-level.csv",
"format": "csv",
"mediatype": "text/csv",
"schema": {
"fields": [
{
"name": "Year",
"type": "date",
"format": "any",
"description": "Year of measurement (YYYY)"
},
{
"name": "CSIRO Adjusted Sea Level",
"type": "number",
"description": "Comulative changes (in inches) in sea level for the world\u2019s oceans based on the combination of long-term tide gauge measurements and recent satellite measurements."
},
{
"name": "Lower Error Bound",
"type": "number",
"description": "inches"
},
{
"name": "Upper Error Bound",
"type": "number",
"description": "inches"
},
{
"name": "NOAA Adjusted Sea Level",
"type": "number",
"description": "inches"
}
]
}
}
],
"views": [
{
"name": "graph",
"resources": [
"epa-sea-level"
],
"specType": "simple",
"spec": {
"group": "Year",
"series": [
"CSIRO Adjusted Sea Level",
"NOAA Adjusted Sea Level"
],
"type": "line"
}
}
],
"collection": "climate-change"
}