sources
Data license: CC-BY
1 row where datasetId = 5383 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 |
---|---|---|---|---|---|---|---|---|
20627 | Amoroso et al. (2018). Bottom trawl fishing footprints on the world’s continental shelves. PNAS. | { "link": "https://www.pnas.org/content/115/43/e10275", "additionalInfo": "Amoroso et al. (2018) map the extent of bottom trawling \u2013 a method used to catch fish and crustaceans at or on the seabed across world regions.\n\nThis metric measures the share of the seabed on continental shelves \u2013 to a depth of 1000m \u2013 that experienced at least one trawling pass over a 3 to 4 year period.", "dataPublishedBy": "Amoroso, R. O., Pitcher, C. R., Rijnsdorp, A. D., McConnaughey, R. A., Parma, A. M., Suuronen, P., ... & Jennings, S. (2018). Bottom trawl fishing footprints on the world\u2019s continental shelves. Proceedings of the National Academy of Sciences, 115(43), E10275-E10282." } |
2021-09-24 10:06:30 | 2021-09-24 10:06:30 | Trawling by region (Amoroso et al. 2018) 5383 | Amoroso et al. (2018) map the extent of bottom trawling – a method used to catch fish and crustaceans at or on the seabed across world regions. This metric measures the share of the seabed on continental shelves – to a depth of 1000m – that experienced at least one trawling pass over a 3 to 4 year period. | https://www.pnas.org/content/115/43/e10275 | Amoroso, R. O., Pitcher, C. R., Rijnsdorp, A. D., McConnaughey, R. A., Parma, A. M., Suuronen, P., ... & Jennings, S. (2018). Bottom trawl fishing footprints on the world’s continental shelves. Proceedings of the National Academy of Sciences, 115(43), E10275-E10282. |
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");