georuby-ext 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. data/.jrubyrc +1 -0
  2. data/.travis.yml +23 -0
  3. data/Gemfile +6 -0
  4. data/Guardfile +12 -2
  5. data/MIT-LICENSE +20 -0
  6. data/README.rdoc +2 -28
  7. data/georuby-ext.gemspec +14 -11
  8. data/lib/georuby-ext.rb +17 -2
  9. data/lib/georuby-ext/core_ext.rb +11 -0
  10. data/lib/georuby-ext/geokit.rb +10 -3
  11. data/lib/georuby-ext/georuby/envelope.rb +36 -1
  12. data/lib/georuby-ext/georuby/ewkb_parser.rb +11 -0
  13. data/lib/georuby-ext/georuby/ewkt_parser.rb +11 -0
  14. data/lib/georuby-ext/georuby/geometry.rb +46 -2
  15. data/lib/georuby-ext/georuby/line_string.rb +19 -7
  16. data/lib/georuby-ext/georuby/linear_ring.rb +15 -0
  17. data/lib/georuby-ext/georuby/locators.rb +30 -17
  18. data/lib/georuby-ext/georuby/multi_polygon.rb +15 -1
  19. data/lib/georuby-ext/georuby/point.rb +148 -24
  20. data/lib/georuby-ext/georuby/polygon.rb +38 -27
  21. data/lib/georuby-ext/georuby/rtree.rb +133 -0
  22. data/lib/georuby-ext/georuby/srid.rb +17 -0
  23. data/lib/georuby-ext/proj4.rb +15 -2
  24. data/lib/georuby-ext/rgeo/cartesian/feature_methods.rb +58 -0
  25. data/lib/georuby-ext/rgeo/feature/geometry.rb +11 -0
  26. data/lib/georuby-ext/rgeo/feature/geometry_collection.rb +11 -0
  27. data/lib/georuby-ext/rgeo/feature/rgeo.rb +157 -0
  28. data/lib/georuby-ext/rgeo/geos/ffi_feature_methods.rb +265 -0
  29. data/lib/georuby-ext/rspec_helper.rb +47 -8
  30. data/spec/lib/geokit_spec.rb +44 -0
  31. data/spec/lib/georuby/envelope_spec.rb +46 -0
  32. data/spec/lib/georuby/geometry_spec.rb +81 -0
  33. data/spec/{georuby → lib/georuby}/line_string_spec.rb +29 -14
  34. data/spec/lib/georuby/linear_ring_spec.rb +52 -0
  35. data/spec/lib/georuby/locators_spec.rb +123 -0
  36. data/spec/lib/georuby/multi_polygon_spec.rb +69 -0
  37. data/spec/lib/georuby/point_spec.rb +248 -0
  38. data/spec/lib/georuby/polygon_spec.rb +175 -0
  39. data/spec/lib/georuby/rtree_spec.rb +132 -0
  40. data/spec/lib/proj4_spec.rb +24 -0
  41. data/spec/lib/rgeo/cartesian/feature_methods_spec.rb +110 -0
  42. data/spec/lib/rgeo/geos/ffi_feature_methods_spec.rb +234 -0
  43. data/spec/spec_helper.rb +12 -8
  44. metadata +224 -189
  45. data/lib/georuby-ext/rgeo.rb +0 -23
  46. data/spec/georuby/linear_ring_spec.rb +0 -33
  47. data/spec/georuby/locators_spec.rb +0 -120
  48. data/spec/georuby/multi_polygon_spec.rb +0 -29
  49. data/spec/georuby/point_spec.rb +0 -44
  50. data/spec/georuby/polygon_spec.rb +0 -134
  51. data/spec/rgeo_spec.rb +0 -81
