Skip to main content

Latest version sourcehut GitHub mirror Codeberg mirror

builds.sr.ht status

d-yr

Access Yr’s weather API and Nominatim’s names API for getting weather details about a specific location.

You can read more about the API’s on met.yr.no and Nominatim.

This project has both a CLI and functions to access Yr.no’s API.

Usage

Example for current weather

import { getCurrent } from "https://deno.land/x/dyr/mod.ts";

const currentWeather = getCurrent("Bergen");
// do what you need to do with the weather data.

Example for forecasted weather

import { getForecast } from "https://deno.land/x/dyr/mod.ts";

const location = "Bergen";
const hoursAhead = 5;

const currentWeather = getForecast(location, hoursAhead);
// do what you need to do with the weather data.

CLI

Installation

deno install --allow-net=api.met.no,nominatim.openstreetmap.org \
  -n yr https://deno.land/x/dyr/src/cli.ts

You have now installed d-yr as yr.

Usage

Run the CLI with:

# Current weather forecast for location
yr current Bergen
# OR forecast for location
yr forecast Bangkok 5