interpolation
interpolation copied to clipboard
global street address interpolation service (beta)
We would like to contribute on enabling interpolation for autocomplete. This is a big step in resolving issues in the use of Pelias in our product. As discussed with @orangejulius...
I think in the past we've discussed combining the two SQLite databases produced during an interpolation build. Would this still be a good idea? It seems like it would be...
from osm: - `1A,1B,1C,1D,1E,1F,1G,1H,1J,1K,1L,1M,1N,1P,2A,2B,2C,2D,2E,2F,2G,2H,2J` - `95-A1` non-ascii chars? ``` could not reliably parse housenumber 28А could not reliably parse housenumber 28Б could not reliably parse housenumber 28В could not reliably...
This draft PR is https://github.com/pelias/interpolation/pull/249 plus [a single commit](https://github.com/pelias/interpolation/pull/250/commits/db95a35e9e3edbd82fa3b93c13fef570edd58f1f) to add multi-core support to the http server via the `cluster` module. When using the `node-postal` 'module' adapter it is recommended...
_Looking for early review, not 100% production ready yet_ Use microservice-wrapper to avoid having to load libpostal locally. ~Note: this now requires a new configuration section in `pelias.json`, a top-level...
This is very much inspired by [the PR to use libpostal over an HTTP API](https://github.com/pelias/interpolation/pull/146) and the great thing is it uses the same `async/await` API. So all methods are...
Here's a fun one. It looks like some possibly too naive abbreviation handling is used, at least in the demo. Here, Washington, D.C.'s U street is written incorrectly as "unit...
``` > a.street('beuthstraße') [ 'beuthstrasse', 'beuth strasse' ] ``` ``` sqlite> select * from names where id = 1990635; 3554177|1990635|beuthstraße 3554178|1990635|beuth straße ``` ``` docker-compose run interpolation ./interpolate extract /data/address.db...
The instruction says: ``` ./interpolate oa address.db street.db < /data/oa/nz/countrywide.csv ``` How to build worldwide adress.db? Should one iterate over all CSV files in the `/data/oa`? There are 57 countries...
The following address in Portland `2800 SE 47th Ave` is returning multiple (3x) results for the same street. It's most likely due to how the street is broken up, looking...