Popularity
1.9
Declining
Activity
0.0
Stable
8
1
4

Monthly Downloads: 12
Programming language: Elixir
License: MIT License
Tags: Third Party APIs    

forecast_io alternatives and similar packages

Based on the "Third Party APIs" category.
Alternatively, view forecast_io alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of forecast_io or a related project?

Add another 'Third Party APIs' Package

README

ForecastIO

Simple wrapper for Forecast.IO

Usage

export FORECAST_IO_KEY=yourkey

Include forecast_io

defp deps do
  [
    {:forecast_io, "~> 0.2.2"},
  ]
end

Start and use

ForecastIO.start()
{:ok, result } = ForecastIO.forecast("28.6353","-106.0889")
current = ForecastIO.current(result)

Use ForecastIO Time API

{mega, secs, _ } = :os.timestamp
now = mega * 1000000 + secs
ForecastIO.start()
{:ok, result } = ForecastIO.forecast_time("28.6353","-106.0889", now)
current = ForecastIO.current(result)