This file is indexed.

/usr/share/doc/python-mpltoolkits.basemap-doc/html/_sources/users/mapcoords.txt is in python-mpltoolkits.basemap-doc 1.0.7+dfsg-3build2.

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
.. _mapcoords:

Converting to and from map projection coordinates
=================================================

In order to plot data on a map, the coordinates of the data must
be given in map projection coordinates.
Calling a Basemap class instance with the arguments lon, lat will
convert lon/lat (in degrees) to x/y map projection coordinates
(in meters). The inverse transformation is done if the optional keyword
``inverse`` is set to True.  
Here's an example that uses this feature to plot a marker and some text to 
denote the location of Boulder, CO, given the lat/lon position.

.. plot:: users/figures/plotboulder.py

.. toctree::