@@ -1,23 +0,0 @@
1
- class RGeo::Geos::PointImpl
2
- def to_georuby
3
- GeoRuby::SimpleFeatures::Point.from_x_y x, y, srid
4
- end
5
- end
6
-
7
- class RGeo::Geos::LineStringImpl
8
- def to_georuby
9
- GeoRuby::SimpleFeatures::LineString.from_points points.collect(&:to_georuby), srid
10
- end
11
- end
12
-
13
- class RGeo::Geos::PolygonImpl
14
- def to_georuby
15
- GeoRuby::SimpleFeatures::Polygon.from_linear_rings [exterior_ring.to_georuby], srid
16
- end
17
- end
18
-
19
- class RGeo::Geos::MultiPolygonImpl
20
- def to_georuby
21
- GeoRuby::SimpleFeatures::MultiPolygon.from_polygons collect(&:to_georuby), srid
22
- end
23
- end
@@ -1,33 +0,0 @@
1
- require "spec_helper"
2
-
3
- describe GeoRuby::SimpleFeatures::LinearRing do
4
- let(:result) {factory = RGeo::Geos::Factory.create
5
- factory.linear_ring([factory.point(0, 0), factory.point(2, 1), factory.point(3, 2), factory.point(0, 0)])}
6
-
7
- describe "to_rgeo" do
8
- it "should create a RGeo::Feature::LinearRing" do
9
- line = linear_ring(point(0,0), point(2,1), point(3,2), point(0,0))
10
- line.to_rgeo.should == result
11
- end
12
-
13
- # it "should create a RGeo::Feature::LinearRing if the georuby linear ring is not closed" do
14
- # line = linear_ring(point(0,0), point(2,1), point(3,2))
15
- # line.to_rgeo.should == result
16
- # end
17
-
18
- end
19
-
20
- describe "#to_wgs84" do
21
- let(:line) {linear_ring(point(0,0), point(1,1), point(0,0))}
22
- let(:line_wgs84) { GeoRuby::SimpleFeatures::LinearRing.from_points([point(0,0,4326), point(0.000008983152841195214, 0.000008983152840993819,4326), point(0,0,4326)], 4326)}
23
-
24
- it "should return true when we compare line coordinates" do
25
- line.to_wgs84.should == line_wgs84
26
- end
27
-
28
- it "should return same srid" do
29
- line.to_wgs84.srid.should == line_wgs84.srid
30
- end
31
- end
32
-
33
- end
@@ -1,120 +0,0 @@
1
- require 'spec_helper'
2
-
3
- describe GeoRuby::SimpleFeatures::MultiLineString do
4
-
5
- def point(x, y)
6
- GeoRuby::SimpleFeatures::Point.from_x_y x,y
7
- end
8
- def line(*xy)
9
- GeoRuby::SimpleFeatures::LineString.from_coordinates [*xy]
10
- end
11
- def lines(*lines)
12
- GeoRuby::SimpleFeatures::MultiLineString.from_line_strings lines
13
- end
14
-
15
- it "should create a valid ewkb" do
16
- GeoRuby::SimpleFeatures::Geometry.from_ewkb(lines(line([0,0],[4,0]),line([0,2],[4,2])).as_ewkb)
17
- end
18
-
19
- describe "locate_point" do
20
-
21
- context "examples" do
22
-
23
- it "should find 2,1 at 0.5 between 0,0 and 4,0" do
24
- lines(line([0,0],[4,0])).locate_point(point(2,1)).should == 0.5
25
- end
26
-
27
- it "should find 2,1 at 1.5 for (0,4)...(0,1) and (0,0)...(4,0)" do
28
- lines(line([0,4],[0,1]), line([0,0],[4,0])).locate_point(point(2,1)).should == 1.5
29
- end
30
-
31
- end
32
-
33
- end
34
-
35
- describe "interpolate_point" do
36
-
37
- context "examples" do
38
-
39
- it "should find 0.5 at (2,0) between 0,0 and 4,0" do
40
- lines(line([0,0],[4,0])).interpolate_point(0.5).should == point(2,0)
41
- end
42
-
43
- it "should find 1.5 at (2,0) for (0,4)...(0,1) and (0,0)...(4,0)" do
44
- lines(line([0,4],[0,1]), line([0,0],[4,0])).interpolate_point(1.5).should == point(2,0)
45
- end
46
-
47
- end
48
-
49
- end
50
-
51
- end
52
-
53
- describe GeoRuby::SimpleFeatures::LineString do
54
-
55
- def point(x, y)
56
- GeoRuby::SimpleFeatures::Point.from_x_y x,y
57
- end
58
- def line(*xy)
59
- GeoRuby::SimpleFeatures::LineString.from_coordinates [*xy]
60
- end
61
-
62
- describe "locate_point" do
63
-
64
- context "examples" do
65
-
66
- it "should find 2,1 at 0.5 between 0,0 and 4,0" do
67
- line([0,0],[4,0]).locate_point(point(2,1)).should == 0.5
68
- end
69
-
70
- it "should find 2,1 at 0.5 between 0,0 and 4,0 (with several segments)" do
71
- line([0,0],[2,0],[4,0]).locate_point(point(2,1)).should == 0.5
72
- end
73
-
74
- end
75
-
76
- end
77
-
78
-
79
- end
80
-
81
- describe GeoRuby::SimpleFeatures::LineString::PointLocator do
82
-
83
- def point(x, y)
84
- GeoRuby::SimpleFeatures::Point.from_x_y x,y
85
- end
86
- alias_method :p, :point
87
-
88
- def locator(target, departure, arrival)
89
- GeoRuby::SimpleFeatures::LineString::PointLocator.new target, departure, arrival
90
- end
91
-
92
- context "examples" do
93
-
94
- it "should locate 0,y at 0 between 0,0 and 4,0" do
95
- -10.upto(10) do |y|
96
- locator(p(0,y), p(0,0), p(4,0)).locate_point.should be_zero
97
- end
98
- end
99
-
100
- it "should locate 2,y at 0.5 between 0,0 and 4,0" do
101
- -10.upto(10) do |y|
102
- locator(p(2,y), p(0,0), p(4,0)).locate_point.should == 0.5
103
- end
104
- end
105
-
106
- it "should locate 4,y at 1 between 0,0 and 4,0" do
107
- -10.upto(10) do |y|
108
- locator(p(4,y), p(0,0), p(4,0)).locate_point.should == 1
109
- end
110
- end
111
-
112
- it "should find 2,y at a distance of y from 0,0 and 4,0" do
113
- -10.upto(10) do |y|
114
- locator(p(2,y), p(0,0), p(4,0)).distance_from_segment.should be_within(0.001).of(y.abs)
115
- end
116
- end
117
-
118
- end
119
-
120
- end
@@ -1,29 +0,0 @@
1
- require "spec_helper"
2
-
3
- describe GeoRuby::SimpleFeatures::MultiPolygon do
4
-
5
- describe "#to_wgs84" do
6
-
7
- let(:polygon_google) {polygon(point(0,0), point(0,1), point(1,0), point(0,0))}
8
- let(:polygon_wgs84) { GeoRuby::SimpleFeatures::Polygon.from_points([[point(0, 0, 4326), point(0, 0.000008983152840993819, 4326), point(0.000008983152841195214, 0, 4326), point(0, 0, 4326)]], 4326)}
9
- let(:multi_polygon_google) {multi_polygon(polygon_google, polygon_google)}
10
- let(:multi_polygon_wgs84) {GeoRuby::SimpleFeatures::MultiPolygon.from_polygons([polygon_wgs84, polygon_wgs84], 4326)}
11
-
12
- it "should return a polygon in wgs84 coordinates" do
13
- multi_polygon_google.to_wgs84.should == multi_polygon_wgs84
14
- end
15
-
16
- it "should return same srid" do
17
- multi_polygon_google.to_wgs84.srid.should == multi_polygon_wgs84.srid
18
- end
19
- end
20
-
21
- describe "#polygons" do
22
- let(:georuby_polygon){ polygon(point(0.0,0.0), point(0.0,2.0), point(2.0,2.0), point(2.0,0.0), point(0.0,0.0))}
23
- let(:georuby_multi_polygon){multi_polygon(georuby_polygon, georuby_polygon)}
24
- it "should return an array of polygons" do
25
- georuby_multi_polygon.polygons.should == [georuby_polygon, georuby_polygon]
26
- end
27
- end
28
-
29
- end
@@ -1,44 +0,0 @@
1
- require 'spec_helper'
2
-
3
- describe GeoRuby::SimpleFeatures::Point do
4
-
5
- describe "to_rgeo" do
6
- it "should create a RGeo::Feature::Point" do
7
- point(0,0).to_rgeo.should == rgeo_point(0,0)
8
- end
9
- end
10
-
11
- describe "centroid" do
12
-
13
- def centroid(*args)
14
- GeoRuby::SimpleFeatures::Point.centroid *args
15
- end
16
-
17
- it "should return nil if no points in input" do
18
- centroid([]).should be_nil
19
- end
20
-
21
- it "should return point in input if only one" do
22
- centroid([point(0,0)]).should == point(0,0)
23
- end
24
-
25
- it "should return middle if two points in input" do
26
- centroid([point(0.0,0.0), point(1.0,0.0)]).should == point(0.5,0.0)
27
- end
28
-
29
- it "should return centroid of given points" do
30
- centroid([point(0,0), point(0,2), point(2,2), point(2,0)]).should == point(1,1)
31
- end
32
-
33
- end
34
-
35
- describe "#to_wgs84" do
36
- it "should return true when we compare points coordinates" do
37
- point(1, 1).to_wgs84.should == point(0.000008983152841195214, 0.000008983152840993819, 4326)
38
- end
39
-
40
- it "should return a point with 4326 srid" do
41
- point.to_wgs84.srid.should == 4326
42
- end
43
- end
44
- end
@@ -1,134 +0,0 @@
1
- require 'spec_helper'
2
-
3
- describe GeoRuby::SimpleFeatures::Polygon do
4
- describe "circle" do
5
-
6
- let(:center) {p(1,1)}
7
- let(:radius) {1}
8
- let(:sides) {8}
9
-
10
- def p(x,y)
11
- GeoRuby::SimpleFeatures::Point.from_x_y x,y
12
- end
13
-
14
- def circle(arguments = {})
15
- arguments = { :center => center, :radius => radius, :sides => sides }.merge(arguments)
16
- GeoRuby::SimpleFeatures::Polygon.circle(*arguments.values_at(:center, :radius, :sides))
17
- end
18
-
19
- it "should create a square" do
20
- p1 = GeoRuby::SimpleFeatures::Point.from_lat_lng(center.to_lat_lng.endpoint(45, radius, {:units => :kms}))
21
- p2 = GeoRuby::SimpleFeatures::Point.from_lat_lng(center.to_lat_lng.endpoint(135, radius, {:units => :kms}))
22
- p3 = GeoRuby::SimpleFeatures::Point.from_lat_lng(center.to_lat_lng.endpoint(225, radius, {:units => :kms}))
23
- p4 = GeoRuby::SimpleFeatures::Point.from_lat_lng(center.to_lat_lng.endpoint(315, radius, {:units => :kms}))
24
- circle(:sides => 4).should be_same_polygon([[p1.x,p1.y], [p2.x,p2.y], [p3.x,p3.y], [p4.x,p4.y], [p1.x, p1.y]])
25
- end
26
-
27
- it "should have the given side count" do
28
- circle(:sides => 16).side_count.should == 16
29
- end
30
-
31
- it "should be closed" do
32
- circle(:sides => 16).rings.each do |ring|
33
- ring.is_closed.should be_true
34
- end
35
- end
36
-
37
- it "should have all its points as the radius distance of the center" do
38
- first_distance = circle.points.first.euclidian_distance(center)
39
- circle.points.collect do |point|
40
- point.euclidian_distance(center)
41
- end.each do |distance|
42
- #puts distance
43
- #puts first_distance
44
- distance.should be_within(0.0001).of(first_distance)
45
- end
46
- end
47
-
48
- it "should have the same distance between all its points" do
49
- points = circle.points.dup
50
- previous = points.shift
51
- distances = points.collect do |point|
52
- previous.euclidian_distance(point).tap do |distance|
53
- previous = point
54
- end
55
- end
56
-
57
- average_distance = distances.sum / distances.size
58
-
59
- distances.each do |distance|
60
- distance.should be_within(0.01).of(average_distance)
61
- end
62
- end
63
- end
64
-
65
- describe "#to_wgs84" do
66
- let(:polygon_google) {polygon(point(0,0), point(0,1), point(1,0), point(0,0))}
67
- let(:polygon_wgs84) { GeoRuby::SimpleFeatures::Polygon.from_points([[point(0, 0, 4326), point(0, 0.000008983152840993819, 4326), point(0.000008983152841195214, 0, 4326), point(0, 0, 4326)]], 4326)}
68
-
69
- it "should return a polygon in wgs84 coordinates" do
70
- polygon_google.to_wgs84.should == polygon_wgs84
71
- end
72
-
73
- it "should return same srid" do
74
- polygon_google.to_wgs84.srid.should == polygon_wgs84.srid
75
- end
76
- end
77
-
78
- describe "to_rgeo" do
79
-
80
- let(:result) {factory = RGeo::Geos::Factory.create
81
- factory.polygon(factory.line_string([factory.point(0, 0), factory.point(0, 2), factory.point(2, 2), factory.point(2, 0), factory.point(0, 0)]))}
82
-
83
- let(:georuby_polygon){ polygon(point(0,0), point(0,2), point(2,2), point(2,0), point(0,0))}
84
- it "should return a polygon RGeo::Feature::Polygon" do
85
- georuby_polygon.to_rgeo.should == result
86
- end
87
- end
88
-
89
- describe "centroid" do
90
- let(:georuby_polygon){ polygon(point(0,0), point(0,2), point(2,2), point(2,0), point(0,0))}
91
-
92
- it "should return centroid for a polygon" do
93
- georuby_polygon.centroid.should == point(1,1)
94
- end
95
-
96
- end
97
-
98
-
99
- describe "union" do
100
-
101
- let(:result){ polygon(point(0.0,0.0), point(0.0,2.0), point(0.0,4.0), point(2.0,4.0), point(2.0,2.0), point(2.0,0.0), point(0.0,0.0))}
102
- let(:georuby_polygon){ polygon(point(0.0,0.0), point(0.0,2.0), point(2.0,2.0), point(2.0,0.0), point(0.0,0.0))}
103
- let(:georuby_polygon2){ polygon(point(0.0,0.0), point(0.0,4.0), point(2.0,4.0), point(2.0,0.0), point(0.0,0.0))}
104
-
105
- it "should return the same polygon than in input" do
106
- test = GeoRuby::SimpleFeatures::Polygon.union([georuby_polygon, georuby_polygon])
107
- GeoRuby::SimpleFeatures::Polygon.union([georuby_polygon, georuby_polygon]).text_representation.should == georuby_polygon.text_representation
108
- end
109
-
110
- it "should return union of polygons" do
111
- GeoRuby::SimpleFeatures::Polygon.union([georuby_polygon, georuby_polygon2]).text_representation.should == result.text_representation
112
- end
113
-
114
- end
115
-
116
- describe "intersect" do
117
- let(:georuby_polygon){ polygon(point(0.0,0.0), point(0.0,2.0), point(2.0,2.0), point(2.0,0.0), point(0.0,0.0))}
118
- let(:georuby_polygon2){ polygon(point(0.0,0.0), point(0.0,4.0), point(2.0,4.0), point(2.0,0.0), point(0.0,0.0))}
119
-
120
- it "should return intersect of polygons" do
121
- test = GeoRuby::SimpleFeatures::Polygon.intersection([georuby_polygon, georuby_polygon2])
122
- GeoRuby::SimpleFeatures::Polygon.intersection([georuby_polygon, georuby_polygon2]).text_representation.should == georuby_polygon.text_representation
123
- end
124
- end
125
-
126
- describe "#==" do
127
-
128
- it "should be true when points are same" do
129
- geometry("POLYGON((0 0,1 1))").should == geometry("POLYGON((0 0,1 1))")
130
- end
131
-
132
- end
133
-
134
- end
@@ -1,81 +0,0 @@
1
- require "spec_helper"
2
-
3
- describe RGeo::Geos::PointImpl do
4
-
5
- subject { rgeo_point }
6
-
7
- describe "#to_georuby" do
8
-
9
- it "should return a GeoRuby::SimpleFeatures::Point" do
10
- subject.to_georuby.should be_instance_of(GeoRuby::SimpleFeatures::Point)
11
- end
12
-
13
- it "should have the same x" do
14
- subject.to_georuby.x.should == subject.x
15
- end
16
-
17
- it "should have the same y" do
18
- subject.to_georuby.y.should == subject.y
19
- end
20
-
21
- it "should have the same srid" do
22
- subject.to_georuby.srid.should == subject.srid
23
- end
24
-
25
- end
26
-
27
- end
28
-
29
- describe RGeo::Geos::LineImpl do
30
-
31
- subject { rgeometry("LINESTRING(0 0, 1 1)") }
32
-
33
- describe "#to_georuby" do
34
-
35
- it "should return a GeoRuby::SimpleFeatures::LineString" do
36
- subject.to_georuby.should be_instance_of(GeoRuby::SimpleFeatures::LineString)
37
- end
38
-
39
- it "should return a LineString with the same information" do
40
- subject.to_georuby.should == geometry("LINESTRING(0 0, 1 1)")
41
- end
42
-
43
- end
44
-
45
- end
46
-
47
- describe RGeo::Geos::PolygonImpl do
48
-
49
- subject { rgeometry("POLYGON((0 0,1 0,0 1,0 0))") }
50
-
51
- describe "#to_georuby" do
52
-
53
- it "should return a GeoRuby::SimpleFeatures::Polygon" do
54
- subject.to_georuby.should be_instance_of(GeoRuby::SimpleFeatures::Polygon)
55
- end
56
-
57
- it "should return a Polygon with the same information" do
58
- subject.to_georuby.should == geometry("POLYGON((0 0,1 0,0 1,0 0))")
59
- end
60
-
61
- end
62
-
63
- end
64
-
65
- describe RGeo::Geos::MultiPolygonImpl do
66
-
67
- subject { rgeometry("MULTIPOLYGON (((30 20, 10 40, 45 40, 30 20)), ((15 5, 40 10, 10 20, 5 10, 15 5)))") }
68
-
69
- describe "#to_georuby" do
70
-
71
- it "should return a GeoRuby::SimpleFeatures::MultiPolygon" do
72
- subject.to_georuby.should be_instance_of(GeoRuby::SimpleFeatures::MultiPolygon)
73
- end
74
-
75
- it "should return a MultiPolygon with the same information" do
76
- subject.to_georuby.should == geometry("MULTIPOLYGON (((30 20, 10 40, 45 40, 30 20)), ((15 5, 40 10, 10 20, 5 10, 15 5)))")
77
- end
78
-
79
- end
80
-
81
- end