sources
Data license: CC-BY
1 row where datasetId = 2723 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 |
---|---|---|---|---|---|---|---|---|
15456 | Ozone hole area and concentration - NASA | { "link": "http://ozonewatch.gsfc.nasa.gov/meteorology/annual_data.html", "retrievedDate": "3rd March 2021", "additionalInfo": "Annual maximum and Antarctic stratospheric ozone hole area, resultant from the emission of ozone-depleting substances.\n\nMinimum and mean Southern Hemisphere daily ozone concentrations, measured in Dobson Units (DU).", "dataPublishedBy": "NASA Ozone Hole Watch", "dataPublisherSource": null } |
2018-04-05 15:04:03 | 2018-04-06 05:19:20 | Ozone hole area and concentration - NASA 2723 | Annual maximum and Antarctic stratospheric ozone hole area, resultant from the emission of ozone-depleting substances. Minimum and mean Southern Hemisphere daily ozone concentrations, measured in Dobson Units (DU). | http://ozonewatch.gsfc.nasa.gov/meteorology/annual_data.html | NASA Ozone Hole Watch |
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");