sources
Data license: CC-BY
1 row where datasetId = 4190 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 |
---|---|---|---|---|---|---|---|---|
17018 | Rhino poaching rates (AfRSG, 2022) | { "link": "http://www.rhinoresourcecenter.com/pdf_files/156/1560170144.pdf and https://cites.org/sites/default/files/documents/E-CoP19-75.pdf", "retrievedDate": "14th December 2022", "additionalInfo": "Estimates of rhino poaching numbers and rates are collected and published periodically by the African and Asian Rhino Specialist Groups and TRAFFIC groups.\n\nData on the number of rhinos poached is annual, where available. Rhino horn seizures data is the total over the period from 2009 to September 2018.\n\nThe majority of figures on number of rhinos poached, and seizures are sourced from:\n\nEmslie, R.H. et al., 2019. African and Asian rhinoceroses - status, conservation and trade. A report from the IUCN Species Survival Commission (IUCN/SSC) African and Asian Rhino Specialist Groups and TRAFFIC to the CITES Secretariat pursuant to Resolution Conf. 9.14 (Rev. CoP17). Report to CITES 17th meeting (Colombo, June 2019), CoP 18 Doc.83.1 annex 3: 1-38. Available at: http://www.rhinoresourcecenter.com/pdf_files/156/1560170144.pdf.\n\nThis was supplemented, where suitable, by statistics from: http://www.poachingfacts.com/poaching-statistics/rhino-poaching-statistics/.", "dataPublishedBy": "IUCN Species Survival Commission (IUCN SSC) African and Asian Rhino Specialist Groups and TRAFFIC" } |
2019-08-16 10:15:16 | 2019-08-16 10:15:16 | Rhino poaching rates (AfRSG, 2019) 4190 | Estimates of rhino poaching numbers and rates are collected and published periodically by the African and Asian Rhino Specialist Groups and TRAFFIC groups. Data on the number of rhinos poached is annual, where available. Rhino horn seizures data is the total over the period from 2009 to September 2018. The majority of figures on number of rhinos poached, and seizures are sourced from: Emslie, R.H. et al., 2019. African and Asian rhinoceroses - status, conservation and trade. A report from the IUCN Species Survival Commission (IUCN/SSC) African and Asian Rhino Specialist Groups and TRAFFIC to the CITES Secretariat pursuant to Resolution Conf. 9.14 (Rev. CoP17). Report to CITES 17th meeting (Colombo, June 2019), CoP 18 Doc.83.1 annex 3: 1-38. Available at: http://www.rhinoresourcecenter.com/pdf_files/156/1560170144.pdf. This was supplemented, where suitable, by statistics from: http://www.poachingfacts.com/poaching-statistics/rhino-poaching-statistics/. | http://www.rhinoresourcecenter.com/pdf_files/156/1560170144.pdf and https://cites.org/sites/default/files/documents/E-CoP19-75.pdf | IUCN Species Survival Commission (IUCN SSC) African and Asian Rhino Specialist Groups and TRAFFIC |
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");