This file is indexed.

/usr/share/doc/python-mpltoolkits.basemap-doc/html/users/mapsetup.html is in python-mpltoolkits.basemap-doc 1.0.7+dfsg-4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">


<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    
    <title>Setting up the map &mdash; Basemap Matplotlib Toolkit 1.0.7 documentation</title>
    
    <link rel="stylesheet" href="../_static/alabaster.css" type="text/css" />
    <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
    
    <script type="text/javascript">
      var DOCUMENTATION_OPTIONS = {
        URL_ROOT:    '../',
        VERSION:     '1.0.7',
        COLLAPSE_INDEX: false,
        FILE_SUFFIX: '.html',
        HAS_SOURCE:  true
      };
    </script>
    <script type="text/javascript" src="../_static/jquery.js"></script>
    <script type="text/javascript" src="../_static/underscore.js"></script>
    <script type="text/javascript" src="../_static/doctools.js"></script>
    <link rel="search" type="application/opensearchdescription+xml"
          title="Search within Basemap Matplotlib Toolkit 1.0.7 documentation"
          href="../_static/opensearch.xml"/>
    <link rel="top" title="Basemap Matplotlib Toolkit 1.0.7 documentation" href="../index.html" />
    <link rel="up" title="The Matplotlib Basemap Toolkit User’s Guide" href="index.html" />
    <link rel="next" title="Azimuthal Equidistant Projection" href="aeqd.html" />
    <link rel="prev" title="Installing" href="installing.html" />
   
  <link rel="stylesheet" href="../_static/custom.css" type="text/css" />
  
  <meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9" />

  </head>
  <body role="document">
  

    <div class="document">
      <div class="documentwrapper">
        <div class="bodywrapper">
          <div class="body" role="main">
            
  <div class="section" id="setting-up-the-map">
