getDefaultSymbol()

Get the link to the weather symbols of the Finnish Meteorological Institute by id.

import weatherfinder from "weatherfinder";

async function main(){
  const weather = await weatherfinder.find("london", "united kingdom")
  console.log(weather.forecast.values.map((value) => weatherfinder.getDefaultSymbol(value.SmartSymbol)))
}

main()

Last updated

Was this helpful?