<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://thechange.wiki/index.php?action=history&amp;feed=atom&amp;title=File%3Aland-wild1.png</id>
	<title>File:land-wild1.png - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://thechange.wiki/index.php?action=history&amp;feed=atom&amp;title=File%3Aland-wild1.png"/>
	<link rel="alternate" type="text/html" href="https://thechange.wiki/index.php?title=File:land-wild1.png&amp;action=history"/>
	<updated>2026-06-17T14:38:10Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.41.0</generator>
	<entry>
		<id>https://thechange.wiki/index.php?title=File:land-wild1.png&amp;diff=319&amp;oldid=prev</id>
		<title>Elie: Elie uploaded File:land-wild1.png</title>
		<link rel="alternate" type="text/html" href="https://thechange.wiki/index.php?title=File:land-wild1.png&amp;diff=319&amp;oldid=prev"/>
		<updated>2022-08-30T13:34:59Z</updated>

		<summary type="html">&lt;p&gt;Elie uploaded &lt;a href=&quot;/File:land-wild1.png&quot; title=&quot;File:land-wild1.png&quot;&gt;File:land-wild1.png&lt;/a&gt;&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 09:34, 30 August 2022&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Elie</name></author>
	</entry>
	<entry>
		<id>https://thechange.wiki/index.php?title=File:land-wild1.png&amp;diff=318&amp;oldid=prev</id>
		<title>Elie: Created page with &quot;==Summary== Remaining natural habitats on Earth.  Includes: forest &amp; shrub (green), desert &amp; mountain (orange).  ==Methodology== Image generator code:  pop  &lt;&lt; data/population.data-float64-8640x4320 # population counts  crop &lt;&lt; data/cropland.data-float32-4320x2160   # cropland fraction of land  past &lt;&lt; data/pasture.data-float32-4320x2160    # pasture fraction of land  lw   &lt;&lt; data/land_water.png                    # land=0, water=1  earth&lt;&lt; data/blu...&quot;</title>
		<link rel="alternate" type="text/html" href="https://thechange.wiki/index.php?title=File:land-wild1.png&amp;diff=318&amp;oldid=prev"/>
		<updated>2022-08-30T13:33:49Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;==Summary== Remaining natural habitats on Earth.  Includes: forest &amp;amp; shrub (green), desert &amp;amp; mountain (orange).  ==Methodology== &lt;a href=&quot;/Code:isochromic.c&quot; title=&quot;Code:isochromic.c&quot;&gt;Image generator&lt;/a&gt; code:  pop  &amp;lt;&amp;lt; data/population.data-float64-8640x4320 # population counts  crop &amp;lt;&amp;lt; data/cropland.data-float32-4320x2160   # cropland fraction of land  past &amp;lt;&amp;lt; data/pasture.data-float32-4320x2160    # pasture fraction of land  lw   &amp;lt;&amp;lt; data/land_water.png                    # land=0, water=1  earth&amp;lt;&amp;lt; data/blu...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==Summary==&lt;br /&gt;
Remaining natural habitats on Earth.&lt;br /&gt;
&lt;br /&gt;
Includes: forest &amp;amp; shrub (green), desert &amp;amp; mountain (orange).&lt;br /&gt;
&lt;br /&gt;
==Methodology==&lt;br /&gt;
[[Code:isochromic.c|Image generator]] code:&lt;br /&gt;
 pop  &amp;lt;&amp;lt; data/population.data-float64-8640x4320 # population counts&lt;br /&gt;
 crop &amp;lt;&amp;lt; data/cropland.data-float32-4320x2160   # cropland fraction of land&lt;br /&gt;
 past &amp;lt;&amp;lt; data/pasture.data-float32-4320x2160    # pasture fraction of land&lt;br /&gt;
 lw   &amp;lt;&amp;lt; data/land_water.png                    # land=0, water=1&lt;br /&gt;
 earth&amp;lt;&amp;lt; data/blue-marble-posterized.png        # base layer 1600x800&lt;br /&gt;
 &lt;br /&gt;
 # convert the data&lt;br /&gt;
 pop @@ quantity_to_density # convert to 'people per km^2'&lt;br /&gt;
 pop /= 2500                # threshold for land to be [[land/built-up|considered 'fully built-up']]&lt;br /&gt;
 pop &amp;lt;= 4 # helps remove image scaling artifacts&lt;br /&gt;
 pop :: earth.r&lt;br /&gt;
 pop &amp;gt;= 0 # helps remove image scaling artifacts&lt;br /&gt;
 crop &amp;gt;= 0&lt;br /&gt;
 crop :: earth.r&lt;br /&gt;
 past &amp;gt;= 0&lt;br /&gt;
 past :: earth.r&lt;br /&gt;
 lw *= 0.9&lt;br /&gt;
 lw :: earth.r&lt;br /&gt;
 earth.g *= 0.5&lt;br /&gt;
 &lt;br /&gt;
 # apply data to base layer&lt;br /&gt;
 earth.r += lw&lt;br /&gt;
 earth.r += crop&lt;br /&gt;
 earth.r += past&lt;br /&gt;
 earth.r += pop&lt;br /&gt;
 earth.r @@ 01&lt;br /&gt;
 earth.g += lw&lt;br /&gt;
 earth.g += crop&lt;br /&gt;
 earth.g += past&lt;br /&gt;
 earth.g += pop&lt;br /&gt;
 earth.g @@ 01&lt;br /&gt;
 earth.b += lw&lt;br /&gt;
 earth.b += crop&lt;br /&gt;
 earth.b += past&lt;br /&gt;
 earth.b += pop&lt;br /&gt;
 earth.b @@ 01&lt;br /&gt;
 earth &amp;gt;&amp;gt; data/land-wild1.png&lt;br /&gt;
&lt;br /&gt;
Legend: &amp;quot;Remaining natural habitats on Earth (wild land in green &amp;amp; orange)  Read more: &amp;lt;nowiki&amp;gt;https://olam.wiki/Land&amp;lt;/nowiki&amp;gt;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[:File:land-crop1.png]] - crop land&lt;br /&gt;
* [[:File:land-pasture1.png]] - pasture&lt;br /&gt;
* [[:File:land-builtup1.png]] - built-up land&lt;br /&gt;
* [[:File:land-usage1.png]] - all land uses&lt;/div&gt;</summary>
		<author><name>Elie</name></author>
	</entry>
</feed>