Skip to content

deem0n/YASPWKTParser

Repository files navigation

YASPWKTParser

Please note: it have not been submitted to cocoapods repo yet!

[![CI Status](http://img.shields.io/travis/Dmitry Dorofeev/YASPWKTParser.svg?style=flat)](https://travis-ci.org/Dmitry Dorofeev/YASPWKTParser) Version License Platform

Goals

There are several WKT parsers on github targeted iOS/OS X. They usually split POLYGON blocks by comma and use regexp for parsing coordinates. While regexps are fast, splitting means that you need two-pass scanning on possibly large text. First pass is for splitting and second pass is for regexping.

Also, I did not find any parser which reports back parse errors and position in WKT where it failed. So I decided to implement my own WKT parser which is hopefully:

  • fast
  • error prone
  • memory efficient

Instead of two-pass parsing I use NSScanner and C-arrays to store parsed coordinates. It is both fast and memory efficient. For example, this implementation is 4 times faster than WKTParser (As of June 2016).

Example

To run the example project, clone the repo, and run pod install from the Example directory first.

Requirements

Installation

YASPWKTParser is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "YASPWKTParser"

Author

Dmitry Dorofeev, dima <аt> yasp.com

License

YASPWKTParser is available under the MIT license. See the LICENSE file for more info.

About

Fast WKT Polygon/Multipolygon parser for iOS

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published