OpenPaths-API
A Node.js module for the OpenPaths API.
This module was inspired by node-openpaths, but this one has posting functionality, and works with parameters.
Pre-requisites
You need Node.js and npm.
You also need an OpenPaths account.
Installation
$ npm install openpaths-api
Usage
View the examples on the examples/
directory for getting and posting geo points, or the examples below.
API Documentation
You can find more information over at OpenPaths' official API documentation. Since it's still pretty simple, what you need to know:
Initializing
var OpenPathsAPI = require( 'openpaths-api' ),
openPaths = new OpenPathsAPI({
key: 'YOUR_KEY',
secret: 'YOUR_SECRET'
});
Getting geo points
var params = {
start_time: 0,
end_time: Math.round( new Date().getTime() / 1000 ),
num_points: 100
};
openPaths.getPoints( params, function( error, response, points ) {
if ( error ) {
throw new Error( JSON.stringify(error) );
}
console.log( points );
});
Posting geo points
var points = [
{
lat: 40.678238,
lon: -73.945789,
alt: 18.914,
t: 1410213632
}
];
openPaths.postPoints( points, function( error, response, data ) {
if ( error ) {
throw new Error( JSON.stringify(error) );
}
console.log( data );
});