From afe0e90f45d34d0709c88378364bc3ddfe766102 Mon Sep 17 00:00:00 2001 From: Diana Shkolnikov Date: Tue, 4 Apr 2017 16:12:58 -0400 Subject: [PATCH] move interpolation before deduping --- routes/v1.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/routes/v1.js b/routes/v1.js index 8ee4173f..e9857559 100644 --- a/routes/v1.js +++ b/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(),