sources
Data license: CC-BY
1 row where datasetId = 4911 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 |
---|---|---|---|---|---|---|---|---|
17642 | OWID based on Kenny & Patel (2017) and Carroll & Mendos (2017) | { "link": "https://pdfs.semanticscholar.org/be60/6ecaf2d8b0e68f0263f415bc835a91d4b453.pdf", "retrievedDate": "24 January 2020", "additionalInfo": "Data based on Figure 2 in <em>Kenny, C., & Patel, D. (2017). Norms and Reform: Legalizing Homosexuality Improves Attitudes. Center for Global Development Working Paper, (465).</em>\n\nData originally collected by <em>Carroll, A. and Mendos, L. R. (2017). State-sponsored homophobia: A world survey of sexual orientation laws criminalisation, protection and recognition. International Lesbian, Gay, Bisexual, Trans and Intersex Association, 12.</em>\n\nWe updated the classification for those countries where same-sex sexual activity was decriminalized in 2018 and 2019, namely: Angola (2019), Botswana (2019), Micronesia (2018), India (2018) and Trinidad & Tobago (2018).", "dataPublishedBy": "Kenny, C., & Patel, D. (2017). Norms and Reform: Legalizing Homosexuality Improves Attitudes. Center for Global Development Working Paper, (465).", "dataPublisherSource": "Carroll, A. & Mendos, L. R. (2017). State-sponsored homophobia: A world survey of sexual orientation laws criminalisation, protection and recognition. International Lesbian, Gay, Bisexual, Trans and Intersex Association, 12." } |
2020-01-28 11:01:16 | 2023-06-15 08:56:44 | Countries in which same-sex sexual acts are legal – OWID based on Kenny & Patel (2017) and Carroll & Mendos (2017) 4911 | Data based on Figure 2 in <em>Kenny, C., & Patel, D. (2017). Norms and Reform: Legalizing Homosexuality Improves Attitudes. Center for Global Development Working Paper, (465).</em> Data originally collected by <em>Carroll, A. and Mendos, L. R. (2017). State-sponsored homophobia: A world survey of sexual orientation laws criminalisation, protection and recognition. International Lesbian, Gay, Bisexual, Trans and Intersex Association, 12.</em> We updated the classification for those countries where same-sex sexual activity was decriminalized in 2018 and 2019, namely: Angola (2019), Botswana (2019), Micronesia (2018), India (2018) and Trinidad & Tobago (2018). | https://pdfs.semanticscholar.org/be60/6ecaf2d8b0e68f0263f415bc835a91d4b453.pdf | Kenny, C., & Patel, D. (2017). Norms and Reform: Legalizing Homosexuality Improves Attitudes. Center for Global Development Working Paper, (465). |
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");