mirror of https://github.com/pelias/api.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
138 lines
3.6 KiB
138 lines
3.6 KiB
|
|
module.exports = { |
|
'query': { |
|
'filtered': { |
|
'query': { |
|
'bool': { |
|
'must': [{ |
|
'match': { |
|
'name.default': { |
|
'analyzer': 'peliasPhrase', |
|
'boost': 100, |
|
'query': 'test', |
|
'type': 'phrase', |
|
'operator': 'and' |
|
} |
|
} |
|
}], |
|
'should': [{ |
|
'function_score': { |
|
'query': { |
|
'match': { |
|
'name.default': { |
|
'analyzer': 'peliasPhrase', |
|
'boost': 100, |
|
'query': 'test', |
|
'type': 'phrase', |
|
'operator': 'and' |
|
} |
|
} |
|
}, |
|
'functions': [{ |
|
'linear': { |
|
'center_point': { |
|
'origin': { |
|
'lat': 29.49136, |
|
'lon': -82.50622 |
|
}, |
|
'offset': '10km', |
|
'scale': '250km', |
|
'decay': 0.5 |
|
} |
|
}, |
|
'weight': 3 |
|
}], |
|
'score_mode': 'avg', |
|
'boost_mode': 'multiply', |
|
'filter': { |
|
'or': [ |
|
{ |
|
'type': { |
|
'value': 'osmnode' |
|
} |
|
}, |
|
{ |
|
'type': { |
|
'value': 'osmway' |
|
} |
|
}, |
|
{ |
|
'type': { |
|
'value': 'osmaddress' |
|
} |
|
}, |
|
{ |
|
'type': { |
|
'value': 'openaddresses' |
|
} |
|
} |
|
] |
|
} |
|
} |
|
},{ |
|
'function_score': { |
|
'query': { |
|
'match': { |
|
'name.default': { |
|
'analyzer': 'peliasPhrase', |
|
'boost': 100, |
|
'query': 'test', |
|
'type': 'phrase', |
|
'operator': 'and' |
|
} |
|
} |
|
}, |
|
'max_boost': 20, |
|
'score_mode': 'first', |
|
'boost_mode': 'replace', |
|
'filter': { |
|
'exists': { |
|
'field': 'popularity' |
|
} |
|
}, |
|
'functions': [{ |
|
'field_value_factor': { |
|
'modifier': 'log1p', |
|
'field': 'popularity' |
|
}, |
|
'weight': 1 |
|
}] |
|
} |
|
},{ |
|
'function_score': { |
|
'query': { |
|
'match': { |
|
'name.default': { |
|
'analyzer': 'peliasPhrase', |
|
'boost': 100, |
|
'query': 'test', |
|
'type': 'phrase', |
|
'operator': 'and' |
|
} |
|
} |
|
}, |
|
'max_boost': 20, |
|
'score_mode': 'first', |
|
'boost_mode': 'replace', |
|
'filter': { |
|
'exists': { |
|
'field': 'population' |
|
} |
|
}, |
|
'functions': [{ |
|
'field_value_factor': { |
|
'modifier': 'log1p', |
|
'field': 'population' |
|
}, |
|
'weight': 2 |
|
}] |
|
} |
|
}] |
|
} |
|
} |
|
} |
|
}, |
|
'sort': [ '_score' ], |
|
'size': 20, |
|
'track_scores': true |
|
};
|
|
|