polylabel 0.1.11

A Rust implementation of the Polylabel algorithm
Documentation
# geojson-flatten

[![build status](https://secure.travis-ci.org/mapbox/geojson-flatten.svg)](http://travis-ci.org/mapbox/geojson-flatten)

Flatten MultiPoint, MultiPolygon, MultiLineString, and GeometryCollection
geometries in [GeoJSON](http://geojson.org/) files into simple non-complex
geometries.

## install

    npm install --save geojson-flatten

Or download `geojson-flatten.js` for non-[browserify](http://browserify.org/) usage.

## example

```js
var flatten = require('geojson-flatten');

flattened = flatten(geojsonObject);
```

## cli

	cat input.geojson | geojson-flatten > flattened.geojson