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.
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.
Simple Features GeoJSON is a Java library for writing and reading Simple Feature Geometries to and from GeoJSON.
View the latest Javadoc
//String content = ...
Geometry geometry = FeatureConverter.toGeometry(content);
mil.nga.sf.Geometry simpleGeometry = geometry.getGeometry();
/* Read as a generic GeoJSON object, Feature, or Feature Collection */
//GeoJsonObject geoJsonObject = FeatureConverter.toGeoJsonObject(content);
//Feature feature = FeatureConverter.toFeature(content);
//FeatureCollection featureCollection = FeatureConverter.toFeatureCollection(content);
//Geometry geometry = ...
String content = FeatureConverter.toStringValue(geometry);
Feature feature = FeatureConverter.toFeature(geometry);
String featureContent = FeatureConverter.toStringValue(feature);
FeatureCollection featureCollection = FeatureConverter.toFeatureCollection(geometry);
String featureCollectionContent = FeatureConverter.toStringValue(featureCollection);
Map<String, Object> contentMap = FeatureConverter.toMap(geometry);
Pull from the Maven Central Repository (JAR, POM, Source, Javadoc)
<dependency>
<groupId>mil.nga.sf</groupId>
<artifactId>sf-geojson</artifactId>
<version>3.3.3</version>
</dependency>
Build this repository using Eclipse and/or Maven:
mvn clean install
- Simple Features (The MIT License (MIT)) - Simple Features Lib
- Jackson Data Processor (Apache License, Version 2.0) - Jackson data-binding functionality and tree-model