Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

metoffice-fetch

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

metoffice-fetch

A simple package to fetch data from the [uk met office](https://metoffice.apiconnect.ibmcloud.com/metoffice/production/) API library.

  • 1.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Met Office Fetch

A simple package to fetch data from the uk met office API library.

installation

Just do

npm install metoffice-fetch

or

yarn add metoffice-fetch

Example

import { FetchDailyData } from "metoffice-fetch";

const fetchData = async (latitude: number, longitude: number) => {
  try {
    const result = await FetchDailyData(
      {
        excludeParameterMetadata: true,
        includeLocationName: false,
        latitude,
        longitude,
      },
      {
        clientId: CLIENT_ID,
        clientSecret: CLIENT_SECRET,
      },
    );
    console.log(result.features[0].properties.timeSeries);
  } catch (error) {
    console.err(error);
  }
};

References

FunctionReturn TypeDescription
FetchHourlyData(params, headers)Promise<MetOfficeResponse>Fetches the hourly data
FetchThreeHourlyData(params, headers)Promise<MetOfficeResponse>Fetches the Three Hourly data
FetchDailyData(params, headers)Promise<MetOfficeResponse>Fetches the Daily Data

The inputs param for all these functions are the same:

params: {
    excludeParameterMetadata?: boolean;
    includeLocationName?: boolean;
    latitude: number;
    longitude: number;
  },
headers: {
  clientId: string;
  clientSecret: string;
}

Authors

Ali Rezaee nlndipi@hotmail.com

Keywords

FAQs

Package last updated on 22 May 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc