This file is indexed.

/usr/share/osgearth/maps/multiple_heightfields.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
<!--
osgEarth Sample - Multiple heightfields

This example demonstrates how to load multiple heightfield layers and treat them as one.

Note: Gaps, peaks, and valleys in the visualization are due to missing data in the source
files. This is not a bug! A good technique for fixing this would be to provide a world-wide
lo-res heightfield underlay.
-->

<map type="geocentric" version="2">

    <image driver="gdal" name="world-tiff">
        <url>/usr/share/osgearth/data/world.tif</url>
    </image>

    <elevation name = "mt_fuji" driver = "gdal">
      <url>/usr/share/osgearth/data/terrain/mt_fuji_90m.tif</url>
    </elevation>

    <elevation name = "mt_rainier" driver = "gdal">
      <url>/usr/share/osgearth/data/terrain/mt_rainier_90m.tif</url>
    </elevation>

    <elevation name = "mt_everest" driver = "gdal">
      <url>/usr/share/osgearth/data/terrain/mt_everest_90m.tif</url>
    </elevation>

    <options>
        <lighting>false</lighting>
        <cache_policy usage="no_cache"/>
    </options>
    
    <external>
        <contour_map opacity="0.35"/>
        <vertical_scale scale="2.0"/>
    </external>
</map>