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
 
<!--
Naturdenkmäler auffinden, Bäume und Flächenhafte NDs.
wiki.openstreetmap.org/wiki/User:Jo_Cassel/Naturdenkmäler
 
Im gewählten Bildschirmausschnitt:
- Auffinden nach Landkreis-Gemeinde
- Größendifferenzierung der Bäume nach Stammdurchmesser 
-->
 
<osm-script output="json">
<union>
{{SG=Fuldabrück}}
<!-- Bäume -->
    <query type="node">
      <has-kv k="denotation" v="natural_monument"/>
      <has-kv k="natural" v="tree"/>
      <has-kv k="ref" regv="6.33."/>
      <has-kv k="tree_location:city" regv="{{SG}}"/>
      <bbox-query {{bbox}}/>
    </query>
 
      
<!-- Flächenhafte -->
    <query type="way">
      <has-kv k="protection_title" v="Naturdenkmal"/>
      <has-kv k="ref" regv="6.33."/>
      <has-kv k="wikipedia:de" regv="{{SG}}"/>
      <bbox-query {{bbox}}/>
    </query>
<!-- Flächenhafte 2 wg. User -->
    <query type="way">
      <has-kv k="protection_title" v="Naturdenkmal"/>
      <has-kv k="ref" regv="6.33."/>
      <has-kv k="wikipedia" regv="{{SG}}"/>
      <bbox-query {{bbox}}/>
    </query>      
      
<!-- Flächenhafte ggf. provisorisch als Node -->   
    <query type="node">
      <has-kv k="protection_title" v="Naturdenkmal"/>
      <has-kv k="ref" regv="6.33."/>
      <has-kv k="wikipedia:de" regv="{{SG}}"/>
      <bbox-query {{bbox}}/>
    </query>
 
<!-- Flächenhafte 2 wg. User -->   
    <query type="node">
      <has-kv k="protection_title" v="Naturdenkmal"/>
      <has-kv k="ref" regv="6.33."/>
      <has-kv k="wikipedia" regv="{{SG}}"/>
      <bbox-query {{bbox}}/>
    </query>  
 </union> 
 
<union>
   <item/>
   <recurse type="down"/>
</union>
 
<print mode="body"/>
</osm-script>
 
 
{{style:
/* http://wiki.openstreetmap.org/wiki/MapCSS/0.2 */
 
/* Bäume*/
/* default ohne circumference*/
  node[natural=tree]{
    color: rgb(20, 95, 20);
    width: 14;
    opacity: 0.55;
    fill-color: brown;
    fill-opacity: 0.50;
    }
/* sehr klein*/
  node[circumference>=0]{
    color: rgb(20, 95, 20);
    width: 8;
    opacity: 0.60;
    fill-color: brown;
    fill-opacity: 0.50;
    }
/* klein*/
  node[circumference>2]{
    color: rgb(20, 95, 20);
    width: 10;
    opacity: 0.60;
    fill-color: brown;
    fill-opacity: 0.50;
    }
/* mittel*/
  node[circumference>3]{
    color: rgb(20, 95, 20);
    width: 15;
    opacity: 0.60;
    fill-color: brown;
    fill-opacity: 0.50;
    }
/* groß*/
  node[circumference>4]{
    color: rgb(20, 95, 20);
    width: 20;
    opacity: 0.60;
    fill-color: brown;
    fill-opacity: 0.50;
    }
/* sehr groß*/
  node[circumference>5]{
    color: rgb(20, 95, 20);
    width: 24;
    opacity: 0.60;
    fill-color: brown;
    fill-opacity: 0.50;
    }
 
/* Flächenhafte NDs*/
way{
    color: rgb(90, 110, 90);
    width: 6;
    opacity: 0.8;
    fill-color: grey;
    fill-opacity: 0.10;
  }
 
}}
1 km
Leaflet © OpenStreetMap contributors
1