gdalmultitosingle

1.0.1 • Public • Published

gdalMultiToSingle

Transform multi-part geometries to single part geometries.

Dependencies

Setup

npm install gdalmultitosingle

Usage

const gdalMultiToSingle = require('gdalmultitosingle')
 
const outputPath = gdalMultiToSingle.processData(<inputFeatures><outputName><outputFormat>);
// Returns the output filepath.

Sample Usage

const gdalMultiToSingle = require('gdalmultitosingle');
const gdal = require('gdal');
 
const getFeatures = dataset => gdal.open(dataset).layers.get(0);
 
const inputLayer = getFeatures('path/to/inputData.geojson');
 
const singleParts = gdalMultiToSingle.processData(inputLayer, 'path/to/outputData.shp''ESRI Shapefile');

Allowed Outputs

Tested with the most common outputs that are listed on gdal. Message me on GitHub if you need some help or find some bug.

You can also use vsimem to save the data temporary on the memory. So the command would be something like:

const singleParts = gdalMultiToSingle.processData(inputLayer, '/vsimem/temp_output.shp''ESRI Shapefile')

=^]

Dependencies (2)

Dev Dependencies (9)

Package Sidebar

Install

npm i gdalmultitosingle

Weekly Downloads

0

Version

1.0.1

License

ISC

Unpacked Size

33.3 kB

Total Files

18

Last publish

Collaborators

  • mjtom