GithubHelp home page GithubHelp logo

ngageoint / simple-features-proj-ios Goto Github PK

View Code? Open in Web Editor NEW
3.0 7.0 3.0 28.46 MB

Simple Features Projection iOS Library

Home Page: https://ngageoint.github.io/simple-features-proj-ios/

License: MIT License

Objective-C 92.71% Ruby 2.55% C 0.49% Swift 4.25%
simple-features nga ogc features proj4 projection projections

simple-features-proj-ios's Introduction

Simple Features Projection iOS

Simple Features Projection 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 Projection is an iOS library for performing projection conversions between Simple Feature Geometries.

Usage

View the latest Appledoc

Transform

// SFGeometry *geometry = ...

PROJProjection *projection1 =
    [PROJProjectionFactory projectionWithAuthority:PROJ_AUTHORITY_EPSG
    andIntCode:PROJ_EPSG_WEB_MERCATOR];
PROJProjection *projection2 =
    [PROJProjectionFactory projectionWithAuthority:PROJ_AUTHORITY_EPSG
    andIntCode:PROJ_EPSG_WORLD_GEODETIC_SYSTEM];

SFPGeometryTransform *transform =
    [SFPGeometryTransform transformFromProjection:projection1
    andToProjection:projection2];

SFGeometry *transformed = [transform transformGeometry:geometry];

[transform destroy];

Build

Build & Test

IMPORTANT - Be sure your Mac has the autoconf, automake, and glibtoolize utilities. These are required to build the PROJ dependency. Without them, pod install will fail. The easiest way to get these is to brew install them:

brew install automake
brew install libtool

Build this repository using Xcode and/or CocoaPods:

pod repo update
pod install

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

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

Run tests from Xcode or from command line:

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

Include Library

See the above note about automake and glibtoolize.

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

Pull from CocoaPods:

pod 'sf-proj-ios', '~> 6.0.3'

If you use use_modular_headers! in your Podfile, disable modular headers for the PROJ dependency:

pod 'sf-proj-ios', '~> 6.0.3'
pod 'PROJ', :modular_headers => false

Pull from GitHub:

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

Include as local project:

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

Swift

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

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

Transform

// var geometry: SFGeometry = ...

let projection1: PROJProjection = PROJProjectionFactory.projection(withAuthority: PROJ_AUTHORITY_EPSG, andIntCode: PROJ_EPSG_WEB_MERCATOR)
let projection2: PROJProjection = PROJProjectionFactory.projection(withAuthority: PROJ_AUTHORITY_EPSG, andIntCode: PROJ_EPSG_WORLD_GEODETIC_SYSTEM)

let transform: SFPGeometryTransform = SFPGeometryTransform(from: projection1, andTo: projection2)

let transformed: SFGeometry = transform.transform(geometry)

transform.destroy()

Remote Dependencies

simple-features-proj-ios's People

Contributors

bosborn avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

simple-features-proj-ios's Issues

Doesn't work with Xcode 14.3

Please fill out as much known and relevant information as possible.

Version Information:

  • SF Proj iOS Version: 5.1.2
  • SF Proj iOS Source: CocoaPods
  • CocoaPods Version: 1.12.0
  • Xcode Version: 14.3
  • Device or Emulator: Device
  • iOS Version: 16.3.1
  • Other Relevant Libraries:

Expected Results:

  • What did you expect to happen?
    Run HelloWorld app which includes sf-proj-ios (5.1.2) CocoaPods.

Observed Results:

  • What happened instead?
    File not found: /Applications/Xcode.app/Contents/ Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/ arc/libarclite_iphoneos.a
  • How often does this occur? 100%.

Output:

  • Any logs, errors, or output messages?
    File not found: /Applications/Xcode.app/Contents/ Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/ arc/libarclite_iphoneos.a

Steps to Reproduce:

  1. Install Xcode 14.3.
  2. Create HelloWorldApp.
  3. Install sf-proj-ios CocoaPods.
  4. Run.

Relevant Code:

// Code to reproduce the problem?

Test Files:

  • Links to any files needed for testing?

Additional Information:

  • Any additional configuration, data, or information that might help with the issue?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.