Skip to content

Magic Mirror module to fetch raw aviation METARs from FAA Metar API

Notifications You must be signed in to change notification settings

ooohfascinating/MMM-Metar

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

MMM-Metar

This is a module for the MagicMirror²-Project.

It displays METARs from airports defined in config.

Installation

Assuming ~/MagicMirror is the directory where you installed MagicMirror².

Clone and install

cd ~/MagicMirror/modules
git clone https://github.com/ooohfascinating/MMM-Metar.git

Code was forked from calonmerc/MMM-Metar all props should go to them.

Update your config.js file

Add a configuration block to the modules array in the ~/MagicMirror/config/config.js file

var config = {
  modules: [
    {
      module: "MMM-Metar",
      position: "top_right",
      config: {
        airports: [ "KSFO","PAO","HAF","JFK" ],
      },
    },
  ],
};

full config

{
airports: [ "KSFO","PAO","HAF","JFK" ],
      updateInterval: 10 * 60 * 1000, //every 10 minutes
      initialLoadDelay: 0, // 0 seconds delay
      listClass: "metarsList",
      alternateBackgrounds: true,
      borderBottom: true,
      warnLength: 10,
}

About

Magic Mirror module to fetch raw aviation METARs from FAA Metar API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 77.3%
  • Nunjucks 16.8%
  • CSS 5.9%