Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mapmeld/check-for-nameless

Check OpenStreetMap for missing alternate names
https://github.com/mapmeld/check-for-nameless

openstreetmap osm overpass

Last synced: about 2 months ago
JSON representation

Check OpenStreetMap for missing alternate names

Awesome Lists containing this project

README

        

# check-for-nameless

Node module that works with the OpenStreetMap Overpass API

Send in a bounding box and receive an OSM XML response of nodes missing names
in the target language.

## Code example

```javascript
const checkForNameless = require('check-for-nameless');

var options = {
south: 41,
west: -72,
north: 42,
east: -71,
targetLang: 'en', // optional
overpass: 'http://overpass-api.de/api/interpreter?data=' // optional
};

checkForNameless(options, (err, response) => {
if (err) { throw err; }
console.log(response); // XML string
});
```

## License

Open source, MIT license