
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
terraformer-wkt-parser
Advanced tools
Two way conversion between GeoJSON and WKT. Part of the Terraformer project.
$ npm install terraformer-wkt-parser
In the browser, Terraformer is required to be used as well.
$ bower install terraformer-wkt-parser
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>
Find a bug or want to request a new feature? Please let us know by submitting an issue.
Esri welcomes contributions from anyone and everyone. Please see our guidelines for contributing.
A copy of the license is available in the repository's LICENSE file.
[1.2.1] - 2019-12-18
FAQs
Well-Known Text parser
The npm package terraformer-wkt-parser receives a total of 52,433 weekly downloads. As such, terraformer-wkt-parser popularity was classified as popular.
We found that terraformer-wkt-parser demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.