-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfetch_tasks.json5
executable file
·49 lines (49 loc) · 1.1 KB
/
fetch_tasks.json5
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
[
{
name: 'bezirke',
info: 'Flächen der Stadtbezirke',
type: 'download',
args: {
source: 'https://stadtplan.bonn.de/geojson?Thema=14574',
target: 'bezirke'
}
},
{
name: 'ortsteile',
info: 'Flächen der Ortsteile',
type: 'download',
args: {
source: 'https://stadtplan.bonn.de/geojson?Thema=21247',
target: 'ortsteile'
}
},
{
name: 'stadtgebiet',
info: 'Fläche Stadtgebiet Bonn',
type: 'download',
args: {
source: 'https://stadtplan.bonn.de/geojson?Thema=21248',
target: 'stadtgebiet'
}
},
{
name: 'stolperstein',
info: 'Stolpersteine in Bonn und Umgebung',
type: 'overpass',
args: {
apiUrl: 'https://overpass-api.de/api/interpreter?',
data: [
'[out:json][timeout:25][bbox:50.5,6.9,50.88,7.4];',
'(',
'node["memorial:type"="stolperstein"];',
'way["memorial:type"="stolperstein"];',
'rel["memorial:type"="stolperstein"];',
');',
'out meta;',
'>;',
'out meta qt;'
],
target: 'stolpersteine'
}
}
]