Browse Source

Transliterates Saint and Sainte in ES schema see pelias/schema#268

pull/1091/head
Joxit 7 years ago committed by Julian Simioni
parent
commit
551f0227db
No known key found for this signature in database
GPG Key ID: B9EEB0C6EE0910A1
  1. 18
      sanitizer/_city_name_standardizer.js
  2. 82
      test/unit/sanitizer/_city_name_standardizer.js

18
sanitizer/_city_name_standardizer.js

@ -1,20 +1,18 @@
const _ = require('lodash'); const _ = require('lodash');
// matches 'ft', 'mt', 'saint', and 'sainte' on word boundary // matches 'ft', 'mt' on word boundary
const mountSaintFort = /\b([fm]t|ste?)\b/g; const mountFort = /\b([fm]t)\b/g;
const transliterations = { const transliterations = {
'mt': 'mount', 'mt': 'mount',
'ft': 'fort', 'ft': 'fort'
'st': 'saint',
'ste': 'sainte'
}; };
function transliterate(match) { function transliterate(match) {
return _.get(transliterations, match); return _.get(transliterations, match);
} }
// transliterate ft/mt/saint/sainte to fort/mount/st/ste, respectively // transliterate ft/mt to fort/mount, respectively
function _sanitize(raw, clean) { function _sanitize(raw, clean) {
// error & warning messages // error & warning messages
// this function doesn't add any error or warning messages // this function doesn't add any error or warning messages
@ -24,14 +22,14 @@ function _sanitize(raw, clean) {
if (!_.isEmpty(_.get(clean, 'parsed_text.city'))) { if (!_.isEmpty(_.get(clean, 'parsed_text.city'))) {
// eg input: Ft. st Louis // eg input: Ft. st Louis
// after 1. ft st louis // after 1. ft st louis
// after 2. fort saint louis // after 2. fort st louis
// after 3. fort saint louis // after 3. fort st louis
// 1. remove '.' that could abbreviate ft and mt (makes transliteration regex easier) // 1. remove '.' that could abbreviate ft and mt (makes transliteration regex easier)
const periods_removed = _.toLower(clean.parsed_text.city).replace(/\b(mt|ft)\./g, '$1 '); const periods_removed = _.toLower(clean.parsed_text.city).replace(/\b(mt|ft)\./g, '$1 ');
// 2. transliterate 'st'->'saint', etc // 2. transliterate 'ft'->'fort', etc
const transliterated = periods_removed.replace(mountSaintFort, transliterate); const transliterated = periods_removed.replace(mountFort, transliterate);
// 3. reduce whitespace sequences that can occur when removing periods down to a single space // 3. reduce whitespace sequences that can occur when removing periods down to a single space
const whitespace_normalized = _.trimEnd(transliterated.replace(/\s+/, ' ')); const whitespace_normalized = _.trimEnd(transliterated.replace(/\s+/, ' '));

82
test/unit/sanitizer/_city_name_standardizer.js

@ -48,82 +48,6 @@ module.exports.tests.text_parser = function(test, common) {
}); });
test('\'st\' should be expanded to \'saint\' wherever it appears in the city', function(t) {
const raw = {};
const clean = {
parsed_text: {
query: 'saint query value',
neighbourhood: 'saint neighbourhood value',
borough: 'saint borough value',
city: 'st city ST value St',
county: 'saint county value',
state: 'saint state value',
postalcode: 'saint postalcode value',
country: 'saint country value'
}
};
const expected_clean = {
parsed_text: {
query: 'saint query value',
neighbourhood: 'saint neighbourhood value',
borough: 'saint borough value',
city: 'saint city saint value saint',
county: 'saint county value',
state: 'saint state value',
postalcode: 'saint postalcode value',
country: 'saint country value'
}
};
const messages = sanitizer.sanitize(raw, clean);
t.deepEquals(clean, expected_clean);
t.deepEquals(messages.errors, [], 'no errors');
t.deepEquals(messages.warnings, [], 'no warnings');
t.end();
});
test('\'ste\' should be expanded to \'sainte\' wherever it appears in the city', function(t) {
const raw = {};
const clean = {
parsed_text: {
query: 'sainte query value',
neighbourhood: 'sainte neighbourhood value',
borough: 'sainte borough value',
city: 'ste city STE value StE',
county: 'sainte county value',
state: 'sainte state value',
postalcode: 'sainte postalcode value',
country: 'sainte country value'
}
};
const expected_clean = {
parsed_text: {
query: 'sainte query value',
neighbourhood: 'sainte neighbourhood value',
borough: 'sainte borough value',
city: 'sainte city sainte value sainte',
county: 'sainte county value',
state: 'sainte state value',
postalcode: 'sainte postalcode value',
country: 'sainte country value'
}
};
const messages = sanitizer.sanitize(raw, clean);
t.deepEquals(clean, expected_clean);
t.deepEquals(messages.errors, [], 'no errors');
t.deepEquals(messages.warnings, [], 'no warnings');
t.end();
});
test('\'ft\' should be expanded to \'fort\' wherever it appears in the city', function(t) { test('\'ft\' should be expanded to \'fort\' wherever it appears in the city', function(t) {
const raw = {}; const raw = {};
@ -200,18 +124,18 @@ module.exports.tests.text_parser = function(test, common) {
}); });
test('mixture of \'mt\', \'ft\', \'st\', and \'st\' should be expanded', function(t) { test('mixture of \'mt\', \'ft\' should be expanded', function(t) {
const raw = {}; const raw = {};
const clean = { const clean = {
parsed_text: { parsed_text: {
city: 'mt. ft st ste mt ft.' city: 'mt. ft mt ft.'
} }
}; };
const expected_clean = { const expected_clean = {
parsed_text: { parsed_text: {
city: 'mount fort saint sainte mount fort' city: 'mount fort mount fort'
} }
}; };

Loading…
Cancel
Save