Code Monkey home page Code Monkey logo

Comments (4)

Sudrien avatar Sudrien commented on June 13, 2024

Geolocation would be nice for sunset and tidal calculation also

But yes, https://openweathermap.org/current#geo looks like they haven't bumped api numbers

from watchy.

Rob58329 avatar Rob58329 commented on June 13, 2024

In case it's helpfull to anyone:

(1) OpenWeatherMap has always returned gmtOffset in seconds, and this is what Watchy requires/expects, so the original line: gmtOffset = int(responseObject["timezone"]);
is correct.

(2) The way I fixed the “City ID has been discontinued, Geo-Location (longitude and latitude) is required” issue is:

(a) Edit “settings.h” to:

#define OPENWEATHERMAP_URL "http://api.openweathermap.org/data/2.5/weather?lon=-0.12&lat=51.5"
(or whatever longitude and latitude you want is)

(b) Edit “Watchy.cpp” to:

    String weatherQueryURL = url + String("&units=") + units +
                             String("&lang=") + lang + String("&appid=") +
                             apiKey; // edited
    http.begin(weatherQueryURL.c_str());
    int httpResponseCode = http.GET();
    if (httpResponseCode == 200) {
      String payload             = http.getString();
      payload=payload.substring(payload.indexOf('{')); // edited/added
      JSONVar responseObject     = JSON.parse(payload);
      currentWeather.temperature = int(responseObject["main"]["temp"]);
      ...

(this works as at 11Sept2023)

from watchy.

GuruSR avatar GuruSR commented on June 13, 2024

Instead of using static Longitude and Latitude, you can use the same payload method of reading the JSON from this URL: http://ip-api.com/json/?fields=lat,lon

And merging the results into the OPENWEATHERMAP_URL by making lon=#1&lat=#2 and replacing #1 & #2 with the results from the above URL after parsing it's JSON. This is how Watchy GSR does it.

from watchy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.