Skip to content

ngageoint/simple-features-proj-ios

Repository files navigation

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

Build this repository using Swift Package Manager:

swift build

Run tests from Xcode or from command line:

swift test

Open the Swift Package in Xcode from command line:

open Package.swift

Include Library

Use this library via SPM in your Package.swift:

dependencies: [
    .package(url: "https://github.com/ngageoint/simple-features-proj-ios.git", branch: "release/7.0.0"),
]

Or as a tagged release:

dependencies: [
    .package(url: "https://github.com/ngageoint/simple-features-proj-ios.git", from: "7.0.0"),
]

Reference it in your Package.swift target:

.target(
    name: "projections",
    dependencies: [
        .product(name: "SimpleFeaturesProjections", package: "simple-features-proj-ios"),
    ],
),

Swift

To use from Swift:

import SimpleFeaturesProjections

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