tilelive-omnivore

Implements the tilelive api for a variety of raw data sources

Build Status Coverage Status

Install

npm install -g tilelive-omnivore

Example

var Omnivore = require('tilelive-omnivore');
var filepath = '/absolute/path/to/geographic/data';
var uri = 'omnivore://' + filepath;

new Omnivore(uri, function(err, source) {
  source.getInfo(function(err, info) {
    console.log(info);
  });
});

Works with

any file supported by mapnik-omnivore

======================

See it on GitHub

Return to Code