名称 最后更新
..
coverage 正在载入提交数据...
dist 正在载入提交数据...
examples 正在载入提交数据...
node_modules 正在载入提交数据...
spec 正在载入提交数据...
src 正在载入提交数据...
test 正在载入提交数据...
typings 正在载入提交数据...
.npmignore 正在载入提交数据...
.npminstall.done 正在载入提交数据...
.travis.yml 正在载入提交数据...
AUTHORS 正在载入提交数据...
CHANGELOG.md 正在载入提交数据...
Gruntfile.js 正在载入提交数据...
LICENSE 正在载入提交数据...
README.md 正在载入提交数据...
bower.json 正在载入提交数据...
package.json 正在载入提交数据...
terraformer-wkt-parser.d.ts 正在载入提交数据...
terraformer-wkt-parser.js 正在载入提交数据...
terraformer-wkt-parser.min.js 正在载入提交数据...
test.js 正在载入提交数据...
test.ts 正在载入提交数据...
tsconfig.json 正在载入提交数据...
typings.json 正在载入提交数据...

Terraformer Well-Known Text Parser

Build Status

Two way conversion between GeoJSON and WKT. Part of the Terraformer 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 the offical website.

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] ]
    ]
  }
);
    <!-- Load the main Terraformer library -->
    <script src="terraformer.min.js" type="text/javascript"></script>

    <!-- Load the WKT Parser -->
    <script src="terraformer-wkt-parser.min.js" type="text/javascript"></script>

    <!-- Use it! -->
    <script>
      var primitive = Terraformer.WKT.parse('LINESTRING (30 10, 10 30, 40 40)');
    </script>

Resources

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.