/usr/share/osgearth/maps/splat-with-rasterized-land-cover.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 | <!--
| Procedural terrain splatting and ground cover.
| Suggest using --logdepth to see the grass when you get in close.
-->
<map>
<options>
<terrain driver="rex"/>
</options>
<!-- 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>
<profile>global-geodetic</profile>
<xi:include href="/usr/share/osgearth/data/land_cover_ESA_GLOBCOVER.xml"/>
<warp>0.05</warp>
<cache_policy usage="no_cache"/>
</coverage>
<coverage name="Lakes" driver="agglite" coverage="true">
<warp>0</warp>
<features driver="ogr">
<url>H:/data/naturalearth/vector-10m/ne_10m_lakes.shp</url>
</features>
<styles>
<style type="text/css">
default {
coverage-value: 1;
}
</style>
</styles>
<land_cover_mappings>
<mapping value="1" class="water"/>
</land_cover_mappings>
<cache_policy usage="no_cache"/>
</coverage>
<coverage name="Boston streets" driver="agglite" coverage="true" min_level="10" max_data_level="17">
<warp>0</warp>
<features driver="ogr" build_spatial_index="true">
<url>/usr/share/osgearth/data/boston-scl-utm19n-meters.shp</url>
</features>
<styles>
<style type="text/css">
default {
stroke-width: 10m;
coverage-value: 1;
}
</style>
</styles>
<land_cover_mappings>
<mapping value="1" class="asphalt"/>
</land_cover_mappings>
<cache_policy usage="no_cache"/>
</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>
</zones>
</splat_imagery>
<xi:include href="viewpoints.xml"/>
</map>
|