UNPKG

air-thai-api

Version:
44 lines (31 loc) 783 B
# AIR THAI Check the weather based on location, specify location values with latitude and longitude. ## Preparation ```bash node version above 10 ``` ## Installation ```bash npm install air-thai-api ``` ## Usage ```typescript import * as AirThai from "air-thai-api" interface input = { lat: number long: number } const location:input = { lat: 14.026564760517724, long: 100.61505110969684 } AirThai(location).then((data) => { console.log('data', data) }) ``` ```javascript const { AirThai } = require("air-thai-api") const result = await AirThai({ lat: 13.670809600000002, long: 100.6501888 }) ``` ## Reference [รายงานสถานการณ์และคุณภาพอากาศประเทศไทย](http://air4thai.pcd.go.th/webV2/)