This file is indexed.

/usr/share/osgearth/maps/mask.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
<!-- 
osgEarth Sample - Masking
Demonstrates the use a a MaskLayer to cut out an area of the globe.
-->

<map version="2">
    <image driver="gdal" name="world-tiff">
        <url>/usr/share/osgearth/data/world.tif</url>
    </image>
    
    <!-- masks out the US State of Utah -->
    <mask driver="feature" name="mask">
        <features driver="ogr">
            <geometry>
                POLYGON(( -111.0466 42.0015 0, -111.0467 40.9979 0, -109.0501 41.0007 0, -109.0452 36.9991 0, -114.0506 37.0004 0, -114.0417 41.9937 0)) 
            </geometry>
        </features>
        <profile>global-geodetic</profile>
    </mask>
    
    <options lighting="false">
	    <terrain min_lod="14"/>
	</options>
</map>