Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/Esri/terraformer-wkt-parser

Well-Known Text parser for Terraformer
https://github.com/Esri/terraformer-wkt-parser

data-management esri geojson nodejs wkt

Last synced: about 2 months ago
JSON representation

Well-Known Text parser for Terraformer

Awesome Lists containing this project

README

        

# Important!

This repo is part of the Terraformer project which has been archived. See https://github.com/Esri/terraformer#important for more details.

# Terraformer Well-Known Text Parser

[![Build Status](https://travis-ci.org/Esri/terraformer-wkt-parser.svg?branch=master)](https://travis-ci.org/Esri/terraformer-wkt-parser)

> Two way conversion between [GeoJSON](http://geojson.org/geojson-spec.html) and WKT. Part of the [Terraformer](https://terraformer-js.github.io/wkt-parser/) project.

## Installing

### Node.js

$ npm install terraformer-wkt-parser

### Browser

In the browser, Terraformer is required to be used as well.

$ bower install terraformer-wkt-parser

## Documentation

For full documentation check out https://terraformer-js.github.io/wkt-parser/.

```js
var wkt = require('terraformer-wkt-parser');

// parse a WKT file, convert it into a terraformer primitive
var primitive = wkt.parse('LINESTRING (30 10, 10 30, 40 40)');

// take a terraformer primitive and convert it into a WKT representation
var polygon = wkt.convert(
{
"type": "Polygon",
"coordinates": [
[ [100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0] ],
[ [100.2, 0.2], [100.8, 0.2], [100.8, 0.8], [100.2, 0.8], [100.2, 0.2] ]
]
}
);
```

```html




var primitive = Terraformer.WKT.parse('LINESTRING (30 10, 10 30, 40 40)');

```

## Resources

* [Terraformer Website](http://terraformer.io)
* [twitter@EsriPDX](http://twitter.com/esripdx)

## Issues

Find a bug or want to request a new feature? Please let us know by submitting an issue.

## Contributing

Esri welcomes contributions from anyone and everyone. Please see our [guidelines for contributing](https://github.com/esri/contributing).

## Licensing

A copy of the license is available in the repository's [LICENSE](./LICENSE) file.