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-PublicTransportHafas: Service Temporarily Unavailable

    Scheduled Pinned Locked Moved Unsolved Troubleshooting
    29 Posts 8 Posters 4.6k 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.
    • P Offline
      p1lspeda
      last edited by

      I cannot help you, as I do not have a solution.
      BUT: I have the exact same problem

      {
                              module: "MMM-PublicTransportHafas",
                              position: "top_right",
                              config: {
                                      stationID: "000405041",                   // Replace with your stationID!
                                      stationName: "Höfchen/Listmann",   // Replace with your station name!
                                      direction: "",                    // Show only departures heading to this station. (A station ID.)
                                      ignoredLines: [],                 // Which lines should be ignored? (comma-separated list of line names)
                                      excludedTransportationTypes: [],  // Which transportation types should not be shown on the mirror? (comma-separated list of types) possible values: StN for >
                                      timeToStation: 10,                // How long do you need to walk to the next Station?
                                      showColoredLineSymbols: true,     // Want colored line symbols?
                                      useColorForRealtimeInfo: true,    // Want colored real time information (timeToStation, early)?
                                      showTableHeadersAsSymbols: true,  // Table Headers as symbols or text?
                                      maxUnreachableDepartures: 0,      // How many unreachable departures should be shown?
                                      maxReachableDepartures: 10,        // How many reachable departures should be shown?
                                      customLineStyles: "",             // Prefix for the name of the custom css file. ex: Leipzig-lines.css (case sensitive)
                                      showOnlyLineNumbers: false        // Display only the line number instead of the complete name, i. e. "11" instead of "STR 11"
                                       }
                      },
      
                      {
                              module: "MMM-PublicTransportHafas",
                              position: "top_right",
                              config: {
                                      stationID: "008003816",                   // Replace with your stationID!
                                      stationName: "Römisches Theater",   // Replace with your station name!
                                      direction: "",                    // Show only departures heading to this station. (A station ID.)
                                      ignoredLines: [],                 // Which lines should be ignored? (comma-separated list of line names)
                                      excludedTransportationTypes: [],  // Which transportation types should not be shown on the mirror? (comma-separated l$
                                      timeToStation: 5,                // How long do you need to walk to the next Station?
                                      showColoredLineSymbols: true,     // Want colored line symbols?
                                      useColorForRealtimeInfo: true,    // Want colored real time information (timeToStation, early)?
                                      showTableHeadersAsSymbols: true,  // Table Headers as symbols or text?
                                      maxUnreachableDepartures: 0,      // How many unreachable departures should be shown?
                                      maxReachableDepartures: 10,        // How many reachable departures should be shown?
                                      customLineStyles: "",             // Prefix for the name of the custom css file. ex: Leipzig-lines.css (case sensitiv$
                                      showOnlyLineNumbers: false        // Display only the line number instead of the complete name, i. e. "11" instead of$
                                       }
                      },
      
      evroomE 1 Reply Last reply Reply Quote 0
      • evroomE Offline
        evroom
        last edited by

        Seems that DB made the service, as used by Hafas, unavailable.

        https://reiseauskunft.bahn.de
        503 Service Temporarily Unavailable

        Also other programs using it have this problem.

        Can only hope that there is or there will be an alternative source.
        It is the one of the 3 most used MagicMirror modules in our household.

        MagicMirror version: 2.30.0
        Raspberry Pi 4 Model B Rev 1.5 (8 GB RAM)
        Raspbian GNU/Linux 12 (bookworm)

        Test environment:
        MagicMirror version: v2.30.0
        Raspberry Pi 3 Model B Plus Rev 1.3 (1 GB RAM)
        Raspbian GNU/Linux 12 (bookworm)

        evroomE 1 Reply Last reply Reply Quote 0
        • evroomE Offline
          evroom @evroom
          last edited by evroom

          Possible work-around.
          Needs travelling via Austria :-)

          To check if your station is available:

          $ cd ~/MagicMirror/modules/MMM-PublicTransportHafas
          $ npm run query oebb
          
          > mmm-publictransporthafas@2.1.13 query
          > node ./convenience/query_stations.mjs oebb
          
          Using hafas-client profile: oebb
          
          Enter an address or station name:
          

          This will give you a station Id.

          Update config.js:

          $ vi ~/MagicMirror/config/config.js
          :
          :
                hafasProfile: "oebb",
                stationID: "<ID>",
                stationName: "<Stop>",
          :
          :
          

          For me the list appears again, although I do not see the real-time times, meaning it shows the ⚠ symbol (as set in noRealtimeDelayString: "⚠",).

          One can try different hafas-client profiles, listed in:

          https://github.com/public-transport/hafas-client/blob/main/p/readme.md

          When you are lucky there is a good alternative to db.

          MagicMirror version: 2.30.0
          Raspberry Pi 4 Model B Rev 1.5 (8 GB RAM)
          Raspbian GNU/Linux 12 (bookworm)

          Test environment:
          MagicMirror version: v2.30.0
          Raspberry Pi 3 Model B Plus Rev 1.3 (1 GB RAM)
          Raspbian GNU/Linux 12 (bookworm)

          1 Reply Last reply Reply Quote 1
          • evroomE Offline
            evroom @othomys
            last edited by

            @othomys said in MMM-PublicTransportHafas: Service Temporarily Unavailable:

            Georg-Schwarz-Str./Merseburger-Str.

            For you I found this one:

            $ npm run query insa
            
            Enter an address or station name: Georg-Schwarz
            
            Stops found for 'Georg-Schwarz':
            
             > Stop: Leipzig, Georg-Schwarz-/Merseburger Str.
               ID: 12555
               Transport product(s): Tram, Bus
            

            So your config will be:

                  hafasProfile: "insa",
                  stationID: "12555",
                  stationName: "Georg-Schwarz-Str./Merseburger-Str.",
            

            MagicMirror version: 2.30.0
            Raspberry Pi 4 Model B Rev 1.5 (8 GB RAM)
            Raspbian GNU/Linux 12 (bookworm)

            Test environment:
            MagicMirror version: v2.30.0
            Raspberry Pi 3 Model B Plus Rev 1.3 (1 GB RAM)
            Raspbian GNU/Linux 12 (bookworm)

            1 Reply Last reply Reply Quote 1
            • evroomE Offline
              evroom @p1lspeda
              last edited by

              @p1lspeda said in MMM-PublicTransportHafas: Service Temporarily Unavailable:

              Höfchen/Listmann

              For you, try this:

              $ npm run query rmv
              
              Using hafas-client profile: rmv
              
              Enter an address or station name: Höfchen/Listmann
              
              Stops found for 'Höfchen/Listmann':
              
               > Stop: MZ Höfchen/Listmann
                 ID: 3029051
                 Transport product(s): Bus
              

              Config:

                   hafasProfile: "rmv",
                   stationID: "3029051",
                   stationName: "Höfchen/Listmann",
              

              MagicMirror version: 2.30.0
              Raspberry Pi 4 Model B Rev 1.5 (8 GB RAM)
              Raspbian GNU/Linux 12 (bookworm)

              Test environment:
              MagicMirror version: v2.30.0
              Raspberry Pi 3 Model B Plus Rev 1.3 (1 GB RAM)
              Raspbian GNU/Linux 12 (bookworm)

              S 1 Reply Last reply Reply Quote 1
              • S Offline
                sdetweil @evroom
                last edited by

                @evroom what folder to be in??

                Sam

                How to add modules

                learning how to use browser developers window for css changes

                evroomE 1 Reply Last reply Reply Quote 0
                • evroomE Offline
                  evroom @sdetweil
                  last edited by

                  @sdetweil

                  $ cd ~/MagicMirror/modules/MMM-PublicTransportHafas
                  

                  MagicMirror version: 2.30.0
                  Raspberry Pi 4 Model B Rev 1.5 (8 GB RAM)
                  Raspbian GNU/Linux 12 (bookworm)

                  Test environment:
                  MagicMirror version: v2.30.0
                  Raspberry Pi 3 Model B Plus Rev 1.3 (1 GB RAM)
                  Raspbian GNU/Linux 12 (bookworm)

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

                    @othomys I have a solution, just need a bit time to implement it properly. I’ll try to bring out a new release at the weekend :-)

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

                      New release 3.0.0 is out 👩‍💻. Please update the module and test it 🚊⏰😀

                      MZ-BERM 1 Reply Last reply Reply Quote 2
                      • MZ-BERM Offline
                        MZ-BER @KristjanESPERANTO
                        last edited by

                        @KristjanESPERANTO thanks for the update but it is still not working. I haven’t checked the log yet but will let you know later the day.

                        KristjanESPERANTOK 1 Reply Last reply Reply Quote 0
                        • 1
                        • 2
                        • 3
                        • 1 / 3
                        • 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