rgeo-dschee 0.5.4
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.
- checksums.yaml +7 -0
- data/LICENSE.txt +29 -0
- data/ext/geos_c_impl/coordinates.c +65 -0
- data/ext/geos_c_impl/coordinates.h +2 -0
- data/ext/geos_c_impl/extconf.rb +43 -0
- data/ext/geos_c_impl/factory.c +995 -0
- data/ext/geos_c_impl/factory.h +238 -0
- data/ext/geos_c_impl/geometry.c +1093 -0
- data/ext/geos_c_impl/geometry.h +23 -0
- data/ext/geos_c_impl/geometry_collection.c +757 -0
- data/ext/geos_c_impl/geometry_collection.h +46 -0
- data/ext/geos_c_impl/line_string.c +675 -0
- data/ext/geos_c_impl/line_string.h +32 -0
- data/ext/geos_c_impl/main.c +40 -0
- data/ext/geos_c_impl/point.c +236 -0
- data/ext/geos_c_impl/point.h +30 -0
- data/ext/geos_c_impl/polygon.c +359 -0
- data/ext/geos_c_impl/polygon.h +43 -0
- data/ext/geos_c_impl/preface.h +38 -0
- data/ext/proj4_c_impl/extconf.rb +62 -0
- data/ext/proj4_c_impl/main.c +315 -0
- data/lib/rgeo.rb +89 -0
- data/lib/rgeo/cartesian.rb +25 -0
- data/lib/rgeo/cartesian/analysis.rb +77 -0
- data/lib/rgeo/cartesian/bounding_box.rb +398 -0
- data/lib/rgeo/cartesian/calculations.rb +113 -0
- data/lib/rgeo/cartesian/factory.rb +347 -0
- data/lib/rgeo/cartesian/feature_classes.rb +100 -0
- data/lib/rgeo/cartesian/feature_methods.rb +88 -0
- data/lib/rgeo/cartesian/interface.rb +135 -0
- data/lib/rgeo/coord_sys.rb +43 -0
- data/lib/rgeo/coord_sys/cs/entities.rb +1315 -0
- data/lib/rgeo/coord_sys/cs/factories.rb +148 -0
- data/lib/rgeo/coord_sys/cs/wkt_parser.rb +272 -0
- data/lib/rgeo/coord_sys/proj4.rb +293 -0
- data/lib/rgeo/coord_sys/srs_database/interface.rb +115 -0
- data/lib/rgeo/coord_sys/srs_database/proj4_data.rb +140 -0
- data/lib/rgeo/coord_sys/srs_database/sr_org.rb +62 -0
- data/lib/rgeo/coord_sys/srs_database/url_reader.rb +63 -0
- data/lib/rgeo/error.rb +27 -0
- data/lib/rgeo/feature.rb +54 -0
- data/lib/rgeo/feature/curve.rb +111 -0
- data/lib/rgeo/feature/factory.rb +278 -0
- data/lib/rgeo/feature/factory_generator.rb +96 -0
- data/lib/rgeo/feature/geometry.rb +624 -0
- data/lib/rgeo/feature/geometry_collection.rb +95 -0
- data/lib/rgeo/feature/line.rb +26 -0
- data/lib/rgeo/feature/line_string.rb +60 -0
- data/lib/rgeo/feature/linear_ring.rb +26 -0
- data/lib/rgeo/feature/mixins.rb +143 -0
- data/lib/rgeo/feature/multi_curve.rb +71 -0
- data/lib/rgeo/feature/multi_line_string.rb +26 -0
- data/lib/rgeo/feature/multi_point.rb +33 -0
- data/lib/rgeo/feature/multi_polygon.rb +57 -0
- data/lib/rgeo/feature/multi_surface.rb +73 -0
- data/lib/rgeo/feature/point.rb +84 -0
- data/lib/rgeo/feature/polygon.rb +97 -0
- data/lib/rgeo/feature/surface.rb +79 -0
- data/lib/rgeo/feature/types.rb +284 -0
- data/lib/rgeo/geographic.rb +40 -0
- data/lib/rgeo/geographic/factory.rb +450 -0
- data/lib/rgeo/geographic/interface.rb +489 -0
- data/lib/rgeo/geographic/proj4_projector.rb +58 -0
- data/lib/rgeo/geographic/projected_feature_classes.rb +107 -0
- data/lib/rgeo/geographic/projected_feature_methods.rb +212 -0
- data/lib/rgeo/geographic/projected_window.rb +383 -0
- data/lib/rgeo/geographic/simple_mercator_projector.rb +110 -0
- data/lib/rgeo/geographic/spherical_feature_classes.rb +100 -0
- data/lib/rgeo/geographic/spherical_feature_methods.rb +134 -0
- data/lib/rgeo/geographic/spherical_math.rb +188 -0
- data/lib/rgeo/geos.rb +89 -0
- data/lib/rgeo/geos/capi_factory.rb +470 -0
- data/lib/rgeo/geos/capi_feature_classes.rb +129 -0
- data/lib/rgeo/geos/ffi_factory.rb +592 -0
- data/lib/rgeo/geos/ffi_feature_classes.rb +83 -0
- data/lib/rgeo/geos/ffi_feature_methods.rb +574 -0
- data/lib/rgeo/geos/interface.rb +202 -0
- data/lib/rgeo/geos/utils.rb +74 -0
- data/lib/rgeo/geos/zm_factory.rb +405 -0
- data/lib/rgeo/geos/zm_feature_classes.rb +80 -0
- data/lib/rgeo/geos/zm_feature_methods.rb +344 -0
- data/lib/rgeo/impl_helper.rb +19 -0
- data/lib/rgeo/impl_helper/basic_geometry_collection_methods.rb +185 -0
- data/lib/rgeo/impl_helper/basic_geometry_methods.rb +61 -0
- data/lib/rgeo/impl_helper/basic_line_string_methods.rb +146 -0
- data/lib/rgeo/impl_helper/basic_point_methods.rb +104 -0
- data/lib/rgeo/impl_helper/basic_polygon_methods.rb +87 -0
- data/lib/rgeo/impl_helper/math.rb +14 -0
- data/lib/rgeo/impl_helper/utils.rb +29 -0
- data/lib/rgeo/version.rb +3 -0
- data/lib/rgeo/wkrep.rb +37 -0
- data/lib/rgeo/wkrep/wkb_generator.rb +201 -0
- data/lib/rgeo/wkrep/wkb_parser.rb +251 -0
- data/lib/rgeo/wkrep/wkt_generator.rb +207 -0
- data/lib/rgeo/wkrep/wkt_parser.rb +415 -0
- data/lib/rgeo/yaml.rb +23 -0
- data/test/cartesian_analysis_test.rb +65 -0
- data/test/cartesian_bbox_test.rb +123 -0
- data/test/common/factory_tests.rb +78 -0
- data/test/common/geometry_collection_tests.rb +237 -0
- data/test/common/line_string_tests.rb +330 -0
- data/test/common/multi_line_string_tests.rb +182 -0
- data/test/common/multi_point_tests.rb +200 -0
- data/test/common/multi_polygon_tests.rb +191 -0
- data/test/common/point_tests.rb +370 -0
- data/test/common/polygon_tests.rb +261 -0
- data/test/coord_sys/ogc_cs_test.rb +342 -0
- data/test/coord_sys/proj4_srs_data_test.rb +41 -0
- data/test/coord_sys/proj4_test.rb +150 -0
- data/test/coord_sys/sr_org_test.rb +32 -0
- data/test/coord_sys/url_reader_test.rb +42 -0
- data/test/geos_capi/factory_test.rb +31 -0
- data/test/geos_capi/geometry_collection_test.rb +24 -0
- data/test/geos_capi/line_string_test.rb +24 -0
- data/test/geos_capi/misc_test.rb +116 -0
- data/test/geos_capi/multi_line_string_test.rb +24 -0
- data/test/geos_capi/multi_point_test.rb +24 -0
- data/test/geos_capi/multi_polygon_test.rb +39 -0
- data/test/geos_capi/parsing_unparsing_test.rb +40 -0
- data/test/geos_capi/point_test.rb +72 -0
- data/test/geos_capi/polygon_test.rb +154 -0
- data/test/geos_capi/zmfactory_test.rb +57 -0
- data/test/geos_ffi/factory_test.rb +31 -0
- data/test/geos_ffi/geometry_collection_test.rb +24 -0
- data/test/geos_ffi/line_string_test.rb +24 -0
- data/test/geos_ffi/misc_test.rb +63 -0
- data/test/geos_ffi/multi_line_string_test.rb +24 -0
- data/test/geos_ffi/multi_point_test.rb +24 -0
- data/test/geos_ffi/multi_polygon_test.rb +33 -0
- data/test/geos_ffi/parsing_unparsing_test.rb +41 -0
- data/test/geos_ffi/point_test.rb +77 -0
- data/test/geos_ffi/polygon_test.rb +46 -0
- data/test/geos_ffi/zmfactory_test.rb +58 -0
- data/test/mixins_test.rb +141 -0
- data/test/oneoff_test.rb +26 -0
- data/test/projected_geographic/factory_test.rb +25 -0
- data/test/projected_geographic/geometry_collection_test.rb +24 -0
- data/test/projected_geographic/line_string_test.rb +24 -0
- data/test/projected_geographic/multi_line_string_test.rb +26 -0
- data/test/projected_geographic/multi_point_test.rb +30 -0
- data/test/projected_geographic/multi_polygon_test.rb +25 -0
- data/test/projected_geographic/point_test.rb +51 -0
- data/test/projected_geographic/polygon_test.rb +24 -0
- data/test/simple_cartesian/calculations_test.rb +99 -0
- data/test/simple_cartesian/factory_test.rb +27 -0
- data/test/simple_cartesian/geometry_collection_test.rb +30 -0
- data/test/simple_cartesian/line_string_test.rb +31 -0
- data/test/simple_cartesian/multi_line_string_test.rb +28 -0
- data/test/simple_cartesian/multi_point_test.rb +31 -0
- data/test/simple_cartesian/multi_polygon_test.rb +31 -0
- data/test/simple_cartesian/point_test.rb +50 -0
- data/test/simple_cartesian/polygon_test.rb +28 -0
- data/test/simple_mercator/factory_test.rb +25 -0
- data/test/simple_mercator/geometry_collection_test.rb +24 -0
- data/test/simple_mercator/line_string_test.rb +24 -0
- data/test/simple_mercator/multi_line_string_test.rb +26 -0
- data/test/simple_mercator/multi_point_test.rb +29 -0
- data/test/simple_mercator/multi_polygon_test.rb +25 -0
- data/test/simple_mercator/point_test.rb +55 -0
- data/test/simple_mercator/polygon_test.rb +24 -0
- data/test/simple_mercator/window_test.rb +173 -0
- data/test/spherical_geographic/calculations_test.rb +167 -0
- data/test/spherical_geographic/factory_test.rb +27 -0
- data/test/spherical_geographic/geometry_collection_test.rb +31 -0
- data/test/spherical_geographic/line_string_test.rb +31 -0
- data/test/spherical_geographic/multi_line_string_test.rb +29 -0
- data/test/spherical_geographic/multi_point_test.rb +31 -0
- data/test/spherical_geographic/multi_polygon_test.rb +31 -0
- data/test/spherical_geographic/point_test.rb +78 -0
- data/test/spherical_geographic/polygon_test.rb +28 -0
- data/test/types_test.rb +42 -0
- data/test/wkrep/wkb_generator_test.rb +185 -0
- data/test/wkrep/wkb_parser_test.rb +293 -0
- data/test/wkrep/wkt_generator_test.rb +294 -0
- data/test/wkrep/wkt_parser_test.rb +412 -0
- metadata +386 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# -----------------------------------------------------------------------------
|
|
2
|
+
#
|
|
3
|
+
# Tests for the GEOS geometry collection implementation
|
|
4
|
+
#
|
|
5
|
+
# -----------------------------------------------------------------------------
|
|
6
|
+
|
|
7
|
+
require "test/unit"
|
|
8
|
+
require "rgeo"
|
|
9
|
+
|
|
10
|
+
require ::File.expand_path("../common/geometry_collection_tests.rb", ::File.dirname(__FILE__))
|
|
11
|
+
|
|
12
|
+
module RGeo
|
|
13
|
+
module Tests # :nodoc:
|
|
14
|
+
module GeosFFI # :nodoc:
|
|
15
|
+
class TestGeometryCollection < ::Test::Unit::TestCase # :nodoc:
|
|
16
|
+
def create_factory
|
|
17
|
+
::RGeo::Geos.factory(native_interface: :ffi)
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
include ::RGeo::Tests::Common::GeometryCollectionTests
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
end if ::RGeo::Geos.ffi_supported?
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# -----------------------------------------------------------------------------
|
|
2
|
+
#
|
|
3
|
+
# Tests for the GEOS line string implementation
|
|
4
|
+
#
|
|
5
|
+
# -----------------------------------------------------------------------------
|
|
6
|
+
|
|
7
|
+
require "test/unit"
|
|
8
|
+
require "rgeo"
|
|
9
|
+
|
|
10
|
+
require ::File.expand_path("../common/line_string_tests.rb", ::File.dirname(__FILE__))
|
|
11
|
+
|
|
12
|
+
module RGeo
|
|
13
|
+
module Tests # :nodoc:
|
|
14
|
+
module GeosFFI # :nodoc:
|
|
15
|
+
class TestLineString < ::Test::Unit::TestCase # :nodoc:
|
|
16
|
+
def setup
|
|
17
|
+
@factory = ::RGeo::Geos.factory(native_interface: :ffi)
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
include ::RGeo::Tests::Common::LineStringTests
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
end if ::RGeo::Geos.ffi_supported?
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# -----------------------------------------------------------------------------
|
|
2
|
+
#
|
|
3
|
+
# Tests for miscellaneous GEOS stuff
|
|
4
|
+
#
|
|
5
|
+
# -----------------------------------------------------------------------------
|
|
6
|
+
|
|
7
|
+
require "test/unit"
|
|
8
|
+
require "rgeo"
|
|
9
|
+
|
|
10
|
+
module RGeo
|
|
11
|
+
module Tests # :nodoc:
|
|
12
|
+
module GeosFFI # :nodoc:
|
|
13
|
+
class TestMisc < ::Test::Unit::TestCase # :nodoc:
|
|
14
|
+
def setup
|
|
15
|
+
@factory = ::RGeo::Geos.factory(srid: 4326, native_interface: :ffi)
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
def test_empty_geometries_equal
|
|
19
|
+
geom1_ = @factory.collection([])
|
|
20
|
+
geom2_ = @factory.line_string([])
|
|
21
|
+
assert(!geom1_.eql?(geom2_))
|
|
22
|
+
assert(geom1_.equals?(geom2_))
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
def test_prepare
|
|
26
|
+
p1_ = @factory.point(1, 2)
|
|
27
|
+
p2_ = @factory.point(3, 4)
|
|
28
|
+
p3_ = @factory.point(5, 2)
|
|
29
|
+
polygon_ = @factory.polygon(@factory.linear_ring([p1_, p2_, p3_, p1_]))
|
|
30
|
+
assert_equal(false, polygon_.prepared?)
|
|
31
|
+
polygon_.prepare!
|
|
32
|
+
assert_equal(true, polygon_.prepared?)
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
def test_auto_prepare
|
|
36
|
+
p1_ = @factory.point(1, 2)
|
|
37
|
+
p2_ = @factory.point(3, 4)
|
|
38
|
+
p3_ = @factory.point(5, 2)
|
|
39
|
+
polygon_ = @factory.polygon(@factory.linear_ring([p1_, p2_, p3_, p1_]))
|
|
40
|
+
assert_equal(false, polygon_.prepared?)
|
|
41
|
+
polygon_.intersects?(p1_)
|
|
42
|
+
assert_equal(false, polygon_.prepared?)
|
|
43
|
+
polygon_.intersects?(p2_)
|
|
44
|
+
assert_equal(true, polygon_.prepared?)
|
|
45
|
+
|
|
46
|
+
factory_no_auto_prepare_ = ::RGeo::Geos.factory(srid: 4326,
|
|
47
|
+
native_interface: :ffi, auto_prepare: :disabled)
|
|
48
|
+
polygon2_ = factory_no_auto_prepare_.polygon(
|
|
49
|
+
factory_no_auto_prepare_.linear_ring([p1_, p2_, p3_, p1_]))
|
|
50
|
+
assert_equal(false, polygon2_.prepared?)
|
|
51
|
+
polygon2_.intersects?(p1_)
|
|
52
|
+
assert_equal(false, polygon2_.prepared?)
|
|
53
|
+
polygon2_.intersects?(p2_)
|
|
54
|
+
assert_equal(false, polygon2_.prepared?)
|
|
55
|
+
end
|
|
56
|
+
end
|
|
57
|
+
end
|
|
58
|
+
end
|
|
59
|
+
end if ::RGeo::Geos.ffi_supported?
|
|
60
|
+
|
|
61
|
+
unless ::RGeo::Geos.ffi_supported?
|
|
62
|
+
puts "WARNING: FFI-GEOS support not available. Related tests skipped."
|
|
63
|
+
end
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# -----------------------------------------------------------------------------
|
|
2
|
+
#
|
|
3
|
+
# Tests for the GEOS multi line string implementation
|
|
4
|
+
#
|
|
5
|
+
# -----------------------------------------------------------------------------
|
|
6
|
+
|
|
7
|
+
require "test/unit"
|
|
8
|
+
require "rgeo"
|
|
9
|
+
|
|
10
|
+
require ::File.expand_path("../common/multi_line_string_tests.rb", ::File.dirname(__FILE__))
|
|
11
|
+
|
|
12
|
+
module RGeo
|
|
13
|
+
module Tests # :nodoc:
|
|
14
|
+
module GeosFFI # :nodoc:
|
|
15
|
+
class TestMultiLineString < ::Test::Unit::TestCase # :nodoc:
|
|
16
|
+
def create_factory
|
|
17
|
+
::RGeo::Geos.factory(native_interface: :ffi)
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
include ::RGeo::Tests::Common::MultiLineStringTests
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
end if ::RGeo::Geos.ffi_supported?
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# -----------------------------------------------------------------------------
|
|
2
|
+
#
|
|
3
|
+
# Tests for the GEOS multi point implementation
|
|
4
|
+
#
|
|
5
|
+
# -----------------------------------------------------------------------------
|
|
6
|
+
|
|
7
|
+
require "test/unit"
|
|
8
|
+
require "rgeo"
|
|
9
|
+
|
|
10
|
+
require ::File.expand_path("../common/multi_point_tests.rb", ::File.dirname(__FILE__))
|
|
11
|
+
|
|
12
|
+
module RGeo
|
|
13
|
+
module Tests # :nodoc:
|
|
14
|
+
module GeosFFI # :nodoc:
|
|
15
|
+
class TestMultiPoint < ::Test::Unit::TestCase # :nodoc:
|
|
16
|
+
def create_factory(opts_ = {})
|
|
17
|
+
::RGeo::Geos.factory(opts_.merge(native_interface: :ffi))
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
include ::RGeo::Tests::Common::MultiPointTests
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
end if ::RGeo::Geos.ffi_supported?
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# -----------------------------------------------------------------------------
|
|
2
|
+
#
|
|
3
|
+
# Tests for the GEOS multi polygon implementation
|
|
4
|
+
#
|
|
5
|
+
# -----------------------------------------------------------------------------
|
|
6
|
+
|
|
7
|
+
require "test/unit"
|
|
8
|
+
require "rgeo"
|
|
9
|
+
|
|
10
|
+
require ::File.expand_path("../common/multi_polygon_tests.rb", ::File.dirname(__FILE__))
|
|
11
|
+
|
|
12
|
+
module RGeo
|
|
13
|
+
module Tests # :nodoc:
|
|
14
|
+
module GeosFFI # :nodoc:
|
|
15
|
+
class TestMultiPolygon < ::Test::Unit::TestCase # :nodoc:
|
|
16
|
+
def create_factories
|
|
17
|
+
@factory = ::RGeo::Geos.factory(native_interface: :ffi)
|
|
18
|
+
@lenient_factory = ::RGeo::Geos.factory(lenient_multi_polygon_assertions: true,
|
|
19
|
+
native_interface: :ffi)
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
include ::RGeo::Tests::Common::MultiPolygonTests
|
|
23
|
+
|
|
24
|
+
# Centroid of an empty should return an empty collection
|
|
25
|
+
# rather than throw a weird exception out of ffi-geos
|
|
26
|
+
|
|
27
|
+
def test_empty_centroid
|
|
28
|
+
assert_equal(@factory.collection([]), @factory.multi_polygon([]).centroid)
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
end if ::RGeo::Geos.ffi_supported?
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# -----------------------------------------------------------------------------
|
|
2
|
+
#
|
|
3
|
+
# Tests for the GEOS point implementation
|
|
4
|
+
#
|
|
5
|
+
# -----------------------------------------------------------------------------
|
|
6
|
+
|
|
7
|
+
require "test/unit"
|
|
8
|
+
require "rgeo"
|
|
9
|
+
|
|
10
|
+
module RGeo
|
|
11
|
+
module Tests # :nodoc:
|
|
12
|
+
module GeosFFI # :nodoc:
|
|
13
|
+
class TestParsingUnparsing < ::Test::Unit::TestCase # :nodoc:
|
|
14
|
+
def test_wkt_generator_default_floating_point
|
|
15
|
+
# Bug report GH-4
|
|
16
|
+
factory_ = ::RGeo::Geos.factory(native_interface: :ffi)
|
|
17
|
+
point_ = factory_.point(111.99, -40.37)
|
|
18
|
+
assert_equal("POINT (111.99 -40.37)", point_.as_text)
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
def test_wkt_generator_downcase
|
|
22
|
+
factory_ = ::RGeo::Geos.factory(wkt_generator: { convert_case: :lower },
|
|
23
|
+
native_interface: :ffi)
|
|
24
|
+
point_ = factory_.point(1, 1)
|
|
25
|
+
assert_equal("point (1.0 1.0)", point_.as_text)
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
def test_wkt_generator_geos
|
|
29
|
+
factory_ = ::RGeo::Geos.factory(wkt_generator: :geos, native_interface: :ffi)
|
|
30
|
+
point_ = factory_.point(1, 1)
|
|
31
|
+
assert_equal("POINT (1.0000000000000000 1.0000000000000000)", point_.as_text)
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
def test_wkt_parser_default_with_non_geosable_input
|
|
35
|
+
factory_ = ::RGeo::Geos.factory(native_interface: :ffi)
|
|
36
|
+
assert_not_nil(factory_.parse_wkt("Point (1 1)"))
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
end
|
|
41
|
+
end if ::RGeo::Geos.ffi_supported?
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
# -----------------------------------------------------------------------------
|
|
2
|
+
#
|
|
3
|
+
# Tests for the GEOS point implementation
|
|
4
|
+
#
|
|
5
|
+
# -----------------------------------------------------------------------------
|
|
6
|
+
|
|
7
|
+
require "test/unit"
|
|
8
|
+
require "rgeo"
|
|
9
|
+
|
|
10
|
+
require ::File.expand_path("../common/point_tests.rb", ::File.dirname(__FILE__))
|
|
11
|
+
|
|
12
|
+
module RGeo
|
|
13
|
+
module Tests # :nodoc:
|
|
14
|
+
module GeosFFI # :nodoc:
|
|
15
|
+
class TestPoint < ::Test::Unit::TestCase # :nodoc:
|
|
16
|
+
def setup
|
|
17
|
+
@factory = ::RGeo::Geos.factory(native_interface: :ffi, buffer_resolution: 8)
|
|
18
|
+
@zfactory = ::RGeo::Geos.factory(has_z_coordinate: true, native_interface: :ffi)
|
|
19
|
+
@mfactory = ::RGeo::Geos.factory(has_m_coordinate: true, native_interface: :ffi)
|
|
20
|
+
@zmfactory = ::RGeo::Geos.factory(has_z_coordinate: true, has_m_coordinate: true,
|
|
21
|
+
native_interface: :ffi)
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
include ::RGeo::Tests::Common::PointTests
|
|
25
|
+
|
|
26
|
+
# TEMP until ffi-geos 0.0.5 is released
|
|
27
|
+
undef_method :test_buffer
|
|
28
|
+
# END_TEMP
|
|
29
|
+
|
|
30
|
+
def test_is_geos
|
|
31
|
+
point_ = @factory.point(21, -22)
|
|
32
|
+
assert_equal(true, ::RGeo::Geos.is_geos?(point_))
|
|
33
|
+
assert_equal(false, ::RGeo::Geos.is_capi_geos?(point_))
|
|
34
|
+
assert_equal(true, ::RGeo::Geos.is_ffi_geos?(point_))
|
|
35
|
+
point2_ = @zmfactory.point(21, -22, 0, 0)
|
|
36
|
+
assert_equal(true, ::RGeo::Geos.is_geos?(point2_))
|
|
37
|
+
assert_equal(false, ::RGeo::Geos.is_capi_geos?(point2_))
|
|
38
|
+
assert_equal(true, ::RGeo::Geos.is_ffi_geos?(point2_))
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
def test_has_no_projection
|
|
42
|
+
point_ = @factory.point(21, -22)
|
|
43
|
+
assert(!point_.respond_to?(:projection))
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
def test_srid
|
|
47
|
+
point_ = @factory.point(11, 12)
|
|
48
|
+
assert_equal(0, point_.srid)
|
|
49
|
+
end
|
|
50
|
+
|
|
51
|
+
def test_distance
|
|
52
|
+
point1_ = @factory.point(11, 12)
|
|
53
|
+
point2_ = @factory.point(11, 12)
|
|
54
|
+
point3_ = @factory.point(13, 12)
|
|
55
|
+
assert_equal(0, point1_.distance(point2_))
|
|
56
|
+
assert_equal(2, point1_.distance(point3_))
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
if defined?(::Encoding)
|
|
60
|
+
|
|
61
|
+
def test_as_text_encoding
|
|
62
|
+
factory_ = ::RGeo::Geos.factory(native_interface: :ffi, wkt_generator: :geos)
|
|
63
|
+
point_ = factory_.point(11, 12)
|
|
64
|
+
assert_equal(::Encoding::US_ASCII, point_.as_text.encoding)
|
|
65
|
+
end
|
|
66
|
+
|
|
67
|
+
def test_as_binary_encoding
|
|
68
|
+
factory_ = ::RGeo::Geos.factory(native_interface: :ffi, wkb_generator: :geos)
|
|
69
|
+
point_ = factory_.point(11, 12)
|
|
70
|
+
assert_equal(::Encoding::ASCII_8BIT, point_.as_binary.encoding)
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
end
|
|
74
|
+
end
|
|
75
|
+
end
|
|
76
|
+
end
|
|
77
|
+
end if ::RGeo::Geos.ffi_supported?
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# -----------------------------------------------------------------------------
|
|
2
|
+
#
|
|
3
|
+
# Tests for the GEOS polygon implementation
|
|
4
|
+
#
|
|
5
|
+
# -----------------------------------------------------------------------------
|
|
6
|
+
|
|
7
|
+
require "test/unit"
|
|
8
|
+
require "rgeo"
|
|
9
|
+
|
|
10
|
+
require ::File.expand_path("../common/polygon_tests.rb", ::File.dirname(__FILE__))
|
|
11
|
+
|
|
12
|
+
module RGeo
|
|
13
|
+
module Tests # :nodoc:
|
|
14
|
+
module GeosFFI # :nodoc:
|
|
15
|
+
class TestPolygon < ::Test::Unit::TestCase # :nodoc:
|
|
16
|
+
def setup
|
|
17
|
+
@factory = ::RGeo::Geos.factory(native_interface: :ffi)
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
include ::RGeo::Tests::Common::PolygonTests
|
|
21
|
+
|
|
22
|
+
def test_intersection
|
|
23
|
+
point1_ = @factory.point(0, 0)
|
|
24
|
+
point2_ = @factory.point(0, 2)
|
|
25
|
+
point3_ = @factory.point(2, 2)
|
|
26
|
+
point4_ = @factory.point(2, 0)
|
|
27
|
+
poly1_ = @factory.polygon(@factory.linear_ring([point1_, point2_, point3_, point4_]))
|
|
28
|
+
poly2_ = @factory.polygon(@factory.linear_ring([point1_, point2_, point4_]))
|
|
29
|
+
poly3_ = poly1_.intersection(poly2_)
|
|
30
|
+
assert_equal(poly2_, poly3_)
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
def test_union
|
|
34
|
+
point1_ = @factory.point(0, 0)
|
|
35
|
+
point2_ = @factory.point(0, 2)
|
|
36
|
+
point3_ = @factory.point(2, 2)
|
|
37
|
+
point4_ = @factory.point(2, 0)
|
|
38
|
+
poly1_ = @factory.polygon(@factory.linear_ring([point1_, point2_, point3_, point4_]))
|
|
39
|
+
poly2_ = @factory.polygon(@factory.linear_ring([point1_, point2_, point4_]))
|
|
40
|
+
poly3_ = poly1_.union(poly2_)
|
|
41
|
+
assert_equal(poly1_, poly3_)
|
|
42
|
+
end
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
end if ::RGeo::Geos.ffi_supported?
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# -----------------------------------------------------------------------------
|
|
2
|
+
#
|
|
3
|
+
# Tests for the GEOS point implementation
|
|
4
|
+
#
|
|
5
|
+
# -----------------------------------------------------------------------------
|
|
6
|
+
|
|
7
|
+
require "test/unit"
|
|
8
|
+
require "rgeo"
|
|
9
|
+
|
|
10
|
+
require ::File.expand_path("../common/factory_tests.rb", ::File.dirname(__FILE__))
|
|
11
|
+
|
|
12
|
+
module RGeo
|
|
13
|
+
module Tests # :nodoc:
|
|
14
|
+
module GeosFFI # :nodoc:
|
|
15
|
+
class TestZMFactory < ::Test::Unit::TestCase # :nodoc:
|
|
16
|
+
def setup
|
|
17
|
+
@factory = ::RGeo::Geos.factory(has_z_coordinate: true, has_m_coordinate: true,
|
|
18
|
+
srid: 1000, buffer_resolution: 2, native_interface: :ffi)
|
|
19
|
+
@srid = 1000
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
include ::RGeo::Tests::Common::FactoryTests
|
|
23
|
+
|
|
24
|
+
def test_is_geos_factory
|
|
25
|
+
assert_equal(true, ::RGeo::Geos.is_geos?(@factory))
|
|
26
|
+
assert_equal(false, ::RGeo::Geos.is_capi_geos?(@factory))
|
|
27
|
+
assert_equal(true, ::RGeo::Geos.is_ffi_geos?(@factory))
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
def test_factory_parts
|
|
31
|
+
assert_equal(1000, @factory.srid)
|
|
32
|
+
assert_equal(1000, @factory.z_factory.srid)
|
|
33
|
+
assert_equal(1000, @factory.m_factory.srid)
|
|
34
|
+
assert_equal(2, @factory.buffer_resolution)
|
|
35
|
+
assert_equal(2, @factory.z_factory.buffer_resolution)
|
|
36
|
+
assert_equal(2, @factory.m_factory.buffer_resolution)
|
|
37
|
+
assert(@factory.property(:has_z_coordinate))
|
|
38
|
+
assert(@factory.property(:has_m_coordinate))
|
|
39
|
+
assert(@factory.z_factory.property(:has_z_coordinate))
|
|
40
|
+
assert(!@factory.z_factory.property(:has_m_coordinate))
|
|
41
|
+
assert(!@factory.m_factory.property(:has_z_coordinate))
|
|
42
|
+
assert(@factory.m_factory.property(:has_m_coordinate))
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
def test_4d_point
|
|
46
|
+
point_ = @factory.point(1, 2, 3, 4)
|
|
47
|
+
assert_equal(Feature::Point, point_.geometry_type)
|
|
48
|
+
assert_equal(3, point_.z)
|
|
49
|
+
assert_equal(4, point_.m)
|
|
50
|
+
assert_equal(3, point_.z_geometry.z)
|
|
51
|
+
assert_nil(point_.z_geometry.m)
|
|
52
|
+
assert_nil(point_.m_geometry.z)
|
|
53
|
+
assert_equal(4, point_.m_geometry.m)
|
|
54
|
+
end
|
|
55
|
+
end
|
|
56
|
+
end
|
|
57
|
+
end
|
|
58
|
+
end if ::RGeo::Geos.ffi_supported?
|
data/test/mixins_test.rb
ADDED
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
# -----------------------------------------------------------------------------
|
|
2
|
+
#
|
|
3
|
+
# Tests for mixin system
|
|
4
|
+
#
|
|
5
|
+
# -----------------------------------------------------------------------------
|
|
6
|
+
|
|
7
|
+
require "test/unit"
|
|
8
|
+
require "rgeo"
|
|
9
|
+
|
|
10
|
+
module RGeo
|
|
11
|
+
module Tests # :nodoc:
|
|
12
|
+
class TestMixins < ::Test::Unit::TestCase # :nodoc:
|
|
13
|
+
module Mixin1 # :nodoc:
|
|
14
|
+
def mixin1_method
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
module Mixin2 # :nodoc:
|
|
19
|
+
def mixin2_method
|
|
20
|
+
end
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
::RGeo::Feature::MixinCollection::GLOBAL.for_type(::RGeo::Feature::Point).add(Mixin1)
|
|
24
|
+
::RGeo::Feature::MixinCollection::GLOBAL.for_type(::RGeo::Feature::GeometryCollection).add(Mixin1)
|
|
25
|
+
::RGeo::Feature::MixinCollection::GLOBAL.for_type(::RGeo::Feature::MultiCurve).add(Mixin2)
|
|
26
|
+
|
|
27
|
+
def test_basic_mixin_cartesian
|
|
28
|
+
factory_ = ::RGeo::Cartesian.simple_factory
|
|
29
|
+
assert_equal(::RGeo::Cartesian::PointImpl, factory_.point(1, 1).class)
|
|
30
|
+
assert(factory_.point(1, 1).class.include?(Mixin1))
|
|
31
|
+
assert(!factory_.point(1, 1).class.include?(Mixin2))
|
|
32
|
+
assert(factory_.point(1, 1).respond_to?(:mixin1_method))
|
|
33
|
+
assert(!factory_.point(1, 1).respond_to?(:mixin2_method))
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
def test_inherited_mixin_cartesian
|
|
37
|
+
factory_ = ::RGeo::Cartesian.simple_factory
|
|
38
|
+
assert(factory_.collection([]).class.include?(Mixin1))
|
|
39
|
+
assert(!factory_.collection([]).class.include?(Mixin2))
|
|
40
|
+
assert(factory_.collection([]).respond_to?(:mixin1_method))
|
|
41
|
+
assert(!factory_.collection([]).respond_to?(:mixin2_method))
|
|
42
|
+
assert(factory_.multi_line_string([]).class.include?(Mixin1))
|
|
43
|
+
assert(factory_.multi_line_string([]).class.include?(Mixin2))
|
|
44
|
+
assert(factory_.multi_line_string([]).respond_to?(:mixin1_method))
|
|
45
|
+
assert(factory_.multi_line_string([]).respond_to?(:mixin2_method))
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
if ::RGeo::Geos.capi_supported?
|
|
49
|
+
|
|
50
|
+
def test_basic_mixin_geos_capi
|
|
51
|
+
factory_ = ::RGeo::Geos.factory(native_interface: :capi)
|
|
52
|
+
assert_equal(::RGeo::Geos::CAPIPointImpl, factory_.point(1, 1).class)
|
|
53
|
+
assert(factory_.point(1, 1).class.include?(Mixin1))
|
|
54
|
+
assert(!factory_.point(1, 1).class.include?(Mixin2))
|
|
55
|
+
assert(factory_.point(1, 1).respond_to?(:mixin1_method))
|
|
56
|
+
assert(!factory_.point(1, 1).respond_to?(:mixin2_method))
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
def test_inherited_mixin_geos_capi
|
|
60
|
+
factory_ = ::RGeo::Geos.factory(native_interface: :capi)
|
|
61
|
+
assert(factory_.collection([]).class.include?(Mixin1))
|
|
62
|
+
assert(!factory_.collection([]).class.include?(Mixin2))
|
|
63
|
+
assert(factory_.collection([]).respond_to?(:mixin1_method))
|
|
64
|
+
assert(!factory_.collection([]).respond_to?(:mixin2_method))
|
|
65
|
+
assert(factory_.multi_line_string([]).class.include?(Mixin1))
|
|
66
|
+
assert(factory_.multi_line_string([]).class.include?(Mixin2))
|
|
67
|
+
assert(factory_.multi_line_string([]).respond_to?(:mixin1_method))
|
|
68
|
+
assert(factory_.multi_line_string([]).respond_to?(:mixin2_method))
|
|
69
|
+
end
|
|
70
|
+
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
if ::RGeo::Geos.ffi_supported?
|
|
74
|
+
|
|
75
|
+
def test_basic_mixin_geos_ffi
|
|
76
|
+
factory_ = ::RGeo::Geos.factory(native_interface: :ffi)
|
|
77
|
+
assert_equal(::RGeo::Geos::FFIPointImpl, factory_.point(1, 1).class)
|
|
78
|
+
assert(factory_.point(1, 1).class.include?(Mixin1))
|
|
79
|
+
assert(!factory_.point(1, 1).class.include?(Mixin2))
|
|
80
|
+
assert(factory_.point(1, 1).respond_to?(:mixin1_method))
|
|
81
|
+
assert(!factory_.point(1, 1).respond_to?(:mixin2_method))
|
|
82
|
+
end
|
|
83
|
+
|
|
84
|
+
def test_inherited_mixin_geos_ffi
|
|
85
|
+
factory_ = ::RGeo::Geos.factory(native_interface: :ffi)
|
|
86
|
+
assert(factory_.collection([]).class.include?(Mixin1))
|
|
87
|
+
assert(!factory_.collection([]).class.include?(Mixin2))
|
|
88
|
+
assert(factory_.collection([]).respond_to?(:mixin1_method))
|
|
89
|
+
assert(!factory_.collection([]).respond_to?(:mixin2_method))
|
|
90
|
+
assert(factory_.multi_line_string([]).class.include?(Mixin1))
|
|
91
|
+
assert(factory_.multi_line_string([]).class.include?(Mixin2))
|
|
92
|
+
assert(factory_.multi_line_string([]).respond_to?(:mixin1_method))
|
|
93
|
+
assert(factory_.multi_line_string([]).respond_to?(:mixin2_method))
|
|
94
|
+
end
|
|
95
|
+
|
|
96
|
+
end
|
|
97
|
+
|
|
98
|
+
def test_basic_mixin_spherical
|
|
99
|
+
factory_ = ::RGeo::Geographic.spherical_factory
|
|
100
|
+
assert_equal(::RGeo::Geographic::SphericalPointImpl, factory_.point(1, 1).class)
|
|
101
|
+
assert(factory_.point(1, 1).class.include?(Mixin1))
|
|
102
|
+
assert(!factory_.point(1, 1).class.include?(Mixin2))
|
|
103
|
+
assert(factory_.point(1, 1).respond_to?(:mixin1_method))
|
|
104
|
+
assert(!factory_.point(1, 1).respond_to?(:mixin2_method))
|
|
105
|
+
end
|
|
106
|
+
|
|
107
|
+
def test_inherited_mixin_spherical
|
|
108
|
+
factory_ = ::RGeo::Geographic.spherical_factory
|
|
109
|
+
assert(factory_.collection([]).class.include?(Mixin1))
|
|
110
|
+
assert(!factory_.collection([]).class.include?(Mixin2))
|
|
111
|
+
assert(factory_.collection([]).respond_to?(:mixin1_method))
|
|
112
|
+
assert(!factory_.collection([]).respond_to?(:mixin2_method))
|
|
113
|
+
assert(factory_.multi_line_string([]).class.include?(Mixin1))
|
|
114
|
+
assert(factory_.multi_line_string([]).class.include?(Mixin2))
|
|
115
|
+
assert(factory_.multi_line_string([]).respond_to?(:mixin1_method))
|
|
116
|
+
assert(factory_.multi_line_string([]).respond_to?(:mixin2_method))
|
|
117
|
+
end
|
|
118
|
+
|
|
119
|
+
def test_basic_mixin_simple_mercator
|
|
120
|
+
factory_ = ::RGeo::Geographic.simple_mercator_factory
|
|
121
|
+
assert_equal(::RGeo::Geographic::ProjectedPointImpl, factory_.point(1, 1).class)
|
|
122
|
+
assert(factory_.point(1, 1).class.include?(Mixin1))
|
|
123
|
+
assert(!factory_.point(1, 1).class.include?(Mixin2))
|
|
124
|
+
assert(factory_.point(1, 1).respond_to?(:mixin1_method))
|
|
125
|
+
assert(!factory_.point(1, 1).respond_to?(:mixin2_method))
|
|
126
|
+
end
|
|
127
|
+
|
|
128
|
+
def test_inherited_mixin_simple_mercator
|
|
129
|
+
factory_ = ::RGeo::Geographic.simple_mercator_factory
|
|
130
|
+
assert(factory_.collection([]).class.include?(Mixin1))
|
|
131
|
+
assert(!factory_.collection([]).class.include?(Mixin2))
|
|
132
|
+
assert(factory_.collection([]).respond_to?(:mixin1_method))
|
|
133
|
+
assert(!factory_.collection([]).respond_to?(:mixin2_method))
|
|
134
|
+
assert(factory_.multi_line_string([]).class.include?(Mixin1))
|
|
135
|
+
assert(factory_.multi_line_string([]).class.include?(Mixin2))
|
|
136
|
+
assert(factory_.multi_line_string([]).respond_to?(:mixin1_method))
|
|
137
|
+
assert(factory_.multi_line_string([]).respond_to?(:mixin2_method))
|
|
138
|
+
end
|
|
139
|
+
end
|
|
140
|
+
end
|
|
141
|
+
end
|