Pelias is a geocoder powered completely by open data, available freely to everyone.
Local Installation · Cloud Webservice · Documentation · Community Chat
What is Pelias?
Pelias is a search engine for places worldwide, powered by open data. It turns addresses and place names into geographic coordinates, and turns geographic coordinates into places and addresses. With Pelias, you're able to turn your users' place searches into actionable geodata and transform your geodata into real places.
We think open data, open source, and open strategy win over proprietary solutions at any part of the stack and we want to ensure the services we offer are in line with that vision. We believe that an open geocoder improves over the long-term only if the community can incorporate truly representative local knowledge.
This package provides a configuration-driven approach to removing specific records from an import stream.
It's particularly helpful where algorithmic deduplication fails or for when data is erroneous and needs to be replaced with an alternative.
$ npm install pelias-blacklist-streamThe blacklist stream is intended to be used by pipelines passing objects generated by pelias/model.
You can specify which records are omitted from the build by providing their globally-unique-id (GID).
GIDs can be found in the results served by pelias/api or by calling getGid() on a Pelias Model object.
const blacklistStream = require('pelias-blacklist-stream');
const blacklist = {
"openaddresses:address:us/tx/libery:377e64dd81884dbe": "1800 Mlk, Liberty, TX, USA",
"openaddresses:address:us/fl/statewide:bee100ffcc77c699": undefined
};
const stream = blacklistStream( blacklist );The stream will now remove any documents which match either of the GIDs openaddresses:address:us/tx/libery:377e64dd81884dbe or openaddresses:address:us/fl/statewide:bee100ffcc77c699.
The values are optional, you can specify a human-readable comment for debugging.
If no arguments are provided when calling blacklistStream(), it will load your local pelias/config.
If your config contains entries in the imports.blacklist.files array then each file will be loaded from disk, merged and used as the blacklist.
const blacklistStream = require('pelias-blacklist-stream');
const stream = blacklistStream(); // no arguments specifiedThe relevant parts of the pelias config file, usually located at ~/pelias.json:
{
"imports": {
"blacklist": {
"files": [
"/tmp/blacklist_file_one",
"/tmp/blacklist_file_two"
]
}
}
}Blacklist files stored on disk can have any file extension (or none).
Each line of the file should contain one GID and optionally one comment, lines are separated by a '\n' newline character.
An example of a blacklist file without comments:
openaddresses:address:us/tx/libery:377e64dd81884dbe
openaddresses:address:us/fl/statewide:bee100ffcc77c699An example of a blacklist file with debugging comments:
openaddresses:address:us/tx/libery:377e64dd81884dbe # 1800 Mlk, Liberty, TX, USA
openaddresses:address:us/fl/statewide:bee100ffcc77c699If the line contains a '#' symbol then anything after the '#' will be considered a comment. Using another '#' in your comment string is not supported.
The parser will String.trim() whitespace but you must take care to provide the correct letter casing.
The pelias-blacklist-stream npm module can be found here:
https://npmjs.org/package/pelias-blacklist-stream
Please fork and pull request against upstream master on a feature branch.
Pretty please; provide unit tests and script fixtures in the test directory.
$ npm testCI tests every release against all supported Node.js versions.
We rely on semantic-release and Greenkeeper to maintain our module and dependency versions.

