-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[fix][s] Update datapackage.json rollback
Resolved issue mentioned here: #8 just rolled back the older version
- Loading branch information
1 parent
ae5db6f
commit cab202e
Showing
1 changed file
with
65 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,80 +1,116 @@ | ||
{ | ||
"name": "global-temp", | ||
"title": "Global Temperature Time Series", | ||
"version": "0.1.0", | ||
"license": "ODC-PDDL-1.0", | ||
"sources": [ | ||
{ | ||
"name": "GISTEMP Global Land-Ocean Temperature Index", | ||
"web": "http://data.giss.nasa.gov/gistemp" | ||
}, | ||
"licenses": [ | ||
{ | ||
"name": "Global component of Climate at a Glance (GCAG)", | ||
"web": "https://www.ncei.noaa.gov/node/6696" | ||
"name": "ODC-PDDL-1.0", | ||
"path": "http://opendatacommons.org/licenses/pddl/", | ||
"title": "Open Data Commons Public Domain Dedication and License v1.0" | ||
} | ||
], | ||
"name": "global-temp", | ||
"resources": [ | ||
{ | ||
"name": "annual", | ||
"path": "data/annual.csv", | ||
"format": "csv", | ||
"mediatype": "text/csv", | ||
"name": "annual", | ||
"path": "data/annual.csv", | ||
"schema": { | ||
"fields": [ | ||
{ | ||
"name": "Source", | ||
"type": "string" | ||
}, | ||
{ | ||
"description": "YYYY", | ||
"name": "Year", | ||
"type": "date", | ||
"description": "YYYY" | ||
"type": "year" | ||
}, | ||
{ | ||
"description": "Average global mean temperature anomalies in degrees Celsius relative to a base period. GISTEMP base period: 1951-1980. GCAG base period: 20th century average.", | ||
"name": "Mean", | ||
"type": "number", | ||
"description": "Average global mean temperature anomalies in degrees Celsius relative to a base period. GISTEMP base period: 1951-1980. GCAG base period: 20th century average." | ||
"type": "number" | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"name": "monthly", | ||
"path": "data/monthly.csv", | ||
"format": "csv", | ||
"mediatype": "text/csv", | ||
"name": "monthly", | ||
"path": "data/monthly.csv", | ||
"schema": { | ||
"fields": [ | ||
{ | ||
"name": "Source", | ||
"type": "string" | ||
}, | ||
{ | ||
"description": "YYYY-MM", | ||
"format": "any", | ||
"name": "Date", | ||
"type": "date", | ||
"description": "YYYY-MM" | ||
"type": "date" | ||
}, | ||
{ | ||
"description": "Monthly mean temperature anomalies in degrees Celsius relative to a base period. GISTEMP base period: 1951-1980. GCAG base period: 20th century average.", | ||
"name": "Mean", | ||
"type": "number", | ||
"description": "Monthly mean temperature anomalies in degrees Celsius relative to a base period. GISTEMP base period: 1951-1980. GCAG base period: 20th century average." | ||
"type": "number" | ||
} | ||
] | ||
} | ||
} | ||
], | ||
"sources": [ | ||
{ | ||
"name": "GISTEMP Global Land-Ocean Temperature Index", | ||
"path": "http://data.giss.nasa.gov/gistemp", | ||
"title": "GISTEMP Global Land-Ocean Temperature Index" | ||
}, | ||
{ | ||
"name": "Global component of Climate at a Glance (GCAG)", | ||
"path": "http://www.ncdc.noaa.gov/cag/time-series/global", | ||
"title": "Global component of Climate at a Glance (GCAG)" | ||
} | ||
], | ||
"title": "Global Temperature Time Series", | ||
"version": "0.1.0", | ||
"views": [ | ||
{ | ||
"id": "graph", | ||
"label": "Graph", | ||
"type": "Graph", | ||
"state": { | ||
"name": "graph", | ||
"title": "Monthly mean temperature anomalies in degrees Celsius relative to a base period", | ||
"specType": "simple", | ||
"resources": ["annual", "monthly"], | ||
"spec": { | ||
"type": "column", | ||
"group": "Year", | ||
"series": [ | ||
"Mean" | ||
], | ||
"graphType": "columns" | ||
] | ||
} | ||
} | ||
], | ||
"related": [ | ||
{ | ||
"title": "Trends in Atmospheric Carbon Dioxide", | ||
"path": "/core/co2-ppm", | ||
"publisher": "core", | ||
"formats": ["CSV", "JSON"] | ||
}, | ||
{ | ||
"title": "CO2 Emissions from Fossil Fuels", | ||
"path": "/core/co2-fossil-by-nation", | ||
"publisher": "core", | ||
"formats": ["CSV", "JSON"] | ||
}, | ||
{ | ||
"title": "Sea level rise", | ||
"path": "/core/sea-level-rise", | ||
"publisher": "core", | ||
"formats": ["CSV", "JSON"] | ||
}, | ||
{ | ||
"title": "Glacier mass balance", | ||
"path": "/core/glacier-mass-balance", | ||
"publisher": "core", | ||
"formats": ["CSV", "JSON"] | ||
} | ||
] | ||
} |