├── .cocoadocs.yml ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── documentation-report.md └── workflows │ └── build.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Package.resolved ├── Package.swift ├── README.md ├── app ├── MGRS-Demo.xcodeproj │ └── project.pbxproj ├── MGRS-Demo │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── 1024.png │ │ │ ├── 120-1.png │ │ │ ├── 120.png │ │ │ ├── 152.png │ │ │ ├── 167.png │ │ │ ├── 180.png │ │ │ ├── 20.png │ │ │ ├── 29.png │ │ │ ├── 40-1.png │ │ │ ├── 40-2.png │ │ │ ├── 40.png │ │ │ ├── 58-1.png │ │ │ ├── 58.png │ │ │ ├── 60.png │ │ │ ├── 76.png │ │ │ ├── 80-1.png │ │ │ ├── 80.png │ │ │ ├── 87.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── center.imageset │ │ │ ├── Contents.json │ │ │ ├── ic_add_black_24dp-1.png │ │ │ ├── ic_add_black_24dp-2.png │ │ │ └── ic_add_black_24dp.png │ │ ├── layers.imageset │ │ │ ├── Contents.json │ │ │ ├── baseline_layers_black_24-1.png │ │ │ ├── baseline_layers_black_24-2.png │ │ │ └── baseline_layers_black_24.png │ │ └── search.imageset │ │ │ ├── Contents.json │ │ │ ├── baseline_search_black_24-1.png │ │ │ ├── baseline_search_black_24-2.png │ │ │ └── baseline_search_black_24.png │ ├── ContentView.swift │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ └── appApp.swift └── README.md ├── docs ├── docs │ └── api │ │ ├── BandLetterRange │ │ └── index.html │ │ ├── BandLetterRangeIterator │ │ └── index.html │ │ ├── BaseGrid │ │ └── index.html │ │ ├── BaseGrids │ │ └── index.html │ │ ├── BaseZoomGrids │ │ └── index.html │ │ ├── Bounds │ │ └── index.html │ │ ├── GZDLabeler │ │ └── index.html │ │ ├── Grid │ │ └── index.html │ │ ├── GridConstants │ │ └── index.html │ │ ├── GridLabel │ │ └── index.html │ │ ├── GridLabeler │ │ └── index.html │ │ ├── GridPoint │ │ └── index.html │ │ ├── GridProperties │ │ └── index.html │ │ ├── GridRange │ │ └── index.html │ │ ├── GridRangeIterator │ │ └── index.html │ │ ├── GridStyle │ │ └── index.html │ │ ├── GridTile │ │ └── index.html │ │ ├── GridType │ │ └── index.html │ │ ├── GridUtils │ │ └── index.html │ │ ├── GridZone │ │ └── index.html │ │ ├── GridZones │ │ └── index.html │ │ ├── Grids │ │ └── index.html │ │ ├── Hemisphere │ │ └── index.html │ │ ├── Label │ │ └── index.html │ │ ├── Labeler │ │ └── index.html │ │ ├── LatitudeBand │ │ └── index.html │ │ ├── Line │ │ └── index.html │ │ ├── LongitudinalStrip │ │ └── index.html │ │ ├── MGRS │ │ └── index.html │ │ ├── MGRSConstants │ │ └── index.html │ │ ├── MGRSLabeler │ │ └── index.html │ │ ├── MGRSLine │ │ └── index.html │ │ ├── MGRSProperties │ │ └── index.html │ │ ├── MGRSTileOverlay │ │ └── index.html │ │ ├── MGRSUtils │ │ └── index.html │ │ ├── Pixel │ │ └── index.html │ │ ├── PixelRange │ │ └── index.html │ │ ├── PropertyConstants │ │ └── index.html │ │ ├── TileDraw │ │ └── index.html │ │ ├── TileUtils │ │ └── index.html │ │ ├── UTM │ │ └── index.html │ │ ├── Unit │ │ └── index.html │ │ ├── ZoneNumberRange │ │ └── index.html │ │ ├── ZoneNumberRangeIterator │ │ └── index.html │ │ ├── ZoomGrids │ │ └── index.html │ │ ├── all.css │ │ └── index.html ├── index.html ├── release.txt ├── stylesheets │ ├── github-light.css │ ├── normalize.css │ └── stylesheet.css └── swift-doc.txt ├── mgrs-ios ├── MGRS.swift ├── MGRSConstants.swift ├── MGRSUtils.swift ├── features │ └── MGRSLine.swift ├── grid │ ├── Grid.swift │ ├── GridLabel.swift │ ├── GridLabeler.swift │ ├── GridType.swift │ ├── Grids.swift │ ├── MGRSLabeler.swift │ └── ZoomGrids.swift ├── gzd │ ├── BandLetterRange.swift │ ├── GZDLabeler.swift │ ├── GridRange.swift │ ├── GridZone.swift │ ├── GridZones.swift │ ├── LatitudeBand.swift │ ├── LongitudinalStrip.swift │ └── ZoneNumberRange.swift ├── mgrs.plist ├── mgrs_ios.h ├── property │ └── MGRSProperties.swift ├── tile │ └── MGRSTileOverlay.swift └── utm │ └── UTM.swift └── mgrs-iosTests ├── MGRSTestCase.swift ├── ReadmeTestCase.swift ├── grid └── GridTypeTestCase.swift └── gzd ├── BandLetterRangeTestCase.swift └── GridZonesTestCase.swift /.cocoadocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/.cocoadocs.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/.github/ISSUE_TEMPLATE/documentation-report.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/README.md -------------------------------------------------------------------------------- /app/MGRS-Demo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/app/MGRS-Demo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /app/MGRS-Demo/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/app/MGRS-Demo/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /app/MGRS-Demo/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/app/MGRS-Demo/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /app/MGRS-Demo/Assets.xcassets/AppIcon.appiconset/120-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/app/MGRS-Demo/Assets.xcassets/AppIcon.appiconset/120-1.png -------------------------------------------------------------------------------- /app/MGRS-Demo/Assets.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/app/MGRS-Demo/Assets.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /app/MGRS-Demo/Assets.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/app/MGRS-Demo/Assets.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /app/MGRS-Demo/Assets.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/app/MGRS-Demo/Assets.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /app/MGRS-Demo/Assets.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/app/MGRS-Demo/Assets.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /app/MGRS-Demo/Assets.xcassets/AppIcon.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/app/MGRS-Demo/Assets.xcassets/AppIcon.appiconset/20.png -------------------------------------------------------------------------------- /app/MGRS-Demo/Assets.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/app/MGRS-Demo/Assets.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /app/MGRS-Demo/Assets.xcassets/AppIcon.appiconset/40-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/app/MGRS-Demo/Assets.xcassets/AppIcon.appiconset/40-1.png -------------------------------------------------------------------------------- /app/MGRS-Demo/Assets.xcassets/AppIcon.appiconset/40-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/app/MGRS-Demo/Assets.xcassets/AppIcon.appiconset/40-2.png -------------------------------------------------------------------------------- /app/MGRS-Demo/Assets.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/app/MGRS-Demo/Assets.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /app/MGRS-Demo/Assets.xcassets/AppIcon.appiconset/58-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/app/MGRS-Demo/Assets.xcassets/AppIcon.appiconset/58-1.png -------------------------------------------------------------------------------- /app/MGRS-Demo/Assets.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/app/MGRS-Demo/Assets.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /app/MGRS-Demo/Assets.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/app/MGRS-Demo/Assets.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /app/MGRS-Demo/Assets.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/app/MGRS-Demo/Assets.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /app/MGRS-Demo/Assets.xcassets/AppIcon.appiconset/80-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/app/MGRS-Demo/Assets.xcassets/AppIcon.appiconset/80-1.png -------------------------------------------------------------------------------- /app/MGRS-Demo/Assets.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/app/MGRS-Demo/Assets.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /app/MGRS-Demo/Assets.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/app/MGRS-Demo/Assets.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /app/MGRS-Demo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/app/MGRS-Demo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /app/MGRS-Demo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/app/MGRS-Demo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /app/MGRS-Demo/Assets.xcassets/center.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/app/MGRS-Demo/Assets.xcassets/center.imageset/Contents.json -------------------------------------------------------------------------------- /app/MGRS-Demo/Assets.xcassets/center.imageset/ic_add_black_24dp-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/app/MGRS-Demo/Assets.xcassets/center.imageset/ic_add_black_24dp-1.png -------------------------------------------------------------------------------- /app/MGRS-Demo/Assets.xcassets/center.imageset/ic_add_black_24dp-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/app/MGRS-Demo/Assets.xcassets/center.imageset/ic_add_black_24dp-2.png -------------------------------------------------------------------------------- /app/MGRS-Demo/Assets.xcassets/center.imageset/ic_add_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/app/MGRS-Demo/Assets.xcassets/center.imageset/ic_add_black_24dp.png -------------------------------------------------------------------------------- /app/MGRS-Demo/Assets.xcassets/layers.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/app/MGRS-Demo/Assets.xcassets/layers.imageset/Contents.json -------------------------------------------------------------------------------- /app/MGRS-Demo/Assets.xcassets/layers.imageset/baseline_layers_black_24-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/app/MGRS-Demo/Assets.xcassets/layers.imageset/baseline_layers_black_24-1.png -------------------------------------------------------------------------------- /app/MGRS-Demo/Assets.xcassets/layers.imageset/baseline_layers_black_24-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/app/MGRS-Demo/Assets.xcassets/layers.imageset/baseline_layers_black_24-2.png -------------------------------------------------------------------------------- /app/MGRS-Demo/Assets.xcassets/layers.imageset/baseline_layers_black_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/app/MGRS-Demo/Assets.xcassets/layers.imageset/baseline_layers_black_24.png -------------------------------------------------------------------------------- /app/MGRS-Demo/Assets.xcassets/search.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/app/MGRS-Demo/Assets.xcassets/search.imageset/Contents.json -------------------------------------------------------------------------------- /app/MGRS-Demo/Assets.xcassets/search.imageset/baseline_search_black_24-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/app/MGRS-Demo/Assets.xcassets/search.imageset/baseline_search_black_24-1.png -------------------------------------------------------------------------------- /app/MGRS-Demo/Assets.xcassets/search.imageset/baseline_search_black_24-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/app/MGRS-Demo/Assets.xcassets/search.imageset/baseline_search_black_24-2.png -------------------------------------------------------------------------------- /app/MGRS-Demo/Assets.xcassets/search.imageset/baseline_search_black_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/app/MGRS-Demo/Assets.xcassets/search.imageset/baseline_search_black_24.png -------------------------------------------------------------------------------- /app/MGRS-Demo/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/app/MGRS-Demo/ContentView.swift -------------------------------------------------------------------------------- /app/MGRS-Demo/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/app/MGRS-Demo/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /app/MGRS-Demo/appApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/app/MGRS-Demo/appApp.swift -------------------------------------------------------------------------------- /app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/app/README.md -------------------------------------------------------------------------------- /docs/docs/api/BandLetterRange/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/BandLetterRange/index.html -------------------------------------------------------------------------------- /docs/docs/api/BandLetterRangeIterator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/BandLetterRangeIterator/index.html -------------------------------------------------------------------------------- /docs/docs/api/BaseGrid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/BaseGrid/index.html -------------------------------------------------------------------------------- /docs/docs/api/BaseGrids/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/BaseGrids/index.html -------------------------------------------------------------------------------- /docs/docs/api/BaseZoomGrids/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/BaseZoomGrids/index.html -------------------------------------------------------------------------------- /docs/docs/api/Bounds/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/Bounds/index.html -------------------------------------------------------------------------------- /docs/docs/api/GZDLabeler/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/GZDLabeler/index.html -------------------------------------------------------------------------------- /docs/docs/api/Grid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/Grid/index.html -------------------------------------------------------------------------------- /docs/docs/api/GridConstants/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/GridConstants/index.html -------------------------------------------------------------------------------- /docs/docs/api/GridLabel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/GridLabel/index.html -------------------------------------------------------------------------------- /docs/docs/api/GridLabeler/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/GridLabeler/index.html -------------------------------------------------------------------------------- /docs/docs/api/GridPoint/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/GridPoint/index.html -------------------------------------------------------------------------------- /docs/docs/api/GridProperties/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/GridProperties/index.html -------------------------------------------------------------------------------- /docs/docs/api/GridRange/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/GridRange/index.html -------------------------------------------------------------------------------- /docs/docs/api/GridRangeIterator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/GridRangeIterator/index.html -------------------------------------------------------------------------------- /docs/docs/api/GridStyle/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/GridStyle/index.html -------------------------------------------------------------------------------- /docs/docs/api/GridTile/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/GridTile/index.html -------------------------------------------------------------------------------- /docs/docs/api/GridType/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/GridType/index.html -------------------------------------------------------------------------------- /docs/docs/api/GridUtils/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/GridUtils/index.html -------------------------------------------------------------------------------- /docs/docs/api/GridZone/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/GridZone/index.html -------------------------------------------------------------------------------- /docs/docs/api/GridZones/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/GridZones/index.html -------------------------------------------------------------------------------- /docs/docs/api/Grids/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/Grids/index.html -------------------------------------------------------------------------------- /docs/docs/api/Hemisphere/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/Hemisphere/index.html -------------------------------------------------------------------------------- /docs/docs/api/Label/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/Label/index.html -------------------------------------------------------------------------------- /docs/docs/api/Labeler/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/Labeler/index.html -------------------------------------------------------------------------------- /docs/docs/api/LatitudeBand/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/LatitudeBand/index.html -------------------------------------------------------------------------------- /docs/docs/api/Line/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/Line/index.html -------------------------------------------------------------------------------- /docs/docs/api/LongitudinalStrip/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/LongitudinalStrip/index.html -------------------------------------------------------------------------------- /docs/docs/api/MGRS/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/MGRS/index.html -------------------------------------------------------------------------------- /docs/docs/api/MGRSConstants/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/MGRSConstants/index.html -------------------------------------------------------------------------------- /docs/docs/api/MGRSLabeler/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/MGRSLabeler/index.html -------------------------------------------------------------------------------- /docs/docs/api/MGRSLine/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/MGRSLine/index.html -------------------------------------------------------------------------------- /docs/docs/api/MGRSProperties/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/MGRSProperties/index.html -------------------------------------------------------------------------------- /docs/docs/api/MGRSTileOverlay/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/MGRSTileOverlay/index.html -------------------------------------------------------------------------------- /docs/docs/api/MGRSUtils/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/MGRSUtils/index.html -------------------------------------------------------------------------------- /docs/docs/api/Pixel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/Pixel/index.html -------------------------------------------------------------------------------- /docs/docs/api/PixelRange/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/PixelRange/index.html -------------------------------------------------------------------------------- /docs/docs/api/PropertyConstants/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/PropertyConstants/index.html -------------------------------------------------------------------------------- /docs/docs/api/TileDraw/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/TileDraw/index.html -------------------------------------------------------------------------------- /docs/docs/api/TileUtils/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/TileUtils/index.html -------------------------------------------------------------------------------- /docs/docs/api/UTM/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/UTM/index.html -------------------------------------------------------------------------------- /docs/docs/api/Unit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/Unit/index.html -------------------------------------------------------------------------------- /docs/docs/api/ZoneNumberRange/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/ZoneNumberRange/index.html -------------------------------------------------------------------------------- /docs/docs/api/ZoneNumberRangeIterator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/ZoneNumberRangeIterator/index.html -------------------------------------------------------------------------------- /docs/docs/api/ZoomGrids/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/ZoomGrids/index.html -------------------------------------------------------------------------------- /docs/docs/api/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/all.css -------------------------------------------------------------------------------- /docs/docs/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/docs/api/index.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/release.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/release.txt -------------------------------------------------------------------------------- /docs/stylesheets/github-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/stylesheets/github-light.css -------------------------------------------------------------------------------- /docs/stylesheets/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/stylesheets/normalize.css -------------------------------------------------------------------------------- /docs/stylesheets/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/stylesheets/stylesheet.css -------------------------------------------------------------------------------- /docs/swift-doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/docs/swift-doc.txt -------------------------------------------------------------------------------- /mgrs-ios/MGRS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/mgrs-ios/MGRS.swift -------------------------------------------------------------------------------- /mgrs-ios/MGRSConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/mgrs-ios/MGRSConstants.swift -------------------------------------------------------------------------------- /mgrs-ios/MGRSUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/mgrs-ios/MGRSUtils.swift -------------------------------------------------------------------------------- /mgrs-ios/features/MGRSLine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/mgrs-ios/features/MGRSLine.swift -------------------------------------------------------------------------------- /mgrs-ios/grid/Grid.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/mgrs-ios/grid/Grid.swift -------------------------------------------------------------------------------- /mgrs-ios/grid/GridLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/mgrs-ios/grid/GridLabel.swift -------------------------------------------------------------------------------- /mgrs-ios/grid/GridLabeler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/mgrs-ios/grid/GridLabeler.swift -------------------------------------------------------------------------------- /mgrs-ios/grid/GridType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/mgrs-ios/grid/GridType.swift -------------------------------------------------------------------------------- /mgrs-ios/grid/Grids.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/mgrs-ios/grid/Grids.swift -------------------------------------------------------------------------------- /mgrs-ios/grid/MGRSLabeler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/mgrs-ios/grid/MGRSLabeler.swift -------------------------------------------------------------------------------- /mgrs-ios/grid/ZoomGrids.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/mgrs-ios/grid/ZoomGrids.swift -------------------------------------------------------------------------------- /mgrs-ios/gzd/BandLetterRange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/mgrs-ios/gzd/BandLetterRange.swift -------------------------------------------------------------------------------- /mgrs-ios/gzd/GZDLabeler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/mgrs-ios/gzd/GZDLabeler.swift -------------------------------------------------------------------------------- /mgrs-ios/gzd/GridRange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/mgrs-ios/gzd/GridRange.swift -------------------------------------------------------------------------------- /mgrs-ios/gzd/GridZone.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/mgrs-ios/gzd/GridZone.swift -------------------------------------------------------------------------------- /mgrs-ios/gzd/GridZones.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/mgrs-ios/gzd/GridZones.swift -------------------------------------------------------------------------------- /mgrs-ios/gzd/LatitudeBand.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/mgrs-ios/gzd/LatitudeBand.swift -------------------------------------------------------------------------------- /mgrs-ios/gzd/LongitudinalStrip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/mgrs-ios/gzd/LongitudinalStrip.swift -------------------------------------------------------------------------------- /mgrs-ios/gzd/ZoneNumberRange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/mgrs-ios/gzd/ZoneNumberRange.swift -------------------------------------------------------------------------------- /mgrs-ios/mgrs.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/mgrs-ios/mgrs.plist -------------------------------------------------------------------------------- /mgrs-ios/mgrs_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/mgrs-ios/mgrs_ios.h -------------------------------------------------------------------------------- /mgrs-ios/property/MGRSProperties.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/mgrs-ios/property/MGRSProperties.swift -------------------------------------------------------------------------------- /mgrs-ios/tile/MGRSTileOverlay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/mgrs-ios/tile/MGRSTileOverlay.swift -------------------------------------------------------------------------------- /mgrs-ios/utm/UTM.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/mgrs-ios/utm/UTM.swift -------------------------------------------------------------------------------- /mgrs-iosTests/MGRSTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/mgrs-iosTests/MGRSTestCase.swift -------------------------------------------------------------------------------- /mgrs-iosTests/ReadmeTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/mgrs-iosTests/ReadmeTestCase.swift -------------------------------------------------------------------------------- /mgrs-iosTests/grid/GridTypeTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/mgrs-iosTests/grid/GridTypeTestCase.swift -------------------------------------------------------------------------------- /mgrs-iosTests/gzd/BandLetterRangeTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/mgrs-iosTests/gzd/BandLetterRangeTestCase.swift -------------------------------------------------------------------------------- /mgrs-iosTests/gzd/GridZonesTestCase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngageoint/mgrs-ios/HEAD/mgrs-iosTests/gzd/GridZonesTestCase.swift --------------------------------------------------------------------------------