Sha256: 820f2b41f05a82c300be51a2dd83d558713fbc5f8d407de28eecbff1e4b0dd7e
Contents?: true
Size: 1.65 KB
Versions: 3
Compression:
Stored size: 1.65 KB
Contents
require "spec_helper" describe GeoRuby::SimpleFeatures::LinearRing do let(:result) { rgeo_factory.linear_ring([rgeo_point(0.0, 0.0), rgeo_point(2.0, 1.0), rgeo_point(3.0, 2.0), rgeo_point(0.0, 0.0)])} describe "to_rgeo" do it "should create a RGeo::Feature::LinearRing" do line = linear_ring(point(0,0), point(2,1), point(3,2), point(0,0)) line.to_rgeo.should == result end it "should create a RGeo::Feature::LinearRing if the georuby linear ring is not closed" do line = linear_ring(point(0,0), point(2,1), point(3,2)) line.to_rgeo.should == result end end describe ".from_points" do it "should be closed even if last point is missing" do GeoRuby::SimpleFeatures::LinearRing.from_points(points("0 0,1 1,0 0")).should be_closed end it "should accept already closed line" do GeoRuby::SimpleFeatures::LinearRing.from_points(points("0 0,1 1,0 0")).should == line_string("0 0,1 1,0 0") end end describe ".from_coordinates" do it "should be closed even if last point is missing" do GeoRuby::SimpleFeatures::LinearRing.from_coordinates([[0,0],[1,1],[0,0]]).should be_closed end it "should accept already closed line" do GeoRuby::SimpleFeatures::LinearRing.from_coordinates([[0,0],[1,1],[0,0]]).should == line_string("0 0,1 1,0 0") end end it "should close linear rings parsed from ekt" do polygon("(0 0,1 1)").rings.first.should be_closed end it "should close linear rings parsed from ekb" do ewkb_polygon = GeoRuby::SimpleFeatures::Geometry.from_ewkb(polygon("(0 0,1 1,0 0)").as_ewkb) ewkb_polygon.rings.first.should be_closed end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
georuby-ext-0.0.5 | spec/lib/georuby/linear_ring_spec.rb |
georuby-ext-0.0.4 | spec/lib/georuby/linear_ring_spec.rb |
georuby-ext-0.0.3 | spec/lib/georuby/linear_ring_spec.rb |