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-UKNationalRail - Rail departure info for specific UK Railway stations

    Scheduled Pinned Locked Moved Transport
    uk railtransport
    33 Posts 15 Posters 22.2k Views 16 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.
    • nwoottonN Offline
      nwootton Module Developer
      last edited by nwootton

      Description:

      Retrieves information about rail services running through a specific UK rail station. Built on the Transport API.

      See documentation in the README and on the TransportAPI developer portal.

      Screenshot:

      0_1490612091128_MMM-UKNationalRail.jpg

      GitHub Repo: https://github.com/nwootton/MMM-UKNationalRail

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

        Not given this a go yet but I’ll be sure to give it a try.
        I reckon it will always be marked “Late” though…

        nwoottonN 1 Reply Last reply Reply Quote 0
        • nwoottonN Offline
          nwootton Module Developer @McSorley
          last edited by

          @McSorley I considered making it flash and make noises if the train was on time, but it’s such an edge case that I didn’t think it was worth the effort! :)

          1 Reply Last reply Reply Quote 2
          • nwoottonN Offline
            nwootton Module Developer
            last edited by

            Now includes the platform and a slightly better layout.

            1 Reply Last reply Reply Quote 1
            • M Offline
              Mar
              last edited by

              @nwootton Thank you so much for this!!! Its my most used module by far and i’ve only had it a week! Wish I could buy you a beer bc you deserve it!

              nwoottonN 1 Reply Last reply Reply Quote 0
              • nwoottonN Offline
                nwootton Module Developer @Mar
                last edited by

                @Mar Thanks, I’m glad you like it.

                1 Reply Last reply Reply Quote 0
                • nwoottonN Offline
                  nwootton Module Developer
                  last edited by

                  New version release - better layout, more display options and ability to run multiple station configs.

                  Please provide feedback either here, or by opening an issue on GitHub here.

                  Thanks.

                  1 Reply Last reply Reply Quote 0
                  • randomnoiseR Offline
                    randomnoise
                    last edited by

                    @nwootton This is brilliant, cheers for making this. I was trying to make my own module using this API by attempting to modify existing modules but I never got it running properly & then I moved on to another project. Saw someone on Reddit with a mirror build with UK train data today so I came back to see you’ve completed all the hard work :)

                    nwoottonN 1 Reply Last reply Reply Quote 0
                    • nwoottonN Offline
                      nwootton Module Developer @randomnoise
                      last edited by

                      @randomnoise Thanks for that, glad you like it. There’s a bus version as well if you want it!

                      Can you stick a link to the Reddit post up here if you get a chance, would be nice to see one in the wild so to speak!

                      randomnoiseR 1 Reply Last reply Reply Quote 0
                      • randomnoiseR Offline
                        randomnoise @nwootton
                        last edited by

                        @nwootton this is the post in DIY https://www.reddit.com/r/DIY/comments/6fo4fg/i_too_made_a_magic_mirror/

                        I’ll check out the bus one as well once my PI finishes downloading updates (shamefully its been sitting on my desk doing nothing for over 6 months while I fiddled about elsewhere).

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

                          Those kind of reddit posts make me wish I took photos when I built mine. Looks great.

                          1 Reply Last reply Reply Quote 0
                          • N Offline
                            noelandrews
                            last edited by yawns

                            Hi,
                            apologies, sure i’m doing something obvious but my module isn’t showing up.

                            I’ve done to install it, git clone… then cd to the folder and npm install

                            then add to the config.js file (my addition below).

                            I changed the ’ to " in case that was causing the issue. Still no joy, no errors on the screen it simply doesn’t show up.

                            Any help would be massively appreciated.
                            Thanks
                            Noel

                            {
                                            module:                 "MMM-UKNationalRail",
                                            position:               "bottom_left",
                                            header:                 "Departures",           //Optional - delete this line to turn OFF the header completely
                                            config: {
                                                    stationCode:            "LNB",          // CRS code for station
                                                    app_id:                         "49d8e014",             // TransportAPI App ID
                                                    app_key:                        "1a3d4XXXXXXXXXXXceac3d9f14be",             // TransportAPI App Key
                                                    maxResults:             5,              //Optional - Maximum results to display.
                                                    showOrigin:             false           //Optional - Show the origin of the train in the table
                                            }
                                    },
                            
                            1 Reply Last reply Reply Quote 0
                            • nwoottonN Offline
                              nwootton Module Developer
                              last edited by nwootton

                              @noelandrews said in MMM-UKNationalRail - Rail departure info for specific UK Railway stations:

                              I have to say - changing the " to ’ made it work for me.

                                  {
                                      module: 'MMM-UKNationalRail',
                                      position: 'bottom_left',
                                      header: 'Departures', //Optional - delete this line to turn OFF the header completely
                                      config: {
                                          stationCode: 'LNB', // CRS code for station
                                          app_id: '49XXX014', // TransportAPI App ID
                                          app_key: '1a3d4XXXXXXXXXXXceac3d9f14be', // TransportAPI App Key
                                          maxResults: 5, //Optional - Maximum results to display.
                                          showOrigin: false //Optional - Show the origin of the train in the table
                                      }
                                  },
                              

                              0_1511515250663_Screen Shot 2017-11-24 at 09.19.50.png

                              Also using the API_ID, API_Key and Station code in the actual TransportAPI also worked. Could it be the rest of JSON config that has issues? Have you tried pasting the whole file into something like jsonlint.com to validate it’s right.

                              I’d STRONGLY advise you remove your API keys from the JSON. Hate for other people to mis-use your account BTW

                              yawnsY 1 Reply Last reply Reply Quote 0
                              • yawnsY Offline
                                yawns Moderator @nwootton
                                last edited by

                                @nwootton said in MMM-UKNationalRail - Rail departure info for specific UK Railway stations:

                                I’d STRONGLY advise you remove your API keys from the JSON. Hate for other people to mis-use your account BTW

                                Good advise. That’s why I edited his post and replaced several characters with X :)

                                nwoottonN 1 Reply Last reply Reply Quote 0
                                • N Offline
                                  noelandrews
                                  last edited by

                                  Thanks for the advice and the edits! Didn’t think about that :)

                                  1 Reply Last reply Reply Quote 0
                                  • nwoottonN Offline
                                    nwootton Module Developer @yawns
                                    last edited by

                                    @yawns Explains why my email had the key and the post was XXXXXX.

                                    Thought I was losing it!

                                    1 Reply Last reply Reply Quote 0
                                    • F Offline
                                      funk0id
                                      last edited by

                                      Absolutely love this plugin, just wish it was still being improved :(

                                      1 Reply Last reply Reply Quote 0
                                      • D Offline
                                        dawookie1979
                                        last edited by

                                        Hello, i have the module working, i just cant get it to display the title.

                                        {
                                        module: ‘MMM-UKNationalRail’,
                                        position: ‘bottom_left’,
                                        header: ‘Whittlesford Parkway’, //Optional - delete this line to turn OFF the header completely
                                        config: {
                                        stationCode: ‘WLF’, // CRS code for station
                                        app_id: ‘xxxxxxxx’, // TransportAPI App ID
                                        app_key: ‘xxxxxxxxxx’, // TransportAPI App Key
                                        maxResults: 5, //Optional - Maximum results to display.
                                        showOrigin: false //Optional - Show the origin of the train in the table
                                        }

                                        any ideas?

                                        S 1 Reply Last reply Reply Quote 0
                                        • S Do not disturb
                                          sdetweil @dawookie1979
                                          last edited by

                                          @dawookie1979 u mean the header?

                                          Sam

                                          How to add modules

                                          learning how to use browser developers window for css changes

                                          1 Reply Last reply Reply Quote 0
                                          • D Offline
                                            dawookie1979
                                            last edited by

                                            yes the header is not showing

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