geo-to-cartesian
v0.0.2
Published
A transform stream to convert latitude and longditude (φ,λ) into Cartesian coordinates [x,y,z].
Downloads
4
Readme
geo-to-cartesian
A small transform stream to convert latitude and longtitude coordinates into Cartesian coordinates
Get it from npm
npm install geo-to-cartesian
Pipe in some geographic coordinates
var geoToCart = require('../index.js');
var geoCoordTextStream = fs.createReadStream(__dirname + '/data.txt');
geo.pipe(geoToCart).pipe();
Get some Cartesian ones out
The expected format of the geographic coordinates stream is an array,
[lat, lon]
Cartesian coordinate bjects are output in the form:
[x, y, z]