landsat-meta-updater

0.5.1 • Public • Published

landsat-meta-updater

npm version Build Status on docker

A downloader for landsat metadata with auto update for Elasticsearch or MongoDB.

Docker installation

$ docker run --name updater -e DBURL=mongodb://linktomongo/landsat-api developmentseed/landsat-meta-updater:latest

Requirements

  • Elastic Search 1.6+ if used with Elastic Search
  • MongoDB if used with MongoDB.

Install

$ npm install

Test

$ npm test

Usage

Look at provided examples.

  • Elastic Search
 
var Updater = require('landsat-meta-updater');
 
var u = new Updater('landsat', '8', 200);
 
//Update Elastic Search
u.updateEs(function(err, msg) {
  if (err) {
    console.log(err);
  }
  console.log(msg);
});

The number 200 (bulksize) shows the size of the bulk objects used for elasticsearch/mongodb bulk update.

You can play around with the bulksize to speed up the update process. If null is passed, the updater adds records individually to Elastic Search (not recommended).

Running the updater is an expensive operation for the first time because Elastic Search creates geo-indices for each image's bounding box.

The process is much faster if mongoDb is used.

Dependencies (11)

Dev Dependencies (3)

Package Sidebar

Install

npm i landsat-meta-updater

Weekly Downloads

0

Version

0.5.1

License

CC0-1.0

Last publish

Collaborators