https://github.com/ngageoint/simple-features-geojson-js
Simple Features GeoJSON Javascript
https://github.com/ngageoint/simple-features-geojson-js
geojson javascript simple-features
Last synced: 3 months ago
JSON representation
Simple Features GeoJSON Javascript
- Host: GitHub
- URL: https://github.com/ngageoint/simple-features-geojson-js
- Owner: ngageoint
- License: mit
- Created: 2022-07-15T20:14:05.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-11-28T17:49:30.000Z (over 3 years ago)
- Last Synced: 2024-04-29T03:21:04.200Z (about 2 years ago)
- Topics: geojson, javascript, simple-features
- Language: JavaScript
- Homepage: http://ngageoint.github.io/simple-features-geojson-js
- Size: 471 KB
- Stars: 0
- Watchers: 10
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Simple Features GeoJSON Javascript
#### Simple Features GeoJSON 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 GeoJSON](http://ngageoint.github.io/simple-features-geojson-js/) is a Javascript library for converting between [Simple Feature](https://github.com/ngageoint/simple-features-js) Geometries and GeoJSON.
### Usage ###
View the latest [JS Docs](http://ngageoint.github.io/simple-features-geojson-js)
#### Browser Usage ####
```html
```
##### - Read
```javascript
const { FeatureConverter } = window.SimpleFeaturesGeoJSON;
//const geoJson = ...
const geometry = FeatureConverter.toSimpleFeaturesGeometry(geoJson);
const geometryType = geometry.getGeometryType();
```
##### - Write
```javascript
const { FeatureConverter } = window.SimpleFeaturesGeoJSON;
// const geometry = ...
const geoJson = FeatureConverter.toFeature(geometry);
```
#### Node Usage ####
[](https://www.npmjs.com/package/@ngageoint/simple-features-geojson-js)
Pull from [NPM](https://www.npmjs.com/package/@ngageoint/simple-features-geojson-js)
```install
npm install --save simple-features-geojson-js
```
##### - Read
```javascript
const { FeatureConverter } = require("@ngageoint/simple-features-geojson-js");
// const geoJson = ...
// const featureCollection = ...
const geometry = FeatureConverter.toSimpleFeaturesGeometry(geoJson);
const geometryType = geometry.geometryType;
const geometries = FeatureConverter.toSimpleFeaturesGeometryArray(featureCollection);
```
##### - Write
```javascript
const { FeatureConverter } = require("@ngageoint/simple-features-geojson-js");
// const geometry = ...
const text = FeatureConverter.toFeature(geometry);
```
### Build ###

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