I use the 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. The interpolation part is the following:
"interpolation": {
"download": {
"tiger": {
"datapath": "/data/tiger",
"states": [
{
"state_code": 41
}
]
}
}
}
I know that 'tiger' is a dataset only relevant for the US. But does anybody know how to specify the interpolation for Berlin, Germany instead of Portland, Oregon?
You can also i.a. use data from
openstreetmap
andopenaddresses
, see https://github.com/pelias/interpolation/ . I use dockerpelias/docker
myself. Snippet frompelias.json
:where in
/data/interpolation/
these files resides:street.db
andaddress.db
. How to produce these files is explained in thepelias/interpolation/
repo.