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
Suppose, for a minute, that you were in charge of the global organization to preserve endangered species of rhinoceros, of which the two species most at risk of extinction are the Javan rhinoceros and the Sumatran rhinoceros.
Unfortunately, because there is a long list of other species preservation efforts that your fellow environmentalists prefer to support, your organization's resources for preserving these species are limited. So much so that dividing your limited resources between efforts to preserve both species simultaneously will not be sufficient to halt their respective declines in numbers. But, if you threw all your efforts behind preserving one of these species of rhinoceros, you might be able to make a critical difference in its future.
But which one should you choose?
The answer is you should choose to put your limited resources behind the species with the more viable population.
By that, we mean the species whose numbers have not diminished to the point where a random catastrophe, such as a hurricane or tsunami, would be capable of causing their extinction.
Choosing between the species then comes down to the numbers, the math for which has been worked out in a 2011 paper by Gopalasamy Reuben Clements, Corey J.A. Bradshaw, Barry W. Brook and William F. Laurance, describing the SAFE index, which uses a threshold population target to measure how threatened a species may be.
The Species' Ability to Forestall Extinction (SAFE) index measures the relative threat faced by various species, incorporating the best estimates of the species' total population within its known range and its Minimum Viable Population figure - the minimum population needed for it to last over the long term while sustaining its evolutionary potential, which perhaps might better be described as avoiding problems that come from excessive inbreeding within too small a population.
Our tool below is built using the math presented in the researchers' paper. The default data applies for the Sumatran rhinoceros:
Using this math, the researchers found that if a choice needs to be made between preserving the Javan rhinoceros or the Sumatran rhinoceros, the choice should be made in favor of the Sumatran rhinoceros, whose SAFE index score was -1.36 as compared to the Javan rhinoceros' lower score of -2.10.
Then again, to bring other species conservation efforts into the discussion, they find that "donors with limited resources may want to channel their conservation efforts toward the tiger, a species at the "tipping point", with a SAFE index of -0.21.
We found the SAFE index interesting because it appears to provide a better indication of a species' viability than the percentage of range loss measure that is often used to determine the relative threat of extinction to various species.
But what really sets it apart for us is that this method of prioritizing species recovery efforts would seem to also reflect the actual choices made by the combination of individuals, scientists, lawmakers and organizations seeking to preserve various species, which have consistently put more funding to work in support of preserving species that are only "threatened" as compared to those that are "endangered".
Perhaps that's because they implicitly recognize that this approach is the only one that provides any real chance for success. Because if success can be obtained for one threatened or endangered species, it can then free up limited resources to aid the recovery of other species as well as provide the real knowledge for how that goal might be achieved. It's the snowball effect for paying down debt applied to the problem of conservation.
That's something that upsets many environmental activists, who argue that people must sacrifice their interests in ever greater shares to achieve the activist's goals - whether they can reasonably be achieved or not. But then, since so many of these individuals have such different priorities from most people, it's probably better to stick with the current, imperfect system that has evolved over time, as it somehow seems to work.
Gopalasamy Reuben Clements, Corey JA Bradshaw, Barry W Brook, and William F Laurance. 2011. The SAFE index: using a threshold population target to measure relative species threat. Frontiers in Ecology and the Environment 9: 521–525. http://dx.doi.org/10.1890/100177. November 2011. [Note: Ungated version available.]
Restani, Marco and Marzluff, John M. Funding Extinction? Biological Needs and Political Realities in the Allocation of Resources to Endangered Species Recovery. Bioscience. Volume 52. No. 2. February 2002.
Labels: economics, environment, tool
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.