sf-geojson-ios 4.2.4

sf-geojson-ios 4.2.4

Maintained by Brian Osborn, Brian Osborn.



Simple Features GeoJSON iOS

Simple Features GeoJSON 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 GeoJSON is an iOS Objective-C library for writing and reading Simple Feature Geometries to and from GeoJSON.

Usage

View the latest Appledoc

Read

// NSString *content = ...

SFGGeometry *geometry = [SFGFeatureConverter jsonToGeometry:content];
SFGeometry *simpleGeometry = [geometry geometry];

/* Read as a generic GeoJSON object, Feature, or Feature Collection */
// SFGGeoJSONObject *geoJSONObject = [SFGFeatureConverter jsonToObject:content];
// SFGFeature *feature = [SFGFeatureConverter jsonToFeature:content];
// SFGFeatureCollection *featureCollection = [SFGFeatureConverter jsonToFeatureCollection:content];

Write

// SFGeometry *geometry = ...

NSString *content = [SFGFeatureConverter simpleGeometryToJSON:geometry];

SFGFeature *feature = [SFGFeatureConverter simpleGeometryToFeature:geometry];
NSString *featureContent = [SFGFeatureConverter objectToJSON:feature];

SFGFeatureCollection *featureCollection = [SFGFeatureConverter simpleGeometryToFeatureCollection:geometry];
NSString *featureCollectionContent = [SFGFeatureConverter objectToJSON:featureCollection];

NSDictionary *contentTree = [SFGFeatureConverter simpleGeometryToTree:geometry];

Build

Build & Test

Build this repository using Xcode and/or CocoaPods:

pod repo update
pod install

Open sf-geojson-ios.xcworkspace in Xcode or build from command line:

xcodebuild -workspace 'sf-geojson-ios.xcworkspace' -scheme sf-geojson-ios build

Run tests from Xcode or from command line:

xcodebuild test -workspace 'sf-geojson-ios.xcworkspace' -scheme sf-geojson-ios -destination 'platform=iOS Simulator,name=iPhone 14'

Include Library

Include this repository by specifying it in a Podfile using a supported option.

Pull from CocoaPods:

pod 'sf-geojson-ios', '~> 4.2.3'

Pull from GitHub:

pod 'sf-geojson-ios', :git => 'https://github.com/ngageoint/simple-features-geojson-ios.git', :branch => 'master'
pod 'sf-geojson-ios', :git => 'https://github.com/ngageoint/simple-features-geojson-ios.git', :tag => '4.2.3'

Include as local project:

pod 'sf-geojson-ios', :path => '../simple-features-geojson-ios'

Swift

To use from Swift, import the sf-geojson-ios bridging header from the Swift project's bridging header

#import "sf-geojson-ios-Bridging-Header.h"

Read

// var content: String = ...

let geometry: SFGGeometry = SFGFeatureConverter.json(toGeometry: content)
let simpleGeometry: SFGeometry = geometry.geometry()

/* Read as a generic GeoJSON object, Feature, or Feature Collection */
// let geoJSONObject : SFGGeoJSONObject = SFGFeatureConverter.json(toObject: content)
// let feature: SFGFeature = SFGFeatureConverter.json(toFeature: content)
// let featureCollection : SFGFeatureCollection = SFGFeatureConverter.json(toFeatureCollection: content)

Write

// let geometry : SFGeometry = ...

let content : String = SFGFeatureConverter.simpleGeometry(toJSON: geometry)

let feature : SFGFeature = SFGFeatureConverter.simpleGeometry(toFeature: geometry)
let featureContent : String = SFGFeatureConverter.object(toJSON: feature)

let featureCollection : SFGFeatureCollection = SFGFeatureConverter.simpleGeometry(toFeatureCollection: geometry)
let featureCollectionContent : String = SFGFeatureConverter.object(toJSON: featureCollection)

let contentTree : Dictionary = SFGFeatureConverter.simpleGeometry(toTree: geometry)

Remote Dependencies