├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── bower.json ├── index.d.ts ├── index.html ├── index.js ├── lodash.custom.js ├── osmtogeojson ├── osmtogeojson.js ├── package.json ├── parse_osmxml.js ├── test-cli ├── cli.test.js └── data │ ├── empty.json │ ├── empty.osm │ ├── map.json │ ├── map.osm │ ├── node.json │ ├── node.osm │ ├── relation.json │ ├── relation.osm │ ├── way.json │ └── way.osm └── test ├── index.html └── osm.test.js /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrasd/osmtogeojson/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrasd/osmtogeojson/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrasd/osmtogeojson/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrasd/osmtogeojson/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrasd/osmtogeojson/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrasd/osmtogeojson/HEAD/bower.json -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrasd/osmtogeojson/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrasd/osmtogeojson/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrasd/osmtogeojson/HEAD/index.js -------------------------------------------------------------------------------- /lodash.custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrasd/osmtogeojson/HEAD/lodash.custom.js -------------------------------------------------------------------------------- /osmtogeojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrasd/osmtogeojson/HEAD/osmtogeojson -------------------------------------------------------------------------------- /osmtogeojson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrasd/osmtogeojson/HEAD/osmtogeojson.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrasd/osmtogeojson/HEAD/package.json -------------------------------------------------------------------------------- /parse_osmxml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrasd/osmtogeojson/HEAD/parse_osmxml.js -------------------------------------------------------------------------------- /test-cli/cli.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrasd/osmtogeojson/HEAD/test-cli/cli.test.js -------------------------------------------------------------------------------- /test-cli/data/empty.json: -------------------------------------------------------------------------------- 1 | { 2 | "elements": [] 3 | } 4 | -------------------------------------------------------------------------------- /test-cli/data/empty.osm: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test-cli/data/map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrasd/osmtogeojson/HEAD/test-cli/data/map.json -------------------------------------------------------------------------------- /test-cli/data/map.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrasd/osmtogeojson/HEAD/test-cli/data/map.osm -------------------------------------------------------------------------------- /test-cli/data/node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrasd/osmtogeojson/HEAD/test-cli/data/node.json -------------------------------------------------------------------------------- /test-cli/data/node.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrasd/osmtogeojson/HEAD/test-cli/data/node.osm -------------------------------------------------------------------------------- /test-cli/data/relation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrasd/osmtogeojson/HEAD/test-cli/data/relation.json -------------------------------------------------------------------------------- /test-cli/data/relation.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrasd/osmtogeojson/HEAD/test-cli/data/relation.osm -------------------------------------------------------------------------------- /test-cli/data/way.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrasd/osmtogeojson/HEAD/test-cli/data/way.json -------------------------------------------------------------------------------- /test-cli/data/way.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrasd/osmtogeojson/HEAD/test-cli/data/way.osm -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrasd/osmtogeojson/HEAD/test/index.html -------------------------------------------------------------------------------- /test/osm.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyrasd/osmtogeojson/HEAD/test/osm.test.js --------------------------------------------------------------------------------