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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
 
<!--
7000 Eichen auffinden
http://wiki.openstreetmap.org/wiki/User:Jo_Cassel
 
Im gewählten Bildschirmausschnitt
Bäume und Stelen
- Farbdifferenzierung der Bäume nach Art:
Eiche - dunkelgrün
Esche - mittelgrün
Linde - hellgrün
Kastanie - dunkelbraun
Ahorn - mittelbraun
Platane - hellbraun
Sonstige - graugrün
 
- Größendifferenzierung der Bäume nach Pflanzdatum
 
- Stelem ohne Baum: klein und dunkel-blaugrau
 
- Katasterfehler 001: leerer, roter Kreis
-->
 
 
 <osm-script output="json">
   
    <query type="node">
      <has-kv k="access"/>
      <has-kv k="description"/>
      <has-kv k="ref" regv="^B "/>
      <has-kv k="tree_location:city"/>
      <has-kv k="tree_location:full"/>
      <has-kv k="start_date"/> 
      <bbox-query {{bbox}}/>
    </query>
    
  <print mode="body"/>
</osm-script>
 
 
{{style:
/* http://wiki.openstreetmap.org/wiki/MapCSS/0.2 */
 
/* Stelen */
node[tourism=artwork] {
  color:  rgb(40, 40, 70);
  width:2;
  opacity:1;
  fill-color:  rgb(40, 40, 70);
  fill-opacity:0.8;
}
 
 
/* Undifferenziert Standard (1988-2004)*/
  node[natural=tree]{
    color: rgb(190, 225, 190);
    width: 7;
    opacity: 0.80;
    fill-color: brown;
    fill-opacity: 0.50;
    }
 
/* Undifferenziert 1982-1987*/
  node[natural=tree] [start_date<1988]{
    color: rgb(190, 225, 190);
    width: 11;
    opacity: 0.80;
    fill-color: brown;
    fill-opacity: 0.5;
    }
 
/* Undifferenziert JUNG ab 2005*/
  node[natural=tree] [start_date>2004]{
    color: rgb(190, 225, 190);
    width: 2;
    opacity: 0.80;
    fill-color:  rgb(190, 225, 190);
    fill-opacity: 0.85;
    }
 
 
/* Eiche Standard (1988-2004)*/
  node[species=~/Quercus /]{
    color: rgb(0, 138, 0);
    width: 7;
    opacity: 0.75;
    fill-color: brown;
    fill-opacity: 0.50;
    }
 
/* Eiche ALT 1982-1987*/
  node[species=~/Quercus /] [start_date<1988]{
    color: rgb(0, 138, 0);
    width: 11;
    opacity: 0.75;
    fill-color: brown;
    fill-opacity: 0.50;
    }
 
/* Eiche JUNG ab 2005*/
  node[species=~/Quercus /] [start_date>2004]{
    color: rgb(0, 138, 0);
    width: 2;
    opacity: 0.80;
    fill-color:  rgb(0, 138, 0);
    fill-opacity: 0.80;
    }
 
 
/* Esche Standard (1988-2004)*/
  node[species=~/Fraxinus /]{
    color: rgb(153, 255, 102);
    width: 7;
    opacity: 0.75;
    fill-color: brown;
    fill-opacity: 0.5;
    }
 
/* Esche ALT 1982-1987*/
  node[species=~/Fraxinus /] [start_date<1988]{
    color: rgb(153, 255, 102);
    width: 11;
    opacity: 0.75;
    fill-color: brown;
    fill-opacity: 0.50;
    }
 
/* Esche JUNG ab 2005*/
30 m
Leaflet © OpenStreetMap contributors
1