This file is indexed.

/usr/share/osgearth/maps/feature_labels.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
42
43
44
45
46
47
48
49
<!--
osgEarth Sample
This shows how to label point features with an attribute.
-->

<map name="Feature Geometry Demo" type="geocentric" version="2">
        
    <image name="world" driver="gdal">
        <url>/usr/share/osgearth/data/world.tif</url>
    </image>
    
    <model name="cities" driver="feature_geom">

        <features name="cities" driver="ogr">
            <url>/usr/share/osgearth/data/world.shp</url>
        </features>

        <styles>
            <style type="text/css">              
                cities {
					icon: "/usr/share/osgearth/data/placemark32.png";
					icon-placement: centroid;
					icon-scale: 1.0;
					icon-occlusion-cull: false;
					icon-occlusion-cull-altitude: 8000;
					icon-declutter: true;
					text-content: [cntry_name];
					altitude-offset: 100;
					altitude-clamping: terrain;
					altitude-technique: scene;
                }     
            </style>
        </styles>
        
    </model>
    
    <options lighting="false"/>
    
    <external>
        <decluttering>
            <out_animation_time>  0.0  </out_animation_time>
            <in_animation_time>   0.25 </in_animation_time>
            <min_animation_scale> 0.45 </min_animation_scale>
            <min_animation_alpha> 0.35 </min_animation_alpha>
            <sort_by_priority>    true </sort_by_priority>
        </decluttering>
    </external>
  
</map>