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 WKT is an iOS Objective-C library for writing and reading Simple Feature Geometries to and from Well-Known Text.
View the latest Appledoc
// NSString *text = ...
SFGeometry *geometry = [SFWTGeometryReader readGeometryWithText:text];
SFGeometryType geometryType = geometry.geometryType;
// SFGeometry *geometry = ...
NSString *text = [SFWTGeometryWriter writeGeometry:geometry];
Build this repository using SPM:
swift build
Open the Swift Package in Xcode:
open Package.swift
Run tests from Xcode or from command line:
swift test
Add a package dependency version:
.package(url: "https://github.com/ngageoint/simple-features-wkt-ios", from: "3.0.0"),
# Or specific branch:
.package(url: "https://github.com/ngageoint/simple-features-wkt-ios", branch: "release/3.0.0"),
# Or as a local dependency:
.package(name: "simple-features-wkt-ios", path: "../simple-features-wkt-ios"),
Use it in a target:
.target(
name: "MyLibrary",
dependencies: [
.product(name: "SimpleFeaturesWKT", package: "simple-features-wkt-ios")
]
)
To use from Swift, import the framework:
import SimpleFeaturesWKT
// var text: String = ...
let geometry: SFGeometry = SFWTGeometryReader.readGeometry(withText: text)
let geometryType: SFGeometryType = geometry.geometryType
// let geometry: SFGeometry = ...
let text: String = SFWTGeometryWriter.write(geometry)
- Simple Features (The MIT License (MIT)) - Simple Features Lib