|
|
@ -1,9 +1,6 @@ |
|
|
|
const _ = require('lodash'); |
|
|
|
const _ = require('lodash'); |
|
|
|
const elasticsearch = require('elasticsearch'); |
|
|
|
const elasticsearch = require('elasticsearch'); |
|
|
|
|
|
|
|
|
|
|
|
// a list of the canonical sources included in the default Pelias configuration
|
|
|
|
|
|
|
|
const CANONICAL_SOURCES = ['whosonfirst', 'openstreetmap', 'openaddresses', 'geonames']; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var TypeMapping = function(){ |
|
|
|
var TypeMapping = function(){ |
|
|
|
|
|
|
|
|
|
|
|
// A list of all sources
|
|
|
|
// A list of all sources
|
|
|
@ -29,6 +26,11 @@ var TypeMapping = function(){ |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
this.layer_aliases = {}; |
|
|
|
this.layer_aliases = {}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* |
|
|
|
|
|
|
|
* A list of the canonical sources included in the default Pelias configuration |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
this.canonical_sources = []; |
|
|
|
|
|
|
|
|
|
|
|
/* |
|
|
|
/* |
|
|
|
* An object that contains all sources or aliases. The key is the source or alias, |
|
|
|
* An object that contains all sources or aliases. The key is the source or alias, |
|
|
|
* the value is either that source, or the canonical name for that alias if it's an alias. |
|
|
|
* the value is either that source, or the canonical name for that alias if it's an alias. |
|
|
@ -68,6 +70,11 @@ TypeMapping.prototype.setLayerAliases = function( aliases ){ |
|
|
|
this.layer_aliases = aliases; |
|
|
|
this.layer_aliases = aliases; |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// canonical sources setter
|
|
|
|
|
|
|
|
TypeMapping.prototype.setCanonicalSources = function( sources ){ |
|
|
|
|
|
|
|
this.canonical_sources = sources; |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
// generate mappings after setters have been run
|
|
|
|
// generate mappings after setters have been run
|
|
|
|
TypeMapping.prototype.generateMappings = function(){ |
|
|
|
TypeMapping.prototype.generateMappings = function(){ |
|
|
|
this.sources = Object.keys( this.layers_by_source ); |
|
|
|
this.sources = Object.keys( this.layers_by_source ); |
|
|
@ -78,16 +85,11 @@ TypeMapping.prototype.generateMappings = function(){ |
|
|
|
this.layer_mapping = TypeMapping.addStandardTargetsToAliases(this.layers, this.layer_aliases); |
|
|
|
this.layer_mapping = TypeMapping.addStandardTargetsToAliases(this.layers, this.layer_aliases); |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
// return a list of all sources which are part of the canonical Pelias configuration
|
|
|
|
|
|
|
|
TypeMapping.prototype.getCanonicalSources = function(){ |
|
|
|
|
|
|
|
return CANONICAL_SOURCES; |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// generate a list of all layers which are part of the canonical Pelias configuration
|
|
|
|
// generate a list of all layers which are part of the canonical Pelias configuration
|
|
|
|
TypeMapping.prototype.getCanonicalLayers = function(){ |
|
|
|
TypeMapping.prototype.getCanonicalLayers = function(){ |
|
|
|
var canonicalLayers = []; |
|
|
|
var canonicalLayers = []; |
|
|
|
for( var source in this.layers_by_source ){ |
|
|
|
for( var source in this.layers_by_source ){ |
|
|
|
if( _.includes( CANONICAL_SOURCES, source ) ){ |
|
|
|
if( _.includes( this.canonical_sources, source ) ){ |
|
|
|
canonicalLayers = _.uniq( canonicalLayers.concat( this.layers_by_source[source] ) ); |
|
|
|
canonicalLayers = _.uniq( canonicalLayers.concat( this.layers_by_source[source] ) ); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
@ -103,6 +105,7 @@ TypeMapping.prototype.loadTargets = function( targetsBlock ){ |
|
|
|
this.setSourceAliases( targetsBlock.source_aliases || {} ); |
|
|
|
this.setSourceAliases( targetsBlock.source_aliases || {} ); |
|
|
|
this.setLayersBySource( targetsBlock.layers_by_source || {} ); |
|
|
|
this.setLayersBySource( targetsBlock.layers_by_source || {} ); |
|
|
|
this.setLayerAliases( targetsBlock.layer_aliases || {} ); |
|
|
|
this.setLayerAliases( targetsBlock.layer_aliases || {} ); |
|
|
|
|
|
|
|
this.setCanonicalSources( targetsBlock.canonical_sources || [] ); |
|
|
|
|
|
|
|
|
|
|
|
// generate the mappings
|
|
|
|
// generate the mappings
|
|
|
|
this.generateMappings(); |
|
|
|
this.generateMappings(); |
|
|
|