-
Notifications
You must be signed in to change notification settings - Fork 0
/
pelias.json
102 lines (102 loc) · 2.3 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
96
97
98
99
100
101
102
{
"logger": {
"level": "info",
"timestamp": false
},
"esclient": {
"apiVersion": "7.5",
"hosts": [
{ "host": "elasticsearch" }
]
},
"elasticsearch": {
"settings": {
"index": {
"refresh_interval": "10s",
"number_of_replicas": "0",
"number_of_shards": "1"
}
}
},
"acceptance-tests": {
"endpoints": {
"docker": "http://api:4000/v1/"
}
},
"api": {
"services": {
"pip": { "url": "http://pip:4200" },
"libpostal": { "url": "http://libpostal:4400" },
"placeholder": { "url": "http://placeholder:4100" },
"interpolation": { "url": "http://interpolation:4300" }
},
"defaultParameters": {
"focus.point.lat": 37.33480,
"focus.point.lon": -121.89361
},
"targets": {
"auto_discover": true
}
},
"imports": {
"adminLookup": {
"enabled": true
},
"geonames": {
"datapath": "/data/geonames",
"countryCode": "US"
},
"openstreetmap": {
"download": [
{ "sourceURL": "https://download.geofabrik.de/north-america/us/california/norcal-latest.osm.pbf" }
],
"leveldbpath": "/tmp",
"datapath": "/data/openstreetmap",
"import": [{
"filename": "norcal-latest.osm.pbf"
}]
},
"openaddresses": {
"datapath": "/data/openaddresses",
"files": [
"us/ca/city_of_santa_clara.csv",
"us/ca/santa_clara.csv",
"us/ca/city_of_san_jose.csv",
"us/ca/city_of_san_jose2.csv",
"us/ca/city_of_mountain_view.csv",
"us/ca/city_of_cupertino.csv"
]
},
"polyline": {
"datapath": "/data/polylines",
"files": [ "extract.0sv" ]
},
"whosonfirst": {
"datapath": "/data/whosonfirst",
"importPostalcodes": true,
"countryCode": "US",
"importPlace": [
"102081673"
]
},
"transit": {
"datapath": "/data/transit",
"feeds": []
},
"csv": {
"datapath": "/data",
"files": ["AddressPoint_pelias.csv"],
"download": []
},
"interpolation": {
"download": {
"tiger": {
"datapath": "/data/tiger",
"states": [
{ "state_code": 6, "county_code": 85, "name": "Santa Clara County, CA" }
]
}
}
}
}
}