|
|
@ -5,70 +5,113 @@ var GeoJSON = require('geojson'), |
|
|
|
|
|
|
|
|
|
|
|
// Properties to be copied when details=true
|
|
|
|
// Properties to be copied when details=true
|
|
|
|
var DETAILS_PROPS = [ |
|
|
|
var DETAILS_PROPS = [ |
|
|
|
'alpha3', |
|
|
|
'housenumber', |
|
|
|
'admin0', |
|
|
|
'street', |
|
|
|
'admin1', |
|
|
|
|
|
|
|
'admin1_abbr', |
|
|
|
|
|
|
|
'admin2', |
|
|
|
|
|
|
|
'local_admin', |
|
|
|
|
|
|
|
'locality', |
|
|
|
|
|
|
|
'neighborhood', |
|
|
|
|
|
|
|
'category', |
|
|
|
'category', |
|
|
|
'address', |
|
|
|
'postalcode', |
|
|
|
'country_a', |
|
|
|
'country_a', |
|
|
|
'country', |
|
|
|
'country', |
|
|
|
'region', |
|
|
|
'region', |
|
|
|
'region_a', |
|
|
|
'region_a', |
|
|
|
'county', |
|
|
|
'county', |
|
|
|
|
|
|
|
'localadmin', |
|
|
|
|
|
|
|
'locality', |
|
|
|
'neighbourhood' |
|
|
|
'neighbourhood' |
|
|
|
]; |
|
|
|
]; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var META_MAP = { |
|
|
|
function search( docs, params ){ |
|
|
|
'geoname': { type: '???', source: 'gn' }, // TODO: not sure how to map. will need to use categories?
|
|
|
|
|
|
|
|
'osmnode': { type: 'venue', source: 'osm' }, |
|
|
|
|
|
|
|
'osmway': { type: 'venue', source: 'osm' }, |
|
|
|
|
|
|
|
'admin0': { type: 'country', source: 'qs' }, |
|
|
|
|
|
|
|
'admin1': { type: 'region', source: 'qs' }, |
|
|
|
|
|
|
|
'admin2': { type: 'county', source: 'qs' }, |
|
|
|
|
|
|
|
'neighborhood': { type: 'neighbourhood', source: 'qs' }, |
|
|
|
|
|
|
|
'locality': { type: 'locality', source: 'qs' }, |
|
|
|
|
|
|
|
'local_admin': { type: 'local_admin', source: 'qs' }, |
|
|
|
|
|
|
|
'osmaddress': { type: 'address', source: 'osm' }, |
|
|
|
|
|
|
|
'openaddresses': { type: 'address', source: 'oa' } |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function geojsonifyPlaces( docs, params ){ |
|
|
|
|
|
|
|
|
|
|
|
var details = params ? params.details : {}; |
|
|
|
var details = params ? params.details : {}; |
|
|
|
details = details === true || details === 1; |
|
|
|
details = details === true || details === 1; |
|
|
|
|
|
|
|
|
|
|
|
// flatten & expand data for geojson conversion
|
|
|
|
// flatten & expand data for geojson conversion
|
|
|
|
var geodata = docs.map( function( doc ) { |
|
|
|
var geodata = docs |
|
|
|
|
|
|
|
.map(geojsonifyPlace.bind(null, details)) |
|
|
|
|
|
|
|
.filter( function( doc ){ |
|
|
|
|
|
|
|
return !!doc; |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// convert to geojson
|
|
|
|
|
|
|
|
var geojson = GeoJSON.parse( geodata, { Point: ['lat', 'lng'] }); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// bounding box calculations
|
|
|
|
|
|
|
|
computeBBox(geojson); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return geojson; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function geojsonifyPlace(details, place) { |
|
|
|
|
|
|
|
|
|
|
|
// something went very wrong
|
|
|
|
// something went very wrong
|
|
|
|
if( !doc || !doc.hasOwnProperty( 'center_point' ) ) { |
|
|
|
if( !place || !place.hasOwnProperty( 'center_point' ) ) { |
|
|
|
return warning(); |
|
|
|
return warning('No doc or center_point property'); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var geocoding = {}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
addMetaData(place, geocoding); |
|
|
|
|
|
|
|
addDetails(details, place, geocoding); |
|
|
|
|
|
|
|
addLabel(place, geocoding); |
|
|
|
|
|
|
|
|
|
|
|
var output = {}; |
|
|
|
var output = {}; |
|
|
|
|
|
|
|
|
|
|
|
// provide metadata to consumer
|
|
|
|
output.geocoding = geocoding; |
|
|
|
output.id = doc._id; |
|
|
|
// map center_point for GeoJSON to work properly
|
|
|
|
output.layer = doc._type; |
|
|
|
// these should not show up in the final feature properties
|
|
|
|
|
|
|
|
output.lat = parseFloat(place.center_point.lat); |
|
|
|
|
|
|
|
output.lng = parseFloat(place.center_point.lon); |
|
|
|
|
|
|
|
|
|
|
|
// map center_point
|
|
|
|
return output; |
|
|
|
output.lat = parseFloat( doc.center_point.lat ); |
|
|
|
} |
|
|
|
output.lng = parseFloat( doc.center_point.lon ); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* Add details properties when needed |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @param {boolean} details |
|
|
|
|
|
|
|
* @param {object} src |
|
|
|
|
|
|
|
* @param {object} dst |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
function addDetails(details, src, dst) { |
|
|
|
if (details) { |
|
|
|
if (details) { |
|
|
|
// map name
|
|
|
|
// map name
|
|
|
|
if( !doc.name || !doc.name.default ) { return warning(); } |
|
|
|
if( !src.name || !src.name.default ) { return warning(src); } |
|
|
|
output.name = doc.name.default; |
|
|
|
dst.name = src.name.default; |
|
|
|
|
|
|
|
|
|
|
|
copyProperties( doc, DETAILS_PROPS, output ); |
|
|
|
copyProperties(src, DETAILS_PROPS, dst); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// generate region-specific text string
|
|
|
|
/** |
|
|
|
output.text = outputGenerator( doc ); |
|
|
|
* Add region-specific label string |
|
|
|
|
|
|
|
* |
|
|
|
return output; |
|
|
|
* @param {object} src |
|
|
|
|
|
|
|
* @param {object} dst |
|
|
|
// filter-out invalid entries
|
|
|
|
*/ |
|
|
|
}).filter( function( doc ){ |
|
|
|
function addLabel(src, dst) { |
|
|
|
return doc; |
|
|
|
dst.label = outputGenerator(src); |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// convert to geojson
|
|
|
|
|
|
|
|
var geojson = GeoJSON.parse( geodata, { Point: ['lat', 'lng'] }); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// bounding box calculations
|
|
|
|
/** |
|
|
|
|
|
|
|
* Compute bbox that encompasses all features in the result set. |
|
|
|
|
|
|
|
* Set bbox property on the geojson object. |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @param {object} geojson |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
function computeBBox(geojson) { |
|
|
|
// @note: extent() sometimes throws Errors for unusual data
|
|
|
|
// @note: extent() sometimes throws Errors for unusual data
|
|
|
|
// eg: https://github.com/pelias/pelias/issues/84
|
|
|
|
// eg: https://github.com/pelias/pelias/issues/84
|
|
|
|
try { |
|
|
|
try { |
|
|
@ -80,8 +123,6 @@ function search( docs, params ){ |
|
|
|
console.error( 'bbox error', e.message, e.stack ); |
|
|
|
console.error( 'bbox error', e.message, e.stack ); |
|
|
|
console.error( 'geojson', JSON.stringify( geojson, null, 2 ) ); |
|
|
|
console.error( 'geojson', JSON.stringify( geojson, null, 2 ) ); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
return geojson; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
@ -90,16 +131,30 @@ function search( docs, params ){ |
|
|
|
* |
|
|
|
* |
|
|
|
* @param {object} source |
|
|
|
* @param {object} source |
|
|
|
* @param {[]} props |
|
|
|
* @param {[]} props |
|
|
|
* @param {object} dest |
|
|
|
* @param {object} dst |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
function copyProperties( source, props, dest ) { |
|
|
|
function copyProperties( source, props, dst ) { |
|
|
|
props.forEach( function ( prop ) { |
|
|
|
props.forEach( function ( prop ) { |
|
|
|
if ( source.hasOwnProperty( prop ) ) { |
|
|
|
if ( source.hasOwnProperty( prop ) ) { |
|
|
|
dest[prop] = source[prop]; |
|
|
|
dst[prop] = source[prop]; |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* Determine and set place id, type, and source |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @param {object} src |
|
|
|
|
|
|
|
* @param {object} dst |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
function addMetaData(src, dst) { |
|
|
|
|
|
|
|
// lookup mapping, or set both values to _type if not found
|
|
|
|
|
|
|
|
var meta = META_MAP[src._type] || { type: src._type, source: src._type }; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
dst.id = src._id; |
|
|
|
|
|
|
|
dst.type = meta.type; |
|
|
|
|
|
|
|
dst.source = meta.source; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* emit a warning if the doc format is invalid |
|
|
|
* emit a warning if the doc format is invalid |
|
|
@ -107,9 +162,9 @@ function copyProperties( source, props, dest ) { |
|
|
|
* @note: if you see this error, fix it ASAP! |
|
|
|
* @note: if you see this error, fix it ASAP! |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
function warning( doc ) { |
|
|
|
function warning( doc ) { |
|
|
|
console.error( 'error: invalid doc', __filename, doc ); |
|
|
|
console.error( 'error: invalid doc', __filename, doc); |
|
|
|
return false; // remove offending doc from results
|
|
|
|
return false; // remove offending doc from results
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
module.exports.search = search; |
|
|
|
module.exports.search = geojsonifyPlaces; |