This file is indexed.

/usr/share/osgearth/maps/hires-inset.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
<!--
osgEarth Sample : Hi-resolution inset

This example shows how to use a global basemap and superimpose
high-resolution imagery insets.

Look for hi-res insets over the cities of Boston and New York.
-->

<map name="hi-res inset" type="geocentric" version="2">

    <options lighting="false">
        <cache_policy usage="no_cache"/>        
    </options>
    
	<!-- Low resolution worldwide image -->
    <image name="world" driver="gdal">
        <url>/usr/share/osgearth/data/world.tif</url>
    </image>

	<!-- Higher resolution inset of Boston -->
	<image name="boston_inset" driver="gdal">
		<url>/usr/share/osgearth/data/boston-inset-wgs84.tif</url>
	</image>
	
	<!-- Higher resolution inset of New York City -->
	<image name="nyc_inset" driver="gdal">
		<url>/usr/share/osgearth/data/nyc-inset-wgs84.tif</url>
	</image>
    
	<external>
	    <viewpoints>
		    <viewpoint name="Hi-res insets" lat="41.642" long="-72.333" pitch="-71" range="657510"/>
		</viewpoints>
	</external>
</map>