This file is indexed.

/usr/share/osgearth/maps/feature_draped_lines.earth is in osgearth-data 2.5.0+dfsg-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
<!--
osgEarth Sample

Demonstrate the Altitude Symbol and GPU-based vertex clamping.
-->

<map name="Geometry Rasterizer Demo" type="round" version="2">
  
    <options>
        <lighting>false</lighting>
        <terrain min_lod="16"/>
    </options>

    <image name="world" driver="gdal">
        <url>/usr/share/osgearth/data/world.tif</url>
        <cache_policy usage="no_cache"/>
    </image>
    
    <model name="world_boundaries" driver="feature_geom">

        <!-- Configure the OGR feature driver to read the shapefile. -->             
        <features name="world" driver="ogr">
            <url>/usr/share/osgearth/data/world.shp</url>
            <build_spatial_index>true</build_spatial_index>
        </features>
		
		<feature_indexing/>	
                
        <styles>
            <style type="text/css">
                world {
                   stroke:             #ffff00;
                   stroke-width:       5px;
                   altitude-clamping:  terrain-drape;
                }            
            </style>
        </styles>
        
    </model>
  
</map>