如何为 Pelias 的自托管实例配置插值?
How can I configure the interpolation for a self hosted instance of Pelias?
我用的是dockerfiles GitHub repository of Pelias and would like to set up a local instance of the geocoding service. I need to import data of Berlin, Germany. To achieve this I have to adjust the data pathes and files in a config file called pelias.json。插值部分如下:
"interpolation": {
"download": {
"tiger": {
"datapath": "/data/tiger",
"states": [
{
"state_code": 41
}
]
}
}
}
我知道 'tiger' 是一个仅与美国相关的数据集。但是有人知道如何为德国柏林而不是俄勒冈州波特兰指定 interpolation 吗?
你也可以i.a。使用来自 openstreetmap
和 openaddresses
的数据,请参阅 https://github.com/pelias/interpolation/。我自己用 docker pelias/docker
。来自 pelias.json
的片段:
"interpolation": {
"datapath": "/data/interpolation/"
}
这些文件位于 /data/interpolation/
中:street.db
和 address.db
。 pelias/interpolation/
存储库中解释了如何生成这些文件。
我用的是dockerfiles GitHub repository of Pelias and would like to set up a local instance of the geocoding service. I need to import data of Berlin, Germany. To achieve this I have to adjust the data pathes and files in a config file called pelias.json。插值部分如下:
"interpolation": {
"download": {
"tiger": {
"datapath": "/data/tiger",
"states": [
{
"state_code": 41
}
]
}
}
}
我知道 'tiger' 是一个仅与美国相关的数据集。但是有人知道如何为德国柏林而不是俄勒冈州波特兰指定 interpolation 吗?
你也可以i.a。使用来自 openstreetmap
和 openaddresses
的数据,请参阅 https://github.com/pelias/interpolation/。我自己用 docker pelias/docker
。来自 pelias.json
的片段:
"interpolation": { "datapath": "/data/interpolation/" }
这些文件位于 /data/interpolation/
中:street.db
和 address.db
。 pelias/interpolation/
存储库中解释了如何生成这些文件。