JSPM

  • Created
  • Published
  • Downloads 17708
  • Score
    100M100P100Q69345F
  • License MIT

a node.js library for performing geospatial operations with geojson

Package Exports

  • turf

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (turf) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

turf

Build Status

A modular GIS engine written in JavaScript


##Installation

In Node.js:

npm install turf

In browser:

Download the minified file, and include it in a script tag. This will expose a global variable named "turf".

<script src="turf.min.js"></script>

Browserify:

All of Turf's functions can also be installed as seperate modules. This works well with tools like browserify where you only want to install only the code you need. It also allows you to mix and match modules as needed. This is the recommended usage patter for most production environments. For example, to install the point and buffer modules use:

npm install turf-point
npm install turf-buffer

##Features

####geometry

####joins

####data

####measurement

####interpolation

####classification

####aggregation

####transformation

####misc


Created by @morganherlocker :)