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.

    MMM-Globe

    Scheduled Pinned Locked Moved Utilities
    119 Posts 39 Posters 213.8k Views 40 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.
    • G Offline
      GinSeng @LukeCodewalker
      last edited by GinSeng

      @LukeCodewalker
      Yes i want to fade one picture over a longer time. Like an LED Fading on/off over a periodic time. But i managed to do it with a gif, i created.

      Btw.: Here is a picture which i promised :) i used a custom picture. (It’s in the dark because the mirror isn’t complete by now and the monitor i use atm isn’t really the best :/ 0_1479547035036_2016-11-18_22-32-39_811.jpg

      1 Reply Last reply Reply Quote 0
      • M Offline
        matt25
        last edited by paviro

        Hi,

        Have an issue with the module. Nothing display, only some lines…

        0_1479826430390_Capture d’écran 2016-11-22 à 15.53.13.png

        I had a look at the code. The generated URL is correct, when I copy it into a browser I can see the picture:
        http://rammb.cira.colostate.edu/ramsdis/online/images/latest/himawari-8/full_disk_ahi_true_color.jpg?1479826211800

        Then had a look at wrapper and image objects (in getDom) and display their attributes, everything seems ok.

        All other modules works fine on my raspberry. Any help would be welcome, thanks in advance.

        By the way, my config:

        {
            module: 'MMM-Globe',
            position: 'center',
            config: {
                style: 'geoColor',
                imageSize: 600,
                ownImagePath:'',
                updateInterval: 10*60*1000
            }
        },
        

        Thank a lot.

        Matt


        Note from admin: Please use Markdown on code snippets for easier reading!

        1 Reply Last reply Reply Quote 0
        • G Offline
          GinSeng
          last edited by GinSeng

          @matt25

          Hi Matt, try at position : ‘middle_center’ not only center.

          M Andrius okA 2 Replies Last reply Reply Quote 0
          • M Offline
            matt25 @GinSeng
            last edited by paviro

            @GinSeng
            Hi Ginseng, thanks for your help. Already tried different positions but no success:

            {
                module: 'MMM-Globe',
                position: 'middle_center',
                config: {
                    style: 'geoColor',
                    imageSize: 600,
                    ownImagePath:'',
                    updateInterval: 10*60*1000
                }
            

            Also tried the module locally on my macbook, but still the same problem… very weird!

            (note that the ‘updateinterval’ is modified when posting the message)


            Note from admin: Please use Markdown on code snippets for easier reading!

            LukeCodewalkerL 1 Reply Last reply Reply Quote 0
            • LukeCodewalkerL Offline
              LukeCodewalker Module Developer @matt25
              last edited by

              @matt25 Puh. I don’t get what’s going wrong here. Could it be possible that there’s another module is having influence? Maybe you could show us your whole config file.

              M 1 Reply Last reply Reply Quote 0
              • M Offline
                matt25 @LukeCodewalker
                last edited by paviro

                @LukeCodewalker
                That’s what I thought… I even removed all the modules but no success!
                Here’s my last config file…

                */* Magic Mirror Config Sample
                *
                * By Michael Teeuw http://michaelteeuw.nl
                * MIT Licensed.
                */
                
                var config = {
                	port: 8080,
                	language: 'en',
                	timeFormat: 24,
                	units: 'metric',
                
                	modules: [
                		{
                			module: 'alert',
                		},
                		{
                			module: 'clock',
                			position: 'top_left'
                		},
                
                		{
                			module: 'newsfeed',
                			position: 'bottom_bar',
                			config: {
                				feeds: [
                					{
                						title: "New York Times",
                						url: "http://www.nytimes.com/services/xml/rss/nyt/HomePage.xml"
                					}
                				],
                				showSourceTitle: true,
                				showPublishDate: true
                			}
                		},
                
                		{
                			module: 'MMM-Globe',
                			position: 'middle_center',
                			config: {
                				style: 'geoColor',
                				imageSize: 200,
                				ownImagePath:'',
                				updateInterval: 10*60*1000
                			}
                		},
                
                	]
                
                };
                
                /*************** DO NOT EDIT THE LINE BELOW ***************/
                if (typeof module !== 'undefined') {module.exports = config;}*
                

                Note from admin: Please use Markdown on code snippets for easier reading!

                1 Reply Last reply Reply Quote 0
                • binderthB Offline
                  binderth @LukeCodewalker
                  last edited by binderth

                  @LukeCodewalker said in MMM-Globe:

                  Hey guys,
                  here is a module for displaying live pictures of our planet on your mirror.
                  The pictures are taken from the Himawari-8 satellite.
                  It’s also possible to use custom pictures.

                  Thanks! Looks huge on my MagicMirror!
                  Did you come across a live pic feed of a different satellite? I’m thinking of one, which has Europe and not Asian Pacific in the center! ;) Would be great to have a switch, so it would show the live shadows of my Position.

                  greets,
                  Thomas.

                  lolobyteL 1 Reply Last reply Reply Quote 0
                  • lolobyteL Offline
                    lolobyte @binderth
                    last edited by

                    @binderth

                    Hi,
                    i replacded the original links in the MMM-Globe.js for the image with this:

                        start: function () {
                                self = this;
                                this.url = '';
                                this.imageUrls = {
                                        'natColor': 'http://oiswww.eumetsat.org/IPPS/html/latestImages/EUMETSAT_MSG_RGBNatColour_LowResolution.jpg',
                                        'geoColor': 'http://oiswww.eumetsat.org/IPPS/html/latestImages/EUMETSAT_MSG_IR108Color_LowResolution.jpg',
                                        'airMass': 'http://oiswww.eumetsat.org/IPPS/html/latestImages/EUMETSAT_MSG_RGBAirmass_LowResolution.jpg',
                                        'fullBand': 'http://oiswww.eumetsat.org/IPPS/html/latestImages/EUMETSAT_MSG_MPE_LowResolution.png'
                                }
                                this.hiResImageUrls = {
                                        'natColor': 'http://oiswww.eumetsat.org/IPPS/html/latestImages/EUMETSAT_MSG_RGBNatColour_LowResolution.jpg',
                                        'geoColor': 'http://oiswww.eumetsat.org/IPPS/html/latestImages/EUMETSAT_MSG_IR108Color_LowResolution.jpg',
                                        'airMass': 'http://oiswww.eumetsat.org/IPPS/html/latestImages/EUMETSAT_MSG_RGBAirmass_LowResolution.jpg',
                                        'fullBand': 'http://oiswww.eumetsat.org/IPPS/html/latestImages/EUMETSAT_MSG_MPE_LowResolution.png'
                                }
                    

                    good luck

                    binderthB 2 Replies Last reply Reply Quote 0
                    • binderthB Offline
                      binderth @lolobyte
                      last edited by binderth

                      @lolobyte said in MMM-Globe:

                      EUMETSAT_MSG_MPE_LowResolution.png’

                      That’s great! I did this:

                      start: function () {
                      	self = this;
                      	this.url = '';
                      	this.imageUrls = {
                      		'natColor': 'http://rammb.cira.colostate.edu/ramsdis/online/images/latest/himawari-8/full_disk_ahi_natural_color.jpg',
                      		'geoColor': 'http://rammb.cira.colostate.edu/ramsdis/online/images/latest/himawari-8/full_disk_ahi_true_color.jpg',
                      		'airMass': 'http://rammb.cira.colostate.edu/ramsdis/online/images/latest/himawari-8/full_disk_ahi_rgb_airmass.jpg',
                      		'fullBand': 'http://rammb.cira.colostate.edu/ramsdis/online/images/latest/himawari-8/himawari-8_band_03_sector_02.gif',
                      		'europeDiscNat': 'http://oiswww.eumetsat.org/IPPS/html/latestImages/EUMETSAT_MSG_RGBNatColour_LowResolution.jpg',
                      		'europeDiscSnow': 'http://oiswww.eumetsat.org/IPPS/html/latestImages/EUMETSAT_MSG_RGBSolarDay_CentralEurope.jpg'
                      	}
                      	this.hiResImageUrls = {
                      		'natColor': 'http://rammb.cira.colostate.edu/ramsdis/online/images/latest_hi_res/himawari-8/full_disk_ahi_natural_color.jpg',
                      		'geoColor': 'http://rammb.cira.colostate.edu/ramsdis/online/images/latest_hi_res/himawari-8/full_disk_ahi_true_color.jpg',
                      		'airMass': 'http://rammb.cira.colostate.edu/ramsdis/online/images/latest_hi_res/himawari-8/full_disk_ahi_rgb_airmass.jpg',
                      		'fullBand': 'http://rammb.cira.colostate.edu/ramsdis/online/images/latest/himawari-8/himawari-8_band_03_sector_02.gif',
                      		'europeDiscNat': 'http://oiswww.eumetsat.org/IPPS/html/latestImages/EUMETSAT_MSG_RGBNatColour_LowResolution.jpg',
                      		'europePartSnow': 'http://oiswww.eumetsat.org/IPPS/html/latestImages/EUMETSAT_MSG_RGBSolarDay_CentralEurope.jpg'
                      	}
                      	console.log(this.imageUrls[this.config.style]);
                      

                      So, you can choose from more Images.

                      • europeDiscNat: natural Color Europe Picture
                      • europeDiscSnow: snow!!! ;)

                      config.js

                      	{
                      		module: 'MMM-Globe',
                      		position: 'center',
                      		config: {
                      			style: 'europeDiscNat',
                      			imageSize: 600,
                      			ownImagePath:'',
                      			updateInterval: 10*60*1000
                      		}
                      	},
                      

                      If I have a bit more time, I’d like to add the standard ones and make a pull request to choose from. There’s a list of (near) real-time images from EUMETSAT: http://oiswww.eumetsat.org/IPPS/html/latestImages.html

                      schlachtkreuzer6S S 2 Replies Last reply Reply Quote 3
                      • binderthB Offline
                        binderth @lolobyte
                        last edited by

                        @lolobyte said in MMM-Globe:

                        EUMETSAT_MSG_RGBNatColour_LowResolution.jpg

                        only Problem with these images are the white bottomline, on my MM it looks like this:
                        0_1483012096329_upload-dda9a5c9-d918-4dc6-b35c-ecf790791bed

                        sadly, there’s some white capping down there, but I guess we have to live with that - real time cropping of images won’t make the PIs any faster! ;)

                        lolobyteL schlachtkreuzer6S 2 Replies Last reply Reply Quote 0
                        • lolobyteL Offline
                          lolobyte @binderth
                          last edited by

                          @binderth

                          yes, i know. That’s the south pole. ;-))

                          Pull request, good idea.

                          The Images are better then nothing.
                          I searched for a better view for Europe with full disk, but nothing found.

                          Maybe other sources from other user here?

                          C 1 Reply Last reply Reply Quote 0
                          • schlachtkreuzer6S Offline
                            schlachtkreuzer6 @binderth
                            last edited by

                            @binderth niiiice! :)

                            1 Reply Last reply Reply Quote 0
                            • schlachtkreuzer6S Offline
                              schlachtkreuzer6 @binderth
                              last edited by

                              @binderth the globe is cut at south pole area, i think the white slice down there is the background color

                              0_1483121888864_pi globe.PNG

                              so i think the module cut a circle out of the webpage and down there is some part of the earth missing, or out of view. Also i got another issue: If I´m using the random Photo Module as background, i see a small black border around the full globe. So to fix that, there must be an adjustment for the size of the cutting circle. But anyway the main problem with that white slice is, the image source.

                              SvenSommerS 1 Reply Last reply Reply Quote 0
                              • S Offline
                                shgmongohh @binderth
                                last edited by

                                @binderth

                                If I have a bit more time, I’d like to add the standard ones and make a pull request to choose from. There’s a list of (near) real-time images from EUMETSAT: http://oiswww.eumetsat.org/IPPS/html/latestImages.html

                                Very nice work!

                                It would be awesome, if you could add the real time images!

                                Sebastian

                                schlachtkreuzer6S 1 Reply Last reply Reply Quote -1
                                • schlachtkreuzer6S Offline
                                  schlachtkreuzer6 @shgmongohh
                                  last edited by

                                  @shgmongohh that would be awesome! thank you in advance :)

                                  1 Reply Last reply Reply Quote 0
                                  • SvenSommerS Offline
                                    SvenSommer @schlachtkreuzer6
                                    last edited by

                                    @schlachtkreuzer6
                                    Hey guys,
                                    I was able to cut the white bar by cutting the last pixels (depending on the image size) from this image with adding the following to MMM-Globe.js

                                    getDom: function () {
                                        var wrapper = document.createElement("div");
                                        if (this.config.style == "europeDiscNat") {
                                    	wrapper.style.height = 0.98 * this.config.imageSize - 1 + "px";
                                    	wrapper.style.overflow = "hidden";
                                        }
                                    
                                        var image = document.createElement("img");
                                    

                                    Looking for some building inspiration?
                                    Check out my large, thin and metal framed mirror on robstechlog.com.

                                    Modules released:
                                    MMM-GoogleAnalytics
                                    MMM-GrafanaChart
                                    MMM-GrafanaGauges

                                    schlachtkreuzer6S 1 Reply Last reply Reply Quote 1
                                    • schlachtkreuzer6S Offline
                                      schlachtkreuzer6 @SvenSommer
                                      last edited by

                                      @SvenSommer Nice work! Thanks. Post it on github as well :)

                                      SvenSommerS 1 Reply Last reply Reply Quote 0
                                      • SvenSommerS Offline
                                        SvenSommer @schlachtkreuzer6
                                        last edited by

                                        @schlachtkreuzer6
                                        done, I also included the sources from binderth and made a pull request.

                                        Looking for some building inspiration?
                                        Check out my large, thin and metal framed mirror on robstechlog.com.

                                        Modules released:
                                        MMM-GoogleAnalytics
                                        MMM-GrafanaChart
                                        MMM-GrafanaGauges

                                        LukeCodewalkerL lolobyteL 2 Replies Last reply Reply Quote 1
                                        • LukeCodewalkerL Offline
                                          LukeCodewalker Module Developer @SvenSommer
                                          last edited by

                                          @SvenSommer
                                          could you please adjust the README.md that it contains your additional image-styles? then i will merge your pull request =)
                                          thanks for your help improving the module

                                          1 Reply Last reply Reply Quote 0
                                          • lolobyteL Offline
                                            lolobyte @SvenSommer
                                            last edited by

                                            @SvenSommer

                                            Wrong, the picture source information was from me.

                                            You can read my first entry above the post from @binderth !

                                            1 Reply Last reply Reply Quote 0

                                            Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                            Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                            With your input, this post could be even better 💗

                                            Register Login
                                            • 1
                                            • 2
                                            • 3
                                            • 4
                                            • 5
                                            • 6
                                            • 1 / 6
                                            • First post
                                              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