<?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-usage1.png</id>
	<title>File:land-usage1.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-usage1.png"/>
	<link rel="alternate" type="text/html" href="https://thechange.wiki/index.php?title=File:land-usage1.png&amp;action=history"/>
	<updated>2026-04-27T22:26:06Z</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-usage1.png&amp;diff=320&amp;oldid=prev</id>
		<title>Elie: Elie uploaded File:land-usage1.png</title>
		<link rel="alternate" type="text/html" href="https://thechange.wiki/index.php?title=File:land-usage1.png&amp;diff=320&amp;oldid=prev"/>
		<updated>2022-08-30T13:35:05Z</updated>

		<summary type="html">&lt;p&gt;Elie uploaded &lt;a href=&quot;/File:land-usage1.png&quot; title=&quot;File:land-usage1.png&quot;&gt;File:land-usage1.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:35, 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-usage1.png&amp;diff=317&amp;oldid=prev</id>
		<title>Elie: Created page with &quot;==Summary==  Black is farm land. Magenta is built-up land (housing etc) (which is hard to see except in China &amp; India). The rest could perhaps be considered &quot;untouched&quot; natural land.  ==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  earth&lt;&lt; dat...&quot;</title>
		<link rel="alternate" type="text/html" href="https://thechange.wiki/index.php?title=File:land-usage1.png&amp;diff=317&amp;oldid=prev"/>
		<updated>2022-08-30T13:30:10Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;==Summary==  Black is farm land. Magenta is built-up land (housing etc) (which is hard to see except in China &amp;amp; India). The rest could perhaps be considered &amp;quot;untouched&amp;quot; natural land.  ==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  earth&amp;lt;&amp;lt; dat...&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;
&lt;br /&gt;
Black is farm land.&lt;br /&gt;
Magenta is built-up land (housing etc) (which is hard to see except in China &amp;amp; India).&lt;br /&gt;
The rest could perhaps be considered &amp;quot;untouched&amp;quot; natural land.&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;
 earth&amp;lt;&amp;lt; data/blue-marble-posterized.png        # base layer&lt;br /&gt;
 &lt;br /&gt;
 pop @@ quantity_to_density&lt;br /&gt;
 pop :: earth.r&lt;br /&gt;
 pop -= 400 # hard threshold (people per km^2) for land to be marked as 'built-up'&lt;br /&gt;
 pop @@ 01&lt;br /&gt;
 crop &amp;gt;= 0&lt;br /&gt;
 crop @@ neg&lt;br /&gt;
 crop :: earth.r&lt;br /&gt;
 past &amp;gt;= 0&lt;br /&gt;
 past @@ neg&lt;br /&gt;
 past :: earth.r&lt;br /&gt;
 &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 *= crop&lt;br /&gt;
 earth.g *= past&lt;br /&gt;
 earth.g -= pop&lt;br /&gt;
 earth.g @@ 01&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-usage1.png&lt;br /&gt;
&lt;br /&gt;
Note: we are using population density as a ''best guess'' for determining which land is ''built-up''. In theory that might not be perfectly accurate, but in practice, the end result is matches ''well enough'' with totals from other data sources.&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-wild1.png]] - untouched lands&lt;/div&gt;</summary>
		<author><name>Elie</name></author>
	</entry>
</feed>