• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
MagicMirror Forum
  • Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.

Problem with Weather forecast

Scheduled Pinned Locked Moved Troubleshooting
47 Posts 14 Posters 37.6k Views 13 Watching
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • M Offline
    Mykle1 Project Sponsor Module Developer @Aurelsam
    last edited by Sep 3, 2017, 12:55 PM

    @Aurelsam

    You’re not giving a lot of information here. Have you followed the instructions in the README?

    Create a working config
    How to add modules

    1 Reply Last reply Reply Quote 0
    • A Offline
      Aurelsam
      last edited by Sep 3, 2017, 1:01 PM

      Yes i have read everything, i have written the same information as for the current wheater module. But nothing appears…

      M 1 Reply Last reply Sep 3, 2017, 1:11 PM Reply Quote 0
      • M Offline
        Mykle1 Project Sponsor Module Developer @Aurelsam
        last edited by Sep 3, 2017, 1:11 PM

        @Aurelsam

        Post your config here

        Create a working config
        How to add modules

        A 1 Reply Last reply Sep 3, 2017, 1:17 PM Reply Quote 0
        • A Offline
          Aurelsam @Mykle1
          last edited by Sep 3, 2017, 1:17 PM

          @Mykle1

          {

          module: “weatherforecast”,
          position: “top_right”,

          config: {

          location: “Saint-Germain-les-Corbeil,France”,

          locationID: “2979752”, //ID from http://www.openweathermap.org/help/city_list.txt

          appid: “ea0222cc89779d1aXXXXXXXXXXXXXXX”,

          maxNumberOfDays: “4”
          }

          },

          M 1 Reply Last reply Sep 3, 2017, 1:33 PM Reply Quote 0
          • M Offline
            Mykle1 Project Sponsor Module Developer @Aurelsam
            last edited by Sep 3, 2017, 1:33 PM

            @Aurelsam said in Problem with Weather forecast:

            {
            module: “weatherforecast”,
            position: “top_right”,
            config: {
            location: “Saint-Germain-les-Corbeil,France”,
            locationID: “2979752”, //ID from http://www.openweathermap.org/help/city_list.txt
            appid: “ea0222cc89779d1aXXXXXXXXXXXXXXX”,
            maxNumberOfDays: “4”
            }
            },

            This works for me. Check your appid.

            {
            	module: "weatherforecast",
            	position: "top_right",
            	header: "Saint-Germain-les-Corbeil,France",
            	config: {
            		location: "",
            		locationID: "2979752", //ID from http://www.openweathermap.org/help/city_list.txt
            		appid: "ea0222cc89779d1aXXXXXXXXXXXXXXX",
            		maxNumberOfDays: "4"
            	  }
            
            },
            

            Create a working config
            How to add modules

            A 1 Reply Last reply Sep 3, 2017, 1:37 PM Reply Quote 0
            • A Offline
              Aurelsam @Mykle1
              last edited by Sep 3, 2017, 1:37 PM

              @Mykle1
              My appid is good because it works with the current weather.
              There are no other solutions?
              Thx Mykle1

              M 1 Reply Last reply Sep 3, 2017, 1:43 PM Reply Quote 0
              • M Offline
                Mykle1 Project Sponsor Module Developer @Aurelsam
                last edited by Mykle1 Sep 5, 2017, 12:43 AM Sep 3, 2017, 1:43 PM

                @Aurelsam

                Copy and paste my config entry above into your config and DOUBLE CHECK your appid. That entry is working.

                EDIT! Working under MM 2.1.1

                Create a working config
                How to add modules

                M 1 Reply Last reply Sep 4, 2017, 12:54 AM Reply Quote 0
                • S Offline
                  Sp4M
                  last edited by Sep 3, 2017, 7:06 PM

                  I have the same problem, even after deep investigations.

                  I can get current weather calling this :
                  http://api.openweathermap.org/data/2.5/weather?q=paris&units=metric&APPID=cbbxxxxxxxxxxxxxx

                  I can get forecast weather with 3h timepoints using
                  http://api.openweathermap.org/data/2.5/forecast?q=paris&units=metric&APPID=cbbxxxxxxxxxxxxxx

                  BUT i cannot use daily forecast which is used by MM
                  http://api.openweathermap.org/data/2.5/forecast/daily?q=paris&units=metric&APPID=cbbxxxxxxxxxxxxxx
                  it returns : {“cod”:401, “message”: “Invalid API key. Please see http://openweathermap.org/faq#error401 for more info.”}

                  it appears that daily forecast is not free (anymore ?) regarding openweather website.
                  https://openweathermap.org/price

                  Maybe it is a problem related to location ? I see that I actualy live just a few kilometers away from Aurelsam (Saint-Germain-les-Corbeil, France)

                  1 Reply Last reply Reply Quote 0
                  • S Offline
                    Sp4M
                    last edited by Sep 3, 2017, 7:42 PM

                    You can temporarly get around the problem by using 3h steps forecast (2nd link of my previous post) instead of daily, and by adding this to the weatherforecast.js :

                    in function processWeather,
                    after line var forecast = data.list[i];

                    add:

                    if (forecast.dt_txt.split(" ")[1] != “00:00:00”) continue;

                    (in config)
                    maxNumberOfDays parameter now counts timepoints (each 3h) and not days:
                    maxNumberOfDays: 4 // means 4 forecast points: 0h, 3h, 6h, 9h
                    maxNumberOfDays: 8 // means 8 timepoints of 3h = 24h = 1 day
                    maxNumberOfDays: 40 // means 40 timepoints of 3h = 120h = 5 days

                    You should also remove parameter check in the same script weatherforecast.js, which allow maximum 16 (for 16 days). it should be set to maximum 128 (timepoints) for 16 days.

                    example:
                    params += “&cnt=” + (((this.config.maxNumberOfDays < 1) || (this.config.maxNumberOfDays > 128)) ? 40 : this.config.maxNumberOfDays);

                    1 Reply Last reply Reply Quote 0
                    • M Offline
                      Mykle1 Project Sponsor Module Developer @Mykle1
                      last edited by Sep 4, 2017, 12:54 AM

                      @Mykle1 said in Problem with Weather forecast:

                      I don’t know what to tell you. That entry is working.

                      Reply to myself! LOL

                      An oversight on my part. I was testing that in MM 2.1.1 and it WAS working. I just moved to MM 2.1.2 and it does NOT

                      Create a working config
                      How to add modules

                      A 1 Reply Last reply Sep 4, 2017, 9:26 AM Reply Quote 0
                      • 1
                      • 2
                      • 3
                      • 4
                      • 5
                      • 1 / 5
                      1 / 5
                      • First post
                        6/47
                        Last post
                      Enjoying MagicMirror? Please consider a donation!
                      MagicMirror created by Michael Teeuw.
                      Forum managed by Sam, technical setup by Karsten.
                      This forum is using NodeBB as its core | Contributors
                      Contact | Privacy Policy