This file is indexed.

/usr/share/doc/libjs-jquery-geo-doc/html/geo/length.html is in libjs-jquery-geo-doc 1.0~b1+ds1-2.

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
<!doctype html>  

<html lang="en" class="no-js">
<head>
  <meta charset="utf-8">

  <title>length | $.geo</title>
  <meta name="description" content="jQuery Geo length method">
  <meta name="author" content="Ryan Westphal">

  <meta name="viewport" content="width=device-width, initial-scale=1.0">

  <link rel="stylesheet" href="../css/style.css?v=2">
  <link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css" />
</head>

<body>

  <div id="length" data-role="page">
    <div data-role="header" data-theme="b">
      <h1>length</h1>
    </div>
    
    <div data-role="content">
      <table>
        <tr>
          <th>return type</th>
          <td>Number</td>
        </tr>
        <tr>
          <th>syntax</th>
          <td>$.geo.length( Object shape ( <a href="http://geojson.org/geojson-spec.html" rel="external">GeoJSON object</a> ) )</td>
        </tr>
        <tr>
          <th>usage</th>
          <td><pre><code>var length = $.geo.length( {
      type: &quot;LineString&quot;,
      coordinates: [[
        [-75, 39.7],
        [-74.8, 39.3],
        [-75.2, 39.3]
      ]]
} )</pre></code></td>
        </tr>
      </table>
      <p>The length method calculates the length of a basic GeoJSON geometry object and returns it in non-geodetic units. The basic shapes are Point, LineString and Polygon. If you are using geomap with its default map service, the length is in meters because the default projection is web mercator meters.</p>
      <p>This function returns 0 for Point objects, the length of LineString objects and the perimeter of Polygon objects.</p>
      <p>If the argument is not a basic GeoJSON geometry object, this function returns undefined.</p>
      <p>This function is similar to Geometry.getLength in JTS.</p>
    </div>
  </div> <!-- end of #container -->

  <script src="/usr/share/javascript/jquery/jquery.min.js"></script>
  <script src="/usr/share/javascript/excanvas/excanvas.min.js"></script>
  <script src="/usr/share/javascript/jsrender/jsrender.min.js"></script>
  <script src="/usr/share/javascript/jquery-mousewheel/jquery.mousewheel.min.js"></script>
  <script src="/usr/share/javascript/jquery-ui/ui/jquery.ui.widget.min.js"></script>
  <script src="/usr/share/javascript/jquery-geo/jquery.geo.full.min.js"></script>
  <script src="../js/script.js"></script>
  <script src="/usr/share/javascript/jquery-mobile/jquery-mobile.min.js"></script>
</body>
</html>