• 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.

Weatherunderground - currently - hourly - daily - configurable

Scheduled Pinned Locked Moved Troubleshooting
126 Posts 26 Posters 196.5k 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.
  • Y Offline
    yo-less Module Developer
    last edited by Aug 8, 2016, 5:59 PM

    Alright, I have noticed one more issue. With the current code the sun shines all throughout the night in the hourly forecasts:

    0_1470678948573_hourly-forecasts-old.png

    I have written some code to fix it so that it looks like this instead:

    0_1470678980956_hourly-forecasts.png

    Here is what I did to lines 552 - 563 in MMM-WunderGround.js ->

    		var hourlyTime = new Date();
    		hourlyTime.setHours(hourlyforecast.FCTTIME.hour,00,00);
    		
    		if (hourlyTime > sunset || hourlyTime < sunrise) {
    						
    		this.hourlyforecast.push({
    
    			hour:    this.thour,
    			maxTemp: this.tmaxTemp,
    			minTemp: this.tminTemp,
    			icon:    this.config.iconTableNight[forecast.icon],
    			pop:	 hourlyforecast.pop,
    			mm:	 this.tmm
    		});
    		
    		} else {
    						
    		this.hourlyforecast.push({
    
    			hour:    this.thour,
    			maxTemp: this.tmaxTemp,
    			minTemp: this.tminTemp,
    			icon:    this.config.iconTableDay[forecast.icon],
    			pop:	 hourlyforecast.pop,
    			mm:	 this.tmm
    		}); 
    		}
    	}
    	}
    

    Again, I’m not sure if this can be done more efficiently, I’m happy to be pointed in a better direction :). But for now, everything seems to be just fine.

    1 Reply Last reply Reply Quote 0
    • Y Offline
      yo-less Module Developer
      last edited by Aug 9, 2016, 6:49 PM

      My bad, code should have been:

      	var hourlyTime = new Date();
      	hourlyTime.setHours(hourlyforecast.FCTTIME.hour,00,00);
      	
      	if (hourlyTime > sunset || hourlyTime < sunrise) {
      					
      	this.hourlyforecast.push({
      
      		hour:    this.thour,
      		maxTemp: this.tmaxTemp,
      		minTemp: this.tminTemp,
      		icon:    this.config.iconTableNight[hourlyforecast.icon],
      		pop:	 hourlyforecast.pop,
      		mm:	 this.tmm
      	});
      	
      	} else {
      					
      	this.hourlyforecast.push({
      
      		hour:    this.thour,
      		maxTemp: this.tmaxTemp,
      		minTemp: this.tminTemp,
      		icon:    this.config.iconTableDay[hourlyforecast.icon],
      		pop:	 hourlyforecast.pop,
      		mm:	 this.tmm
      	}); 
      	}
      }
      }
      
      1 Reply Last reply Reply Quote 0
      • R Offline
        RedNax Module Developer
        last edited by Aug 11, 2016, 10:26 AM

        Hi,

        Thanks for debugging :D Added (a version) of this in the develop branch!

        Y 1 Reply Last reply Aug 11, 2016, 12:15 PM Reply Quote 0
        • Y Offline
          yo-less Module Developer @RedNax
          last edited by Aug 11, 2016, 12:15 PM

          @RedNax Glad to hear I could add some thoughts to the project, love your module!

          1 Reply Last reply Reply Quote 0
          • Y Offline
            yo-less Module Developer
            last edited by Aug 11, 2016, 5:36 PM

            Quick question. Today I updated my mirror to version 2.0.4 via git pull. Afterwards the umbrella weather icon didn’t work any more as @MichMich has updated the weather font. Is this expected behavior or am I simply not getting another step I should take after updating? I have now manually copied the old files into the vendor/weather-icons folder and now it’s working again, but I suspect this is not what I should be doing ^^.

            1 Reply Last reply Reply Quote 0
            • R Offline
              RedNax Module Developer
              last edited by Aug 12, 2016, 6:40 AM

              Actually the weatherfont update in 2.0.4 is actually my doing… Should nstill work as expected when you’ve pulled the latest Wunderground module… You could also switch to the one in the development branch which takes advantage of having the weathericons now being part of the main framework.

              Y 1 Reply Last reply Aug 15, 2016, 1:36 PM Reply Quote 0
              • Y Offline
                yo-less Module Developer @RedNax
                last edited by Aug 15, 2016, 1:36 PM

                @RedNax Alright, thanks for the information. I have meddled so much with your code that a fresh pull would reverse all my customizations. But I’ll have a look at the development branch to get the weather module to pull the icons from its own folder.

                Could you explain to me why the new weather fonts include fewer icon definitions?

                R 1 Reply Last reply Aug 15, 2016, 2:01 PM Reply Quote 0
                • R Offline
                  RedNax Module Developer @yo-less
                  last edited by Aug 15, 2016, 2:01 PM

                  @yo-less Do they? They’re taken straight from http://weathericons.io/ which isn’t under my control. What’s missing?

                  1 Reply Last reply Reply Quote 0
                  • Y Offline
                    yo-less Module Developer
                    last edited by Aug 15, 2016, 2:48 PM

                    @RedNax No, it seems they don’t, sorry. I just rechecked and the wi-umbrella definition is there. Strangely, though, when I performed a “git pull” in the MM main folder, my umbrellas in the Weather Underground module disappeared and I had to manually overwrite the css file in the vendor folder with the older version. I must have made some other changes to the folder prior to that, because in the github repository everything seems to be fine.

                    R 1 Reply Last reply Aug 15, 2016, 5:27 PM Reply Quote 0
                    • R Offline
                      RedNax Module Developer @yo-less
                      last edited by Aug 15, 2016, 5:27 PM

                      @yo-less Did you also pull the MM 2.0.4 main framework? That’s where the icons went… Then again, when you did heavy modding… ;) Care to share screenshots of your version?

                      Y 1 Reply Last reply Aug 15, 2016, 9:03 PM Reply Quote 0
                      • 1
                      • 2
                      • 7
                      • 8
                      • 9
                      • 10
                      • 11
                      • 12
                      • 13
                      • 9 / 13
                      9 / 13
                      • First post
                        87/126
                        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