Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yageek/lambertswift
:earth_africa: Convert coordinates from Lambert to WGS84 with Swift
https://github.com/yageek/lambertswift
carthage cocoapods coordinates lambert swift wgs84
Last synced: about 1 month ago
JSON representation
:earth_africa: Convert coordinates from Lambert to WGS84 with Swift
- Host: GitHub
- URL: https://github.com/yageek/lambertswift
- Owner: yageek
- License: other
- Created: 2014-12-23T23:38:58.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-07-07T10:13:14.000Z (over 8 years ago)
- Last Synced: 2024-11-18T04:31:02.336Z (about 2 months ago)
- Topics: carthage, cocoapods, coordinates, lambert, swift, wgs84
- Language: Swift
- Homepage:
- Size: 49.8 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
[![MIT License](http://img.shields.io/badge/license-MIT-blue.svg?style=flat)](LICENSE.md)
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)
[![CocoaPods Compatible](https://img.shields.io/cocoapods/v/LambertSwift.svg)](https://img.shields.io/cocoapods/v/LambertSwift.svg)
[![Platform](https://img.shields.io/cocoapods/p/LambertSwift.svg?style=flat)](http://cocoadocs.org/docsets/LambertSwift)# LambertSwift
LambertSwift is a Swift lightweight library to convert Lambert coordinates to WGS84
# Carthage
```
github "yageek/LambertSwift"
```# Swift Package Manager
```
.Package(url: "https://github.com/yageek/LambertSwift.org.git",majorVersion: 1)
```# Cocoapods
```
pod 'LambertSwift'
```# Usage
The Lambert extension adds a new initializer to the `CLLocation` class :
```swift
/**
* Zone argument could be one of the followings :
* I, II, III, IV, II_E, L93
*/
var loc:CLLocation = CLLocation(x: 668832.5384, y: 6950138.7285, inZone: .L93)
```# License
LambertSwift is released under the MIT license. See LICENSE for details.