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-ISS

    Scheduled Pinned Locked Moved Education
    35 Posts 8 Posters 20.5k Views 9 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.
    • Mykle1M Offline
      Mykle1 Project Sponsor Module Developer @mrdenmark
      last edited by Mykle1

      @mrdenmark said in MMM-ISS:

      The Spot The Station widget has encountered a problem. If you are the website curator please visit our widget page for a new version of the embed code.

      @chassain 0

      had an error…i live in france…resolved when i put region state: “none”.

      This usually happens when there is an error in the config.js entry for this module. country, regionState and city options cannot contain spaces. It is stated in the example config of the repo. This is most common mistake.

      Please post your config entry in a code block.

      Module is working as expected.
      0_1571690532187_Screenshot from 2019-10-21 16-33-50.png

      Create a working config
      How to add modules

      1 Reply Last reply Reply Quote 0
      • Mykle1M Offline
        Mykle1 Project Sponsor Module Developer @chassain 0
        last edited by Mykle1

        @chassain-0 said in MMM-ISS:

        I had an error…i live in france…resolved when i put region state: “none”.

        You are absolutely right, sir. The module/widget does accept “None” in the regionState: config option and fixes that issue rather nicely. This is the first I’ve heard of that problem. Thank you for bringing it to my attention. And thanks for the solution. I went to the url and confirmed.

        Create a working config
        How to add modules

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

          problem solved-it was the none required in state!thanks for the assistance

          1 Reply Last reply Reply Quote 0
          • Mykle1M Offline
            Mykle1 Project Sponsor Module Developer
            last edited by

            Download:

            [card:mykle1/MMM-ISS]

            Update to Version 1.0.1

            Updated module and fixed config so that underscores are no longer necessary in config options country, regionState and city.

            Also, when regionState is not necessary for your location (Ex. Toulon, France), simply leave regionState blank.

            disabled: false,
            module: 'MMM-ISS',
            position: 'middle_center',
            config: {
                country: "United States",
                regionState: "New York",       // Outside USA may not need regionState. If so, leave blank "".
                city: "New York",
            ...
            
            disabled: false,
            module: 'MMM-ISS',
            position: 'middle_center',
            config: {
                country: "France",
                regionState: "",       // Outside USA may not need regionState. If so, leave blank "".
                city: "Toulon",
            ...
            

            Create a working config
            How to add modules

            1 Reply Last reply Reply Quote 0
            • C Offline
              chassain 0
              last edited by

              Perfect !

              1 Reply Last reply Reply Quote 1
              • Mykle1M Offline
                Mykle1 Project Sponsor Module Developer
                last edited by

                In case anyone would like to use this module for multiple locations, simply add another config entry.

                0_1572487261033_Screenshot from 2019-10-30 21-48-52.png

                Create a working config
                How to add modules

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

                  would it be possible to restrict the times it updates? say once an hour during the day and every 30 seconds when sightings are possible?

                  Mykle1M 1 Reply Last reply Reply Quote 0
                  • Mykle1M Offline
                    Mykle1 Project Sponsor Module Developer @mrdenmark
                    last edited by

                    @mrdenmark

                    The default updateInterval is 5 * 60 * 1000 (5 minutes). You can adjust this in your config. As the module only displays the next flyover, setting the updateInterval to 30 seconds would not change the information being displayed by the module. With that, I have no plans to make those changes but you are free to fork the module and make any changes you like.

                    Create a working config
                    How to add modules

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

                      any ideas why the iss module has started displaying like this?-!0_1573028886737_mirror 2 resised.jpg
                      both modules are in lower_third but the same thing happens wherever i move them, if i move iss to bottom_left for instance it will overlap the news feed in bottom_bar

                      Mykle1M 1 Reply Last reply Reply Quote 0
                      • Mykle1M Offline
                        Mykle1 Project Sponsor Module Developer @mrdenmark
                        last edited by Mykle1

                        @mrdenmark

                        any ideas why the iss module has started displaying like this?

                        Hmm, until I can see what is going on there you can use something like this in your custom.css file and adjust accordingly.

                        .MMM-ISS {
                          margin-top: 0px;
                          margin-bottom: 0px;
                          margin-left: 0px;
                          margin-right: 0px;
                        }
                        

                        and this to move MMM-Aurora

                        .MMM-Aurora {
                          margin-top: 0px;
                          margin-bottom: 0px;
                          margin-left: 0px;
                          margin-right: 0px;
                        }
                        

                        I played with mine for a minute and was able to do this. Adjust the values until you are satisfied.

                        0_1573085826226_Screenshot from 2019-11-06 19-14-12.png

                        Create a working config
                        How to add modules

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

                          the module has recently started telling me there are no sightings for several days but that date has been moving further and further away, anyone have any ideas why?

                          {
                                 disabled: false,
                                 module: "MMM-ISS",
                                 position: "top_right",
                                     config: {
                                             country: "New_Zealand",                  // NO SPACES, USE UNDERSCORE
                                             regionState: "None",                   // NO SPACES, USE UNDERSCORE
                                             city: "Queenstown",                            // NO SPACES, USE UNDERSCore
                                             lat: "-44.57",                              // latitude
                                             lng: "168.50",                             // longitude
                                             units: "km",                               // mi = miles, mph / km = kilometers, km/h
                                             useHeader: false,                          // true if you want a header      
                                             header: "",                                // Any text you want. useHeader must be true
                                             updateInterval: 5 * 60 * 1000,
                                  }
                          },
                          

                          0_1573627903252_2019-11-13-194448_1080x1920_scrot.png

                          Mykle1M MoreLinuxM 2 Replies Last reply Reply Quote 0
                          • Mykle1M Offline
                            Mykle1 Project Sponsor Module Developer @mrdenmark
                            last edited by

                            @mrdenmark said in MMM-ISS:

                            the module has recently started telling me there are no sightings for several days but that date has been moving further and further away, anyone have any ideas why?

                            Change of flight path?

                            I tested with your config entry and got the same results as you. Tested with my entry and all is normal. Perhaps you can try with a neighboring city or slightly different lat and long as a further test.

                            Create a working config
                            How to add modules

                            M 1 Reply Last reply Reply Quote 0
                            • M Offline
                              mrdenmark @Mykle1
                              last edited by

                              @Mykle1
                              i’ve been playing around,i can’t get any nz locations to work but use the same info on the website and its fine,original config also works fine,no idea whats wrong,it worked great up until around 10 days ago.maybe something on the website has changed?

                              1 Reply Last reply Reply Quote 0
                              • MoreLinuxM Offline
                                MoreLinux @mrdenmark
                                last edited by

                                @mrdenmark Queenstown NZ doesn’t have any ISS passes until 30 Nov. 2019, so your mirror might be correct.

                                You can check it at: https://www.heavens-above.com/PassSummary.aspx?satid=25544&lat=-45.0312&lng=168.6626&loc=Queenstown&alt=0&tz=NZST

                                M 1 Reply Last reply Reply Quote 0
                                • M Offline
                                  mrdenmark @MoreLinux
                                  last edited by

                                  @MoreLinux
                                  yeah,i guess thats the reason,for some reason i thought visible passe were much more frequent than that

                                  1 Reply Last reply Reply Quote 0
                                  • V Offline
                                    Vauxdvihl
                                    last edited by

                                    @Mykle1
                                    Thanks for this great module.
                                    Unfortunately i get an error


                                    Error Found
                                    The Spot The Station widget has encountered a problem. If you are the website curator please visit our widget page for a new version of the embed code.


                                    {//MMM-ISS
                                    			disabled: false,
                                    			module: 'MMM-ISS',
                                    			position: 'bottom_left',
                                    			config: {
                                    				country: "Germany",
                                    				city: "Pöcking",
                                    				lat: "47.9664",                // latitude
                                    				lng: "11.3001",                // longitude
                                    				units: "km",                   // mi = miles, mph / km = kilometers, km/h
                                    				useHeader: false,              // true if you want a header
                                    				header: "",                    // Any text you want. useHeader must be true
                                    				updateInterval: 5 * 60 * 1000,
                                    			  }
                                    			},
                                    

                                    Do you have an idea?
                                    Thanks a lot

                                    Mykle1M 1 Reply Last reply Reply Quote 0
                                    • Mykle1M Offline
                                      Mykle1 Project Sponsor Module Developer @Vauxdvihl
                                      last edited by

                                      @Vauxdvihl said in MMM-ISS:

                                      Pöcking

                                      Please try, Osterhofen or Deggendorf as your city, whichever is closer. Pöcking and Pocking are not acceptable by the module. Keep in mind, the ISS is not visible everywhere.

                                      You can go to https://spotthestation.nasa.gov/ and find a better location, if there is one.

                                      Peace

                                      Create a working config
                                      How to add modules

                                      T 1 Reply Last reply Reply Quote 0
                                      • T Offline
                                        timma11 @Mykle1
                                        last edited by

                                        @Mykle1, Thanks for making these modules. I have 2 of yours installed. Might I suggest adding to the readme that the module can’t use every location and that it can only use ones listed on the findthesation.nasa.gov site.

                                        Mykle1M 1 Reply Last reply Reply Quote 1
                                        • Mykle1M Offline
                                          Mykle1 Project Sponsor Module Developer @timma11
                                          last edited by

                                          @timma11

                                          Done. Take a look at the bottom of the readme

                                          https://github.com/mykle1/MMM-ISS/blob/master/README.md

                                          Create a working config
                                          How to add modules

                                          1 Reply Last reply Reply Quote 1

                                          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
                                          • 2 / 2
                                          • 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