├── .github └── workflows │ └── test.yml ├── .gitignore ├── .rspec ├── .standard.yml ├── Gemfile ├── Gemfile.lock ├── LICENSE.txt ├── README.md ├── Rakefile ├── example └── example.rb ├── lib ├── simplify_rb.rb └── simplify_rb │ ├── douglas_peucker_simplifier.rb │ ├── point.rb │ ├── radial_distance_simplifier.rb │ └── version.rb ├── simplify_rb.gemspec └── spec ├── fixtures ├── all-points.yml ├── result-fast.yml └── result-high-quality.yml ├── simplify_rb └── point_spec.rb ├── simplify_rb_spec.rb └── spec_helper.rb /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odlp/simplify_rb/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odlp/simplify_rb/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /.standard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odlp/simplify_rb/HEAD/.standard.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odlp/simplify_rb/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odlp/simplify_rb/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odlp/simplify_rb/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odlp/simplify_rb/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odlp/simplify_rb/HEAD/Rakefile -------------------------------------------------------------------------------- /example/example.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odlp/simplify_rb/HEAD/example/example.rb -------------------------------------------------------------------------------- /lib/simplify_rb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odlp/simplify_rb/HEAD/lib/simplify_rb.rb -------------------------------------------------------------------------------- /lib/simplify_rb/douglas_peucker_simplifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odlp/simplify_rb/HEAD/lib/simplify_rb/douglas_peucker_simplifier.rb -------------------------------------------------------------------------------- /lib/simplify_rb/point.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odlp/simplify_rb/HEAD/lib/simplify_rb/point.rb -------------------------------------------------------------------------------- /lib/simplify_rb/radial_distance_simplifier.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odlp/simplify_rb/HEAD/lib/simplify_rb/radial_distance_simplifier.rb -------------------------------------------------------------------------------- /lib/simplify_rb/version.rb: -------------------------------------------------------------------------------- 1 | module SimplifyRb 2 | VERSION = "0.4.0" 3 | end 4 | -------------------------------------------------------------------------------- /simplify_rb.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odlp/simplify_rb/HEAD/simplify_rb.gemspec -------------------------------------------------------------------------------- /spec/fixtures/all-points.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odlp/simplify_rb/HEAD/spec/fixtures/all-points.yml -------------------------------------------------------------------------------- /spec/fixtures/result-fast.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odlp/simplify_rb/HEAD/spec/fixtures/result-fast.yml -------------------------------------------------------------------------------- /spec/fixtures/result-high-quality.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odlp/simplify_rb/HEAD/spec/fixtures/result-high-quality.yml -------------------------------------------------------------------------------- /spec/simplify_rb/point_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odlp/simplify_rb/HEAD/spec/simplify_rb/point_spec.rb -------------------------------------------------------------------------------- /spec/simplify_rb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odlp/simplify_rb/HEAD/spec/simplify_rb_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/odlp/simplify_rb/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------