sources
Data license: CC-BY
1 row where datasetId = 5329 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 |
---|---|---|---|---|---|---|---|---|
18049 | CBS, PBL, RIVM, WUR (2021). Central Bureau of Statistics (CBS); PBL Netherlands Environmental Assessment Agency. | { "link": "https://www.clo.nl/indicatoren/nl1386-dagvlinders", "additionalInfo": "Population data measures the number of butterflies counted at fixed measuring points in the Netherlands. This is presented as an index across 50 tracked butterfly species.\n\nDistribution data measures the number of square kilometers occupied by butterflies. This is presented as an index across 49 tracked butterfly species.", "dataPublishedBy": "CBS, PBL, RIVM, WUR (2021). Trend of butterflies, 1992-2020 (indicator 1386, version 18 , June 7, 2021 ). www.clo.nl. Central Bureau of Statistics (CBS), The Hague; PBL Netherlands Environmental Assessment Agency, The Hague; RIVM National Institute for Public Health and the Environment, Bilthoven; and Wageningen University and Research, Wageningen." } |
2021-06-19 20:07:29 | 2021-06-19 20:07:29 | Butterfly population and distribution in Netherlands 5329 | Population data measures the number of butterflies counted at fixed measuring points in the Netherlands. This is presented as an index across 50 tracked butterfly species. Distribution data measures the number of square kilometers occupied by butterflies. This is presented as an index across 49 tracked butterfly species. | https://www.clo.nl/indicatoren/nl1386-dagvlinders | CBS, PBL, RIVM, WUR (2021). Trend of butterflies, 1992-2020 (indicator 1386, version 18 , June 7, 2021 ). www.clo.nl. Central Bureau of Statistics (CBS), The Hague; PBL Netherlands Environmental Assessment Agency, The Hague; RIVM National Institute for Public Health and the Environment, Bilthoven; and Wageningen University and Research, Wageningen. |
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");