{"id":13830135,"url":"https://github.com/Eunanibus/MMM-Globe","last_synced_at":"2025-07-09T11:32:08.567Z","repository":{"id":133558812,"uuid":"61840131","full_name":"Eunanibus/MMM-Globe","owner":"Eunanibus","description":"An animated globe module for Magic Mirror","archived":false,"fork":false,"pushed_at":"2020-09-15T21:01:41.000Z","size":450,"stargazers_count":40,"open_issues_count":7,"forks_count":10,"subscribers_count":6,"default_branch":"master","last_synced_at":"2024-11-20T12:09:37.720Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Eunanibus.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2016-06-23T22:10:22.000Z","updated_at":"2024-10-02T17:14:30.000Z","dependencies_parsed_at":null,"dependency_job_id":"75d98873-0070-4e24-96bd-158598958bee","html_url":"https://github.com/Eunanibus/MMM-Globe","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Eunanibus/MMM-Globe","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Eunanibus%2FMMM-Globe","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Eunanibus%2FMMM-Globe/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Eunanibus%2FMMM-Globe/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Eunanibus%2FMMM-Globe/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Eunanibus","download_url":"https://codeload.github.com/Eunanibus/MMM-Globe/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Eunanibus%2FMMM-Globe/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264450550,"owners_count":23610191,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-04T10:00:56.269Z","updated_at":"2025-07-09T11:32:08.220Z","avatar_url":"https://github.com/Eunanibus.png","language":"JavaScript","funding_links":[],"categories":["Entertainment"],"sub_categories":[],"readme":"# MMM-Globe\nThis an extension for the [MagicMirror](https://github.com/MichMich/MagicMirror). It displays a rotating globe constructed of Hexadecimal shapes specifically formatted to look great on a Magic Mirror.\nExtensive thanks and gratitude to the globe object's original creator \u003ca href=\"https://www.robscanlon.com\"\u003eRob Scanlon\u003c/a\u003e for all his help and support.\n\n\u003cimg src=\"http://i.imgur.com/3VAToUR.png\"\u003e\n\n## Installation\n1. Navigate into your MagicMirror's `modules` folder and execute `git clone https://github.com/Eunanibus/MMM-Globe`. A new folder will appear.\n2. Add it to the modules array in the `config/config.js` (see next step below)\n\n## Using the module\n\nTo use this module, add it to the modules array in the `config/config.js` file:\n````javascript\nmodules: [\n\t{\n\t\tmodule: 'MMM-Globe',\n\t\tposition: 'lower_third',\t// This can be any of the regions. Best results in lower_third\n\t\tconfig: {\n                size:\"medium\", // Globe size. See configuration options below for more options\n                dayLength: 38, // (Optional) Rotation speed. See configuration options below\n                viewAngle: 15, // (Optional) Globe tilt. See configuration options below.\n                locations: [ \n                    // Fill with location Objects if desired\n                    // e.g.\n                    // {lat:37.77493,lng:-122.41942, label: \"San Francisco\"},\n                    // {lat:-23.5475,lng:-46.63611, label: \"Sao Paulo\"}\n                    \n                    // Individual values must be seperated by a comma. \n                    // You can look up the latitude and longitude for a specific location on Google Maps.\n                ]\n\t\t}\n\t}\n]\n````\n\n## Configuration options\n\nThe following properties can be configured:\n\n\n\u003ctable width=\"100%\"\u003e\n\t\u003cthead\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003cth\u003eOption\u003c/th\u003e\n\t\t\t\u003cth width=\"100%\"\u003eDescription\u003c/th\u003e\n\t\t\u003c/tr\u003e\n\t\u003cthead\u003e\n\t\u003ctbody\u003e\n\t\t\u003ctr\u003e\n\t\t\t\u003ctd\u003e\u003ccode\u003esize\u003c/code\u003e\u003c/td\u003e\n\t\t\t\u003ctd\u003eThe size you'd like your globe.\u003cbr\u003e\n\t\t\t\t\u003cbr\u003e\u003cb\u003ei.e :\u003c/b\u003e \u003ccode\u003emedium\u003c/code\u003e\n\t\t\t\t\u003cbr\u003e\u003cb\u003ePossible values:\u003c/b\u003e \u003ccode\u003ex-small\u003c/code\u003e \u003ccode\u003esmall\u003c/code\u003e \u003ccode\u003emedium\u003c/code\u003e \u003ccode\u003elarge\u003c/code\u003e \u003ccode\u003ex-large\u003c/code\u003e\n\t\t\t\t\u003cbr\u003e\u003cb\u003eDefault value:\u003c/b\u003e \u003ccode\u003emedium\u003c/code\u003e\n\t\t\t\u003c/td\u003e\n\t\t\u003c/tr\u003e\n\t\t\u003ctr\u003e\n            \u003ctd\u003e\u003ccode\u003elocations\u003c/code\u003e\u003c/td\u003e\n            \u003ctd\u003e(Optional)An array of Location objects. These will construct the pins within your globe:. Each value must be seperated within the array by a comma.\n            \u003cp\u003e\u003cp\u003e\u003ccode\u003e{lat: latitudeValue , lng: longitudeValue, label:\"Label Value\"}\u003c/code\u003e\u003cbr\u003e\n                \u003cbr\u003e\u003cb\u003ei.e :\u003c/b\u003e \u003ccode\u003e [{lat:37.77493,lng:-122.41942, label: \"San Francisco\"}]\u003c/code\u003e\n                \u003cbr\u003e\u003cb\u003eDefault value:\u003c/b\u003e A default array of locations will be provided if none is specified. Leave blank if default locations are OK.\n            \u003c/td\u003e\n        \u003c/tr\u003e\n        \u003ctr\u003e\n            \u003ctd\u003e\u003ccode\u003edayLength\u003c/code\u003e\u003c/td\u003e\n            \u003ctd\u003e(Optional) The number of seconds for the globe to complete a full rotation.\u003c/br\u003e\n                \u003cb\u003ePossible values:\u003c/b\u003e Positive numbers greater than zero.\u003cbr /\u003e\n                \u003cb\u003eDefault value:\u003c/b\u003e 28\n            \u003c/td\u003e\n        \u003c/tr\u003e\n        \u003ctr\u003e\n            \u003ctd\u003e\u003ccode\u003eviewAngle\u003c/code\u003e\u003c/td\u003e\n            \u003ctd\u003e(Optional) The angle at which to tilt the globe, measure in degrees. Positive values tilt the globe\n                towards the northern hemisphere (Asia, North America, Europe) whilst negative values tilt towards the southern\n                hemisphere (Africa, Australia, South America).\u003cbr /\u003e\n                \u003cb\u003ePossible values:\u003c/b\u003e Any number between -90 and 90.\u003cbr/\u003e\n                \u003cb\u003eDefault value:\u003c/b\u003e 0 (View centered on the equator).\n            \u003c/td\u003e\n        \u003c/tr\u003e\n\t\u003c/tbody\u003e\n\u003c/table\u003e\n\n## Dependencies\n- All dependencies in this module are self-regulated\n\nThe MIT License (MIT)\n=====================\n\nCopyright © 2016 Eunan Camilleri\n\nPermission is hereby granted, free of charge, to any person\nobtaining a copy of this software and associated documentation\nfiles (the “Software”), to deal in the Software without\nrestriction, including without limitation the rights to use,\ncopy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following\nconditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\n**The software is provided “as is”, without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose and noninfringement. In no event shall the authors or copyright holders be liable for any claim, damages or other liability, whether in an action of contract, tort or otherwise, arising from, out of or in connection with the software or the use or other dealings in the software.**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FEunanibus%2FMMM-Globe","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FEunanibus%2FMMM-Globe","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FEunanibus%2FMMM-Globe/lists"}