sources
Data license: CC-BY
1 row where datasetId = 3096 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 |
---|---|---|---|---|---|---|---|---|
16231 | Biomass and taxa abundance (Bar-On et al. 2018) | { "link": "http://www.pnas.org/content/115/25/6506", "retrievedDate": "16th November 2018", "additionalInfo": "Estimates of the global biomass (measured in tonnes of carbon) and abundance (number of individuals) of different taxonomic groups.\n\nDue to large uncertainty for some groups, these are used as order-of-magnitude estimates and come with notable error margins.", "dataPublishedBy": "Bar-On, Y. M., Phillips, R., & Milo, R. (2018). The biomass distribution on Earth. Proceedings of the National Academy of Sciences, 201711842." } |
2018-11-16 20:49:36 | 2018-11-16 20:49:36 | Biomass and taxa abundance (Bar-On et al. 2018) 3096 | Estimates of the global biomass (measured in tonnes of carbon) and abundance (number of individuals) of different taxonomic groups. Due to large uncertainty for some groups, these are used as order-of-magnitude estimates and come with notable error margins. | http://www.pnas.org/content/115/25/6506 | Bar-On, Y. M., Phillips, R., & Milo, R. (2018). The biomass distribution on Earth. Proceedings of the National Academy of Sciences, 201711842. |
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");