This file is indexed.

/usr/share/osgearth/maps/feature_geom.earth is in osgearth-data 2.4.0+dfsg-6.

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
<!--
osgEarth Sample

This one demonstrates how to read feature data from a shapefile and build
OSG geometry out of it.
-->

<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="states" driver="feature_geom">

        <!-- Configure the OGR feature driver to read the shapefile -->
        <features name="states" driver="ogr">
            <url>/usr/share/osgearth/data/usa.shp</url>
        </features>
        
        <!-- Ensure a vertex at least every 5 degrees -->
        <max_granularity>5.0</max_granularity>
        
        <!-- Appearance details -->
        <styles>
            <style type="text/css">
                states {
                   stroke: #ffff00;
                   altitude-offset: 1000;                   
                }                    
            </style>
        </styles>
		
		<lighting>false</lighting>
        
    </model>
  
</map>