forked from mapschool/mapschool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsection-the-shape-of-the-earth.html
60 lines (58 loc) · 4.16 KB
/
section-the-shape-of-the-earth.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>map school: The Shape of the Earth: a free introduction to geo</title>
<link rel='stylesheet' type='text/css' href='css/site.css' />
<meta http-equiv='content-type' content='text/html; charset=utf-8' />
<meta name='viewport' content='initial-scale=1.0 maximum-scale=1.0'>
<meta name="description" content='a brief introduction to map and geospatial concepts'>
<link rel="shortcut icon" href="img/library-24.png">
</head>
<body>
<div class='header'>
<h1><a href='./'>map school: The Shape of the Earth</a></h1>
<p>a free introduction to geo.</p>
<nav>
<a href='https://github.com/tmcw/mapschool'>code</a><a
href='https://tmcw.wufoo.com/forms/mapschool-feedback/'>feedback</a><a
href='https://raw.github.com/tmcw/mapschool/gh-pages/mapschool.epub'>ebook</a>
</nav>
</div>
<div class='wrap'>
<div class='content'>
<p><img src="img/earth-shapes.jpg" alt=""></p>
<p>Storing and presenting the world brings us to the question of what shape it is - can latitude and longitude values be mapped to a perfect sphere and back, and retain their accuracy spatially?</p>
<p>Since the earth is a spinning object and its components can change shape, it bulges at the middle - so instead of being a sphere, it's actually more similar in shape to a <a href="http://en.wikipedia.org/wiki/Oblate_spheroid">oblate spheroid</a>. If you look even closer, that isn't entirely true either - the earth is covered in <a href="http://en.wikipedia.org/wiki/Topography">elevation differences</a> like mountains and valleys, and even manmade changes like cities.</p>
<p>For day-to-day work, we use different estimates of this shape: standards like <a href="http://en.wikipedia.org/wiki/WGS84">WGS84</a> define precise values for the length of both of the earth's axes, so we can estimate for a <a href="http://en.wikipedia.org/wiki/Reference_ellipsoid">reference ellipsoid</a> rather than a sphere. Local measurements and science that relies on precise surface values can also use <a href="https://en.wikipedia.org/wiki/Geoid">geoid models</a>, which are three-dimensional calculations of theoretical ocean heights.</p>
<p>This branch of earth sciences, called <a href="https://en.wikipedia.org/wiki/Geodesy">geodesy</a>, is a continuing project since our ability to model and measure the earth moves quickly and the earth itself changes in shape.</p>
<div id="disqus_thread"></div>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = 'mapschool'; // required: replace example with your forum shortname
/* * * DON'T EDIT BELOW THIS LINE * * */
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
<a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a>
</div>
</div>
<script type="text/javascript">
var _gauges = _gauges || [];
(function() {
var t = document.createElement('script');
t.type = 'text/javascript';
t.async = true;
t.id = 'gauges-tracker';
t.setAttribute('data-site-id', '528a6fcff5a1f56dc400009f');
t.src = '//secure.gaug.es/track.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(t, s);
})();
</script>
</body>
</html>