Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/mapmeld/check-for-nameless
- Owner: mapmeld
- Created: 2016-09-13T00:30:40.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-12T21:49:50.000Z (over 7 years ago)
- Last Synced: 2024-10-13T17:21:46.711Z (3 months ago)
- Topics: openstreetmap, osm, overpass
- Language: JavaScript
- Size: 2.93 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
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