sources
Data license: CC-BY
1 row where datasetId = 2848 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 |
---|---|---|---|---|---|---|---|---|
15582 | Surface ocean plastic by particle count - Eriksen et al. (2014) | { "link": "http://journals.plos.org/plosone/article?id=10.1371/journal.pone.0111913", "retrievedDate": null, "additionalInfo": "Estimates by Eriksen et al. (2014) on the number of plastic particles of surface ocean debris floating at sea, differentiated by ocean basin and particle size.\n\nParticle size categories range from small microplastics to macroplastics. \n\nEstimates are based on results from 24 expeditions (over the period 2007\u20132013) across all five sub-tropical gyres, costal Australia, Bay of Bengal and the Mediterranean Sea conducting surface net tows (N\u200a=\u200a680) and visual survey transects of large plastic debris (N\u200a=\u200a891). These field-based results were combined with oceanographic modelling of floating debris dispersal and wind-driven vertical mixing to derive total oceanic figures.", "dataPublishedBy": "Eriksen, M., Lebreton, L. C., Carson, H. S., Thiel, M., Moore, C. J., Borerro, J. C., ... & Reisser, J. (2014). Plastic pollution in the world's oceans: more than 5 trillion plastic pieces weighing over 250,000 tons afloat at sea. PloS one, 9(12), e111913.", "dataPublisherSource": null } |
2018-07-24 09:22:11 | 2018-07-24 09:22:11 | Surface ocean plastic by particle count - Eriksen et al. (2014) 2848 | Estimates by Eriksen et al. (2014) on the number of plastic particles of surface ocean debris floating at sea, differentiated by ocean basin and particle size. Particle size categories range from small microplastics to macroplastics. Estimates are based on results from 24 expeditions (over the period 2007–2013) across all five sub-tropical gyres, costal Australia, Bay of Bengal and the Mediterranean Sea conducting surface net tows (N = 680) and visual survey transects of large plastic debris (N = 891). These field-based results were combined with oceanographic modelling of floating debris dispersal and wind-driven vertical mixing to derive total oceanic figures. | http://journals.plos.org/plosone/article?id=10.1371/journal.pone.0111913 | Eriksen, M., Lebreton, L. C., Carson, H. S., Thiel, M., Moore, C. J., Borerro, J. C., ... & Reisser, J. (2014). Plastic pollution in the world's oceans: more than 5 trillion plastic pieces weighing over 250,000 tons afloat at sea. PloS one, 9(12), e111913. |
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");