Skip to content

developmentseed/landsat-meta-updater

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

86 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

Downloads landsat metadata and add to Elastic Search or Mongodb

Resources

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •