This file is indexed.

/usr/share/osgearth/maps/min_max_level.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
<!--
This example demonstrates how to use two image sources and switch between them
at a given levels of detail.

Please note that usage of Yahoo! map data is subject to Yahoo!'s terms of service.
-->

<map name="Yahoo Levels" type="geocentric" version="2">

    <image name="yahoo" driver="composite">
    
        <!-- this level will be visible at lower resolutions -->
        <image name="yahoo_sat" driver="yahoo">
            <dataset>satellite</dataset>
            <max_level>5</max_level>
        </image> 

        <!-- this level will be visible at higher resolutions -->
        <image name="yahoo_maps" driver="yahoo">
            <min_level>6</min_level>
        </image> 
        
    </image>
   
</map>