Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fvdm/nodejs-planetos
Access the Planet OS API with your Node.js app (unofficial)
https://github.com/fvdm/nodejs-planetos
api-client dataset earth nodejs planetos statistics unlicense
Last synced: 3 days ago
JSON representation
Access the Planet OS API with your Node.js app (unofficial)
- Host: GitHub
- URL: https://github.com/fvdm/nodejs-planetos
- Owner: fvdm
- License: unlicense
- Created: 2016-03-15T23:40:39.000Z (almost 9 years ago)
- Default Branch: develop
- Last Pushed: 2021-10-22T15:51:07.000Z (over 3 years ago)
- Last Synced: 2024-12-22T00:42:00.387Z (about 1 month ago)
- Topics: api-client, dataset, earth, nodejs, planetos, statistics, unlicense
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/planetos
- Size: 49.8 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
planetos
========Access the Planet OS API with your Node.js app.
[![npm](https://img.shields.io/npm/v/planetos.svg?maxAge=3600)](https://github.com/fvdm/nodejs-planetos/blob/master/CHANGELOG.md)
[![Build Status](https://travis-ci.org/fvdm/nodejs-planetos.svg?branch=master)](https://travis-ci.org/fvdm/nodejs-planetos)
[![Coverage Status](https://coveralls.io/repos/github/fvdm/nodejs-planetos/badge.svg?branch=master)](https://coveralls.io/github/fvdm/nodejs-planetos?branch=master)
[![bitHound Dependencies](https://www.bithound.io/github/fvdm/nodejs-planetos/badges/dependencies.svg)](https://www.bithound.io/github/fvdm/nodejs-planetos/develop/dependencies/npm)
[![bitHound Code](https://www.bithound.io/github/fvdm/nodejs-planetos/badges/code.svg)](https://www.bithound.io/github/fvdm/nodejs-planetos)* [Node.js](https://nodejs.org)
* [Package on npm](https://www.npmjs.com/package/planetos)
* [Planet OS](https://planetos.com)
* [API documentation](http://data.planetos.com/guide/)Example
-------```js
const planetos = require ('planetos') ({
apikey: 'abc123'
});// NOAA Wave Watch 3 data
const params = {
lon: -50.5,
lat: 49.5,
count: 1,
context: 'reftime_time_lat_lon'
};planetos ('noaa_ww3_global_1.25x1d', params, console.log);
```Installation
------------This module requires an API key from Planet OS.
You can find it in your [account settings](http://data.planetos.com/account/settings/).`npm install planetos`
Configuration
-------------The module takes the following settings:
param | type | required | default | description
:--------|:-------|:---------|:----------|:---------------------
apikey | string | yes | | Your API key
timeout | number | no | 5000 | Request timeout in ms
endpoint | string | no | Planet OS | Override default API endpoint (i.e. proxy)```js
const planetos = require ('planetos') ({
apikey: 'abc123',
timeout: 10000,
endpoint: 'https://my.proxy/http://data.planetos.com/v1'
});
```API call
--------The function takes these arguments:
argument | type | required | description
:--------|:---------|:---------|:-------------------------
dataset | string | yes | Dataset name, i.e. `noaa_ww3_global_1.25x1d`
params | object | yes | Dataset query parameters
callback | function | yes | `function (err, data) {}````js
// Process results
function myCallback (err, data) {
if (err) {
return console.log (err);
}console.dir (data, {
depth: null,
colors: true
});
}// Query parameters
const params = {
lon: -50.5,
lat: 49.5,
count: 1,
context: 'reftime_time_lat_lon'
};// Request data from API
planetos ('noaa_ww3_global_1.25x1d', params, myCallback);
```#### Output:
```js
{ stats: { maxCount: 61, offset: 0, count: 1 },
entries:
[ { context: 'reftime_time_lat_lon',
axes:
{ reftime: '2016-03-17T18:00:00',
time: '2016-03-17T18:00:00',
longitude: -49.99999999999997,
latitude: 50 },
data:
{ Wind_speed_surface: 5.519999980926514,
Wind_direction_from_which_blowing_surface: 288.3900146484375,
'v-component_of_wind_surface': -1.7400000095367432,
'u-component_of_wind_surface': 5.239999771118164,
Direction_of_wind_waves_surface: 72.16000366210938,
Primary_wave_mean_period_surface: 7.929999828338623,
Primary_wave_direction_surface: 81.6500015258789,
Significant_height_of_wind_waves_surface: 0.4399999976158142,
Mean_period_of_wind_waves_surface: 7.940000057220459,
Secondary_wave_mean_period_surface: 3.1500000953674316,
Significant_height_of_combined_wind_waves_and_swell_surface: 0.9700000286102295,
Secondary_wave_direction_surface: 259.6300048828125 } } ] }
```Unlicense
---------This is free and unencumbered software released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
of the public at large and to the detriment of our heirs and
successors. We intend this dedication to be an overt act of
relinquishment in perpetuity of all present and future rights to this
software under copyright law.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.For more information, please refer to
Author
------[Franklin van de Meent](https://frankl.in)
[![Buy me a coffee](https://frankl.in/u/kofi/kofi-readme.png)](https://ko-fi.com/franklin)