# clipsy-geojson

> conversion module for clipsy and geojson

Latest version **0.0.3** (published 2014-03-01) · MIT license · 0 weekly downloads

## Install

```sh
npm install clipsy-geojson
pnpm add clipsy-geojson
yarn add clipsy-geojson
bun add clipsy-geojson
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.3 |
| Published | 2014-03-01 |
| First published | 2014-02-20 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 (+5 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 1 |
| Author | morganherlocker |
| Maintainers | morganherlocker |
| Keywords | conversion, geojson, geo, geography, map |

## Links

- npm: https://www.npmjs.com/package/clipsy-geojson
- Repository: https://github.com/morganherlocker/clipsy-geojson
- Issues: https://github.com/morganherlocker/clipsy-geojson/issues
- npm.io page: https://npm.io/package/clipsy-geojson

## Dependencies (1)

- [lodash](https://npm.io/package/lodash.md) ~2.4.1

## Alternatives

- [@mapbox/jsonlint-lines-primitives](https://npm.io/package/@mapbox/jsonlint-lines-primitives.md) — 5.3M weekly downloads
- [reftools](https://npm.io/package/reftools.md) — 3.5M weekly downloads
- [@hey-api/openapi-ts](https://npm.io/package/@hey-api/openapi-ts.md) — 3.5M weekly downloads
- [@mapbox/geojson-rewind](https://npm.io/package/@mapbox/geojson-rewind.md) — 2.4M weekly downloads
- [turbo-stream](https://npm.io/package/turbo-stream.md) — 1.7M weekly downloads

## Recent versions

- 0.0.3 (latest) — 2014-03-01
- 0.0.2 — 2014-02-21
- 0.0.1 — 2014-02-20
- 0.0.0 — 2014-02-20

## README

clipsy-geojson
==============

**conversion module for clipsy and geojson**

###install

```
npm install clipsy-geojson
```

###test

```
npm test
```

###use

```js
var cg = require('clipsy-geojson')

var geojsonData = {
  "type": "Feature",
  "properties": {},
  "geometry": {
    "type": "Polygon",
    "coordinates": [
      [
        [
          -85.53508758544922,
          33.28777693677941
        ],
        [
          -85.53508758544922,
          33.32751625923708
        ],
        [
          -85.43895721435547,
          33.32751625923708
        ],
        [
          -85.43895721435547,
          33.28777693677941
        ],
        [
          -85.53508758544922,
          33.28777693677941
        ]
      ]
    ]
  }
}

//convert to clipsy
var clipsyData = cg.toClipsy(geojsonData)

//convert back to geojson
var geo = cg.toGeojson(clipsyData)
```

---
_Source: https://npm.io/package/clipsy-geojson · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
