Find the MODIS X/Y for a given Longitude/Latitude
$ npm install --save find-modis-tile
const findModisTile = require('find-modis-tile');
const long = 0;
const lat = 0;
findModisTile(long, lat);
//=> { x: 17,
//=> y: 8,
//=> lonMin: -10.1532,
//=> lonMax: 0.0085,
//=> latMin: 0,
//=> latMax: 10 }
Type: array[2]/number
Longitude, Latitude array.
MIT © Ben Evans