-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.json
37 lines (37 loc) · 1.34 KB
/
config.json
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
{
"host": "https://where2demo.herokuapp.com",
"docs": {
"description": "Where2 turns static GeoJSON files into queryable APIs. This Demo allows you to query selected GeoJSON-files from <a href='https://data.stadt-zuerich.ch'>Open Data Zürich</a>. Look <a href='https://github.com/fidelthomet/where2'>here</a> to find out more on how to set up your own Where2-API with your datasets.",
"title": "Where2 Demo",
"map_center": [47.3695, 8.5426],
"map_zoom": 13
},
"data": [{
"name": "KunstImStadtraum",
"url": "https://data.stadt-zuerich.ch/dataset/kunst_im_stadtraum/resource/3e42de5e-b098-4b61-a965-b32f3439b4b7/download/kis.json",
"schedule": "3 0 1 * *"
},{
"name": "baumkataster",
"url": "https://data.stadt-zuerich.ch/dataset/baumkataster/resource/c7e85cfe-7899-4aa4-9a59-3b0c7b6a4937/download/baumkataster.json",
"schedule": "3 10 1 * *",
"schema": {
"Baumname_D": "TEXT",
"Baumname_LAT": "TEXT",
"Strasse": "TEXT",
"Baumnummer": "TEXT",
"Baumart_LAT": "TEXT",
"Pflanzjahr": "INT",
"Baumgattung": "TEXT"
}
}, {
"name": "velo",
"url": "https://data.stadt-zuerich.ch/dataset/veloweg/resource/5f6c2689-824c-4c11-972f-bb5736b342be/download/veloweg.json",
"schedule": "3 20 1 * *"
}, {
"name": "statquart",
"path": "statquart.geojson"
}],
"server_port": "33333",
"data_dir": "data/",
"db_name": "db.db"
}