sources
Data license: CC-BY
1 row where datasetId = 3206 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 |
---|---|---|---|---|---|---|---|---|
16710 | Nemet (2006); Nagy et al. (2013) | { "link": "https://www.sciencedirect.com/science/article/pii/S0301421505001795; https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0052669", "dataPublishedBy": "Gregory F. Nemet (2006). \u2018Beyond the Learning Curve: Factors Influencing Cost Reductions in Photovoltaics\u2019. Energy Policy 34 (17): pp. 3218\u201332; B\u00e9la, J. Nagy, Doyne Farmer, Quan M. Bui, and Jessika E. Trancik (2013). \u2018Statistical Basis for Predicting Technological Progress\u2019. PLoS ONE 8 (2). Public Library of Science (PLoS)." } |
2019-02-03 09:19:01 | 2019-02-03 09:19:01 | TE-20.19a 3206 | https://www.sciencedirect.com/science/article/pii/S0301421505001795; https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0052669 | Gregory F. Nemet (2006). ‘Beyond the Learning Curve: Factors Influencing Cost Reductions in Photovoltaics’. Energy Policy 34 (17): pp. 3218–32; Béla, J. Nagy, Doyne Farmer, Quan M. Bui, and Jessika E. Trancik (2013). ‘Statistical Basis for Predicting Technological Progress’. PLoS ONE 8 (2). Public Library of Science (PLoS). |
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");