Skip to content
This repository has been archived by the owner on Aug 17, 2019. It is now read-only.

Latest commit

 

History

History
39 lines (27 loc) · 456 Bytes

README.md

File metadata and controls

39 lines (27 loc) · 456 Bytes

siop

Japan Meteorological Agency seismic intensity observation point JSON generator

Installation

as cli command

npm install -g siop

as npm module

npm install --save siop

Usage

as cli command

siop > data.json

as npm module

var siop = require('siop');

siop()
  .then(function (data) {
    console.log(JSON.stringify(data));
  })
  .catch(function (error) {
    console.error(error);
  });