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
 
<!--
7000 Eichen Problemfälle auffinden
http://wiki.openstreetmap.org/wiki/User:Jo_Cassel
2015-11-18
 
Im gewählten Bildschirmausschnitt
 
- Bäume werden als grüner Kreis dargestellt, größendifferenziert nach Pflanzjahr.
 
- Stelen ohne Baum werden als klein und dunkel-blaugrau dargestellt
 
- Der Katasterfehler 001 (Eintrag ohne Baum UND Stele) wird als leerer, roter Kreis dargestellt
 
-->
 
 <osm-script output="json">
  
  <query type="node">
 
    <has-kv k="ref" regv="^B "/>
    <has-kv k="note"/>
    <bbox-query {{bbox}}/>
      
  </query>
   
  <print mode="body"/>
 
</osm-script>
 
 
{{style:
 
/* Error - Fehler abfangen in Rot */
  node{
    color: red;
    opacity: 0.75;
    width: 15;
    fill-color: red;
    fill-opacity: 0.5;
  }
 
 
/* Baum */
/* Baum Standard (1988-2004)*/
  node[natural=tree]{
    color: rgb(0, 138, 0);
    width: 7;
    opacity: 0.75;
    fill-color: brown;
    fill-opacity: 0.50;
    }
 
/* Baum ALT 1982-1987*/
  node[natural=tree] [start_date<1988]{
    color: rgb(0, 138, 0);
    width: 11;
    opacity: 0.75;
    fill-color: brown;
    fill-opacity: 0.50;
    }
 
/* Baum JUNG ab 2005*/
  node[natural=tree] [start_date>2004]{
    color: rgb(0, 138, 0);
    width: 2;
    opacity: 0.80;
    fill-color:  rgb(0, 138, 0);
    fill-opacity: 0.80;
    }
 
 
/* Stelen */
node[tourism=artwork] {
  color:  rgb(40, 40, 70);
  width:2;
  opacity:1;
  fill-color:  rgb(40, 40, 70);
  fill-opacity:0.8;
}
 
 
/* Fehler 001 */
node[disused:natural=tree] {
  color:  rgb(255, 40, 70);
  width:2;
  opacity:1;
  fill-color:  rgb(255, 0, 0);
  fill-opacity:0.1;
}
 
 
}}
 
 
 
 
 
 
2 km
Leaflet © OpenStreetMap contributors
1