• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
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-OpenWeatherMapForecast Doesn't display imperial units

Scheduled Pinned Locked Moved Troubleshooting
21 Posts 6 Posters 4.9k Views 6 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.
  • R Offline
    rslohs
    last edited by Feb 19, 2021, 1:12 AM

    Hello,

    Working on OpenWeatherMapForecast and so far have really liked it. One issue, for predicted precipitation I cannot get imperial units to show. I’ve tried changing it within config.js as well as the config file in the module as well. Any suggestions?

    {
    module: “MMM-OpenWeatherMapForecast”,
    header: “Weather”,
    position: “bottom_right”,
    classes: “default everyone”,
    disabled: false,
    config: {
    apikey: “KEY”,
    latitude: “444444”,
    longitude: “-4444444”,
    iconset: “4c”,
    concise: false,
    forecastLayout: “table”,
    units: “imperial”,
    }
    },

    S M 2 Replies Last reply Feb 19, 2021, 1:16 AM Reply Quote 0
    • S Away
      sdetweil @rslohs
      last edited by Feb 19, 2021, 1:16 AM

      @rslohs the doc says the module config options is units

      from
      https://github.com/jharttech/MMM-weatherforecast

      Screenshot_20210218-191525_Chrome.jpg

      Sam

      How to add modules

      learning how to use browser developers window for css changes

      R 1 Reply Last reply Feb 19, 2021, 1:48 AM Reply Quote 0
      • R Offline
        rslohs @sdetweil
        last edited by Feb 19, 2021, 1:48 AM

        @sdetweil I’m not quite sure what you’re saying. The ‘Units:“imperial”,’ is incorrect in the code I shared? What should I try differently?

        S 1 Reply Last reply Feb 19, 2021, 2:18 AM Reply Quote 0
        • M Offline
          Mykle1 Project Sponsor Module Developer @rslohs
          last edited by Feb 19, 2021, 1:50 AM

          @rslohs

          Just a thought: At the top of your config.js file, what are your config units set to?

          Example:

          var config = {
              address: "0.0.0.0",
              port: 8080,
              ipWhitelist: [], // Set [] to allow all IP addresses
              language: "en",
              timeFormat: 12,
              units: "imperial",
          

          Create a working config
          How to add modules

          R 1 Reply Last reply Feb 19, 2021, 2:02 AM Reply Quote 0
          • R Offline
            rslohs @Mykle1
            last edited by Feb 19, 2021, 2:02 AM

            @mykle1 thanks for the suggestion, but that is set to imperial as well.

            S 1 Reply Last reply May 28, 2021, 2:09 PM Reply Quote 0
            • S Away
              sdetweil @rslohs
              last edited by sdetweil Feb 19, 2021, 2:29 AM Feb 19, 2021, 2:18 AM

              @rslohs its not “Units”, its “units”

              this system is case sensitive, every letter matters

              Sam

              How to add modules

              learning how to use browser developers window for css changes

              R 1 Reply Last reply Feb 19, 2021, 3:53 AM Reply Quote 0
              • R Offline
                rslohs @sdetweil
                last edited by sdetweil May 28, 2021, 2:28 PM Feb 19, 2021, 3:53 AM

                @sdetweil that’s what I’m using in the config file.

                {
                module: "MMM-OpenWeatherMapForecast",
                header: "Schoolcraft, MI Weather",
                position: "top_right",
                classes: "default everyone",
                disabled: false,
                config: {
                apikey: "aaaaaaaa",
                latitude: "aaaaaaa",
                longitude: "aaaaaa",
                iconset: "4c",
                concise: false,
                forecastLayout: "table",
                units: "imperial",
                }
                },
                
                S 1 Reply Last reply May 28, 2021, 3:40 PM Reply Quote 0
                • S Offline
                  scumbelly @rslohs
                  last edited by May 28, 2021, 2:09 PM

                  @rslohs

                  A little late to weigh in but I can verify that imperial setting does not affect the Pop amount. It remains metric. Everything else is imperial.

                  Sorry.

                  1 Reply Last reply Reply Quote 0
                  • S Offline
                    scumbelly @rslohs
                    last edited by May 28, 2021, 3:40 PM

                    @rslohs

                    Guess what? I was trying to troubleshoot an issue in this module re: scale and noticed the .js file has changed wind calculations and the following…

                    units: {
                    accumulationRain: {
                    imperial: “mm”,
                    metric: “mm”,
                    “”: “mm”
                    },
                    accumulationSnow: {
                    imperial: “mm”,
                    metric: “mm”,
                    “”: “mm”
                    },
                    windSpeed: {
                    imperial: “mph”,
                    metric: “m/s”,
                    “”: “m/s”
                    }
                    },

                    So it looks like imperial might work for you now. I’m not going to test because I need the older .js which I had to modify to get some calculations in kph to work .

                    Cheers

                    1 Reply Last reply Reply Quote 0
                    • J Offline
                      JohnGalt
                      last edited by Feb 5, 2024, 8:16 PM

                      My instance of this module also displays rainfall in “mm”, even though I have set units = “imperial” for the MagicMirror system as a whole and also in the module configuration.

                      I see that the Open Weather site has a page specifying “API response parameters with available units of measurement” (https://openweathermap.org/weather-data). There one finds a parameter table specifying Parameter and Description - as well as columns for “Standard”, “Metric” and “Imperial”.

                      The interesting thing is this: the table specifies temperatures correctly (“Kelvin”, “Celsius”, “Fahrenheit”) but for rain it calls out “mm”, “mm”, “mm” - or other variants for different fields, e.g.: “mm/hr” and “mm/hour”.

                      As such, I am inclined to just give up and accept the module’s behavior as a quirk of how Open Weather parses what it is getting from the NWS - but I thought i would see if anyone has a better idea.

                      kayakbabeK 1 Reply Last reply Feb 6, 2024, 4:49 AM 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