@ngageoint/simple-features-wkt-js
TypeScript icon, indicating that this package has built-in type declarations

1.1.1 • Public • Published

Simple Features WKT Javascript

Simple Features Well Known Text Lib

The Simple Features Libraries were developed at the National Geospatial-Intelligence Agency (NGA) in collaboration with BIT Systems. The government has "unlimited rights" and is releasing this software to increase the impact of government investments by providing developers with the opportunity to take things in new directions. The software use, modification, and distribution rights are stipulated within the MIT license.

Pull Requests

If you'd like to contribute to this project, please make a pull request. We'll review the pull request and discuss the changes. All pull request contributions to this project will be released under the MIT license.

Software source code previously released under an open source license and then modified by NGA staff is considered a "joint work" (see 17 USC § 101); it is partially copyrighted, partially public domain, and as a whole is protected by the copyrights of the non-government authors and must be released according to the terms of the original open source license.

About

Simple Features WKT is a Javascript library for reading and writing Simple Feature Geometries to and from Well-Known Text.

Usage

View the latest JS Docs

Browser Usage

<script src="/path/to/simple-features-wkt-js/dist/sf-wkt.min.js"></script>
- Read
const { GeometryReader } = window.SimpleFeaturesWKT;

//const text = ...
const geometry = GeometryReader.readGeometry(text);
const geometryType = geometry.getGeometryType();
- Write
const { GeometryWriter } = window.SimpleFeaturesWKT;
// const geometry = ...

const text = GeometryWriter.writeGeometry(geometry);

Node Usage

NPM

Pull from NPM

npm install --save simple-features-wkt-js
- Read
const { GeometryReader } = require("@ngageoint/simple-features-wkt-js");

//const text = ...
const geometry = GeometryReader.readGeometry(text);
const geometryType = geometry.getGeometryType();
- Write
const { GeometryWriter } = require("@ngageoint/simple-features-wkt-js");

// const geometry = ...
const text = GeometryWriter.writeGeometry(geometry);

Build

Build & Test

Build this repository using Node.js:

npm install
npm run build

Dependents (0)

Package Sidebar

Install

npm i @ngageoint/simple-features-wkt-js

Weekly Downloads

45

Version

1.1.1

License

MIT

Unpacked Size

802 kB

Total Files

23

Last publish

Collaborators

  • joshnels
  • restjohn
  • kgilland
  • danielbarela
  • ngageoint-npm
  • gisjedi
  • caldwellc
  • rachelais
  • mheppner
  • schmidtk