shp2pb
v0.0.7
Published
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 f
Downloads
13
Maintainers
Readme
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.