├── .eslintrc ├── .gitignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── index.js ├── package.json └── test ├── data └── N57E011.hgt └── spec.js /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "standard" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | data/ 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perliedman/elevation-service/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perliedman/elevation-service/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perliedman/elevation-service/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perliedman/elevation-service/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perliedman/elevation-service/HEAD/package.json -------------------------------------------------------------------------------- /test/data/N57E011.hgt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perliedman/elevation-service/HEAD/test/data/N57E011.hgt -------------------------------------------------------------------------------- /test/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/perliedman/elevation-service/HEAD/test/spec.js --------------------------------------------------------------------------------