mirror of https://github.com/pelias/docker.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
122 lines
3.0 KiB
122 lines
3.0 KiB
{ |
|
"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": { |
|
"docker": "http://api:4000/v1/" |
|
} |
|
}, |
|
"api": { |
|
"textAnalyzer": "libpostal", |
|
"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": 34.05, |
|
"focus.point.lon": -118.24 |
|
} |
|
}, |
|
"imports": { |
|
"adminLookup": { |
|
"enabled": true |
|
}, |
|
"geonames": { |
|
"datapath": "/data/geonames", |
|
"countryCode": "ALL" |
|
}, |
|
"openstreetmap": { |
|
"download": [ |
|
{ "sourceURL": "https://s3.amazonaws.com/metro-extracts.nextzen.org/los-angeles_california.osm.pbf" } |
|
], |
|
"leveldbpath": "/tmp", |
|
"datapath": "/data/openstreetmap", |
|
"import": [{ |
|
"filename": "los-angeles_california.osm.pbf" |
|
}] |
|
}, |
|
"openaddresses": { |
|
"datapath": "/data/openaddresses", |
|
"files": [ |
|
"us/ca/los_angeles.csv" |
|
] |
|
}, |
|
"polyline": { |
|
"datapath": "/data/polylines", |
|
"files": [ "extract.0sv" ] |
|
}, |
|
"whosonfirst": { |
|
"datapath": "/data/whosonfirst", |
|
"importVenues": false, |
|
"importPostalcodes": true, |
|
"importPlace": [ |
|
"102086957" |
|
] |
|
}, |
|
"transit": { |
|
"datapath": "/data/transit", |
|
"feeds": [ |
|
{ |
|
"layerId": "bikeshare", |
|
"url": "https://bikeshare.metro.net/stations/json/", |
|
"filename": "metrobikeshare.json", |
|
"agencyId": "Metro-Bikeshare", |
|
"agencyName": "MetroBikeshare", |
|
"layerName": "bikeshare" |
|
}, |
|
{ |
|
"layerId": "stops", |
|
"url": "https://gitlab.com/LACMTA/gtfs_bus/raw/master/gtfs_bus.zip", |
|
"filename": "stops.txt", |
|
"agencyId": "LA Metro", |
|
"agencyName": "LA Metro", |
|
"layerName": "Stop" |
|
}, |
|
{ |
|
"layerId": "stops", |
|
"url": "https://gitlab.com/LACMTA/gtfs_bus/raw/master/gtfs_rail.zip", |
|
"filename": "stops.txt", |
|
"agencyId": "LA Metro", |
|
"agencyName": "LA Metro", |
|
"layerName": "Stop" |
|
}, |
|
{ |
|
"layerId": "stops", |
|
"url": "http://lacitydot.com/gtfs/administrator/gtfszip/ladotgtfs.zip", |
|
"filename": "stops.txt", |
|
"agencyId": "LADOT", |
|
"agencyName": "LADOT", |
|
"layerName": "Stop" |
|
} |
|
] |
|
}, |
|
"interpolation": { |
|
"download": { |
|
"tiger": { |
|
"datapath": "/data/tiger", |
|
"states": [ |
|
{ "state_code": 6, "county_code": 37, "name": "Los Angeles County, CA" } |
|
] |
|
} |
|
} |
|
} |
|
} |
|
}
|
|
|