-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeforestation.xml
108 lines (85 loc) · 3.79 KB
/
deforestation.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<presets xmlns="http://josm.openstreetmap.de/tagging-preset-1.0"
author="PoliMappers"
version="1.[[revision]]_[[date]]"
shortdescription="Deforestation landcover"
description="Set of preset to be used to map the landcover in forest areas">
<group name="Deforestation landcover elements" icon="presets/landmark/trees.svg">
<item name="Forest - Wood" type="closedway, relation" icon="presets/landmark/forest.svg">
<key key="natural" value="wood" />
</item>
<item name="Burnt vegetation" type="closedway, relation" icon="presets/misc/kiln.svg">
<key key="natural" value="grassland" />
<key key="note" value="burn area" />
</item>
<item name="Shrubland - Scrub" type="closedway, relation" icon="presets/landuse/scrub.svg">
<key key="natural" value="scrub" />
</item>
<item name="Grassland" type="closedway, relation" icon="presets/landuse/meadow.svg">
<key key="natural" value="grassland" />
</item>
<item name="Farmland - Cropland" type="closedway, relation" icon="presets/landuse/farmland.svg">
<key key="landuse" value="farmland" />
</item>
<item name="Wetland" type="closedway, relation" icon="presets/landuse/wetland.svg">
<key key="natural" value="wetland" />
</item>
<item name="Sandy area without vegetation" type="closedway, relation" icon="presets/landuse/sand.svg">
<key key="natural" value="sand" />
</item>
<item name="Soil covered with gravel" type="closedway, relation" icon="presets/landuse/scree.svg">
<key key="natural" value="scree" />
</item>
<item name="Soil covered with bare rock" type="closedway, relation" icon="presets/landuse/shingle.svg">
<key key="natural" value="bare_rock" />
</item>
<!-- Group for water elements -->
<group name="Water" icon="presets/nautical/water.svg">
<item name="Lake" type="closedway, relation" icon="presets/nautical/water.svg">
<key key="natural" value="water" />
<key key="water" value="lake" />
</item>
<item name="Pond" type="closedway, relation" icon="presets/nautical/water.svg">
<key key="natural" value="water" />
<key key="water" value="pond" />
</item>
<item name="River Area" type="closedway, relation" icon="presets/nautical/water.svg">
<key key="natural" value="water" />
<key key="water" value="river" />
</item>
<item name="River" type="way" icon="presets/nautical/waterway_river.svg">
<key key="waterway" value="river" />
</item>
<item name="Stream" type="way" icon="presets/nautical/waterway_stream.svg">
<key key="waterway" value="stream" />
</item>
</group>
<item name="Building" type="closedway, relation" icon="presets/landmark/building.svg">
<key key="building" value="yes" />
</item>
<!-- Group for osm landuse elements -->
<group name="Builtup areas" icon="presets/landuse/brownfield.svg">
<item name="Residential surrounding" type="closedway, relation" icon="presets/landmark/building.svg">
<key key="landuse" value="residential" />
</item>
<item name="Industrial surrounding" type="closedway, relation" icon="presets/landmark/works.svg">
<key key="landuse" value="industrial" />
</item>
<item name="Commercial surrounding" type="closedway, relation" icon="presets/landuse/commercial.svg">
<key key="landuse" value="commercial" />
</item>
</group>
<!-- Group for roads -->
<group name="Roads" icon="presets/transport/way/way_secondary.svg">
<item name="Path in the forest" type="way" icon="presets/transport/way/path.svg">
<key key="highway" value="track" />
</item>
<item name="General roads" type="way" icon="presets/transport/way/way_unclassified.svg">
<key key="highway" value="unclassified" />
</item>
<item name="Road in residential area" type="way" icon="presets/transport/way/way_residential.svg">
<key key="highway" value="residential" />
</item>
</group>
</group>
</presets>