This file is indexed.

/usr/share/osgearth/maps/roads.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
<!--
osgEarth Sample - ReadyMap.ORG Server - http://readymap.org

ReadyMap.ORG provides free global base map data for osgEarth developers!
This tiled, worldwide dataset of imagery, elevation, and street map data
is a great base map that provides global context for your own local datasets.
It works "out of the box" with osgEarth applications.

**** NOTICE ****
YOU ARE RESPONSIBLE for abiding by the TERMS AND CONDITIONS outlined at:
http://readymap.org

-->
<map name="readymap.org" type="geocentric">

    <options>
        <terrain driver="rex" progressive="true">
        </terrain>
    </options>

    <image name="readymap_imagery" driver="tms" visible="true" opacity="0.5">
        <url>http://readymap.org/readymap/tiles/1.0.0/7/</url>
    </image>

    <image name="Tilekeys" driver="debug">
    </image>

    <road_surface name="road-surface" min_level="14" max_level="18">
        <cache_policy usage="no_cache"/>
        <tile_size>512</tile_size>
        <feature_source>roads-data</feature_source>
        <styles>
            <style type="text/css">
                default {
                   stroke: #ffffff;
                   stroke-width: 65m;
                   stroke-image: "/usr/share/osgearth/data/road.png";
                }
            </style>
        </styles>
    </road_surface>

    <feature_model name="Road verts">
        <feature_source>roads-data</feature_source>
        <styles>
            <style type="text/css">
                default {
                    point-fill: #00ffff;
                    point-size: 12;
                    stroke: #ffff00;
                    stroke-width: 2px;
                    render-depth-test: false;
                    render-order: 1;
                }
            </style>
        </styles>
    </feature_model>

    <feature_model name="Road skeleton" visible="false">
        <feature_source>roads-data</feature_source>
        <styles>
            <style type="text/css">
                default {
                    stroke: #00ffff7f;
                    stroke-width: 65m;
                    render-depth-test: false;
                    render-order: 2;
                    stroke-image: "/usr/share/osgearth/data/grid.png";
                }
            </style>
        </styles>
    </feature_model>

    <feature_source name="roads-data" driver="tfs">
        <url>http://readymap.org/osm/</url>
        <min_level>14</min_level>
        <max_level>14</max_level>
        <profile>spherical-mercator</profile>
        <format>pbf</format>
        <filters>
            <script language="javascript">
              <![CDATA[ ("highway" in feature.properties); ]]>
            </script>
        </filters>
    </feature_source>

    <viewpoints>
        <viewpoint name="45 Lat">
            <heading>-1.6803</heading>
            <pitch>-89.8584</pitch>
            <range>135.785m</range>
            <long>-121.629455948385</long>
            <lat>46.76105148181426</lat>
            <height>0.0005331700667738915</height>
            <srs>+proj=longlat +ellps=WGS84 +towgs84=0,0,0,0,0,0,0 +no_defs </srs>
        </viewpoint>
        <viewpoint name="Equator">
            <heading>-2.31914e-008</heading>
            <pitch>-89.0007</pitch>
            <range>3664.39m</range>
            <long>-80.08167477509062</long>
            <lat>-0.001110080780562921</lat>
            <height>-3.306940197944641e-005</height>
            <srs>+proj=longlat +ellps=WGS84 +towgs84=0,0,0,0,0,0,0 +no_defs </srs>
        </viewpoint>
    </viewpoints>

    <libraries>osgEarthSplat</libraries>
</map>