-
Notifications
You must be signed in to change notification settings - Fork 11
/
GeodeticUTMConverter.podspec
21 lines (19 loc) · 1.11 KB
/
GeodeticUTMConverter.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "GeodeticUTMConverter"
s.version = "1.0.7"
s.platform = :ios, "6.0"
s.summary = "An Objective-C UTM to LatLon Converter."
s.description = <<-DESC
### UTM to LatLon ###
Universal Transverse Mercator (UTM) was a method used primarily by the US Army Corp of Engineers for determining positions based on a grid system. It has the advantage of being able to determine distances with very simple math. However, converting between this system and the more familar LatLon system used in most modern software is a pain.
DESC
s.homepage = "https://github.com/palmerc/GeodeticUTMConverter"
s.license = { :type => 'BSD', :file => 'LICENSE' }
s.author = { "Cameron Lowell Palmer" => "[email protected]" }
s.social_media_url = 'https://twitter.com/palmerc'
s.source = { :git => "https://github.com/palmerc/GeodeticUTMConverter.git", :tag => s.version.to_s }
s.prefix_header_contents = '#import <MapKit/MapKit.h>'
s.source_files = "GeodeticUTMConverter/Classes/GeodeticUTMConverter.{h,m}"
s.frameworks = 'MapKit'
s.requires_arc = true
end