项目作者: klaxit

项目描述 :
🚀 Fast & easy Google polylines
高级语言: Ruby
项目地址: git://github.com/klaxit/fast-polylines.git
创建时间: 2017-03-19T17:45:22Z
项目社区:https://github.com/klaxit/fast-polylines

开源协议:MIT License

下载


Fast Polylines

Gem
Continuous Integration Status

Implementation of the Google polyline algorithm.

BREAKING CHANGES: The version 2 of FastPolylines includes breaking changes, see Migrate from V1

About 300x faster encoding and decoding than Joshua Clayton’s gem.

make benchmark on a MacBook pro 13 - 2,3 GHz Intel Core i5:

  1. ——————————————————————————————— ENCODING ————————————————————————————————
  2. Warming up --------------------------------------
  3. Polylines 310.000 i/100ms
  4. FastPolylinesV1 2.607k i/100ms
  5. FastPolylinesV2 59.833k i/100ms
  6. Calculating -------------------------------------
  7. Polylines 2.957k 5.9%) i/s - 14.880k in 5.049867s
  8. FastPolylinesV1 25.644k 5.8%) i/s - 127.743k in 4.999954s
  9. FastPolylinesV2 682.981k 7.7%) i/s - 3.410M in 5.025952s
  10. Comparison:
  11. FastPolylinesV2: 682980.7 i/s
  12. FastPolylinesV1: 25643.7 i/s - 26.63x slower
  13. Polylines: 2957.1 i/s - 230.97x slower
  14. ——————————————————————————————— DECODING ————————————————————————————————
  15. Warming up --------------------------------------
  16. Polylines 127.000 i/100ms
  17. FastPolylinesV1 1.225k i/100ms
  18. FastPolylinesV2 40.667k i/100ms
  19. Calculating -------------------------------------
  20. Polylines 1.289k 6.1%) i/s - 6.477k in 5.046552s
  21. FastPolylinesV1 15.445k 4.4%) i/s - 77.175k in 5.006896s
  22. FastPolylinesV2 468.413k 7.8%) i/s - 2.359M in 5.068936s
  23. Comparison:
  24. FastPolylinesV2: 468412.8 i/s
  25. FastPolylinesV1: 15445.4 i/s - 30.33x slower
  26. Polylines: 1288.8 i/s - 363.46x slower

Install

  1. gem install fast-polylines

or in your Gemfile:

  1. gem "fast-polylines", "~> 2.0.0"

Usage

  1. require "fast_polylines"
  2. FastPolylines.encode([[38.5, -120.2], [40.7, -120.95], [43.252, -126.453]])
  3. # "_p~iF~ps|U_ulLnnqC_mqNvxq`@"
  4. FastPolylines.decode("_p~iF~ps|U_ulLnnqC_mqNvxq`@")
  5. # [[38.5, -120.2], [40.7, -120.95], [43.252, -126.453]]

Advanced usage

Use a different precision

Default precision is 5 decimals, to use a precision of 6:

  1. FastPolylines.encode([[38.5, -120.2], [40.7, -120.95], [43.252, -126.453]], 6)
  2. # "_izlhA~rlgdF_{geC~ywl@_kwzCn`{nI"
  3. FastPolylines.decode("_izlhA~rlgdF_{geC~ywl@_kwzCn`{nI", 6)
  4. # [[38.5, -120.2], [40.7, -120.95], [43.252, -126.453]]

The precision max is 13.

Migrate from V1

TL;DR:

  1. # before
  2. require "fast-polylines"
  3. FastPolylines::Encoder.encode([[1.2, 1.2], [2.4, 2.4]], 1e6)
  4. # after
  5. require "fast_polylines"
  6. FastPolylines.encode([[1.2, 1.2], [2.4, 2.4]], 6)

Detailled:

The new version of FastPolylines doesn’t support precision more than 1e13,
you should not consider using it anyway since it is way too precise.

Encoder and Decoder modules are deprecated in favor of the single parent
module. Even though you can still use those, a deprecation warning will be
printed.

The precision is now an integer representing the number of decimals. It is
slightly smaller, and mostly this will avoid having any float value as
precision.

The file name to require is now snake_cased, you’ll have to require
fast_polylines. The gem name stays the same however.

Run the Benchmark

You can run the benchmark with make benchmark.

Contributing

  1. git clone git@github.com:klaxit/fast-polylines
  2. cd fast-polylines
  3. bundle install
  4. # Implement a feature, resolve a bug...
  5. make rubocop
  6. make test
  7. git commit "My new feature!"
  8. # Make a PR

There is a make console command as well to open a ruby console with the
current version loaded.

And here’s a good starting point for Ruby C extensions knowledge.

License

Please see LICENSE