Sets a random satellite image from Earth View with Google as a wallpaper.
The dataset of the satellite images are scrapped beforehand using a script (see install.js
) by calling multiple network requests. Feel free to fetch those images again.
npm install -g earthview
earthview
import {
scrap, // fetch newest images
wallpapers, // cached list of wallpapers
random, // get random image
} from 'earthview'
const randomImage = random()
scrap().then(wallpapers => { /* ... */ })