├── .github └── workflows │ └── main.yml ├── .gitignore ├── .rbenv-vars ├── .rubocop-minitest.yml ├── .rubocop.yml ├── .rubocop_todo.yml ├── FUNDING.yml ├── Gemfile ├── Guardfile ├── MIT-LICENSE ├── README.rdoc ├── Rakefile ├── ffi-geos.gemspec ├── lib ├── ffi-geos.rb └── ffi-geos │ ├── buffer_params.rb │ ├── coordinate_sequence.rb │ ├── geojson_reader.rb │ ├── geojson_writer.rb │ ├── geometry.rb │ ├── geometry_collection.rb │ ├── interrupt.rb │ ├── line_string.rb │ ├── linear_ring.rb │ ├── multi_line_string.rb │ ├── multi_point.rb │ ├── multi_polygon.rb │ ├── point.rb │ ├── polygon.rb │ ├── prepared_geometry.rb │ ├── strtree.rb │ ├── tools.rb │ ├── utils.rb │ ├── version.rb │ ├── wkb_reader.rb │ ├── wkb_writer.rb │ ├── wkt_reader.rb │ └── wkt_writer.rb ├── sonar-project.properties └── test ├── .rubocop.yml ├── coordinate_sequence_tests.rb ├── geojson_reader_tests.rb ├── geojson_writer_tests.rb ├── geometry ├── area_tests.rb ├── boundary_tests.rb ├── buffer_tests.rb ├── build_area_tests.rb ├── centroid_tests.rb ├── clip_by_rect_tests.rb ├── clone_tests.rb ├── concave_hull_of_polygons_tests.rb ├── concave_hull_tests.rb ├── convex_hull_tests.rb ├── coord_seq_tests.rb ├── delaunay_triangulation_tests.rb ├── densify_tests.rb ├── difference_tests.rb ├── dimensions_tests.rb ├── distance_tests.rb ├── dump_points_tests.rb ├── dup_tests.rb ├── empty_tests.rb ├── envelope_tests.rb ├── equal_identical_tests.rb ├── equal_tests.rb ├── exterior_ring_tests.rb ├── extract_unique_points_tests.rb ├── frecet_distance_tests.rb ├── get_geometry_n_tests.rb ├── hausdorff_distance_tests.rb ├── hilbert_code_tests.rb ├── interior_ring_n_tests.rb ├── interior_rings_tests.rb ├── interpolate_tests.rb ├── intersection_tests.rb ├── largest_empty_circle_tests.rb ├── length_tests.rb ├── line_merge_directed_tests.rb ├── line_merge_tests.rb ├── line_string_enumerator_tests.rb ├── line_substring_tests.rb ├── make_valid_tests.rb ├── maximum_inscribed_circle_tests.rb ├── minimum_bounding_circle_tests.rb ├── minimum_clearance_tests.rb ├── minimum_rotated_rectangle_tests.rb ├── minimum_width_tests.rb ├── misc_tests.rb ├── nearest_points_tests.rb ├── node_tests.rb ├── normalize_tests.rb ├── num_coordinates_tests.rb ├── num_goemetries_tests.rb ├── num_interior_rings_tests.rb ├── orient_polygons_tests.rb ├── point_on_surface_tests.rb ├── polygon_hull_simplify_tests.rb ├── polygonize_tests.rb ├── precision_tests.rb ├── project_tests.rb ├── relate_tests.rb ├── relationships_tests.rb ├── reverse_tests.rb ├── ring_tests.rb ├── shared_path_tests.rb ├── simple_tests.rb ├── simplify_tests.rb ├── snap_tests.rb ├── srid_copy_policy_tests.rb ├── start_and_end_point_tests.rb ├── sym_difference_tests.rb ├── topology_preserve_simplify_tests.rb ├── union_tests.rb ├── valid_tests.rb └── voronoi_diagram_tests.rb ├── geometry_collection_tests.rb ├── interrupt_tests.rb ├── line_string_tests.rb ├── linear_ring_tests.rb ├── misc_tests.rb ├── multi_line_string_tests.rb ├── point ├── has_m_tests.rb └── x_y_z_m_tests.rb ├── point_tests.rb ├── polygon_tests.rb ├── prepared_geometry_tests.rb ├── strtree_tests.rb ├── test_helper.rb ├── tools_tests.rb ├── utils_tests.rb ├── wkb_reader_tests.rb ├── wkb_writer_tests.rb ├── wkt_reader_tests.rb └── wkt_writer_tests.rb /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/.gitignore -------------------------------------------------------------------------------- /.rbenv-vars: -------------------------------------------------------------------------------- 1 | RUBYOPT=-W:deprecated -W:experimental 2 | -------------------------------------------------------------------------------- /.rubocop-minitest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/.rubocop-minitest.yml -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.rubocop_todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/.rubocop_todo.yml -------------------------------------------------------------------------------- /FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: 2 | - dark-panda 3 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/Gemfile -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/Guardfile -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/Rakefile -------------------------------------------------------------------------------- /ffi-geos.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/ffi-geos.gemspec -------------------------------------------------------------------------------- /lib/ffi-geos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/lib/ffi-geos.rb -------------------------------------------------------------------------------- /lib/ffi-geos/buffer_params.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/lib/ffi-geos/buffer_params.rb -------------------------------------------------------------------------------- /lib/ffi-geos/coordinate_sequence.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/lib/ffi-geos/coordinate_sequence.rb -------------------------------------------------------------------------------- /lib/ffi-geos/geojson_reader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/lib/ffi-geos/geojson_reader.rb -------------------------------------------------------------------------------- /lib/ffi-geos/geojson_writer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/lib/ffi-geos/geojson_writer.rb -------------------------------------------------------------------------------- /lib/ffi-geos/geometry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/lib/ffi-geos/geometry.rb -------------------------------------------------------------------------------- /lib/ffi-geos/geometry_collection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/lib/ffi-geos/geometry_collection.rb -------------------------------------------------------------------------------- /lib/ffi-geos/interrupt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/lib/ffi-geos/interrupt.rb -------------------------------------------------------------------------------- /lib/ffi-geos/line_string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/lib/ffi-geos/line_string.rb -------------------------------------------------------------------------------- /lib/ffi-geos/linear_ring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/lib/ffi-geos/linear_ring.rb -------------------------------------------------------------------------------- /lib/ffi-geos/multi_line_string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/lib/ffi-geos/multi_line_string.rb -------------------------------------------------------------------------------- /lib/ffi-geos/multi_point.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/lib/ffi-geos/multi_point.rb -------------------------------------------------------------------------------- /lib/ffi-geos/multi_polygon.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/lib/ffi-geos/multi_polygon.rb -------------------------------------------------------------------------------- /lib/ffi-geos/point.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/lib/ffi-geos/point.rb -------------------------------------------------------------------------------- /lib/ffi-geos/polygon.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/lib/ffi-geos/polygon.rb -------------------------------------------------------------------------------- /lib/ffi-geos/prepared_geometry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/lib/ffi-geos/prepared_geometry.rb -------------------------------------------------------------------------------- /lib/ffi-geos/strtree.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/lib/ffi-geos/strtree.rb -------------------------------------------------------------------------------- /lib/ffi-geos/tools.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/lib/ffi-geos/tools.rb -------------------------------------------------------------------------------- /lib/ffi-geos/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/lib/ffi-geos/utils.rb -------------------------------------------------------------------------------- /lib/ffi-geos/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module Geos 4 | VERSION = '2.5.0' 5 | end 6 | -------------------------------------------------------------------------------- /lib/ffi-geos/wkb_reader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/lib/ffi-geos/wkb_reader.rb -------------------------------------------------------------------------------- /lib/ffi-geos/wkb_writer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/lib/ffi-geos/wkb_writer.rb -------------------------------------------------------------------------------- /lib/ffi-geos/wkt_reader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/lib/ffi-geos/wkt_reader.rb -------------------------------------------------------------------------------- /lib/ffi-geos/wkt_writer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/lib/ffi-geos/wkt_writer.rb -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /test/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/.rubocop.yml -------------------------------------------------------------------------------- /test/coordinate_sequence_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/coordinate_sequence_tests.rb -------------------------------------------------------------------------------- /test/geojson_reader_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geojson_reader_tests.rb -------------------------------------------------------------------------------- /test/geojson_writer_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geojson_writer_tests.rb -------------------------------------------------------------------------------- /test/geometry/area_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/area_tests.rb -------------------------------------------------------------------------------- /test/geometry/boundary_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/boundary_tests.rb -------------------------------------------------------------------------------- /test/geometry/buffer_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/buffer_tests.rb -------------------------------------------------------------------------------- /test/geometry/build_area_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/build_area_tests.rb -------------------------------------------------------------------------------- /test/geometry/centroid_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/centroid_tests.rb -------------------------------------------------------------------------------- /test/geometry/clip_by_rect_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/clip_by_rect_tests.rb -------------------------------------------------------------------------------- /test/geometry/clone_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/clone_tests.rb -------------------------------------------------------------------------------- /test/geometry/concave_hull_of_polygons_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/concave_hull_of_polygons_tests.rb -------------------------------------------------------------------------------- /test/geometry/concave_hull_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/concave_hull_tests.rb -------------------------------------------------------------------------------- /test/geometry/convex_hull_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/convex_hull_tests.rb -------------------------------------------------------------------------------- /test/geometry/coord_seq_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/coord_seq_tests.rb -------------------------------------------------------------------------------- /test/geometry/delaunay_triangulation_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/delaunay_triangulation_tests.rb -------------------------------------------------------------------------------- /test/geometry/densify_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/densify_tests.rb -------------------------------------------------------------------------------- /test/geometry/difference_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/difference_tests.rb -------------------------------------------------------------------------------- /test/geometry/dimensions_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/dimensions_tests.rb -------------------------------------------------------------------------------- /test/geometry/distance_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/distance_tests.rb -------------------------------------------------------------------------------- /test/geometry/dump_points_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/dump_points_tests.rb -------------------------------------------------------------------------------- /test/geometry/dup_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/dup_tests.rb -------------------------------------------------------------------------------- /test/geometry/empty_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/empty_tests.rb -------------------------------------------------------------------------------- /test/geometry/envelope_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/envelope_tests.rb -------------------------------------------------------------------------------- /test/geometry/equal_identical_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/equal_identical_tests.rb -------------------------------------------------------------------------------- /test/geometry/equal_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/equal_tests.rb -------------------------------------------------------------------------------- /test/geometry/exterior_ring_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/exterior_ring_tests.rb -------------------------------------------------------------------------------- /test/geometry/extract_unique_points_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/extract_unique_points_tests.rb -------------------------------------------------------------------------------- /test/geometry/frecet_distance_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/frecet_distance_tests.rb -------------------------------------------------------------------------------- /test/geometry/get_geometry_n_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/get_geometry_n_tests.rb -------------------------------------------------------------------------------- /test/geometry/hausdorff_distance_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/hausdorff_distance_tests.rb -------------------------------------------------------------------------------- /test/geometry/hilbert_code_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/hilbert_code_tests.rb -------------------------------------------------------------------------------- /test/geometry/interior_ring_n_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/interior_ring_n_tests.rb -------------------------------------------------------------------------------- /test/geometry/interior_rings_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/interior_rings_tests.rb -------------------------------------------------------------------------------- /test/geometry/interpolate_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/interpolate_tests.rb -------------------------------------------------------------------------------- /test/geometry/intersection_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/intersection_tests.rb -------------------------------------------------------------------------------- /test/geometry/largest_empty_circle_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/largest_empty_circle_tests.rb -------------------------------------------------------------------------------- /test/geometry/length_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/length_tests.rb -------------------------------------------------------------------------------- /test/geometry/line_merge_directed_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/line_merge_directed_tests.rb -------------------------------------------------------------------------------- /test/geometry/line_merge_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/line_merge_tests.rb -------------------------------------------------------------------------------- /test/geometry/line_string_enumerator_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/line_string_enumerator_tests.rb -------------------------------------------------------------------------------- /test/geometry/line_substring_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/line_substring_tests.rb -------------------------------------------------------------------------------- /test/geometry/make_valid_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/make_valid_tests.rb -------------------------------------------------------------------------------- /test/geometry/maximum_inscribed_circle_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/maximum_inscribed_circle_tests.rb -------------------------------------------------------------------------------- /test/geometry/minimum_bounding_circle_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/minimum_bounding_circle_tests.rb -------------------------------------------------------------------------------- /test/geometry/minimum_clearance_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/minimum_clearance_tests.rb -------------------------------------------------------------------------------- /test/geometry/minimum_rotated_rectangle_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/minimum_rotated_rectangle_tests.rb -------------------------------------------------------------------------------- /test/geometry/minimum_width_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/minimum_width_tests.rb -------------------------------------------------------------------------------- /test/geometry/misc_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/misc_tests.rb -------------------------------------------------------------------------------- /test/geometry/nearest_points_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/nearest_points_tests.rb -------------------------------------------------------------------------------- /test/geometry/node_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/node_tests.rb -------------------------------------------------------------------------------- /test/geometry/normalize_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/normalize_tests.rb -------------------------------------------------------------------------------- /test/geometry/num_coordinates_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/num_coordinates_tests.rb -------------------------------------------------------------------------------- /test/geometry/num_goemetries_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/num_goemetries_tests.rb -------------------------------------------------------------------------------- /test/geometry/num_interior_rings_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/num_interior_rings_tests.rb -------------------------------------------------------------------------------- /test/geometry/orient_polygons_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/orient_polygons_tests.rb -------------------------------------------------------------------------------- /test/geometry/point_on_surface_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/point_on_surface_tests.rb -------------------------------------------------------------------------------- /test/geometry/polygon_hull_simplify_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/polygon_hull_simplify_tests.rb -------------------------------------------------------------------------------- /test/geometry/polygonize_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/polygonize_tests.rb -------------------------------------------------------------------------------- /test/geometry/precision_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/precision_tests.rb -------------------------------------------------------------------------------- /test/geometry/project_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/project_tests.rb -------------------------------------------------------------------------------- /test/geometry/relate_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/relate_tests.rb -------------------------------------------------------------------------------- /test/geometry/relationships_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/relationships_tests.rb -------------------------------------------------------------------------------- /test/geometry/reverse_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/reverse_tests.rb -------------------------------------------------------------------------------- /test/geometry/ring_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/ring_tests.rb -------------------------------------------------------------------------------- /test/geometry/shared_path_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/shared_path_tests.rb -------------------------------------------------------------------------------- /test/geometry/simple_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/simple_tests.rb -------------------------------------------------------------------------------- /test/geometry/simplify_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/simplify_tests.rb -------------------------------------------------------------------------------- /test/geometry/snap_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/snap_tests.rb -------------------------------------------------------------------------------- /test/geometry/srid_copy_policy_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/srid_copy_policy_tests.rb -------------------------------------------------------------------------------- /test/geometry/start_and_end_point_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/start_and_end_point_tests.rb -------------------------------------------------------------------------------- /test/geometry/sym_difference_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/sym_difference_tests.rb -------------------------------------------------------------------------------- /test/geometry/topology_preserve_simplify_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/topology_preserve_simplify_tests.rb -------------------------------------------------------------------------------- /test/geometry/union_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/union_tests.rb -------------------------------------------------------------------------------- /test/geometry/valid_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/valid_tests.rb -------------------------------------------------------------------------------- /test/geometry/voronoi_diagram_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry/voronoi_diagram_tests.rb -------------------------------------------------------------------------------- /test/geometry_collection_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/geometry_collection_tests.rb -------------------------------------------------------------------------------- /test/interrupt_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/interrupt_tests.rb -------------------------------------------------------------------------------- /test/line_string_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/line_string_tests.rb -------------------------------------------------------------------------------- /test/linear_ring_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/linear_ring_tests.rb -------------------------------------------------------------------------------- /test/misc_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/misc_tests.rb -------------------------------------------------------------------------------- /test/multi_line_string_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/multi_line_string_tests.rb -------------------------------------------------------------------------------- /test/point/has_m_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/point/has_m_tests.rb -------------------------------------------------------------------------------- /test/point/x_y_z_m_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/point/x_y_z_m_tests.rb -------------------------------------------------------------------------------- /test/point_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/point_tests.rb -------------------------------------------------------------------------------- /test/polygon_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/polygon_tests.rb -------------------------------------------------------------------------------- /test/prepared_geometry_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/prepared_geometry_tests.rb -------------------------------------------------------------------------------- /test/strtree_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/strtree_tests.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/tools_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/tools_tests.rb -------------------------------------------------------------------------------- /test/utils_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/utils_tests.rb -------------------------------------------------------------------------------- /test/wkb_reader_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/wkb_reader_tests.rb -------------------------------------------------------------------------------- /test/wkb_writer_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/wkb_writer_tests.rb -------------------------------------------------------------------------------- /test/wkt_reader_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/wkt_reader_tests.rb -------------------------------------------------------------------------------- /test/wkt_writer_tests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dark-panda/ffi-geos/HEAD/test/wkt_writer_tests.rb --------------------------------------------------------------------------------