This file is indexed.

/usr/share/osgearth/maps/splat-with-multiple-zones.earth is in osgearth-data 2.9.0+dfsg-1.

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
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!--
|  Procedural terrain splatting and ground cover;
|  Demonstrates the use of multiple geographic zones.
|
|  Suggest using --logdepth to see the grass when you get in close.
-->

<map>
    <options>
        <terrain driver="rex"/>
    </options>
    
    <elevation name="readymap_elevation" driver="tms" enabled="true">
        <url>http://readymap.org/readymap/tiles/1.0.0/116/</url>
    </elevation>

    <!-- Pre-load the splatting nodekit -->
    <libraries>osgEarthSplat</libraries>
    
    <!-- Land cover requires a dictionary that defines all the core classes -->
    <xi:include href="/usr/share/osgearth/data/land_cover_dictionary.xml"/>
    
    <!-- Land cover layer defines world wide classes -->
    <land_cover name="LandCover" max_data_level="15">
        <cache_policy usage="no_cache"/>
        <coverages>
            <coverage name="ESA GLOBCOVER" driver="gdal">
                <url>H:/data/esa/GLOBCOVER_L4_200901_200912_V2.3_Ant_tiled.tif</url>
                <xi:include href="/usr/share/osgearth/data/land_cover_ESA_GLOBCOVER.xml"/>
                <warp>0.05</warp>
            </coverage>
        </coverages>
    </land_cover>
        
    <!-- Procedural terrain imagery from land cover data -->
    <splat_imagery name="Splat Imagery" land_cover_layer="LandCover">
        <zones>
            <zone name="default">
                <surface>
                    <catalog>/usr/share/osgearth/data/splat/splat_catalog.xml</catalog>
                </surface>
            </zone>
            <zone name="australia">
                <boundaries>
                    <boundary xmin="112" xmax="154" ymin="-43.50" ymax="-11.16" zmax="2000000"/>
                </boundaries>
                <surface>
                    <catalog>/usr/share/osgearth/data/splat/splat_catalog_au.xml</catalog>
                </surface>
            </zone>
        </zones>
    </splat_imagery>
    
    <!-- GPU trees from land cover data -->
    <splat_groundcover name="Trees" land_cover_layer="LandCover">
        <lod>13</lod>
        <cast_shadows>true</cast_shadows>
        <zones>
            <zone name="default">
                <groundcover>
                    <max_distance>6400</max_distance>
                    <density>3.4</density>
                    <fill>0.45</fill>
                    <brightness>2.0</brightness>
                    <contrast>0.5</contrast>
                    <biomes>
                        <biome classes="forest">
                            <billboard url="/usr/share/osgearth/data/splat/cypress.png" width="12.0" height="14.0"/>
                            <billboard url="/usr/share/osgearth/data/splat/pine.png"    width="16.0" height="22.0" />
                            <billboard url="/usr/share/osgearth/data/splat/pine2.png"   width="15.0" height="18.0"/>
                        </biome>
                    </biomes>
                </groundcover>
            </zone>
        </zones>
    </splat_groundcover>

    <!-- GPU grass from land cover data -->
    <splat_groundcover name="Grass" land_cover_layer="LandCover">
        <lod>19</lod>
        <cast_shadows>false</cast_shadows>
        <zones>
            <zone name="default">
                <groundcover>
                    <max_distance>150</max_distance>
                    <density>3.8</density>
                    <fill>0.50</fill>
                    <wind>0.15</wind>
                    <biomes>
                        <biome name="Grass" classes="forest">
                            <billboard url="/usr/share/osgearth/data/splat/grass1.png" width="0.85" height="0.4"/>
                        </biome>
                    </biomes>
                </groundcover>
            </zone>
            <zone name="australia">
                <boundaries>
                    <boundary xmin="112" xmax="154" ymin="-43.50" ymax="-11.16" zmax="2000000"/>
                </boundaries>
                <groundcover>
                    <max_distance>150</max_distance>
                    <density>2</density>
                    <fill>0.50</fill>
                    <wind>0.15</wind>
                    <biomes>
                        <biome name="Grass" classes="forest">
                            <billboard url="/usr/share/osgearth/data/splat/grass2.png" width="0.85" height="0.4"/>
                        </biome>
                    </biomes>
                </groundcover>
            </zone>
        </zones>
    </splat_groundcover>
            
    <xi:include href="viewpoints.xml"/>
</map>