schleyfox-rgeo 0.2.5
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.
- data/History.rdoc +199 -0
- data/README.rdoc +172 -0
- data/Spatial_Programming_With_RGeo.rdoc +440 -0
- data/Version +1 -0
- data/ext/geos_c_impl/extconf.rb +84 -0
- data/ext/geos_c_impl/factory.c +468 -0
- data/ext/geos_c_impl/factory.h +224 -0
- data/ext/geos_c_impl/geometry.c +705 -0
- data/ext/geos_c_impl/geometry.h +55 -0
- data/ext/geos_c_impl/geometry_collection.c +482 -0
- data/ext/geos_c_impl/geometry_collection.h +69 -0
- data/ext/geos_c_impl/line_string.c +509 -0
- data/ext/geos_c_impl/line_string.h +64 -0
- data/ext/geos_c_impl/main.c +70 -0
- data/ext/geos_c_impl/point.c +193 -0
- data/ext/geos_c_impl/point.h +62 -0
- data/ext/geos_c_impl/polygon.c +265 -0
- data/ext/geos_c_impl/polygon.h +66 -0
- data/ext/geos_c_impl/preface.h +50 -0
- data/ext/proj4_c_impl/extconf.rb +88 -0
- data/ext/proj4_c_impl/main.c +271 -0
- data/lib/rgeo.rb +124 -0
- data/lib/rgeo/cartesian.rb +60 -0
- data/lib/rgeo/cartesian/analysis.rb +118 -0
- data/lib/rgeo/cartesian/bounding_box.rb +337 -0
- data/lib/rgeo/cartesian/calculations.rb +161 -0
- data/lib/rgeo/cartesian/factory.rb +209 -0
- data/lib/rgeo/cartesian/feature_classes.rb +173 -0
- data/lib/rgeo/cartesian/feature_methods.rb +106 -0
- data/lib/rgeo/cartesian/interface.rb +150 -0
- data/lib/rgeo/coord_sys.rb +79 -0
- data/lib/rgeo/coord_sys/cs/entities.rb +1524 -0
- data/lib/rgeo/coord_sys/cs/factories.rb +208 -0
- data/lib/rgeo/coord_sys/cs/wkt_parser.rb +308 -0
- data/lib/rgeo/coord_sys/proj4.rb +312 -0
- data/lib/rgeo/coord_sys/srs_database/active_record_table.rb +194 -0
- data/lib/rgeo/coord_sys/srs_database/interface.rb +165 -0
- data/lib/rgeo/coord_sys/srs_database/proj4_data.rb +188 -0
- data/lib/rgeo/coord_sys/srs_database/sr_org.rb +108 -0
- data/lib/rgeo/coord_sys/srs_database/url_reader.rb +108 -0
- data/lib/rgeo/error.rb +63 -0
- data/lib/rgeo/feature.rb +88 -0
- data/lib/rgeo/feature/curve.rb +156 -0
- data/lib/rgeo/feature/factory.rb +332 -0
- data/lib/rgeo/feature/factory_generator.rb +138 -0
- data/lib/rgeo/feature/geometry.rb +614 -0
- data/lib/rgeo/feature/geometry_collection.rb +129 -0
- data/lib/rgeo/feature/line.rb +66 -0
- data/lib/rgeo/feature/line_string.rb +102 -0
- data/lib/rgeo/feature/linear_ring.rb +66 -0
- data/lib/rgeo/feature/multi_curve.rb +113 -0
- data/lib/rgeo/feature/multi_line_string.rb +66 -0
- data/lib/rgeo/feature/multi_point.rb +73 -0
- data/lib/rgeo/feature/multi_polygon.rb +97 -0
- data/lib/rgeo/feature/multi_surface.rb +116 -0
- data/lib/rgeo/feature/point.rb +120 -0
- data/lib/rgeo/feature/polygon.rb +141 -0
- data/lib/rgeo/feature/surface.rb +122 -0
- data/lib/rgeo/feature/types.rb +305 -0
- data/lib/rgeo/geographic.rb +75 -0
- data/lib/rgeo/geographic/factory.rb +287 -0
- data/lib/rgeo/geographic/interface.rb +410 -0
- data/lib/rgeo/geographic/proj4_projector.rb +98 -0
- data/lib/rgeo/geographic/projected_feature_classes.rb +213 -0
- data/lib/rgeo/geographic/projected_feature_methods.rb +228 -0
- data/lib/rgeo/geographic/projected_window.rb +467 -0
- data/lib/rgeo/geographic/simple_mercator_projector.rb +157 -0
- data/lib/rgeo/geographic/spherical_feature_classes.rb +212 -0
- data/lib/rgeo/geographic/spherical_feature_methods.rb +97 -0
- data/lib/rgeo/geographic/spherical_math.rb +206 -0
- data/lib/rgeo/geos.rb +72 -0
- data/lib/rgeo/geos/factory.rb +301 -0
- data/lib/rgeo/geos/impl_additions.rb +76 -0
- data/lib/rgeo/geos/interface.rb +139 -0
- data/lib/rgeo/geos/zm_factory.rb +275 -0
- data/lib/rgeo/geos/zm_impl.rb +432 -0
- data/lib/rgeo/impl_helper.rb +53 -0
- data/lib/rgeo/impl_helper/basic_geometry_collection_methods.rb +235 -0
- data/lib/rgeo/impl_helper/basic_geometry_methods.rb +85 -0
- data/lib/rgeo/impl_helper/basic_line_string_methods.rb +197 -0
- data/lib/rgeo/impl_helper/basic_point_methods.rb +138 -0
- data/lib/rgeo/impl_helper/basic_polygon_methods.rb +121 -0
- data/lib/rgeo/impl_helper/math.rb +50 -0
- data/lib/rgeo/version.rb +52 -0
- data/lib/rgeo/wkrep.rb +72 -0
- data/lib/rgeo/wkrep/wkb_generator.rb +267 -0
- data/lib/rgeo/wkrep/wkb_parser.rb +315 -0
- data/lib/rgeo/wkrep/wkt_generator.rb +275 -0
- data/lib/rgeo/wkrep/wkt_parser.rb +496 -0
- data/test/common/geometry_collection_tests.rb +238 -0
- data/test/common/line_string_tests.rb +324 -0
- data/test/common/multi_line_string_tests.rb +209 -0
- data/test/common/multi_point_tests.rb +201 -0
- data/test/common/multi_polygon_tests.rb +208 -0
- data/test/common/point_tests.rb +331 -0
- data/test/common/polygon_tests.rb +232 -0
- data/test/coord_sys/tc_active_record_table.rb +102 -0
- data/test/coord_sys/tc_ogc_cs.rb +356 -0
- data/test/coord_sys/tc_proj4.rb +138 -0
- data/test/coord_sys/tc_proj4_srs_data.rb +76 -0
- data/test/coord_sys/tc_sr_org.rb +70 -0
- data/test/coord_sys/tc_url_reader.rb +82 -0
- data/test/geos/tc_factory.rb +91 -0
- data/test/geos/tc_geometry_collection.rb +62 -0
- data/test/geos/tc_line_string.rb +62 -0
- data/test/geos/tc_misc.rb +72 -0
- data/test/geos/tc_multi_line_string.rb +62 -0
- data/test/geos/tc_multi_point.rb +62 -0
- data/test/geos/tc_multi_polygon.rb +63 -0
- data/test/geos/tc_point.rb +86 -0
- data/test/geos/tc_polygon.rb +86 -0
- data/test/geos/tc_zmfactory.rb +85 -0
- data/test/projected_geographic/tc_geometry_collection.rb +62 -0
- data/test/projected_geographic/tc_line_string.rb +62 -0
- data/test/projected_geographic/tc_multi_line_string.rb +62 -0
- data/test/projected_geographic/tc_multi_point.rb +62 -0
- data/test/projected_geographic/tc_multi_polygon.rb +63 -0
- data/test/projected_geographic/tc_point.rb +93 -0
- data/test/projected_geographic/tc_polygon.rb +62 -0
- data/test/simple_cartesian/tc_calculations.rb +145 -0
- data/test/simple_cartesian/tc_geometry_collection.rb +69 -0
- data/test/simple_cartesian/tc_line_string.rb +70 -0
- data/test/simple_cartesian/tc_multi_line_string.rb +67 -0
- data/test/simple_cartesian/tc_multi_point.rb +67 -0
- data/test/simple_cartesian/tc_multi_polygon.rb +70 -0
- data/test/simple_cartesian/tc_point.rb +91 -0
- data/test/simple_cartesian/tc_polygon.rb +67 -0
- data/test/simple_mercator/tc_geometry_collection.rb +62 -0
- data/test/simple_mercator/tc_line_string.rb +62 -0
- data/test/simple_mercator/tc_multi_line_string.rb +62 -0
- data/test/simple_mercator/tc_multi_point.rb +62 -0
- data/test/simple_mercator/tc_multi_polygon.rb +63 -0
- data/test/simple_mercator/tc_point.rb +93 -0
- data/test/simple_mercator/tc_polygon.rb +62 -0
- data/test/simple_mercator/tc_window.rb +219 -0
- data/test/spherical_geographic/tc_calculations.rb +203 -0
- data/test/spherical_geographic/tc_geometry_collection.rb +70 -0
- data/test/spherical_geographic/tc_line_string.rb +70 -0
- data/test/spherical_geographic/tc_multi_line_string.rb +67 -0
- data/test/spherical_geographic/tc_multi_point.rb +67 -0
- data/test/spherical_geographic/tc_multi_polygon.rb +70 -0
- data/test/spherical_geographic/tc_point.rb +100 -0
- data/test/spherical_geographic/tc_polygon.rb +67 -0
- data/test/tc_cartesian_analysis.rb +107 -0
- data/test/tc_oneoff.rb +63 -0
- data/test/wkrep/tc_wkb_generator.rb +249 -0
- data/test/wkrep/tc_wkb_parser.rb +353 -0
- data/test/wkrep/tc_wkt_generator.rb +362 -0
- data/test/wkrep/tc_wkt_parser.rb +480 -0
- metadata +267 -0
metadata
ADDED
@@ -0,0 +1,267 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: schleyfox-rgeo
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 2
|
8
|
+
- 5
|
9
|
+
version: 0.2.5
|
10
|
+
platform: ruby
|
11
|
+
authors:
|
12
|
+
- Daniel Azuma
|
13
|
+
autorequire:
|
14
|
+
bindir: bin
|
15
|
+
cert_chain: []
|
16
|
+
|
17
|
+
date: 2011-04-15 00:00:00 -04:00
|
18
|
+
default_executable:
|
19
|
+
dependencies: []
|
20
|
+
|
21
|
+
description: RGeo is a spatial data library for Ruby. It provides an implementation of the Open Geospatial Consortium's Simple Features Specification, used by most standard spatial/geographic data storage systems such as PostGIS. A number of add-on modules are also available to help with writing location-based applications using Ruby-based frameworks such as Ruby On Rails.
|
22
|
+
email: dazuma@gmail.com
|
23
|
+
executables: []
|
24
|
+
|
25
|
+
extensions:
|
26
|
+
- ext/geos_c_impl/extconf.rb
|
27
|
+
- ext/proj4_c_impl/extconf.rb
|
28
|
+
extra_rdoc_files:
|
29
|
+
- History.rdoc
|
30
|
+
- README.rdoc
|
31
|
+
- Spatial_Programming_With_RGeo.rdoc
|
32
|
+
files:
|
33
|
+
- lib/rgeo/cartesian/analysis.rb
|
34
|
+
- lib/rgeo/cartesian/bounding_box.rb
|
35
|
+
- lib/rgeo/cartesian/calculations.rb
|
36
|
+
- lib/rgeo/cartesian/factory.rb
|
37
|
+
- lib/rgeo/cartesian/feature_classes.rb
|
38
|
+
- lib/rgeo/cartesian/feature_methods.rb
|
39
|
+
- lib/rgeo/cartesian/interface.rb
|
40
|
+
- lib/rgeo/cartesian.rb
|
41
|
+
- lib/rgeo/coord_sys/cs/entities.rb
|
42
|
+
- lib/rgeo/coord_sys/cs/factories.rb
|
43
|
+
- lib/rgeo/coord_sys/cs/wkt_parser.rb
|
44
|
+
- lib/rgeo/coord_sys/proj4.rb
|
45
|
+
- lib/rgeo/coord_sys/srs_database/active_record_table.rb
|
46
|
+
- lib/rgeo/coord_sys/srs_database/interface.rb
|
47
|
+
- lib/rgeo/coord_sys/srs_database/proj4_data.rb
|
48
|
+
- lib/rgeo/coord_sys/srs_database/sr_org.rb
|
49
|
+
- lib/rgeo/coord_sys/srs_database/url_reader.rb
|
50
|
+
- lib/rgeo/coord_sys.rb
|
51
|
+
- lib/rgeo/error.rb
|
52
|
+
- lib/rgeo/feature/curve.rb
|
53
|
+
- lib/rgeo/feature/factory.rb
|
54
|
+
- lib/rgeo/feature/factory_generator.rb
|
55
|
+
- lib/rgeo/feature/geometry.rb
|
56
|
+
- lib/rgeo/feature/geometry_collection.rb
|
57
|
+
- lib/rgeo/feature/line.rb
|
58
|
+
- lib/rgeo/feature/line_string.rb
|
59
|
+
- lib/rgeo/feature/linear_ring.rb
|
60
|
+
- lib/rgeo/feature/multi_curve.rb
|
61
|
+
- lib/rgeo/feature/multi_line_string.rb
|
62
|
+
- lib/rgeo/feature/multi_point.rb
|
63
|
+
- lib/rgeo/feature/multi_polygon.rb
|
64
|
+
- lib/rgeo/feature/multi_surface.rb
|
65
|
+
- lib/rgeo/feature/point.rb
|
66
|
+
- lib/rgeo/feature/polygon.rb
|
67
|
+
- lib/rgeo/feature/surface.rb
|
68
|
+
- lib/rgeo/feature/types.rb
|
69
|
+
- lib/rgeo/feature.rb
|
70
|
+
- lib/rgeo/geographic/factory.rb
|
71
|
+
- lib/rgeo/geographic/interface.rb
|
72
|
+
- lib/rgeo/geographic/proj4_projector.rb
|
73
|
+
- lib/rgeo/geographic/projected_feature_classes.rb
|
74
|
+
- lib/rgeo/geographic/projected_feature_methods.rb
|
75
|
+
- lib/rgeo/geographic/projected_window.rb
|
76
|
+
- lib/rgeo/geographic/simple_mercator_projector.rb
|
77
|
+
- lib/rgeo/geographic/spherical_feature_classes.rb
|
78
|
+
- lib/rgeo/geographic/spherical_feature_methods.rb
|
79
|
+
- lib/rgeo/geographic/spherical_math.rb
|
80
|
+
- lib/rgeo/geographic.rb
|
81
|
+
- lib/rgeo/geos/factory.rb
|
82
|
+
- lib/rgeo/geos/impl_additions.rb
|
83
|
+
- lib/rgeo/geos/interface.rb
|
84
|
+
- lib/rgeo/geos/zm_factory.rb
|
85
|
+
- lib/rgeo/geos/zm_impl.rb
|
86
|
+
- lib/rgeo/geos.rb
|
87
|
+
- lib/rgeo/impl_helper/basic_geometry_collection_methods.rb
|
88
|
+
- lib/rgeo/impl_helper/basic_geometry_methods.rb
|
89
|
+
- lib/rgeo/impl_helper/basic_line_string_methods.rb
|
90
|
+
- lib/rgeo/impl_helper/basic_point_methods.rb
|
91
|
+
- lib/rgeo/impl_helper/basic_polygon_methods.rb
|
92
|
+
- lib/rgeo/impl_helper/math.rb
|
93
|
+
- lib/rgeo/impl_helper.rb
|
94
|
+
- lib/rgeo/version.rb
|
95
|
+
- lib/rgeo/wkrep/wkb_generator.rb
|
96
|
+
- lib/rgeo/wkrep/wkb_parser.rb
|
97
|
+
- lib/rgeo/wkrep/wkt_generator.rb
|
98
|
+
- lib/rgeo/wkrep/wkt_parser.rb
|
99
|
+
- lib/rgeo/wkrep.rb
|
100
|
+
- lib/rgeo.rb
|
101
|
+
- History.rdoc
|
102
|
+
- README.rdoc
|
103
|
+
- Spatial_Programming_With_RGeo.rdoc
|
104
|
+
- test/common/geometry_collection_tests.rb
|
105
|
+
- test/common/line_string_tests.rb
|
106
|
+
- test/common/multi_line_string_tests.rb
|
107
|
+
- test/common/multi_point_tests.rb
|
108
|
+
- test/common/multi_polygon_tests.rb
|
109
|
+
- test/common/point_tests.rb
|
110
|
+
- test/common/polygon_tests.rb
|
111
|
+
- test/coord_sys/tc_active_record_table.rb
|
112
|
+
- test/coord_sys/tc_ogc_cs.rb
|
113
|
+
- test/coord_sys/tc_proj4.rb
|
114
|
+
- test/coord_sys/tc_proj4_srs_data.rb
|
115
|
+
- test/coord_sys/tc_sr_org.rb
|
116
|
+
- test/coord_sys/tc_url_reader.rb
|
117
|
+
- test/geos/tc_factory.rb
|
118
|
+
- test/geos/tc_geometry_collection.rb
|
119
|
+
- test/geos/tc_line_string.rb
|
120
|
+
- test/geos/tc_misc.rb
|
121
|
+
- test/geos/tc_multi_line_string.rb
|
122
|
+
- test/geos/tc_multi_point.rb
|
123
|
+
- test/geos/tc_multi_polygon.rb
|
124
|
+
- test/geos/tc_point.rb
|
125
|
+
- test/geos/tc_polygon.rb
|
126
|
+
- test/geos/tc_zmfactory.rb
|
127
|
+
- test/projected_geographic/tc_geometry_collection.rb
|
128
|
+
- test/projected_geographic/tc_line_string.rb
|
129
|
+
- test/projected_geographic/tc_multi_line_string.rb
|
130
|
+
- test/projected_geographic/tc_multi_point.rb
|
131
|
+
- test/projected_geographic/tc_multi_polygon.rb
|
132
|
+
- test/projected_geographic/tc_point.rb
|
133
|
+
- test/projected_geographic/tc_polygon.rb
|
134
|
+
- test/simple_cartesian/tc_calculations.rb
|
135
|
+
- test/simple_cartesian/tc_geometry_collection.rb
|
136
|
+
- test/simple_cartesian/tc_line_string.rb
|
137
|
+
- test/simple_cartesian/tc_multi_line_string.rb
|
138
|
+
- test/simple_cartesian/tc_multi_point.rb
|
139
|
+
- test/simple_cartesian/tc_multi_polygon.rb
|
140
|
+
- test/simple_cartesian/tc_point.rb
|
141
|
+
- test/simple_cartesian/tc_polygon.rb
|
142
|
+
- test/simple_mercator/tc_geometry_collection.rb
|
143
|
+
- test/simple_mercator/tc_line_string.rb
|
144
|
+
- test/simple_mercator/tc_multi_line_string.rb
|
145
|
+
- test/simple_mercator/tc_multi_point.rb
|
146
|
+
- test/simple_mercator/tc_multi_polygon.rb
|
147
|
+
- test/simple_mercator/tc_point.rb
|
148
|
+
- test/simple_mercator/tc_polygon.rb
|
149
|
+
- test/simple_mercator/tc_window.rb
|
150
|
+
- test/spherical_geographic/tc_calculations.rb
|
151
|
+
- test/spherical_geographic/tc_geometry_collection.rb
|
152
|
+
- test/spherical_geographic/tc_line_string.rb
|
153
|
+
- test/spherical_geographic/tc_multi_line_string.rb
|
154
|
+
- test/spherical_geographic/tc_multi_point.rb
|
155
|
+
- test/spherical_geographic/tc_multi_polygon.rb
|
156
|
+
- test/spherical_geographic/tc_point.rb
|
157
|
+
- test/spherical_geographic/tc_polygon.rb
|
158
|
+
- test/tc_cartesian_analysis.rb
|
159
|
+
- test/tc_oneoff.rb
|
160
|
+
- test/wkrep/tc_wkb_generator.rb
|
161
|
+
- test/wkrep/tc_wkb_parser.rb
|
162
|
+
- test/wkrep/tc_wkt_generator.rb
|
163
|
+
- test/wkrep/tc_wkt_parser.rb
|
164
|
+
- ext/geos_c_impl/extconf.rb
|
165
|
+
- ext/proj4_c_impl/extconf.rb
|
166
|
+
- ext/geos_c_impl/factory.c
|
167
|
+
- ext/geos_c_impl/geometry.c
|
168
|
+
- ext/geos_c_impl/geometry_collection.c
|
169
|
+
- ext/geos_c_impl/line_string.c
|
170
|
+
- ext/geos_c_impl/main.c
|
171
|
+
- ext/geos_c_impl/point.c
|
172
|
+
- ext/geos_c_impl/polygon.c
|
173
|
+
- ext/proj4_c_impl/main.c
|
174
|
+
- ext/geos_c_impl/factory.h
|
175
|
+
- ext/geos_c_impl/geometry.h
|
176
|
+
- ext/geos_c_impl/geometry_collection.h
|
177
|
+
- ext/geos_c_impl/line_string.h
|
178
|
+
- ext/geos_c_impl/point.h
|
179
|
+
- ext/geos_c_impl/polygon.h
|
180
|
+
- ext/geos_c_impl/preface.h
|
181
|
+
- Version
|
182
|
+
has_rdoc: true
|
183
|
+
homepage: http://virtuoso.rubyforge.org/schleyfox-rgeo
|
184
|
+
licenses: []
|
185
|
+
|
186
|
+
post_install_message:
|
187
|
+
rdoc_options: []
|
188
|
+
|
189
|
+
require_paths:
|
190
|
+
- lib
|
191
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
192
|
+
requirements:
|
193
|
+
- - ">="
|
194
|
+
- !ruby/object:Gem::Version
|
195
|
+
segments:
|
196
|
+
- 1
|
197
|
+
- 8
|
198
|
+
- 7
|
199
|
+
version: 1.8.7
|
200
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
201
|
+
requirements:
|
202
|
+
- - ">="
|
203
|
+
- !ruby/object:Gem::Version
|
204
|
+
segments:
|
205
|
+
- 0
|
206
|
+
version: "0"
|
207
|
+
requirements: []
|
208
|
+
|
209
|
+
rubyforge_project: virtuoso
|
210
|
+
rubygems_version: 1.3.6
|
211
|
+
signing_key:
|
212
|
+
specification_version: 3
|
213
|
+
summary: RGeo is a spatial data library for Ruby.
|
214
|
+
test_files:
|
215
|
+
- test/coord_sys/tc_active_record_table.rb
|
216
|
+
- test/coord_sys/tc_ogc_cs.rb
|
217
|
+
- test/coord_sys/tc_proj4.rb
|
218
|
+
- test/coord_sys/tc_proj4_srs_data.rb
|
219
|
+
- test/coord_sys/tc_sr_org.rb
|
220
|
+
- test/coord_sys/tc_url_reader.rb
|
221
|
+
- test/geos/tc_factory.rb
|
222
|
+
- test/geos/tc_geometry_collection.rb
|
223
|
+
- test/geos/tc_line_string.rb
|
224
|
+
- test/geos/tc_misc.rb
|
225
|
+
- test/geos/tc_multi_line_string.rb
|
226
|
+
- test/geos/tc_multi_point.rb
|
227
|
+
- test/geos/tc_multi_polygon.rb
|
228
|
+
- test/geos/tc_point.rb
|
229
|
+
- test/geos/tc_polygon.rb
|
230
|
+
- test/geos/tc_zmfactory.rb
|
231
|
+
- test/projected_geographic/tc_geometry_collection.rb
|
232
|
+
- test/projected_geographic/tc_line_string.rb
|
233
|
+
- test/projected_geographic/tc_multi_line_string.rb
|
234
|
+
- test/projected_geographic/tc_multi_point.rb
|
235
|
+
- test/projected_geographic/tc_multi_polygon.rb
|
236
|
+
- test/projected_geographic/tc_point.rb
|
237
|
+
- test/projected_geographic/tc_polygon.rb
|
238
|
+
- test/simple_cartesian/tc_calculations.rb
|
239
|
+
- test/simple_cartesian/tc_geometry_collection.rb
|
240
|
+
- test/simple_cartesian/tc_line_string.rb
|
241
|
+
- test/simple_cartesian/tc_multi_line_string.rb
|
242
|
+
- test/simple_cartesian/tc_multi_point.rb
|
243
|
+
- test/simple_cartesian/tc_multi_polygon.rb
|
244
|
+
- test/simple_cartesian/tc_point.rb
|
245
|
+
- test/simple_cartesian/tc_polygon.rb
|
246
|
+
- test/simple_mercator/tc_geometry_collection.rb
|
247
|
+
- test/simple_mercator/tc_line_string.rb
|
248
|
+
- test/simple_mercator/tc_multi_line_string.rb
|
249
|
+
- test/simple_mercator/tc_multi_point.rb
|
250
|
+
- test/simple_mercator/tc_multi_polygon.rb
|
251
|
+
- test/simple_mercator/tc_point.rb
|
252
|
+
- test/simple_mercator/tc_polygon.rb
|
253
|
+
- test/simple_mercator/tc_window.rb
|
254
|
+
- test/spherical_geographic/tc_calculations.rb
|
255
|
+
- test/spherical_geographic/tc_geometry_collection.rb
|
256
|
+
- test/spherical_geographic/tc_line_string.rb
|
257
|
+
- test/spherical_geographic/tc_multi_line_string.rb
|
258
|
+
- test/spherical_geographic/tc_multi_point.rb
|
259
|
+
- test/spherical_geographic/tc_multi_polygon.rb
|
260
|
+
- test/spherical_geographic/tc_point.rb
|
261
|
+
- test/spherical_geographic/tc_polygon.rb
|
262
|
+
- test/tc_cartesian_analysis.rb
|
263
|
+
- test/tc_oneoff.rb
|
264
|
+
- test/wkrep/tc_wkb_generator.rb
|
265
|
+
- test/wkrep/tc_wkb_parser.rb
|
266
|
+
- test/wkrep/tc_wkt_generator.rb
|
267
|
+
- test/wkrep/tc_wkt_parser.rb
|