This file is indexed.

/usr/share/osgearth/maps/feature_wfs.earth is in osgearth-data 2.4.0+dfsg-6.

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
<!--
osgEarth Sample

This one demonstrates how to read feature data from a WFS server
-->

<map name="WFS Feature Demo" type="geocentric" version="2">
    
    <options lighting="false"/>

    <image name="world" driver="gdal">
        <url>/usr/share/osgearth/data/world.tif</url>
    </image>
    
    <overlay name="states" driver="feature_geom">          
                
        <features name="states" driver="wfs">
            <url> http://demo.opengeo.org/geoserver/wfs</url>     		
            <typename>states</typename>
            <outputformat>json</outputformat>
        </features>
                  
        <styles>        
            <style type="text/css">
                states {
                   stroke:          #ffff00;
                   stroke-opacity:  1.0;
                   stroke-width:    3.0;
                }                       
            </style>                   
            
        </styles>
        
    </overlay>
</map>