https://github.com/ngageoint/simple-features-js
Simple Features JS
https://github.com/ngageoint/simple-features-js
javascript simple-features
Last synced: about 1 year ago
JSON representation
Simple Features JS
- Host: GitHub
- URL: https://github.com/ngageoint/simple-features-js
- Owner: ngageoint
- License: mit
- Created: 2022-07-15T20:11:19.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-11-28T17:42:01.000Z (over 3 years ago)
- Last Synced: 2024-10-14T07:33:16.084Z (over 1 year ago)
- Topics: javascript, simple-features
- Language: TypeScript
- Homepage: http://ngageoint.github.io/simple-features-js
- Size: 638 KB
- Stars: 2
- Watchers: 9
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Simple Features Javascript
#### Simple Features Lib ####
The Simple Features Libraries were developed at the [National Geospatial-Intelligence Agency (NGA)](http://www.nga.mil/) in collaboration with [BIT Systems](https://www.caci.com/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](http://choosealicense.com/licenses/mit/).
### 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](http://ngageoint.github.io/simple-features-js/) is a Javascript library of geometry objects and utilities based upon the [OGC Simple Feature Access](http://www.opengeospatial.org/standards/sfa) standard.
### Simple Feature Conversion Libraries ###
* [simple-features-wkb-js](https://github.com/ngageoint/simple-features-wkb-js) - Well Known Binary
* [simple-features-wkt-js](https://github.com/ngageoint/simple-features-wkt-js) - Well Known Text
* [simple-features-geojson-js](https://github.com/ngageoint/simple-features-geojson-js) - GeoJSON
* [simple-features-proj-js](https://github.com/ngageoint/simple-features-proj-js) - Projection
### Usage ###
View the latest [JS Docs](http://ngageoint.github.io/simple-features-js)
#### Browser Usage ####
```html
```
```javascript
const { Point, LineString, Polygon } = window.SimpleFeatures;
const point = new Point(0, 0);
const lineString = new LineString(point);
const polygon = new Polygon(lineString)
```
#### Node Usage ####
[](https://www.npmjs.com/package/@ngageoint/simple-features-js)
Pull from [NPM](https://www.npmjs.com/package/@ngageoint/simple-features-js)
```install
npm install --save simple-features-js
```
```javascript
const { Point, LineString, Polygon } = require("@ngageoint/simple-features-js");
const point = new Point(0, 0);
const lineString = new LineString(point);
const polygon = new Polygon(lineString)
```
### Build ###

Build this repository using Node.js:
npm install
npm run build