Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/LukeSkywalker92/MMM-Globe
Earth globe for MagicMirror2
https://github.com/LukeSkywalker92/MMM-Globe
Last synced: 22 days ago
JSON representation
Earth globe for MagicMirror2
- Host: GitHub
- URL: https://github.com/LukeSkywalker92/MMM-Globe
- Owner: LukeSkywalker92
- License: mit
- Created: 2016-11-13T13:57:17.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2021-01-17T07:49:12.000Z (almost 4 years ago)
- Last Synced: 2024-08-04T10:02:27.906Z (4 months ago)
- Language: JavaScript
- Homepage:
- Size: 585 KB
- Stars: 69
- Watchers: 12
- Forks: 16
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-mmm - **MMM-Globe - LukeSkywalker92**
README
MMM-Globe
===================
This a module for the [MagicMirror](https://github.com/MichMich/MagicMirror). It can display live images of our planet. The pictures are taken from the Himawari-8 sattelite. You can also display custom pictures.## Preview
![](https://github.com/LukeSkywalker92/MMM-Globe/blob/master/screenshot.png?raw=true)
## Installation
1. Navigate into your MagicMirror's `modules` folder and execute `git clone https://github.com/LukeSkywalker92/MMM-Globe.git`.## Config
The entry in `config.js` can include the following options:|Option|Description|
|---|---|
|`style`|Style of the image. There are four different styles available depending on your desired center. Preview them here:
* [Asia-centric images](http://rammb.cira.colostate.edu/ramsdis/online/himawari-8.asp)
* [Africa/Europe-centric images](https://eumetview.eumetsat.int/static-images/latestImages.html)
* [Latin America-centric images](https://www.star.nesdis.noaa.gov/GOES/)
**Type:** `string` **Possible values:** `natColor`, `geoColor`, `airMass`, `fullBand`, `europeDiscNat`, `europeDiscSnow`, `centralAmericaDiscNat`|
|`imageSize`|Defines the size of the displayed image in pixels.
**Type:** `integer`
**Default value:** `600`|
|`updateInterval`|How often the image is updated. There is a new picture uploadet every 10 minutes. So there is no need to go faster.
**Default value:** `10 • 60 • 1000 // every 10 minutes`|
|`ownImagePath`|If you want to display a custom picture, place the link of it here. The module will automatically display it.
**Default value:** `''`|Here is an example of an entry in `config.js`
```
{
module: 'MMM-Globe',
position: 'center',
config: {
style: 'geoColor',
imageSize: 600,
ownImagePath:'',
updateInterval: 10*60*1000
}
},
```## Special Thanks
- [Michael Teeuw](https://github.com/MichMich) for creating the awesome [MagicMirror2](https://github.com/MichMich/MagicMirror/tree/develop) project that made this module possible.