forked from gwaldron/osgearth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsplat-with-vectors.earth
86 lines (69 loc) · 2.67 KB
/
splat-with-vectors.earth
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
<!--
| Texture splatting test.
|
| Run with splat.bat, (or splat-edit.bat for tweakery)
-->
<map>
<options>
<terrain driver="rex" skirt_ratio="0" normal_maps="true"/>
</options>
<elevation name="readymap_elevation" driver="tms" enabled="true">
<url>http://readymap.org/readymap/tiles/1.0.0/116/</url>
</elevation>
<image name="CLASSMAP" driver="landuse" shared="true" visible="false" coverage="true">
<bits>16</bits>
<warp>0.01</warp>
<base_lod>12</base_lod>
<images>
<image name="ESA" driver="gdal" coverage="true">
<url>H:/data/ESA/GLOBCOVER_L4_200901_200912_V2.3_Ant_tiled.tif</url>
<cache_policy usage="no_cache"/>
</image>
<image 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: 230;
}
</style>
</styles>
<cache_policy usage="no_cache"/>
</image>
<image name="Boston streets" driver="agglite" coverage="true" min_level="10">
<warp>0</warp>
<features driver="ogr" build_spatial_index="true">
<url>../data/boston-scl-utm19n-meters.shp</url>
<buffer distance="5"/>
</features>
<styles>
<style type="text/css">
default {
coverage-value: 900;
}
</style>
</styles>
<cache_policy usage="no_cache"/>
</image>
</images>
<shared_sampler> landUseTex </shared_sampler>
<shared_matrix> landUseTexMatrix </shared_matrix>
<cache_policy usage="no_cache"></cache_policy>
</image>
<extensions>
<noise/>
<splat>
<coverage>
<layer> CLASSMAP </layer>
<legend> ../data/splat/GLOBCOVER_legend.xml </legend>
</coverage>
<surface>
<catalog> ../data/splat/splat_catalog.xml </catalog>
</surface>
</splat>
<xi:include href="viewpoints.xml"/>
</extensions>
</map>