{"id":15481591,"url":"https://github.com/ngageoint/simple-features-wkb-ios","last_synced_at":"2025-12-12T06:30:01.739Z","repository":{"id":56933151,"uuid":"44551399","full_name":"ngageoint/simple-features-wkb-ios","owner":"ngageoint","description":"Simple Features Well-Known Binary iOS Library","archived":false,"fork":false,"pushed_at":"2025-04-14T15:54:11.000Z","size":3609,"stargazers_count":5,"open_issues_count":1,"forks_count":5,"subscribers_count":13,"default_branch":"master","last_synced_at":"2025-04-14T16:50:18.701Z","etag":null,"topics":["cocoapods","features-wkb","ios","ios-lib","nga","objective-c","objective-c-library","ogc","ogc-wkb","simple-features","swift","well-known","well-known-binary","wkb","xcode"],"latest_commit_sha":null,"homepage":"http://ngageoint.github.io/simple-features-wkb-ios","language":"Objective-C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ngageoint.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-10-19T17:26:43.000Z","updated_at":"2023-01-15T17:42:17.000Z","dependencies_parsed_at":"2024-10-02T05:05:10.386Z","dependency_job_id":"83c800a6-f0da-4091-97f0-8424a07eac56","html_url":"https://github.com/ngageoint/simple-features-wkb-ios","commit_stats":{"total_commits":187,"total_committers":3,"mean_commits":"62.333333333333336","dds":"0.36898395721925137","last_synced_commit":"52eab41ca3b9bad96d7abf1072e8c301aa541fc5"},"previous_names":["ngageoint/geopackage-wkb-ios"],"tags_count":22,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ngageoint%2Fsimple-features-wkb-ios","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ngageoint%2Fsimple-features-wkb-ios/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ngageoint%2Fsimple-features-wkb-ios/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ngageoint%2Fsimple-features-wkb-ios/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ngageoint","download_url":"https://codeload.github.com/ngageoint/simple-features-wkb-ios/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250279252,"owners_count":21404349,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cocoapods","features-wkb","ios","ios-lib","nga","objective-c","objective-c-library","ogc","ogc-wkb","simple-features","swift","well-known","well-known-binary","wkb","xcode"],"created_at":"2024-10-02T05:05:04.158Z","updated_at":"2025-12-12T06:29:56.691Z","avatar_url":"https://github.com/ngageoint.png","language":"Objective-C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Simple Features WKB iOS\n\n#### Simple Features Well-Known Binary Lib ####\n\nThe 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/).\n\n### Pull Requests ###\nIf 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.\n\nSoftware 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.\n\n### About ###\n\n[Simple Features WKB](http://ngageoint.github.io/simple-features-wkb-ios/) is an iOS Objective-C library for writing and reading [Simple Feature](https://github.com/ngageoint/simple-features-ios) Geometries to and from Well-Known Binary.\n\n### Usage ###\n\nView the latest [Appledoc](http://ngageoint.github.io/simple-features-wkb-ios/docs/api/)\n\n#### Read ####\n\n```objectivec\n\n// NSData *data = ...\n\nSFGeometry *geometry = [SFWBGeometryReader readGeometryWithData:data];\nenum SFGeometryType geometryType = geometry.geometryType;\n\n```\n\n#### Write ####\n\n```objectivec\n\n// SFGeometry *geometry = ...\n\nNSData *data = [SFWBGeometryWriter writeGeometry:geometry];\n\n```\n\n### Build ###\n\n[![Build \u0026 Test](https://github.com/ngageoint/simple-features-wkb-ios/workflows/Build%20\u0026%20Test/badge.svg)](https://github.com/ngageoint/simple-features-wkb-ios/actions/workflows/build-test.yml)\n\nBuild this repository using Xcode and/or CocoaPods:\n\n    pod repo update\n    pod install\n\nOpen sf-wkb-ios.xcworkspace in Xcode or build from command line:\n\n    xcodebuild -workspace 'sf-wkb-ios.xcworkspace' -scheme sf-wkb-ios build\n\nRun tests from Xcode or from command line:\n\n    xcodebuild test -workspace 'sf-wkb-ios.xcworkspace' -scheme sf-wkb-ios -destination 'platform=iOS Simulator,name=iPhone 15'\n\n### Include Library ###\n\nInclude this repository by specifying it in a Podfile using a supported option.\n\nPull from [CocoaPods](https://cocoapods.org/pods/sf-wkb-ios):\n\n    pod 'sf-wkb-ios', '~\u003e 4.1.4'\n\nPull from GitHub:\n\n    pod 'sf-wkb-ios', :git =\u003e 'https://github.com/ngageoint/simple-features-wkb-ios.git', :branch =\u003e 'master'\n    pod 'sf-wkb-ios', :git =\u003e 'https://github.com/ngageoint/simple-features-wkb-ios.git', :tag =\u003e '4.1.4'\n\nInclude as local project:\n\n    pod 'sf-wkb-ios', :path =\u003e '../simple-features-wkb-ios'\n\n### Swift ###\n\nTo use from Swift, import the sf-wkb-ios bridging header from the Swift project's bridging header\n\n    #import \"sf-wkb-ios-Bridging-Header.h\"\n\n#### Read ####\n\n```swift\n\n// var data: Data = ...\n\nlet geometry: SFGeometry = SFWBGeometryReader.readGeometry(with: data)\nlet geometryType: SFGeometryType = geometry.geometryType\n\n```\n\n#### Write ####\n\n```swift\n\n// let geometry: SFGeometry = ...\n\nlet data: Data = SFWBGeometryWriter.write(geometry)\n\n```\n\n### Remote Dependencies ###\n\n* [Simple Features](https://github.com/ngageoint/simple-features-ios) (The MIT License (MIT)) - Simple Features Lib\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fngageoint%2Fsimple-features-wkb-ios","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fngageoint%2Fsimple-features-wkb-ios","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fngageoint%2Fsimple-features-wkb-ios/lists"}