to your HTML Add class="sortable" to any table you'd like to make sortable Click on the headers to sort Thanks to many, many people for contributions and suggestions. Licenced as X11: http://www.kryogenix.org/code/browser/licence.html This basically means: do what you want with it. */ var stIsIE = /*@cc_on!@*/false; sorttable = { init: function() { // quit if this function has already been called if (arguments.callee.done) return; // flag this function so we don't do the same thing twice arguments.callee.done = true; // kill the timer if (_timer) clearInterval(_timer); if (!document.createElement || !document.getElementsByTagName) return; sorttable.DATE_RE = /^(\d\d?)[\/\.-](\d\d?)[\/\.-]((\d\d)?\d\d)$/; forEach(document.getElementsByTagName('table'), function(table) { if (table.className.search(/\bsortable\b/) != -1) { sorttable.makeSortable(table); } }); }, makeSortable: function(table) { if (table.getElementsByTagName('thead').length == 0) { // table doesn't have a tHead. Since it should have, create one and // put the first table row in it. the = document.createElement('thead'); the.appendChild(table.rows[0]); table.insertBefore(the,table.firstChild); } // Safari doesn't support table.tHead, sigh if (table.tHead == null) table.tHead = table.getElementsByTagName('thead')[0]; if (table.tHead.rows.length != 1) return; // can't cope with two header rows // Sorttable v1 put rows with a class of "sortbottom" at the bottom (as // "total" rows, for example). This is B&R, since what you're supposed // to do is put them in a tfoot. So, if there are sortbottom rows, // for backwards compatibility, move them to tfoot (creating it if needed). sortbottomrows = []; for (var i=0; i
Six Earth months, or rather, one Martian quarter has passed, which means it is time once again to estimate the red planet's gross domestic product!
As the Martian economy completes the third quarter for which we've estimated its planetary GDP, we find it is humming along after having run into a rough patch during the previous Martian quarter. Starting from Earthdate 7 July 2022, robotic mining operations have proceeded without significant technical interruption and the Perseverence rover has resumed collecting rock core samples. This activity followed nearly four Earth months with no sample collection when the rover traveled from the Octavia E. Butler Landing/Ch’ał outcrop where it drilled its previous core sample to the sample-rich geology of the Delta Front within the Jezero Crater.
The rover drilled nine samples during the Martian third quarter, with the samples placed into inventory pending their planned export to Earth. With a total of seventeen samples, we now have the following revised GDP estimates for Mars' first and second Martian quarters and an initial estimate for the third Martian quarter:
Martian GDP Estimates (Constant 2021 U.S. Dollars) | |||
---|---|---|---|
Martian Quarter | First Quarter | Second Quarter | Third Quarter |
Approximate Earthdates | 12 Jul 2021 - 31 Dec 2021 | 1 Jan 2022 - 21 Jun 2022 | 22 Jun 2022 - 11 Dec 2022 |
Estimated GDP | $494,430 ($110,780 - $878,080) |
$296,658 ($66,468 - $526,848) |
$889,974 ($199,404 - $1,580,544) |
Revision Level | Third | Second | Initial |
We estimate Mars' GDP tripled its previous quarter's revised GDP total during the planet's third quarter, falling just shy of $900,000 in terms of constant 2021 U.S. dollars. At present, we're valuing the two regolith samples collected by the Perseverance rover the same as the seven rock core samples it collected during the Martian third quarter in the absence of better valuation data for it. We're also assigning a minimal value to the Martian atmospheric sample the rover collected and stored during the Martian first quarter (in August 2021), given the very low density of the Martian atmosphere and the low premium of $50/gram given to Martian meteorites on Earth determined to have trapped atmospheric content within them.
Looking ahead to Mars' future export economy, NASA and the European Space Agency reached an agreement to establish a sample transfer depot at the Three Forks location within Mars' Jezero Crater. The Perseverence Rover will cache its full inventory of rock and atmospheric samples at the Three Forks Depot before their future export.
Unfortunately, the government space agencies have pushed back their planned export operations, with deliveries to Earth now delayed from 2030 to 2033. They've also changed their plans for how the samples will be recovered before their transportation to Earth:
... the Mars Sample Return campaign will no longer include the Sample Fetch Rover or its associated second lander. The Sample Retrieval Lander will include two sample recovery helicopters, based on the design of the Ingenuity helicopter, which has performed 29 flights at Mars and survived over a year beyond its original planned lifetime. The helicopters will provide a secondary capability to retrieve samples cached on the surface of Mars.
The ESA Earth Return Orbiter and its NASA-provided Capture, Containment, and Return System remain vital elements of the program architecture.
With planned launch dates for the Earth Return Orbiter and Sample Retrieval Lander in fall 2027 and summer 2028, respectively, the samples are expected to arrive on Earth in 2033.
The following three-minute video describes the final stage for how the samples will be delivered to Earth during the final stage of their transport.
Labels: economics, ideas, technology
Welcome to the blogosphere's toolchest! Here, unlike other blogs dedicated to analyzing current events, we create easy-to-use, simple tools to do the math related to them so you can get in on the action too! If you would like to learn more about these tools, or if you would like to contribute ideas to develop for this blog, please e-mail us at:
ironman at politicalcalculations
Thanks in advance!
Closing values for previous trading day.
This site is primarily powered by:
The tools on this site are built using JavaScript. If you would like to learn more, one of the best free resources on the web is available at W3Schools.com.