0.1.0 • Published 8 years ago

koop-exporter v0.1.0

Weekly downloads
1
License
Apache-2.0
Repository
github
Last release
8 years ago

Koop-Exporter

Exporter plugin for Koop

Requirements

  • A Koop cache must be registered
  • GDAL must be installed on the local machine

Installation

From package

npm install koop-exporter

From source

git clone https://www.github.com/koopjs/koop-exporter
cd koop-exporter
npm install -g babel
npm install
npm run compile

Usage

const config = require('config')
const Koop = require('koop')
const koop = Koop(config)
const Cache = require('koop-pgcache')
const Exporter = require('koop-exporter')
// exporter depends on Koop-Cache so register it first
koop.register(Cache)
// koop will instantiate a new Exporter with the cache plugged in
koop.register(Exporter)