This file is indexed.

/usr/share/doc/libgeo-googleearth-pluggable-perl/examples/Geo-GoogleEarth-Pluggable-LinearRing.pl.kml is in libgeo-googleearth-pluggable-perl 0.15-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
<?xml version="1.0" encoding="utf-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2" xmlns:kml="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2" xmlns:atom="http://www.w3.org/2005/Atom">
  <Document>
    <name>My Document</name>
    <Snippet maxLines="0"/>
    <Placemark>
      <name>My LinearRing</name>
      <Snippet maxLines="0"/>
      <Polygon>
        <tessellate>1</tessellate>
        <outerBoundaryIs>
          <LinearRing>
            <coordinates>-77.1,38.5,0 -77.2,38.6,0 -77.2,38.7,0 -77.1,38.8,0 -77.1,38.5,0</coordinates>
          </LinearRing>
        </outerBoundaryIs>
      </Polygon>
    </Placemark>
  </Document>
</kml>