sources
Data license: CC-BY
1 row where datasetId = 5853 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 |
---|---|---|---|---|---|---|---|---|
27250 | Gravitational Wave Open Science Center (2023) | { "link": "https://www.gw-openscience.org/eventapi/html/GWTC/", "retrievedDate": "2023-01-05", "additionalInfo": "\"The Gravitational Wave Open Science Center (GWOSC) provides public access to gravitational-wave data. This data is collected by LIGO, Virgo, GEO600, and KAGRA, which are all large-scale physics experiments designed and constructed to observe gravitational waves.\n\nThe GWTC (Gravitational Wave Transient Catalog) is a cumulative set of gravitational wave transients maintained by GWOSC. It contains confidently-detected gravitational wave observations.\n\nThe sources notes that this catalog is only updated periodically, and may not contain recently-published events.\"", "dataPublishedBy": "Gravitational Wave Open Science Center (2023)", "dataPublisherSource": null } |
2023-01-06 13:50:26 | 2023-01-06 13:50:26 | DRAFT Gravitational wave transients (GWOSC) 5853 | "The Gravitational Wave Open Science Center (GWOSC) provides public access to gravitational-wave data. This data is collected by LIGO, Virgo, GEO600, and KAGRA, which are all large-scale physics experiments designed and constructed to observe gravitational waves. The GWTC (Gravitational Wave Transient Catalog) is a cumulative set of gravitational wave transients maintained by GWOSC. It contains confidently-detected gravitational wave observations. The sources notes that this catalog is only updated periodically, and may not contain recently-published events." | https://www.gw-openscience.org/eventapi/html/GWTC/ | Gravitational Wave Open Science Center (2023) |
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");