Peter Johnson
Peter Johnson
Yet to be determined, it certainly wasn't the silver bullet I was hoping it would be.
Hi @tungleduyxyz, the host is also hardcoded here https://github.com/pelias/interpolation/blob/dc71f4bed61a94fc5527aa2bea3ee22fb602d709/demo/index.html#L61 and the Jawg key we were donated for demos. I guess we didn't really foresee the need to make this configurable,...
libpostal seems to expand it this way: ``` ./libpostal "U Street Northwest" unit street northwest u street northwest ``` I'm not sure why both variants are not being saved in...
looks like we already do this for Pelias: ``` source_result.name.default = `${interpolation_result.properties.number} ${source_result.name.default}`; ``` https://github.com/pelias/api/blob/master/middleware/interpolate.js
This is the same issue as https://github.com/pelias/interpolation/issues/234 In Germany I'm seeing this issue as compound street names such as `foostraße` are being expanded and then can't be found using the...
IIRC the original assumption was that since the analysis was symmetrical (ie. libpostal for both indexing and search) that it would be ok, seems that assumption might not be true,...
Hi @adelcasse, this feature would need to be addressed in the `pelias/api` repository to enable autocomplete in Pelias. The interpolation engine was designed to be a standalone service, I would...
hi @elsa-pato, sorry for the late reply. I'd suggest looking in to your second point a bit more before you continue: > in my test cases libpostal behaves well so...
In a lot of cases it also struggles with fully specified street names: ```javascript http://localhost:4400/parse?address=L’Esplanade des Invalides [ { "label": "house", "value": "l'esplanade des invalides" } ] ``` It really...
We are hoping to merge https://github.com/pelias/api/pull/1287 soon which replaces the `addressit` parser with https://github.com/pelias/parser. Once that work is complete it will be possible to tackle this issue and enable interpolation...