mirror of https://github.com/pelias/api.git
Julian Simioni
7 years ago
committed by
GitHub
33 changed files with 1047 additions and 2221 deletions
@ -1,7 +1,10 @@ |
|||||||
|
|
||||||
var app = require('./app'), |
const app = require('./app'), |
||||||
port = ( process.env.PORT || 3100 ); |
port = ( process.env.PORT || 3100 ), |
||||||
|
host = ( process.env.HOST || undefined ); |
||||||
|
|
||||||
/** run server on the default setup (single core) **/ |
const server = app.listen( port, host, () => { |
||||||
console.log( 'pelias is now running on port ' + port ); |
// ask server for the actual address and port its listening on
|
||||||
app.listen( port ); |
const listenAddress = server.address(); |
||||||
|
console.log( `pelias is now running on ${listenAddress.address}:${listenAddress.port}` ); |
||||||
|
}); |
||||||
|
@ -1,39 +0,0 @@ |
|||||||
var vs = require('../../../query/reverse_defaults'); |
|
||||||
|
|
||||||
module.exports = { |
|
||||||
'query': { |
|
||||||
'bool': { |
|
||||||
'filter': [{ |
|
||||||
'geo_distance': { |
|
||||||
'distance': '3km', |
|
||||||
'distance_type': 'plane', |
|
||||||
'optimize_bbox': 'indexed', |
|
||||||
'center_point': { |
|
||||||
'lat': 0, |
|
||||||
'lon': 0 |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
'terms': { |
|
||||||
'layer': ['venue', 'address', 'street'] |
|
||||||
} |
|
||||||
}] |
|
||||||
} |
|
||||||
}, |
|
||||||
'sort': [ |
|
||||||
'_score', |
|
||||||
{ |
|
||||||
'_geo_distance': { |
|
||||||
'center_point': { |
|
||||||
'lat': 0, |
|
||||||
'lon': 0 |
|
||||||
}, |
|
||||||
'order': 'asc', |
|
||||||
'distance_type': 'plane' |
|
||||||
} |
|
||||||
} |
|
||||||
], |
|
||||||
'size': vs.size, |
|
||||||
'track_scores': true |
|
||||||
}; |
|
@ -1,39 +0,0 @@ |
|||||||
var vs = require('../../../query/reverse_defaults'); |
|
||||||
|
|
||||||
module.exports = { |
|
||||||
'query': { |
|
||||||
'bool': { |
|
||||||
'filter': [{ |
|
||||||
'geo_distance': { |
|
||||||
'distance': '3km', |
|
||||||
'distance_type': 'plane', |
|
||||||
'optimize_bbox': 'indexed', |
|
||||||
'center_point': { |
|
||||||
'lat': 29.49136, |
|
||||||
'lon': -82.50622 |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
'terms': { |
|
||||||
'layer': ['venue', 'address', 'street'] |
|
||||||
} |
|
||||||
}] |
|
||||||
} |
|
||||||
}, |
|
||||||
'sort': [ |
|
||||||
'_score', |
|
||||||
{ |
|
||||||
'_geo_distance': { |
|
||||||
'center_point': { |
|
||||||
'lat': 29.49136, |
|
||||||
'lon': -82.50622 |
|
||||||
}, |
|
||||||
'order': 'asc', |
|
||||||
'distance_type': 'plane' |
|
||||||
} |
|
||||||
} |
|
||||||
], |
|
||||||
'size': vs.size, |
|
||||||
'track_scores': true |
|
||||||
}; |
|
@ -1,49 +0,0 @@ |
|||||||
var vs = require('../../../query/reverse_defaults'); |
|
||||||
|
|
||||||
module.exports = { |
|
||||||
'query': { |
|
||||||
'bool': { |
|
||||||
'must': [ |
|
||||||
{ |
|
||||||
'match': { |
|
||||||
'parent.country_a': { |
|
||||||
'analyzer': 'standard', |
|
||||||
'query': 'ABC' |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
], |
|
||||||
'filter': [{ |
|
||||||
'geo_distance': { |
|
||||||
'distance': '3km', |
|
||||||
'distance_type': 'plane', |
|
||||||
'optimize_bbox': 'indexed', |
|
||||||
'center_point': { |
|
||||||
'lat': 29.49136, |
|
||||||
'lon': -82.50622 |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
'terms': { |
|
||||||
'layer': ['venue', 'address', 'street'] |
|
||||||
} |
|
||||||
}] |
|
||||||
} |
|
||||||
}, |
|
||||||
'sort': [ |
|
||||||
'_score', |
|
||||||
{ |
|
||||||
'_geo_distance': { |
|
||||||
'center_point': { |
|
||||||
'lat': 29.49136, |
|
||||||
'lon': -82.50622 |
|
||||||
}, |
|
||||||
'order': 'asc', |
|
||||||
'distance_type': 'plane' |
|
||||||
} |
|
||||||
} |
|
||||||
], |
|
||||||
'size': vs.size, |
|
||||||
'track_scores': true |
|
||||||
}; |
|
@ -1,41 +0,0 @@ |
|||||||
var vs = require('../../../query/reverse_defaults'); |
|
||||||
|
|
||||||
module.exports = { |
|
||||||
'query': { |
|
||||||
'bool': { |
|
||||||
'filter': [ |
|
||||||
{ |
|
||||||
'geo_distance': { |
|
||||||
'distance': '3km', |
|
||||||
'distance_type': 'plane', |
|
||||||
'optimize_bbox': 'indexed', |
|
||||||
'center_point': { |
|
||||||
'lat': 29.49136, |
|
||||||
'lon': -82.50622 |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
'terms': { |
|
||||||
'layer': ['venue', 'address', 'street'] |
|
||||||
} |
|
||||||
} |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
'sort': [ |
|
||||||
'_score', |
|
||||||
{ |
|
||||||
'_geo_distance': { |
|
||||||
'center_point': { |
|
||||||
'lat': 29.49136, |
|
||||||
'lon': -82.50622 |
|
||||||
}, |
|
||||||
'order': 'asc', |
|
||||||
'distance_type': 'plane' |
|
||||||
} |
|
||||||
} |
|
||||||
], |
|
||||||
'size': vs.size, |
|
||||||
'track_scores': true |
|
||||||
}; |
|
@ -1,41 +0,0 @@ |
|||||||
var vs = require('../../../query/reverse_defaults'); |
|
||||||
|
|
||||||
module.exports = { |
|
||||||
'query': { |
|
||||||
'bool': { |
|
||||||
'filter': [ |
|
||||||
{ |
|
||||||
'geo_distance': { |
|
||||||
'distance': '3km', |
|
||||||
'distance_type': 'plane', |
|
||||||
'optimize_bbox': 'indexed', |
|
||||||
'center_point': { |
|
||||||
'lat': 29.49136, |
|
||||||
'lon': -82.50622 |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
'terms': { |
|
||||||
'layer': ['venue', 'street'] |
|
||||||
} |
|
||||||
} |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
'sort': [ |
|
||||||
'_score', |
|
||||||
{ |
|
||||||
'_geo_distance': { |
|
||||||
'center_point': { |
|
||||||
'lat': 29.49136, |
|
||||||
'lon': -82.50622 |
|
||||||
}, |
|
||||||
'order': 'asc', |
|
||||||
'distance_type': 'plane' |
|
||||||
} |
|
||||||
} |
|
||||||
], |
|
||||||
'size': vs.size, |
|
||||||
'track_scores': true |
|
||||||
}; |
|
@ -1,46 +0,0 @@ |
|||||||
var vs = require('../../../query/reverse_defaults'); |
|
||||||
|
|
||||||
module.exports = { |
|
||||||
'query': { |
|
||||||
'bool': { |
|
||||||
'filter': [ |
|
||||||
{ |
|
||||||
'geo_distance': { |
|
||||||
'distance': '3km', |
|
||||||
'distance_type': 'plane', |
|
||||||
'optimize_bbox': 'indexed', |
|
||||||
'center_point': { |
|
||||||
'lat': 29.49136, |
|
||||||
'lon': -82.50622 |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
'terms': { |
|
||||||
'source': ['test'] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
'terms': { |
|
||||||
'layer': ['venue', 'address', 'street'] |
|
||||||
} |
|
||||||
} |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
'sort': [ |
|
||||||
'_score', |
|
||||||
{ |
|
||||||
'_geo_distance': { |
|
||||||
'center_point': { |
|
||||||
'lat': 29.49136, |
|
||||||
'lon': -82.50622 |
|
||||||
}, |
|
||||||
'order': 'asc', |
|
||||||
'distance_type': 'plane' |
|
||||||
} |
|
||||||
} |
|
||||||
], |
|
||||||
'size': vs.size, |
|
||||||
'track_scores': true |
|
||||||
}; |
|
@ -1,71 +0,0 @@ |
|||||||
module.exports = { |
|
||||||
'query': { |
|
||||||
'function_score': { |
|
||||||
'query': { |
|
||||||
'bool': { |
|
||||||
'minimum_should_match': 1, |
|
||||||
'should': [ |
|
||||||
{ |
|
||||||
'bool': { |
|
||||||
'_name': 'fallback.street', |
|
||||||
'boost': 5, |
|
||||||
'must': [ |
|
||||||
{ |
|
||||||
'match_phrase': { |
|
||||||
'address_parts.street': 'street value' |
|
||||||
} |
|
||||||
} |
|
||||||
], |
|
||||||
'should': [], |
|
||||||
'filter': { |
|
||||||
'term': { |
|
||||||
'layer': 'street' |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
], |
|
||||||
'filter': { |
|
||||||
'bool': { |
|
||||||
'must': [ |
|
||||||
{ |
|
||||||
'terms': { |
|
||||||
'layer': [ |
|
||||||
'test' |
|
||||||
] |
|
||||||
} |
|
||||||
} |
|
||||||
] |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
'max_boost': 20, |
|
||||||
'functions': [ |
|
||||||
{ |
|
||||||
'field_value_factor': { |
|
||||||
'modifier': 'log1p', |
|
||||||
'field': 'popularity', |
|
||||||
'missing': 1 |
|
||||||
}, |
|
||||||
'weight': 1 |
|
||||||
}, |
|
||||||
{ |
|
||||||
'field_value_factor': { |
|
||||||
'modifier': 'log1p', |
|
||||||
'field': 'population', |
|
||||||
'missing': 1 |
|
||||||
}, |
|
||||||
'weight': 2 |
|
||||||
} |
|
||||||
], |
|
||||||
'score_mode': 'avg', |
|
||||||
'boost_mode': 'multiply' |
|
||||||
} |
|
||||||
}, |
|
||||||
'size': 10, |
|
||||||
'track_scores': true, |
|
||||||
'sort': [ |
|
||||||
'_score' |
|
||||||
] |
|
||||||
}; |
|
@ -1,71 +0,0 @@ |
|||||||
module.exports = { |
|
||||||
'query': { |
|
||||||
'function_score': { |
|
||||||
'query': { |
|
||||||
'bool': { |
|
||||||
'minimum_should_match': 1, |
|
||||||
'should': [ |
|
||||||
{ |
|
||||||
'bool': { |
|
||||||
'_name': 'fallback.street', |
|
||||||
'boost': 5, |
|
||||||
'must': [ |
|
||||||
{ |
|
||||||
'match_phrase': { |
|
||||||
'address_parts.street': 'street value' |
|
||||||
} |
|
||||||
} |
|
||||||
], |
|
||||||
'should': [], |
|
||||||
'filter': { |
|
||||||
'term': { |
|
||||||
'layer': 'street' |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
], |
|
||||||
'filter': { |
|
||||||
'bool': { |
|
||||||
'must': [ |
|
||||||
{ |
|
||||||
'terms': { |
|
||||||
'layer': [ |
|
||||||
'test' |
|
||||||
] |
|
||||||
} |
|
||||||
} |
|
||||||
] |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
'max_boost': 20, |
|
||||||
'functions': [ |
|
||||||
{ |
|
||||||
'field_value_factor': { |
|
||||||
'modifier': 'log1p', |
|
||||||
'field': 'popularity', |
|
||||||
'missing': 1 |
|
||||||
}, |
|
||||||
'weight': 1 |
|
||||||
}, |
|
||||||
{ |
|
||||||
'field_value_factor': { |
|
||||||
'modifier': 'log1p', |
|
||||||
'field': 'population', |
|
||||||
'missing': 1 |
|
||||||
}, |
|
||||||
'weight': 2 |
|
||||||
} |
|
||||||
], |
|
||||||
'score_mode': 'avg', |
|
||||||
'boost_mode': 'multiply' |
|
||||||
} |
|
||||||
}, |
|
||||||
'size': 10, |
|
||||||
'track_scores': true, |
|
||||||
'sort': [ |
|
||||||
'_score' |
|
||||||
] |
|
||||||
}; |
|
@ -1,59 +0,0 @@ |
|||||||
{ |
|
||||||
"query": { |
|
||||||
"function_score": { |
|
||||||
"query": { |
|
||||||
"bool": { |
|
||||||
"minimum_should_match": 1, |
|
||||||
"should": [], |
|
||||||
"filter": { |
|
||||||
"bool": { |
|
||||||
"must": [ |
|
||||||
{ |
|
||||||
"match": { |
|
||||||
"parent.country_a": { |
|
||||||
"analyzer": "standard", |
|
||||||
"query": "ABC" |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"terms": { |
|
||||||
"layer": [ |
|
||||||
"test" |
|
||||||
] |
|
||||||
} |
|
||||||
} |
|
||||||
] |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
"max_boost": 20, |
|
||||||
"functions": [ |
|
||||||
{ |
|
||||||
"field_value_factor": { |
|
||||||
"modifier": "log1p", |
|
||||||
"field": "popularity", |
|
||||||
"missing": 1 |
|
||||||
}, |
|
||||||
"weight": 1 |
|
||||||
}, |
|
||||||
{ |
|
||||||
"field_value_factor": { |
|
||||||
"modifier": "log1p", |
|
||||||
"field": "population", |
|
||||||
"missing": 1 |
|
||||||
}, |
|
||||||
"weight": 2 |
|
||||||
} |
|
||||||
], |
|
||||||
"score_mode": "avg", |
|
||||||
"boost_mode": "multiply" |
|
||||||
} |
|
||||||
}, |
|
||||||
"sort": [ |
|
||||||
"_score" |
|
||||||
], |
|
||||||
"size": 10, |
|
||||||
"track_scores": true |
|
||||||
} |
|
@ -1,859 +0,0 @@ |
|||||||
{ |
|
||||||
"query": { |
|
||||||
"function_score": { |
|
||||||
"query": { |
|
||||||
"bool": { |
|
||||||
"minimum_should_match": 1, |
|
||||||
"should": [ |
|
||||||
{ |
|
||||||
"bool": { |
|
||||||
"_name": "fallback.venue", |
|
||||||
"must": [ |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "query value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"phrase.default", |
|
||||||
"category" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "neighbourhood value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.neighbourhood", |
|
||||||
"parent.neighbourhood_a" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "borough value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.borough", |
|
||||||
"parent.borough_a" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "city value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.locality", |
|
||||||
"parent.locality_a", |
|
||||||
"parent.localadmin", |
|
||||||
"parent.localadmin_a" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "county value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.county", |
|
||||||
"parent.county_a", |
|
||||||
"parent.macrocounty", |
|
||||||
"parent.macrocounty_a" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "state value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.region", |
|
||||||
"parent.region_a", |
|
||||||
"parent.macroregion", |
|
||||||
"parent.macroregion_a" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "country value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.country", |
|
||||||
"parent.country_a", |
|
||||||
"parent.dependency", |
|
||||||
"parent.dependency_a" |
|
||||||
] |
|
||||||
} |
|
||||||
} |
|
||||||
], |
|
||||||
"filter": { |
|
||||||
"term": { |
|
||||||
"layer": "venue" |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"bool": { |
|
||||||
"_name": "fallback.address", |
|
||||||
"must": [ |
|
||||||
{ |
|
||||||
"match_phrase": { |
|
||||||
"address_parts.number": "number value" |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"match_phrase": { |
|
||||||
"address_parts.street": "street value" |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "neighbourhood value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.neighbourhood", |
|
||||||
"parent.neighbourhood_a" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "borough value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.borough", |
|
||||||
"parent.borough_a" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "city value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.locality", |
|
||||||
"parent.locality_a", |
|
||||||
"parent.localadmin", |
|
||||||
"parent.localadmin_a" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "county value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.county", |
|
||||||
"parent.county_a", |
|
||||||
"parent.macrocounty", |
|
||||||
"parent.macrocounty_a" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "state value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.region", |
|
||||||
"parent.region_a", |
|
||||||
"parent.macroregion", |
|
||||||
"parent.macroregion_a" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "country value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.country", |
|
||||||
"parent.country_a", |
|
||||||
"parent.dependency", |
|
||||||
"parent.dependency_a" |
|
||||||
] |
|
||||||
} |
|
||||||
} |
|
||||||
], |
|
||||||
"should": [ |
|
||||||
{ |
|
||||||
"match_phrase": { |
|
||||||
"address_parts.zip": "postalcode value" |
|
||||||
} |
|
||||||
} |
|
||||||
], |
|
||||||
"filter": { |
|
||||||
"term": { |
|
||||||
"layer": "address" |
|
||||||
} |
|
||||||
}, |
|
||||||
"boost": 10 |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"bool": { |
|
||||||
"_name": "fallback.street", |
|
||||||
"must": [ |
|
||||||
{ |
|
||||||
"match_phrase": { |
|
||||||
"address_parts.street": "street value" |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "neighbourhood value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.neighbourhood", |
|
||||||
"parent.neighbourhood_a" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "borough value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.borough", |
|
||||||
"parent.borough_a" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "city value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.locality", |
|
||||||
"parent.locality_a", |
|
||||||
"parent.localadmin", |
|
||||||
"parent.localadmin_a" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "county value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.county", |
|
||||||
"parent.county_a", |
|
||||||
"parent.macrocounty", |
|
||||||
"parent.macrocounty_a" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "state value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.region", |
|
||||||
"parent.region_a", |
|
||||||
"parent.macroregion", |
|
||||||
"parent.macroregion_a" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "country value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.country", |
|
||||||
"parent.country_a", |
|
||||||
"parent.dependency", |
|
||||||
"parent.dependency_a" |
|
||||||
] |
|
||||||
} |
|
||||||
} |
|
||||||
], |
|
||||||
"should": [ |
|
||||||
{ |
|
||||||
"match_phrase": { |
|
||||||
"address_parts.zip": "postalcode value" |
|
||||||
} |
|
||||||
} |
|
||||||
], |
|
||||||
"filter": { |
|
||||||
"term": { |
|
||||||
"layer": "street" |
|
||||||
} |
|
||||||
}, |
|
||||||
"boost": 5 |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"bool": { |
|
||||||
"_name": "fallback.postalcode", |
|
||||||
"must": [ |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "postalcode value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.postalcode" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "city value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.locality", |
|
||||||
"parent.locality_a", |
|
||||||
"parent.localadmin", |
|
||||||
"parent.localadmin_a" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "county value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.county", |
|
||||||
"parent.county_a", |
|
||||||
"parent.macrocounty", |
|
||||||
"parent.macrocounty_a" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "state value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.region", |
|
||||||
"parent.region_a", |
|
||||||
"parent.macroregion", |
|
||||||
"parent.macroregion_a" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "country value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.country", |
|
||||||
"parent.country_a", |
|
||||||
"parent.dependency", |
|
||||||
"parent.dependency_a" |
|
||||||
] |
|
||||||
} |
|
||||||
} |
|
||||||
], |
|
||||||
"filter": { |
|
||||||
"term": { |
|
||||||
"layer": "postalcode" |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"bool": { |
|
||||||
"_name": "fallback.neighbourhood", |
|
||||||
"must": [ |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "neighbourhood value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.neighbourhood", |
|
||||||
"parent.neighbourhood_a" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "borough value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.borough", |
|
||||||
"parent.borough_a" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "city value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.locality", |
|
||||||
"parent.locality_a", |
|
||||||
"parent.localadmin", |
|
||||||
"parent.localadmin_a" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "county value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.county", |
|
||||||
"parent.county_a", |
|
||||||
"parent.macrocounty", |
|
||||||
"parent.macrocounty_a" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "state value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.region", |
|
||||||
"parent.region_a", |
|
||||||
"parent.macroregion", |
|
||||||
"parent.macroregion_a" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "country value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.country", |
|
||||||
"parent.country_a", |
|
||||||
"parent.dependency", |
|
||||||
"parent.dependency_a" |
|
||||||
] |
|
||||||
} |
|
||||||
} |
|
||||||
], |
|
||||||
"filter": { |
|
||||||
"term": { |
|
||||||
"layer": "neighbourhood" |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"bool": { |
|
||||||
"_name": "fallback.borough", |
|
||||||
"must": [ |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "borough value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.borough", |
|
||||||
"parent.borough_a" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "city value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.locality", |
|
||||||
"parent.locality_a", |
|
||||||
"parent.localadmin", |
|
||||||
"parent.localadmin_a" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "county value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.county", |
|
||||||
"parent.county_a", |
|
||||||
"parent.macrocounty", |
|
||||||
"parent.macrocounty_a" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "state value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.region", |
|
||||||
"parent.region_a", |
|
||||||
"parent.macroregion", |
|
||||||
"parent.macroregion_a" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "country value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.country", |
|
||||||
"parent.country_a", |
|
||||||
"parent.dependency", |
|
||||||
"parent.dependency_a" |
|
||||||
] |
|
||||||
} |
|
||||||
} |
|
||||||
], |
|
||||||
"filter": { |
|
||||||
"term": { |
|
||||||
"layer": "borough" |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"bool": { |
|
||||||
"_name": "fallback.locality", |
|
||||||
"must": [ |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "city value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.locality", |
|
||||||
"parent.locality_a" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "county value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.county", |
|
||||||
"parent.county_a", |
|
||||||
"parent.macrocounty", |
|
||||||
"parent.macrocounty_a" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "state value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.region", |
|
||||||
"parent.region_a", |
|
||||||
"parent.macroregion", |
|
||||||
"parent.macroregion_a" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "country value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.country", |
|
||||||
"parent.country_a", |
|
||||||
"parent.dependency", |
|
||||||
"parent.dependency_a" |
|
||||||
] |
|
||||||
} |
|
||||||
} |
|
||||||
], |
|
||||||
"filter": { |
|
||||||
"term": { |
|
||||||
"layer": "locality" |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"bool": { |
|
||||||
"_name": "fallback.localadmin", |
|
||||||
"must": [ |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "city value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.localadmin", |
|
||||||
"parent.localadmin_a" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "county value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.county", |
|
||||||
"parent.county_a", |
|
||||||
"parent.macrocounty", |
|
||||||
"parent.macrocounty_a" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "state value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.region", |
|
||||||
"parent.region_a", |
|
||||||
"parent.macroregion", |
|
||||||
"parent.macroregion_a" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "country value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.country", |
|
||||||
"parent.country_a", |
|
||||||
"parent.dependency", |
|
||||||
"parent.dependency_a" |
|
||||||
] |
|
||||||
} |
|
||||||
} |
|
||||||
], |
|
||||||
"filter": { |
|
||||||
"term": { |
|
||||||
"layer": "localadmin" |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"bool": { |
|
||||||
"_name": "fallback.county", |
|
||||||
"must": [ |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "county value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.county", |
|
||||||
"parent.county_a" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "state value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.region", |
|
||||||
"parent.region_a", |
|
||||||
"parent.macroregion", |
|
||||||
"parent.macroregion_a" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "country value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.country", |
|
||||||
"parent.country_a", |
|
||||||
"parent.dependency", |
|
||||||
"parent.dependency_a" |
|
||||||
] |
|
||||||
} |
|
||||||
} |
|
||||||
], |
|
||||||
"filter": { |
|
||||||
"term": { |
|
||||||
"layer": "county" |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"bool": { |
|
||||||
"_name": "fallback.macrocounty", |
|
||||||
"must": [ |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "county value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.macrocounty", |
|
||||||
"parent.macrocounty_a" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "state value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.region", |
|
||||||
"parent.region_a", |
|
||||||
"parent.macroregion", |
|
||||||
"parent.macroregion_a" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "country value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.country", |
|
||||||
"parent.country_a", |
|
||||||
"parent.dependency", |
|
||||||
"parent.dependency_a" |
|
||||||
] |
|
||||||
} |
|
||||||
} |
|
||||||
], |
|
||||||
"filter": { |
|
||||||
"term": { |
|
||||||
"layer": "macrocounty" |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"bool": { |
|
||||||
"_name": "fallback.region", |
|
||||||
"must": [ |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "state value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.region", |
|
||||||
"parent.region_a" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "country value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.country", |
|
||||||
"parent.country_a", |
|
||||||
"parent.dependency", |
|
||||||
"parent.dependency_a" |
|
||||||
] |
|
||||||
} |
|
||||||
} |
|
||||||
], |
|
||||||
"filter": { |
|
||||||
"term": { |
|
||||||
"layer": "region" |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"bool": { |
|
||||||
"_name": "fallback.macroregion", |
|
||||||
"must": [ |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "state value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.macroregion", |
|
||||||
"parent.macroregion_a" |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "country value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.country", |
|
||||||
"parent.country_a", |
|
||||||
"parent.dependency", |
|
||||||
"parent.dependency_a" |
|
||||||
] |
|
||||||
} |
|
||||||
} |
|
||||||
], |
|
||||||
"filter": { |
|
||||||
"term": { |
|
||||||
"layer": "macroregion" |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"bool": { |
|
||||||
"_name": "fallback.dependency", |
|
||||||
"must": [ |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "country value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.dependency", |
|
||||||
"parent.dependency_a" |
|
||||||
] |
|
||||||
} |
|
||||||
} |
|
||||||
], |
|
||||||
"filter": { |
|
||||||
"term": { |
|
||||||
"layer": "dependency" |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"bool": { |
|
||||||
"_name": "fallback.country", |
|
||||||
"must": [ |
|
||||||
{ |
|
||||||
"multi_match": { |
|
||||||
"query": "country value", |
|
||||||
"type": "phrase", |
|
||||||
"fields": [ |
|
||||||
"parent.country", |
|
||||||
"parent.country_a" |
|
||||||
] |
|
||||||
} |
|
||||||
} |
|
||||||
], |
|
||||||
"filter": { |
|
||||||
"term": { |
|
||||||
"layer": "country" |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
"max_boost": 20, |
|
||||||
"functions": [ |
|
||||||
{ |
|
||||||
"field_value_factor": { |
|
||||||
"modifier": "log1p", |
|
||||||
"field": "popularity", |
|
||||||
"missing": 1 |
|
||||||
}, |
|
||||||
"weight": 1 |
|
||||||
}, |
|
||||||
{ |
|
||||||
"field_value_factor": { |
|
||||||
"modifier": "log1p", |
|
||||||
"field": "population", |
|
||||||
"missing": 1 |
|
||||||
}, |
|
||||||
"weight": 2 |
|
||||||
} |
|
||||||
], |
|
||||||
"score_mode": "avg", |
|
||||||
"boost_mode": "multiply" |
|
||||||
} |
|
||||||
}, |
|
||||||
"sort": [ |
|
||||||
"_score" |
|
||||||
], |
|
||||||
"size": 20, |
|
||||||
"track_scores": true |
|
||||||
} |
|
@ -1,62 +0,0 @@ |
|||||||
{ |
|
||||||
"query": { |
|
||||||
"function_score": { |
|
||||||
"query": { |
|
||||||
"bool": { |
|
||||||
"minimum_should_match": 1, |
|
||||||
"should": [], |
|
||||||
"filter": { |
|
||||||
"bool": { |
|
||||||
"must": [ |
|
||||||
{ |
|
||||||
"geo_bounding_box": { |
|
||||||
"type": "indexed", |
|
||||||
"center_point": { |
|
||||||
"top": 11.51, |
|
||||||
"right": -61.84, |
|
||||||
"bottom": 47.47, |
|
||||||
"left": -103.16 |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"terms": { |
|
||||||
"layer": [ |
|
||||||
"test" |
|
||||||
] |
|
||||||
} |
|
||||||
} |
|
||||||
] |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
"max_boost": 20, |
|
||||||
"functions": [ |
|
||||||
{ |
|
||||||
"field_value_factor": { |
|
||||||
"modifier": "log1p", |
|
||||||
"field": "popularity", |
|
||||||
"missing": 1 |
|
||||||
}, |
|
||||||
"weight": 1 |
|
||||||
}, |
|
||||||
{ |
|
||||||
"field_value_factor": { |
|
||||||
"modifier": "log1p", |
|
||||||
"field": "population", |
|
||||||
"missing": 1 |
|
||||||
}, |
|
||||||
"weight": 2 |
|
||||||
} |
|
||||||
], |
|
||||||
"score_mode": "avg", |
|
||||||
"boost_mode": "multiply" |
|
||||||
} |
|
||||||
}, |
|
||||||
"sort": [ |
|
||||||
"_score" |
|
||||||
], |
|
||||||
"size": 10, |
|
||||||
"track_scores": true |
|
||||||
} |
|
@ -1,65 +0,0 @@ |
|||||||
{ |
|
||||||
"query": { |
|
||||||
"function_score": { |
|
||||||
"query": { |
|
||||||
"bool": { |
|
||||||
"minimum_should_match": 1, |
|
||||||
"should": [], |
|
||||||
"filter": { |
|
||||||
"bool": { |
|
||||||
"must": [ |
|
||||||
{ |
|
||||||
"terms": { |
|
||||||
"layer": [ |
|
||||||
"test" |
|
||||||
] |
|
||||||
} |
|
||||||
} |
|
||||||
] |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
"max_boost": 20, |
|
||||||
"functions": [ |
|
||||||
{ |
|
||||||
"weight": 2, |
|
||||||
"linear": { |
|
||||||
"center_point": { |
|
||||||
"origin": { |
|
||||||
"lat": 29.49136, |
|
||||||
"lon": -82.50622 |
|
||||||
}, |
|
||||||
"offset": "0km", |
|
||||||
"scale": "50km", |
|
||||||
"decay": 0.5 |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"field_value_factor": { |
|
||||||
"modifier": "log1p", |
|
||||||
"field": "popularity", |
|
||||||
"missing": 1 |
|
||||||
}, |
|
||||||
"weight": 1 |
|
||||||
}, |
|
||||||
{ |
|
||||||
"field_value_factor": { |
|
||||||
"modifier": "log1p", |
|
||||||
"field": "population", |
|
||||||
"missing": 1 |
|
||||||
}, |
|
||||||
"weight": 2 |
|
||||||
} |
|
||||||
], |
|
||||||
"score_mode": "avg", |
|
||||||
"boost_mode": "multiply" |
|
||||||
} |
|
||||||
}, |
|
||||||
"sort": [ |
|
||||||
"_score" |
|
||||||
], |
|
||||||
"size": 10, |
|
||||||
"track_scores": true |
|
||||||
} |
|
@ -1,76 +0,0 @@ |
|||||||
{ |
|
||||||
"query": { |
|
||||||
"function_score": { |
|
||||||
"query": { |
|
||||||
"bool": { |
|
||||||
"minimum_should_match": 1, |
|
||||||
"should": [], |
|
||||||
"filter": { |
|
||||||
"bool": { |
|
||||||
"must": [ |
|
||||||
{ |
|
||||||
"geo_bounding_box": { |
|
||||||
"type": "indexed", |
|
||||||
"center_point": { |
|
||||||
"top": 11.51, |
|
||||||
"right": -61.84, |
|
||||||
"bottom": 47.47, |
|
||||||
"left": -103.16 |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"terms": { |
|
||||||
"layer": [ |
|
||||||
"test" |
|
||||||
] |
|
||||||
} |
|
||||||
} |
|
||||||
] |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
"max_boost": 20, |
|
||||||
"functions": [ |
|
||||||
{ |
|
||||||
"weight": 2, |
|
||||||
"linear": { |
|
||||||
"center_point": { |
|
||||||
"origin": { |
|
||||||
"lat": 29.49136, |
|
||||||
"lon": -82.50622 |
|
||||||
}, |
|
||||||
"offset": "0km", |
|
||||||
"scale": "50km", |
|
||||||
"decay": 0.5 |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"field_value_factor": { |
|
||||||
"modifier": "log1p", |
|
||||||
"field": "popularity", |
|
||||||
"missing": 1 |
|
||||||
}, |
|
||||||
"weight": 1 |
|
||||||
}, |
|
||||||
{ |
|
||||||
"field_value_factor": { |
|
||||||
"modifier": "log1p", |
|
||||||
"field": "population", |
|
||||||
"missing": 1 |
|
||||||
}, |
|
||||||
"weight": 2 |
|
||||||
} |
|
||||||
], |
|
||||||
"score_mode": "avg", |
|
||||||
"boost_mode": "multiply" |
|
||||||
} |
|
||||||
}, |
|
||||||
"sort": [ |
|
||||||
"_score" |
|
||||||
], |
|
||||||
"size": 10, |
|
||||||
"track_scores": true |
|
||||||
} |
|
@ -1,65 +0,0 @@ |
|||||||
{ |
|
||||||
"query": { |
|
||||||
"function_score": { |
|
||||||
"query": { |
|
||||||
"bool": { |
|
||||||
"minimum_should_match": 1, |
|
||||||
"should": [], |
|
||||||
"filter": { |
|
||||||
"bool": { |
|
||||||
"must": [ |
|
||||||
{ |
|
||||||
"terms": { |
|
||||||
"layer": [ |
|
||||||
"test" |
|
||||||
] |
|
||||||
} |
|
||||||
} |
|
||||||
] |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
"max_boost": 20, |
|
||||||
"functions": [ |
|
||||||
{ |
|
||||||
"weight": 2, |
|
||||||
"linear": { |
|
||||||
"center_point": { |
|
||||||
"origin": { |
|
||||||
"lat": 0, |
|
||||||
"lon": 0 |
|
||||||
}, |
|
||||||
"offset": "0km", |
|
||||||
"scale": "50km", |
|
||||||
"decay": 0.5 |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
{ |
|
||||||
"field_value_factor": { |
|
||||||
"modifier": "log1p", |
|
||||||
"field": "popularity", |
|
||||||
"missing": 1 |
|
||||||
}, |
|
||||||
"weight": 1 |
|
||||||
}, |
|
||||||
{ |
|
||||||
"field_value_factor": { |
|
||||||
"modifier": "log1p", |
|
||||||
"field": "population", |
|
||||||
"missing": 1 |
|
||||||
}, |
|
||||||
"weight": 2 |
|
||||||
} |
|
||||||
], |
|
||||||
"score_mode": "avg", |
|
||||||
"boost_mode": "multiply" |
|
||||||
} |
|
||||||
}, |
|
||||||
"sort": [ |
|
||||||
"_score" |
|
||||||
], |
|
||||||
"size": 10, |
|
||||||
"track_scores": true |
|
||||||
} |
|
@ -1,51 +0,0 @@ |
|||||||
{ |
|
||||||
"query": { |
|
||||||
"function_score": { |
|
||||||
"query": { |
|
||||||
"bool": { |
|
||||||
"minimum_should_match": 1, |
|
||||||
"should": [], |
|
||||||
"filter": { |
|
||||||
"bool": { |
|
||||||
"must": [ |
|
||||||
{ |
|
||||||
"terms": { |
|
||||||
"layer": [ |
|
||||||
"test" |
|
||||||
] |
|
||||||
} |
|
||||||
} |
|
||||||
] |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
"max_boost": 20, |
|
||||||
"functions": [ |
|
||||||
{ |
|
||||||
"field_value_factor": { |
|
||||||
"modifier": "log1p", |
|
||||||
"field": "popularity", |
|
||||||
"missing": 1 |
|
||||||
}, |
|
||||||
"weight": 1 |
|
||||||
}, |
|
||||||
{ |
|
||||||
"field_value_factor": { |
|
||||||
"modifier": "log1p", |
|
||||||
"field": "population", |
|
||||||
"missing": 1 |
|
||||||
}, |
|
||||||
"weight": 2 |
|
||||||
} |
|
||||||
], |
|
||||||
"score_mode": "avg", |
|
||||||
"boost_mode": "multiply" |
|
||||||
} |
|
||||||
}, |
|
||||||
"sort": [ |
|
||||||
"_score" |
|
||||||
], |
|
||||||
"size": 10, |
|
||||||
"track_scores": true |
|
||||||
} |
|
@ -1,51 +0,0 @@ |
|||||||
{ |
|
||||||
"query": { |
|
||||||
"function_score": { |
|
||||||
"query": { |
|
||||||
"bool": { |
|
||||||
"minimum_should_match": 1, |
|
||||||
"should": [], |
|
||||||
"filter": { |
|
||||||
"bool": { |
|
||||||
"must": [ |
|
||||||
{ |
|
||||||
"terms": { |
|
||||||
"layer": [ |
|
||||||
"test" |
|
||||||
] |
|
||||||
} |
|
||||||
} |
|
||||||
] |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
"max_boost": 20, |
|
||||||
"functions": [ |
|
||||||
{ |
|
||||||
"field_value_factor": { |
|
||||||
"modifier": "log1p", |
|
||||||
"field": "popularity", |
|
||||||
"missing": 1 |
|
||||||
}, |
|
||||||
"weight": 1 |
|
||||||
}, |
|
||||||
{ |
|
||||||
"field_value_factor": { |
|
||||||
"modifier": "log1p", |
|
||||||
"field": "population", |
|
||||||
"missing": 1 |
|
||||||
}, |
|
||||||
"weight": 2 |
|
||||||
} |
|
||||||
], |
|
||||||
"score_mode": "avg", |
|
||||||
"boost_mode": "multiply" |
|
||||||
} |
|
||||||
}, |
|
||||||
"sort": [ |
|
||||||
"_score" |
|
||||||
], |
|
||||||
"size": 10, |
|
||||||
"track_scores": true |
|
||||||
} |
|
@ -1,51 +0,0 @@ |
|||||||
{ |
|
||||||
"query": { |
|
||||||
"function_score": { |
|
||||||
"query": { |
|
||||||
"bool": { |
|
||||||
"minimum_should_match": 1, |
|
||||||
"should": [], |
|
||||||
"filter": { |
|
||||||
"bool": { |
|
||||||
"must": [ |
|
||||||
{ |
|
||||||
"terms": { |
|
||||||
"layer": [ |
|
||||||
"test" |
|
||||||
] |
|
||||||
} |
|
||||||
} |
|
||||||
] |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
"max_boost": 20, |
|
||||||
"functions": [ |
|
||||||
{ |
|
||||||
"field_value_factor": { |
|
||||||
"modifier": "log1p", |
|
||||||
"field": "popularity", |
|
||||||
"missing": 1 |
|
||||||
}, |
|
||||||
"weight": 1 |
|
||||||
}, |
|
||||||
{ |
|
||||||
"field_value_factor": { |
|
||||||
"modifier": "log1p", |
|
||||||
"field": "population", |
|
||||||
"missing": 1 |
|
||||||
}, |
|
||||||
"weight": 2 |
|
||||||
} |
|
||||||
], |
|
||||||
"score_mode": "avg", |
|
||||||
"boost_mode": "multiply" |
|
||||||
} |
|
||||||
}, |
|
||||||
"sort": [ |
|
||||||
"_score" |
|
||||||
], |
|
||||||
"size": 10, |
|
||||||
"track_scores": true |
|
||||||
} |
|
@ -1,60 +0,0 @@ |
|||||||
module.exports = { |
|
||||||
'query': { |
|
||||||
'function_score': { |
|
||||||
'query': { |
|
||||||
'bool': { |
|
||||||
'minimum_should_match': 1, |
|
||||||
'should': [ |
|
||||||
{ |
|
||||||
'bool': { |
|
||||||
'_name': 'fallback.postalcode', |
|
||||||
'must': [ |
|
||||||
{ |
|
||||||
'multi_match': { |
|
||||||
'query': 'postalcode value', |
|
||||||
'type': 'phrase', |
|
||||||
'fields': [ |
|
||||||
'parent.postalcode' |
|
||||||
] |
|
||||||
} |
|
||||||
} |
|
||||||
], |
|
||||||
'filter': { |
|
||||||
'term': { |
|
||||||
'layer': 'postalcode' |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
] |
|
||||||
} |
|
||||||
}, |
|
||||||
'max_boost': 20, |
|
||||||
'functions': [ |
|
||||||
{ |
|
||||||
'field_value_factor': { |
|
||||||
'modifier': 'log1p', |
|
||||||
'field': 'popularity', |
|
||||||
'missing': 1 |
|
||||||
}, |
|
||||||
'weight': 1 |
|
||||||
}, |
|
||||||
{ |
|
||||||
'field_value_factor': { |
|
||||||
'modifier': 'log1p', |
|
||||||
'field': 'population', |
|
||||||
'missing': 1 |
|
||||||
}, |
|
||||||
'weight': 2 |
|
||||||
} |
|
||||||
], |
|
||||||
'score_mode': 'avg', |
|
||||||
'boost_mode': 'multiply' |
|
||||||
} |
|
||||||
}, |
|
||||||
'size': 20, |
|
||||||
'track_scores': true, |
|
||||||
'sort': [ |
|
||||||
'_score' |
|
||||||
] |
|
||||||
}; |
|
@ -1,52 +0,0 @@ |
|||||||
{ |
|
||||||
"query": { |
|
||||||
"function_score": { |
|
||||||
"query": { |
|
||||||
"bool": { |
|
||||||
"minimum_should_match": 1, |
|
||||||
"should": [ |
|
||||||
], |
|
||||||
"filter": { |
|
||||||
"bool": { |
|
||||||
"must": [ |
|
||||||
{ |
|
||||||
"terms": { |
|
||||||
"source": [ |
|
||||||
"test_source" |
|
||||||
] |
|
||||||
} |
|
||||||
} |
|
||||||
] |
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
||||||
}, |
|
||||||
"max_boost": 20, |
|
||||||
"functions": [ |
|
||||||
{ |
|
||||||
"field_value_factor": { |
|
||||||
"modifier": "log1p", |
|
||||||
"field": "popularity", |
|
||||||
"missing": 1 |
|
||||||
}, |
|
||||||
"weight": 1 |
|
||||||
}, |
|
||||||
{ |
|
||||||
"field_value_factor": { |
|
||||||
"modifier": "log1p", |
|
||||||
"field": "population", |
|
||||||
"missing": 1 |
|
||||||
}, |
|
||||||
"weight": 2 |
|
||||||
} |
|
||||||
], |
|
||||||
"score_mode": "avg", |
|
||||||
"boost_mode": "multiply" |
|
||||||
} |
|
||||||
}, |
|
||||||
"sort": [ |
|
||||||
"_score" |
|
||||||
], |
|
||||||
"size": 20, |
|
||||||
"track_scores": true |
|
||||||
} |
|
Loading…
Reference in new issue