Browse Source

Merge pull request #835 from pelias/interpolate-before-dedupe

Move interpolation before deduping
pull/837/head
Diana Shkolnikov 8 years ago committed by GitHub
parent
commit
a88536303f
  1. 4
      routes/v1.js

4
routes/v1.js

@ -120,8 +120,8 @@ function addRoutes(app, peliasConfig) {
postProc.distances('focus.point.'),
postProc.confidenceScores(peliasConfig.api),
postProc.confidenceScoresFallback(),
postProc.dedupe(),
postProc.interpolate(),
postProc.dedupe(),
postProc.accuracy(),
postProc.localNamingConventions(),
postProc.renamePlacenames(),
@ -140,8 +140,8 @@ function addRoutes(app, peliasConfig) {
postProc.distances('focus.point.'),
postProc.confidenceScores(peliasConfig.api),
postProc.confidenceScoresFallback(),
postProc.dedupe(),
postProc.interpolate(),
postProc.dedupe(),
postProc.accuracy(),
postProc.localNamingConventions(),
postProc.renamePlacenames(),

Loading…
Cancel
Save