This file is indexed.

/usr/share/osgearth/maps/simple_model.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
<!-- 
osgEarth Sample - Simple Model Driver
Demonstates how to place a model at a location using the simple model driver.  If you do not specify a location the model is loaded as is to the scene graph so
needs to be absolutely positioned.
-->

<map version="2">
    <image name="mapquest_open_aerial" driver="xyz">
        <url>http://oatile[1234].mqcdn.com/tiles/1.0.0/sat/{z}/{x}/{y}.jpg</url>
        <profile>spherical-mercator</profile>
        <cache_policy usage="no_cache"/>
        <nodata_image>http://oatile3.mqcdn.com/tiles/1.0.0/sat/13/636/6210.jpg</nodata_image>
    </image>
    
    <model name = "cow" driver="simple">
      <url>/usr/share/osgearth/data/red_flag.osg.100,100,100.scale</url>
      <location>-74.018 40.717 10</location>	  
    </model>
    
    <options lighting="false">
        <terrain min_lod="12"/>
    </options>
    
    <external>
        <viewpoint name="Zoom to model" lat="40.717" long="-74.018" pitch="-60" range="6000"/>    
    </external>	
</map>