<span id="mapsetup"></span><h1>Setting up the map<a class="headerlink" href="#setting-up-the-map" title="Permalink to this headline"></a></h1>
<p>In order to represent the curved surface of the earth on a two-dimensional
map, a map projection is needed. Since this cannot be done without
distortion, there are many map projections, each with it&#8217;s own advantages
and disadvantages. Basemap provides 24 different map projections.
Some are global, some can only represent a portion of the globe. When
a <a class="reference internal" href="../api/basemap_api.html#mpl_toolkits.basemap.Basemap" title="mpl_toolkits.basemap.Basemap"><code class="xref py py-class docutils literal"><span class="pre">Basemap</span></code></a> class instance is
created, the desired map projection must
be specified, along with information about the portion of the earth&#8217;s
surface that the map projection will describe. There are two basic
ways of doing this. One is to provide the latitude and longitude values
of each of the four corners of the rectangular map projection region.
The other is to provide the lat/lon value of the center of the map
projection region along with the width and height of the region in
map projection coordinates.</p>
<p>The class variable <code class="docutils literal"><span class="pre">supported_projections</span></code> is a dictionary containing
information about all the projections supported by Basemap.  The keys
are the short names (used with the <code class="docutils literal"><span class="pre">projection</span></code> keyword to define
a projection when creating a <code class="docutils literal"><span class="pre">Basemap</span></code> class instance), and the values
are longer, more descriptive names.  The class variable <code class="docutils literal"><span class="pre">projection_params</span></code>
is a dictionary that provides a list of parameters that can be used to
define the properties of each projection.  Following are examples that
illustrate how to set up each of the supported projections. Note that
many map projection possess one of two desirable properties - they can be
equal-area (the area of features is preserved) or conformal (the shape of
features is preserved).  Since no map projection can have both at the same
time, many compromise between the two.</p>
<div class="toctree-wrapper compound">
<ul>
<li class="toctree-l1"><a class="reference internal" href="aeqd.html">Azimuthal Equidistant Projection</a></li>
<li class="toctree-l1"><a class="reference internal" href="gnomon.html">Gnomonic Projection</a></li>
<li class="toctree-l1"><a class="reference internal" href="ortho.html">Orthographic Projection</a></li>
<li class="toctree-l1"><a class="reference internal" href="geos.html">Geostationary Projection</a></li>
<li class="toctree-l1"><a class="reference internal" href="nsper.html">Near-Sided Perspective Projection</a></li>
<li class="toctree-l1"><a class="reference internal" href="moll.html">Mollweide Projection</a></li>
<li class="toctree-l1"><a class="reference internal" href="hammer.html">Hammer Projection</a></li>
<li class="toctree-l1"><a class="reference internal" href="robin.html">Robinson Projection</a></li>
<li class="toctree-l1"><a class="reference internal" href="eck4.html">Eckert IV Projection</a></li>
<li class="toctree-l1"><a class="reference internal" href="kav7.html">Kavrayskiy VII Projection</a></li>
<li class="toctree-l1"><a class="reference internal" href="mbtfpq.html">McBryde-Thomas Flat Polar Quartic</a></li>
<li class="toctree-l1"><a class="reference internal" href="sinu.html">Sinusoidal Projection</a></li>
<li class="toctree-l1"><a class="reference internal" href="cyl.html">Equidistant Cylindrical Projection</a></li>
<li class="toctree-l1"><a class="reference internal" href="cass.html">Cassini Projection</a></li>
<li class="toctree-l1"><a class="reference internal" href="merc.html">Mercator Projection</a></li>
<li class="toctree-l1"><a class="reference internal" href="tmerc.html">Transverse Mercator Projection</a></li>
<li class="toctree-l1"><a class="reference internal" href="omerc.html">Oblique Mercator Projection</a></li>
<li class="toctree-l1"><a class="reference internal" href="poly.html">Polyconic Projection</a></li>
<li class="toctree-l1"><a class="reference internal" href="mill.html">Miller Cylindrical Projection</a></li>
<li class="toctree-l1"><a class="reference internal" href="gall.html">Gall Stereographic Projection</a></li>
<li class="toctree-l1"><a class="reference internal" href="cea.html">Cylindrial Equal-Area Projection</a></li>
<li class="toctree-l1"><a class="reference internal" href="lcc.html">Lambert Conformal Projection</a></li>
<li class="toctree-l1"><a class="reference internal" href="laea.html">Lambert Azimuthal Equal Area Projection</a></li>
<li class="toctree-l1"><a class="reference internal" href="stere.html">Stereographic Projection</a></li>
<li class="toctree-l1"><a class="reference internal" href="eqdc.html">Equidistant Conic Projection</a></li>
<li class="toctree-l1"><a class="reference internal" href="aea.html">Albers Equal Area Projection</a></li>
<li class="toctree-l1"><a class="reference internal" href="pstere.html">Polar Stereographic Projection</a></li>
<li class="toctree-l1"><a class="reference internal" href="plaea.html">Polar Lambert Azimuthal Projection</a></li>
<li class="toctree-l1"><a class="reference internal" href="paeqd.html">Polar Azimuthal Equidistant Projection</a></li>
<li class="toctree-l1"><a class="reference internal" href="vandg.html">van der Grinten Projection</a></li>
</ul>
</div>
</div>


          </div>
        </div>
      </div>
      <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
        <div class="sphinxsidebarwrapper"><div class="relations">
<h3>Related Topics</h3>
<ul>
  <li><a href="../index.html">Documentation overview</a><ul>
  <li><a href="index.html">The Matplotlib Basemap Toolkit User&#8217;s Guide</a><ul>
      <li>Previous: <a href="installing.html" title="previous chapter">Installing</a></li>
      <li>Next: <a href="aeqd.html" title="next chapter">Azimuthal Equidistant Projection</a></li>
  </ul></li>
  </ul></li>
</ul>
</div>
  <div role="note" aria-label="source link">
    <h3>This Page</h3>
    <ul class="this-page-menu">
      <li><a href="../_sources/users/mapsetup.txt"
            rel="nofollow">Show Source</a></li>
    </ul>
   </div>
<div id="searchbox" style="display: none" role="search">
  <h3>Quick search</h3>
    <form class="search" action="../search.html" method="get">
      <div><input type="text" name="q" /></div>
      <div><input type="submit" value="Go" /></div>
      <input type="hidden" name="check_keywords" value="yes" />
      <input type="hidden" name="area" value="default" />
    </form>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
        </div>
      </div>
      <div class="clearer"></div>
    </div>
    <div class="footer">
      &copy;2016, Jeffrey Whitaker.
      
      |
      Powered by <a href="http://sphinx-doc.org/">Sphinx 1.4.5</a>
      &amp; <a href="https://github.com/bitprophet/alabaster">Alabaster 0.7.8</a>
      
      |
      <a href="../_sources/users/mapsetup.txt"
          rel="nofollow">Page source</a>
    </div>

    

    
  </body>
</html>