1.0.1 • Published 9 years ago

turf-featurecollection v1.0.1

Weekly downloads
5,919
License
MIT
Repository
github
Last release
9 years ago

turf-featurecollection

build status

turf featureCollection module

turf.featurecollection(features)

Takes one or more Feature|Features and creates a FeatureCollection

Parameters

parametertypedescription
featuresFeatureinput Features

Example

var features = [
 turf.point([-75.343, 39.984], {name: 'Location A'}),
 turf.point([-75.833, 39.284], {name: 'Location B'}),
 turf.point([-75.534, 39.123], {name: 'Location C'})
];

var fc = turf.featurecollection(features);

//=fc

Returns FeatureCollection, a FeatureCollection of input features

Installation

Requires nodejs.

$ npm install turf-featurecollection

Tests

$ npm test