sources
Data license: CC-BY
1 row where datasetId = 5289 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 |
---|---|---|---|---|---|---|---|---|
18011 | Ledger, S.E.H., Rutherford, C.A., Benham, C., Burfield, I.J., Deinet, S., Eaton, M., Freeman, R., Gray, C., Herrando, S., Scott-Gatty, K., Staneva, A. and McRae, L., (2022) Wildlife Comeback in Europe: Opportunities and challenges for species recovery. | { "link": "https://www.rewildingeurope.com/wp-content/uploads/publications/wildlife-comeback-in-europe-2022/index.html", "retrievedDate": "12th December 2022", "additionalInfo": "This dataset is taken from Figure 13 on page 249 of the Wildlife Comeback in Europe report (2022).", "dataPublishedBy": "Ledger, S.E.H, Rutherford, C.A, Benham, C., Burfield, I.J., Deinet, S., Eaton, M., Freeman, R., Gray, C., Herrando, S., Scott-Gatty, K., Staneva, A and McRae, L., (2022) Wildlife Comeback in Europe: Opportunities and challenges for species recovery." } |
2021-03-27 21:03:18 | 2021-03-27 21:03:18 | Drivers of recovery in European bird species (ZSL, 2022) 5289 | This dataset is taken from Figure 13 on page 249 of the Wildlife Comeback in Europe report (2022). | https://www.rewildingeurope.com/wp-content/uploads/publications/wildlife-comeback-in-europe-2022/index.html | Ledger, S.E.H, Rutherford, C.A, Benham, C., Burfield, I.J., Deinet, S., Eaton, M., Freeman, R., Gray, C., Herrando, S., Scott-Gatty, K., Staneva, A and McRae, L., (2022) Wildlife Comeback in Europe: Opportunities and challenges for species recovery. |
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");