sources
Data license: CC-BY
1 row where datasetId = 5639 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 |
---|---|---|---|---|---|---|---|---|
22702 | CSIS Aerospace Security Project (2022) | { "link": "https://aerospace.csis.org/data/space-launch-to-low-earth-orbit-how-much-does-it-cost/", "retrievedDate": "9 June 2022", "additionalInfo": "This dataset published by the Center for Strategic and International Studies compares costs between space launch vehicles by incorporating many vehicle characteristics into a single figure: the cost to launch one kilogram of payload mass to low Earth orbit (LEO) as part of a dedicated launch. \n\nMany of the cited sources directly provide cost-per-kilogram estimates for launches to LEO. Others require a simple calculation: dividing the total cost of a dedicated launch by the vehicle\u2019s payload capacity to LEO. In those cases, the reported cost-per-kilogram figure is calculated by the median total launch cost and the maximum payload capacity.\n\nLaunch costs \u201cinclude all direct and indirect manufacturing costs and their associated overhead plus recurring engineering, sustaining tooling, and quality control.\u201d\n\nCost estimates are inflated by the source to their dollar values in the fiscal year 2021.\n\nAlthough space launch vehicles are often described by their payload mass class\u2014most often \u201cSmall,\u201d \u201cMedium,\u201d and \u201cHeavy\u201d\u2014there is no universally accepted definition for the boundaries between these classes. In this dataset, small-lift vehicles carry up to 2,000 kg to LEO, medium-lift vehicles carry between 2,000 and 20,000 kg to LEO, and heavy-lift vehicles carry more than 20,000 kg to LEO. \n\nFor more information on the definitions and methods used to collect this data, please visit the <a href=\"https://aerospace.csis.org/data/space-launch-to-low-earth-orbit-how-much-does-it-cost/\">website of the Center for Strategic and International Studies</a>.", "dataPublishedBy": "CSIS Aerospace Security Project" } |
2022-06-09 16:08:31 | 2022-06-09 16:08:31 | CSIS - Cost of space launches 5639 | This dataset published by the Center for Strategic and International Studies compares costs between space launch vehicles by incorporating many vehicle characteristics into a single figure: the cost to launch one kilogram of payload mass to low Earth orbit (LEO) as part of a dedicated launch. Many of the cited sources directly provide cost-per-kilogram estimates for launches to LEO. Others require a simple calculation: dividing the total cost of a dedicated launch by the vehicle’s payload capacity to LEO. In those cases, the reported cost-per-kilogram figure is calculated by the median total launch cost and the maximum payload capacity. Launch costs “include all direct and indirect manufacturing costs and their associated overhead plus recurring engineering, sustaining tooling, and quality control.” Cost estimates are inflated by the source to their dollar values in the fiscal year 2021. Although space launch vehicles are often described by their payload mass class—most often “Small,” “Medium,” and “Heavy”—there is no universally accepted definition for the boundaries between these classes. In this dataset, small-lift vehicles carry up to 2,000 kg to LEO, medium-lift vehicles carry between 2,000 and 20,000 kg to LEO, and heavy-lift vehicles carry more than 20,000 kg to LEO. For more information on the definitions and methods used to collect this data, please visit the <a href="https://aerospace.csis.org/data/space-launch-to-low-earth-orbit-how-much-does-it-cost/">website of the Center for Strategic and International Studies</a>. | https://aerospace.csis.org/data/space-launch-to-low-earth-orbit-how-much-does-it-cost/ | CSIS Aerospace Security Project |
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");