-
Notifications
You must be signed in to change notification settings - Fork 16
/
datapackage.json
101 lines (101 loc) · 3.01 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
{
"bytes": 122715,
"count_of_rows": 7313,
"descriptor": "Monthly and daily prices of Natural Gas",
"hash": "bdcc5129a733f4d65aa01d1f8530c84d",
"keywords": [
"Gas",
"Natural gas",
"Natural gas daily",
"Natural gas monthly",
"eia",
"Natural gas eia"
],
"licenses": [
{
"name": "ODC-PDDL-1.0",
"path": "http://opendatacommons.org/licenses/pddl/",
"title": "Open Data Commons Public Domain Dedication and License v1.0"
}
],
"name": "natural-gas",
"profile": "data-package",
"readme": "Time series of major Natural Gas Prices including US Henry Hub. Data comes from U.S. Energy Information Administration [EIA](http://www.eia.gov/)\n\n## Data\n\nDataset contains Monthly and Daily prices of Natural gas, starting from January 1997 to current year. Prices are in nominal dollars.\n\n## Prpeartion\n\nYou will need Python 3.6 or greater and dataflows library to run the script\n\nTo update the data run the process script locally:\n\n```\n# Install dataflows\npip install dataflows\n\n# Run the script\npython natural_gas_flow.py\n```\n\n## License\n\n* Public domain and use of EIA content\n\nU.S. government publications are in the public domain and are not subject to copyright protection. One may use and/or distribute any of data,\nfiles, databases, reports, graphs, charts, and other information products that are on website.\nFor more information please visit: [Copyrights and Reuse](http://www.eia.gov/about/copyrights_reuse.cfm)\n",
"resources": [
{
"dpp:streaming": true,
"format": "xls",
"mediatype": "text/xls",
"name": "daily",
"path": "data/daily.csv",
"profile": "tabular-data-resource",
"schema": {
"fields": [
{
"format": "default",
"name": "Date",
"type": "date"
},
{
"format": "default",
"name": "Price",
"type": "number"
}
],
"missingValues": [
""
]
}
},
{
"dpp:streaming": true,
"format": "xls",
"mediatype": "text/xls",
"name": "monthly",
"path": "data/monthly.csv",
"profile": "tabular-data-resource",
"schema": {
"fields": [
{
"format": "default",
"name": "Month",
"type": "yearmonth"
},
{
"format": "default",
"name": "Price",
"type": "number"
}
],
"missingValues": [
""
]
}
}
],
"sources": [
{
"name": "EIA",
"path": "http://www.eia.gov/naturalgas",
"title": "EIA"
}
],
"title": "Natural gas prices",
"version": "0.2.0",
"views": [
{
"resources": ["monthly"],
"name": "graph",
"spec": {
"group": "Month",
"series": [
"Price"
],
"type": "line"
},
"specType": "simple",
"title": "Prices of Natural Gas"
}
],
"collection": "stock-market-data"
}