0.0.7 • Published 1 year ago

shp2pb v0.0.7

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

shp2pb

Shp2pb is a utility tool designed to convert Shapefile (shp) formats into Protocol Buffers (protobuf) files. It streamlines the process of transforming geographic data, enabling efficient storage and transmission in a compact, serialized format suitable for various applications

Installation

use npm: $ npm install shp2pb

Example Usage

Take the example data below:

CommonJS

const GeoPB=require('shp2pb');
const buf=GeoPB.shp2pb('data.shp',{wkid:4326});
fs.writeFileSync('data.pb',buf);
const json=GeoPB.pb2json('data.shp',{wkid:4326});
console.log(JSON.stringify(json))

License

Licensed under the MIT License. See LICENSE for details.

0.0.7

1 year ago

0.0.6

1 year ago

0.0.5

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago