1.0.0 • Published 5 years ago

parse-kmz v1.0.0

Weekly downloads
95
License
MIT
Repository
-
Last release
5 years ago

parse-kmz

Ever had the urge to parse KMZ? And wanted to access the data in some sane, easy way? Don't want to compile a C parser, for whatever reason? Then parse-kmz is what you're looking for!

Installation

Simplest way to install parse-kmz is to use npm, just npm install parse-kmz which will download parse-kmz and all dependencies.

Usage

const parseKMZ = require('parse-kmz');
// KMZ To KML From URL
parseKMZ
  .toKML('http://iblogbox.github.io/js/gpx/sample/Tour_de_France.kmz')
  .then(console.log);
  .catch(console.error);
 
// KMZ To KML From File
parseKMZ
  .toKML('./path-to-file/file-name.kmz')
  .then(console.log);
  .catch(console.error);
  
// KMZ To JSON From URL
parseKMZ
  .toJson('http://iblogbox.github.io/js/gpx/sample/Tour_de_France.kmz')
  .then(console.log);
  .catch(console.error);
 
// KMZ To JSON From File
parseKMZ
  .toJson('./path-to-file/file-name.kmz')
  .then(console.log);
  .catch(console.error);

But if you know you really found a bug, feel free to open an issue instead.