sources
Data license: CC-BY
1 row where datasetId = 919 sorted by id descending
This data as json, CSV (advanced)
Suggested facets: createdAt (date), updatedAt (date)
id ▲ | name | description | createdAt | updatedAt | datasetId | additionalInfo | link | dataPublishedBy |
---|---|---|---|---|---|---|---|---|
6729 | Metal production - Clio Infra & USGS | { "link": "https://www.clio-infra.eu/ and https://minerals.usgs.gov/minerals/pubs/commodity/aluminum/ ", "retrievedDate": null, "additionalInfo": "Data on metal production is based on the combination of two sources.\r\n\r\nHistorical data from 1850-2011 is sourced from the ClioInfra database, available at: https://www.clio-infra.eu/ [accessed 9th September 2017].\r\n\r\nThis has been combined with recent data from the USGS Mineral Statistics from 2012 onwards. Available at: https://minerals.usgs.gov/minerals/pubs/commodity/aluminum/ [accessed 9th September 2017].\r\n\r\nBoth sources report primary production in thousand metric tonnes.\r\nNote: Gold production is measured in metric tons. ", "dataPublishedBy": "Metal production - Clio Infra & USGS", "dataPublisherSource": "Historical data, census data, and geological surveys" } |
2017-09-11 14:02:53 | 2017-12-30 13:22:33 | Metal production - Clio Infra & USGS 919 | Data on metal production is based on the combination of two sources. Historical data from 1850-2011 is sourced from the ClioInfra database, available at: https://www.clio-infra.eu/ [accessed 9th September 2017]. This has been combined with recent data from the USGS Mineral Statistics from 2012 onwards. Available at: https://minerals.usgs.gov/minerals/pubs/commodity/aluminum/ [accessed 9th September 2017]. Both sources report primary production in thousand metric tonnes. Note: Gold production is measured in metric tons. | https://www.clio-infra.eu/ and https://minerals.usgs.gov/minerals/pubs/commodity/aluminum/ | Metal production - Clio Infra & USGS |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE "sources" ( "id" INTEGER PRIMARY KEY AUTOINCREMENT, "name" VARCHAR(512) NULL , "description" TEXT NOT NULL , "createdAt" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP , "updatedAt" DATETIME NULL , "datasetId" INTEGER NULL, additionalInfo TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.additionalInfo')) VIRTUAL, link TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.link')) VIRTUAL, dataPublishedBy TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.dataPublishedBy')) VIRTUAL, FOREIGN KEY("datasetId") REFERENCES "datasets" ("id") ON UPDATE RESTRICT ON DELETE RESTRICT ); CREATE INDEX "sources_datasetId" ON "sources" ("datasetId");