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
 
// Abfrage Naturschutzgebiete (NSG)
// grün= pefekt (nur intern)
// grau= ok
// rosa= fehlender Tag
// rot= name-Tag enthält "Naturschutzgebiet" oder "NSG"
 
{{geocodeArea:"Regierungsbezirk Kassel"}}->.sA;
 
(
  way["protection_title"="Naturschutzgebiet"](area.sA);
  relation["protection_title"="Naturschutzgebiet"](area.sA);
);
 
(._; >;);
 
// out;
out meta;
 
 
{{style:
/* grau=ok */
 
way,
relation
{
    color: rgb(90, 90, 90);
    width: 3;
    fill-color: grey;
    fill-opacity: 0.3;
  }
 
/* gün=perfect */
 
way[WDPA_ID:ref] [description] [image] [wikipedia] [wikimedia_commons],
relation[WDPA_ID:ref] [description] [image] [wikipedia] [wikimedia_commons]
 
{
    color: rgb(50, 100, 50);
    width: 5;
 
    fill-color: green;
    fill-opacity: 0.3;
  }
 
/* rosa=Problem - [boundary] bei way-abfrage wg. Teilflächen */
 
way[boundary][!note], way[boundary][!short_protection_title], way[boundary][!protect_class], way[boundary][!source:shape], way[boundary][!wikidata],
 
relation[!note], relation[!short_protection_title], relation[!protect_class], relation[!source:shape], relation[!wikidata] 
{
    color: rgb(150, 100, 100);
    width: 4;
    fill-color: red;
    fill-opacity: 0.3;
  }
 
/* rot=name-Problem */
 
way[name=~/NSG/], way[name=~/Naturschutzgebiet/], relation[name=~/Naturschutzgebiet/], relation[name=~/NSG/]
{
    color: rgb(250, 50, 50);
    width: 5;
    fill-color: red;
    fill-opacity: 0.75;
  }
}}
10 km
Leaflet © OpenStreetMap contributors
1