-
Notifications
You must be signed in to change notification settings - Fork 0
/
pelias.json
95 lines (95 loc) · 1.9 KB
/
pelias.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
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
{
"logger": {
"level": "info",
"timestamp": false
},
"esclient": {
"hosts": [{
"host": "elasticsearch"
}]
},
"elasticsearch": {
"settings": {
"index": {
"refresh_interval": "10s",
"number_of_replicas": "0",
"number_of_shards": "1"
}
}
},
"acceptance-tests": {
"endpoints": {
"local": "http://localhost:4000/v1/"
}
},
"api": {
"textAnalyzer": "libpostal",
"services": {
"placeholder": {
"url": "http://placeholder:4100"
},
"libpostal": {
"url": "http://libpostal:8080"
},
"pip": {
"url": "http://pip-service:4200"
},
"interpolation": {
"url": "http://interpolation:4300"
}
}
},
"services": {
"libpostal": {
"url": "http://libpostal:8080",
"timeout": 5000
}
},
"imports": {
"adminLookup": {
"enabled": true
},
"geonames": {
"datapath": "/data/geonames",
"countryCode": "ALL"
},
"openstreetmap": {
"download": [
{
"sourceURL": "https://s3.amazonaws.com/metro-extracts.nextzen.org/portland_oregon.osm.pbf"
}
],
"leveldbpath": "/tmp",
"datapath": "/data/openstreetmap",
"import": [{
"filename": "portland_oregon.osm.pbf"
}]
},
"openaddresses": {
"datapath": "/data/openaddresses",
"files": [ "us/or/portland_metro.csv" ]
},
"polyline": {
"datapath": "/data/polylines",
"files": [ "extract.0sv" ]
},
"whosonfirst": {
"datapath": "/data/whosonfirst",
"importVenues": false,
"importPostalcodes": true,
"importPlace": "101715829"
},
"interpolation": {
"download": {
"tiger": {
"datapath": "/data/tiger",
"states": [
{
"state_code": 41
}
]
}
}
}
}
}