0.6.1 • Published 9 years ago

covutils v0.6.1

Weekly downloads
53
License
BSD-3-Clause
Repository
github
Last release
9 years ago

covutils

JavaScript utilities for creating, transforming, and handling Coverage Data objects.

API docs

Usage

A minified bundle of this library is available on npmcdn.

Usage is simple:

<script src="https://npmcdn.com/covutils@0.6/covutils.min.js"></script>
<script>
var coverage = ... ;

// let's mask the Coverage with a GeoJSON polygon
// any data values outside the polygon become null
var polygon = {
  "type": "Polygon",
  "coordinates": [
    [ [100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0] ]
    ]
}
CovUtils.maskByPolygon(coverage, polygon, ['x','y'])
  .then(function (maskedCov) {
    // work with masked Coverage
  })
</script>

If polygon-related functionality is not needed, then a lite bundle can be used instead:

<script src="https://npmcdn.com/covutils@0.6/covutils-lite.min.js"></script>

CommonJS/JSPM/ES6

You may also use this library within common package managers as it is published on npm.

An ES6 import may look like that:

import {maskByPolygon} from 'covutils'

Acknowledgments

This library is developed within the MELODIES project.

0.6.1

9 years ago

0.6.0

9 years ago

0.5.2

9 years ago

0.5.1

9 years ago

0.5.0

9 years ago

0.4.3

9 years ago

0.4.2

9 years ago

0.4.1

9 years ago

0.4.0

9 years ago

0.3.0

9 years ago

0.2.6

9 years ago

0.2.5

9 years ago

0.2.4

10 years ago

0.2.3

10 years ago

0.2.2

10 years ago

0.2.1

10 years ago

0.2.0

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago

0.1.0-alpha.5

10 years ago

0.1.0-alpha.4

10 years ago

0.1.0-alpha.3

10 years ago

0.1.0-alpha.2

10 years ago

0.1.0-alpha.1

10 years ago