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-Rejseplanen - A departure board for Danish train and bus stations

    Scheduled Pinned Locked Moved Transport
    19 Posts 10 Posters 12.1k Views 10 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.
    • yawnsY Offline
      yawns Moderator
      last edited by

      Looking at your screenshot I thought “that looks very familiar” :)

      Very nice work and thanks alot for the credits!

      1 Reply Last reply Reply Quote 0
      • B Offline
        B3nihana
        last edited by

        Hey! I found your module and its really close to what I’m after! I’d like to be able to see when the next Metro train is leaving from a certain station, and in which direction its going (end station). Basically what you can see shown here: http://intl.m.dk/#!/stations/stationer/noerreport The information apparently is sourced from Rejseplanen so I would assume the API would cover it.

        If you have any hints on where to get started I’d be happy to hear them, I’ve got some basic experience with JavaScript but thought that you would be the best person to ask :)

        ManmachineM 1 Reply Last reply Reply Quote 0
        • ManmachineM Offline
          Manmachine @B3nihana
          last edited by

          @B3nihana
          Hey
          Just uploaded a new version, with a better support for Metro (direction). try it

          B 2 Replies Last reply Reply Quote 1
          • B Offline
            B3nihana @Manmachine
            last edited by

            @Manmachine Thanks! I’ll check it out and get back to you, what a great community this is!

            1 Reply Last reply Reply Quote 0
            • B Offline
              B3nihana @Manmachine
              last edited by

              @Manmachine

              Trying the new version, I’m not sure I’m configuring the options correctly?

              If I only want to show Metro, I choose “M” under vehicle, but somehow all transport modes are still shown in the Mirror frontend. Secondly, the Metro stops don’t seem to be available in your list, and I assume that is due to the API lacking them? Is there anyway around this?

              Should it look something like this

                              {
                              module: 'MMM-Rejseplanen',
                              position: 'top_left',
                              header: 'Rejseplanen.dk',
                                      config: {
                                              stationID: "?",
                                              stationName: "Forum",
                                              vehicle: "M",
                                              destfilter: ""
                                      }
                              },
              
              

              I’d really appreciate any help you could provide!

              ManmachineM 1 Reply Last reply Reply Quote 0
              • ManmachineM Offline
                Manmachine @B3nihana
                last edited by

                @B3nihana

                The “hidden” features are in the destfilter:
                Try the following,
                Should give you all the Metro trains

                		{
                	module: 'MMM-Rejseplanen',
                	position: 'top_left',
                	header: 'Rejseplanen.dk',
                		config: {
                			stationID: "8600646",
                			stationName: "Nørreport",
                			vehicle: "T",
                			destfilter: "Metro"
                		}
                	},
                

                Or you can get all trains in one direction

                		{
                	module: 'MMM-Rejseplanen',
                	position: 'top_left',
                	header: 'Rejseplanen.dk',
                		config: {
                			stationID: "8600646",
                			stationName: "Nørreport",
                			vehicle: "T",
                			destfilter: "Vanløse"
                		}
                	},
                

                It was the easiest way to solve this, as well as the most flexible. Only require about 8 lines of code.

                And I’m a lazy man. So less code is really nice

                1 Reply Last reply Reply Quote 0
                • K Offline
                  KuRIoS
                  last edited by

                  Is there any way to only get the next 5 or 10 departures instead of 20?

                  ManmachineM 1 Reply Last reply Reply Quote 0
                  • ManmachineM Offline
                    Manmachine @KuRIoS
                    last edited by

                    @kurios said in MMM-Rejseplanen - A departure board for Danish train and bus stations:

                    departures

                    You can now configure the number of returned departures in the new updated version 1.2.0. Between 1 and 20 as max.

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

                      Thank you for the plugin it is very nice and just what I needed for displaying bus lines in Aarhus.

                      For others that might want to use a Station ID that is not in the list you can find nearby stops to your coordinates by using this URL: http://xmlopen.rejseplanen.dk/bin/rest.exe/stopsNearby?coordX=id&coordY=id&maxRadius=1000&maxNumber=30

                      Example:
                      GPS coordinates
                      Latitude: 55.67310756519397
                      Longitude: 12.565741539001467

                      http://xmlopen.rejseplanen.dk/bin/rest.exe/stopsNearby?coordX=12565796&coordY=55673063&maxRadius=1000&maxNumber=30

                      1 Reply Last reply Reply Quote 2
                      • S Offline
                        siraero
                        last edited by

                        Hi
                        How can I add a red color for the bus icon?
                        Cant See what class to use in the css.

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

                          Hejsa!

                          Thank you @Manmachine for your contribution!
                          I’m totally new to the concept and my purpose is to use it to GYST my daily workflow as a young entrepreneur

                          (gyst = get your shit together)

                          Trying the module now with the current setup:

                          VirtualBox on macOS Mojave running Ubuntu MATE 1604LTS as a DevEnvironment.
                          Latest MagicMirror only with the clock module on.

                          Added station ID for Odense, Nørreport and my tiny bus station and nothing shows up. Only getting a Loading … response. Is the Rejseplanen API still functional with this module? Or is it maybe my setup to blame?

                          0_1552400697624_Screenshot 2019-03-12 at 15.23.17.png

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

                            As to be expected the issue was with the setup - VM users should take that into account. Oddly the fix when I added another module using external info (horoscope) and rebooted the VM. Saw it had a hiccup with time and date sync within ubuntu. Sorted itself out. Rejseplanen train depatures from Odense Station load nicely but for some reason can’t figure out how to switch to Bus lines and show the lines that go through my stop or any other bus stop for that matter.

                            config:{
                              stationID: "461112000",
                              stationName: "Bilka",
                              vehicle: "B",
                              destfilter: "",
                              departuresMax: 5
                            }
                            

                            After Loading… for a while it returns this

                            0_1552404911886_Screenshot 2019-03-12 at 16.34.56.png

                            Which seems to be defaulting to Odense Station for some reason.

                            1 Reply Last reply Reply Quote 0
                            • I Offline
                              Impertus
                              last edited by

                              What happen to this Module :/

                              Is just what i needed…

                              M 1 Reply Last reply Reply Quote 0
                              • M Offline
                                MarkNygaard @Impertus
                                last edited by

                                @Impertus It still works fine. Runs on my mirror every day.

                                I 1 Reply Last reply Reply Quote 0
                                • I Offline
                                  Impertus @MarkNygaard
                                  last edited by

                                  @MarkNygaard said in MMM-Rejseplanen - A departure board for Danish train and bus stations:

                                  @Impertus It still works fine. Runs on my mirror every day.

                                  Can you send that to me? Because there is No download link more. :/

                                  På forhånd tak :)

                                  M 1 Reply Last reply Reply Quote 0
                                  • M Offline
                                    MarkNygaard @Impertus
                                    last edited by

                                    @Impertus said in MMM-Rejseplanen - A departure board for Danish train and bus stations:

                                    @MarkNygaard said in MMM-Rejseplanen - A departure board for Danish train and bus stations:

                                    @Impertus It still works fine. Runs on my mirror every day.

                                    Can you send that to me? Because there is No download link more. :/

                                    På forhånd tak :)

                                    https://github.com/poketcalulator/MMM-Rejseplanen

                                    There you go :)

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

                                      Like focaldistorsion I had a problem where the module kept saying Loading…
                                      I installed the magic mirror as a docker container, running on a remote server. My solution was to check the docker log with:

                                      docker container logs mm
                                      

                                      That returned an error regarding Request, which I fixed by running

                                      npm i request
                                      

                                      in the magic mirror container.
                                      Thanks for an awesome module!

                                      KristjanESPERANTOK 1 Reply Last reply Reply Quote 0
                                      • KristjanESPERANTOK Offline
                                        KristjanESPERANTO Module Developer @mklara
                                        last edited by KristjanESPERANTO

                                        The module has not been updated for a long time and has very old dependencies. There is a module that can also use a Rejseplanen API and is actively developed by me: https://github.com/KristjanESPERANTO/MMM-PublicTransportHafas

                                        It looks like this:Kolding.png

                                        This is the configuration of it:

                                            {
                                              module: "MMM-PublicTransportHafas",
                                              position: "top_left",
                                              config: {
                                                hafasProfile: "rejseplanen",
                                                stationID: "8600083",
                                                stationName: "Kolding St.",
                                                timeToStation: 5,
                                                showAbsoluteTime: false
                                              }
                                            },
                                        
                                        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 / 1
                                        • 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