ffi-gdal 1.0.0.beta3 → 1.0.0.beta4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +3 -0
- data/.rubocop.yml +62 -0
- data/Gemfile +1 -1
- data/History.md +53 -28
- data/README.md +6 -0
- data/Rakefile +23 -1
- data/examples/extract_and_colorize.rb +21 -22
- data/examples/geometries.rb +2 -2
- data/examples/gridding.rb +106 -0
- data/examples/ogr_layer_to_layer.rb +1 -1
- data/examples/points.txt +127 -0
- data/examples/testing_gdal.rb +3 -4
- data/ffi-gdal.gemspec +3 -2
- data/lib/ext/error_symbols.rb +2 -57
- data/lib/ext/ffi_library_function_checks.rb +26 -0
- data/lib/ext/float_ext.rb +2 -2
- data/lib/ext/narray_ext.rb +2 -0
- data/lib/ext/numeric_as_data_type.rb +19 -0
- data/lib/ext/to_bool.rb +4 -4
- data/lib/ffi/cpl/conv.rb +132 -0
- data/lib/ffi/cpl/error.rb +67 -0
- data/lib/ffi/cpl/hash_set.rb +39 -0
- data/lib/ffi/cpl/http.rb +25 -0
- data/lib/ffi/cpl/http_result.rb +18 -0
- data/lib/ffi/cpl/list.rb +38 -0
- data/lib/ffi/cpl/mime_part.rb +11 -0
- data/lib/ffi/cpl/minixml.rb +47 -0
- data/lib/ffi/cpl/port.rb +23 -0
- data/lib/ffi/cpl/quad_tree.rb +51 -0
- data/lib/ffi/{ogr/ogr_envelope.rb → cpl/rect_obj.rb} +3 -3
- data/lib/ffi/cpl/string.rb +95 -0
- data/lib/ffi/cpl/vsi.rb +115 -0
- data/lib/ffi/cpl/xml_node.rb +6 -6
- data/lib/ffi/gdal/alg.rb +385 -0
- data/lib/ffi/gdal/{gdal_color_entry.rb → color_entry.rb} +1 -2
- data/lib/ffi/gdal/exceptions.rb +6 -0
- data/lib/ffi/gdal/{gdal_gcp.rb → gcp.rb} +1 -3
- data/lib/ffi/gdal/{gdal_h.rb → gdal.rb} +253 -252
- data/lib/ffi/gdal/grid.rb +58 -0
- data/lib/ffi/gdal/{gdal_grid_data_metrics_options.rb → grid_data_metrics_options.rb} +1 -2
- data/lib/ffi/gdal/{gdal_grid_inverse_distance_to_a_power_options.rb → grid_inverse_distance_to_a_power_options.rb} +1 -2
- data/lib/ffi/gdal/{gdal_grid_moving_average_options.rb → grid_moving_average_options.rb} +1 -2
- data/lib/ffi/gdal/{gdal_grid_nearest_neighbor_options.rb → grid_nearest_neighbor_options.rb} +1 -2
- data/lib/ffi/gdal/matching.rb +20 -0
- data/lib/ffi/gdal/{gdal_rpc_info.rb → rpc_info.rb} +1 -2
- data/lib/ffi/gdal/{gdal_transformer_info.rb → transformer_info.rb} +1 -2
- data/lib/ffi/gdal/version.rb +1 -1
- data/lib/ffi/gdal/vrt.rb +92 -0
- data/lib/ffi/gdal/{gdal_warp_options.rb → warp_options.rb} +8 -4
- data/lib/ffi/gdal/warper.rb +70 -0
- data/lib/ffi/gdal.rb +56 -69
- data/lib/ffi/ogr/api.rb +567 -0
- data/lib/ffi/ogr/{ogr_contour_writer_info.rb → contour_writer_info.rb} +2 -3
- data/lib/ffi/ogr/core.rb +181 -0
- data/lib/ffi/ogr/envelope.rb +12 -0
- data/lib/ffi/ogr/{ogr_envelope_3d.rb → envelope_3d.rb} +2 -2
- data/lib/ffi/ogr/featurestyle.rb +29 -0
- data/lib/ffi/ogr/field.rb +63 -0
- data/lib/ffi/ogr/geocoding.rb +30 -0
- data/lib/ffi/ogr/srs_api.rb +407 -0
- data/lib/ffi/ogr/style_param.rb +13 -0
- data/lib/ffi/ogr/{ogr_style_value.rb → style_value.rb} +4 -3
- data/lib/ffi/ogr.rb +7 -7
- data/lib/ffi-gdal.rb +7 -145
- data/lib/gdal/color_entry.rb +18 -14
- data/lib/gdal/color_entry_mixins/extensions.rb +32 -0
- data/lib/gdal/color_interpretation.rb +2 -2
- data/lib/gdal/color_table.rb +37 -32
- data/lib/gdal/color_table_mixins/extensions.rb +48 -0
- data/lib/gdal/cpl_error_handler.rb +119 -0
- data/lib/gdal/data_type.rb +7 -7
- data/lib/gdal/dataset.rb +131 -238
- data/lib/gdal/dataset_mixins/algorithm_methods.rb +182 -0
- data/lib/gdal/dataset_mixins/extensions.rb +542 -0
- data/lib/gdal/dataset_mixins/matching.rb +26 -0
- data/lib/gdal/driver.rb +68 -92
- data/lib/gdal/driver_mixins/extensions.rb +93 -0
- data/lib/gdal/exceptions.rb +32 -4
- data/lib/gdal/geo_transform.rb +63 -43
- data/lib/gdal/geo_transform_mixins/extensions.rb +57 -0
- data/lib/gdal/grid.rb +144 -0
- data/lib/gdal/grid_types/data_metrics_base.rb +14 -0
- data/lib/gdal/grid_types/inverse_distance_to_a_power.rb +19 -0
- data/lib/gdal/grid_types/metric_average_distance.rb +12 -0
- data/lib/gdal/grid_types/metric_average_distance_pts.rb +12 -0
- data/lib/gdal/grid_types/metric_count.rb +12 -0
- data/lib/gdal/grid_types/metric_maximum.rb +12 -0
- data/lib/gdal/grid_types/metric_minimum.rb +12 -0
- data/lib/gdal/grid_types/metric_range.rb +12 -0
- data/lib/gdal/grid_types/moving_average.rb +19 -0
- data/lib/gdal/grid_types/nearest_neighbor.rb +19 -0
- data/lib/gdal/grid_types.rb +22 -0
- data/lib/gdal/internal_helpers.rb +94 -0
- data/lib/gdal/major_object.rb +4 -7
- data/lib/gdal/options.rb +14 -7
- data/lib/gdal/raster_attribute_table.rb +38 -47
- data/lib/gdal/raster_attribute_table_mixins/extensions.rb +41 -0
- data/lib/gdal/raster_band.rb +193 -227
- data/lib/gdal/raster_band_classifier.rb +107 -0
- data/lib/gdal/raster_band_mixins/algorithm_methods.rb +292 -0
- data/lib/gdal/raster_band_mixins/extensions.rb +238 -0
- data/lib/gdal/rpc_info.rb +35 -0
- data/lib/gdal/transformer.rb +15 -0
- data/lib/gdal/transformers/approximate_transformer.rb +48 -0
- data/lib/gdal/transformers/base_general_image_projection_transformer.rb +45 -0
- data/lib/gdal/transformers/gcp_transformer.rb +55 -0
- data/lib/gdal/transformers/general_image_projection_transformer.rb +31 -0
- data/lib/gdal/transformers/general_image_projection_transformer2.rb +52 -0
- data/lib/gdal/transformers/general_image_projection_transformer3.rb +25 -0
- data/lib/gdal/transformers/geolocation_transformer.rb +42 -0
- data/lib/gdal/transformers/reprojection_transformer.rb +39 -0
- data/lib/gdal/transformers/rpc_transformer.rb +56 -0
- data/lib/gdal/transformers/tps_transformer.rb +40 -0
- data/lib/gdal/virtual_dataset.rb +96 -0
- data/lib/gdal/warp_operation.rb +20 -23
- data/lib/gdal.rb +17 -0
- data/lib/ogr/coordinate_transformation.rb +16 -41
- data/lib/ogr/data_source.rb +103 -58
- data/lib/ogr/data_source_extensions.rb +5 -6
- data/lib/ogr/data_source_mixins/capability_methods.rb +27 -0
- data/lib/ogr/driver.rb +61 -33
- data/lib/ogr/driver_mixins/capability_methods.rb +16 -0
- data/lib/ogr/envelope.rb +29 -18
- data/lib/ogr/envelope_extensions.rb +70 -49
- data/lib/ogr/error_handling.rb +46 -0
- data/lib/ogr/exceptions.rb +58 -12
- data/lib/ogr/feature.rb +334 -86
- data/lib/ogr/feature_definition.rb +94 -51
- data/lib/ogr/feature_definition_extensions.rb +36 -13
- data/lib/ogr/feature_extensions.rb +62 -11
- data/lib/ogr/field.rb +175 -54
- data/lib/ogr/field_definition.rb +110 -0
- data/lib/ogr/{field_extensions.rb → field_definition_extensions.rb} +4 -5
- data/lib/ogr/{geocoding_session.rb → geocoder.rb} +14 -13
- data/lib/ogr/geometries/geometry_collection.rb +13 -0
- data/lib/ogr/geometries/line_string.rb +35 -0
- data/lib/ogr/geometries/linear_ring.rb +11 -0
- data/lib/ogr/geometries/multi_line_string.rb +16 -0
- data/lib/ogr/geometries/multi_point.rb +14 -0
- data/lib/ogr/geometries/multi_polygon.rb +21 -0
- data/lib/ogr/geometries/none_geometry.rb +13 -0
- data/lib/ogr/geometries/point.rb +65 -0
- data/lib/ogr/geometries/point_extensions.rb +32 -0
- data/lib/ogr/geometries/polygon.rb +14 -0
- data/lib/ogr/geometries/unknown_geometry.rb +10 -0
- data/lib/ogr/geometry.rb +270 -242
- data/lib/ogr/geometry_extensions.rb +8 -9
- data/lib/ogr/geometry_field_definition.rb +99 -0
- data/lib/ogr/geometry_field_definition_extensions.rb +19 -0
- data/lib/ogr/geometry_types/container.rb +75 -0
- data/lib/ogr/geometry_types/curve.rb +25 -28
- data/lib/ogr/geometry_types/surface.rb +13 -4
- data/lib/ogr/internal_helpers.rb +57 -0
- data/lib/ogr/layer.rb +60 -181
- data/lib/ogr/layer_mixins/capability_methods.rb +102 -0
- data/lib/ogr/layer_mixins/extensions.rb +59 -0
- data/lib/ogr/layer_mixins/ogr_feature_methods.rb +127 -0
- data/lib/ogr/layer_mixins/ogr_field_methods.rb +143 -0
- data/lib/ogr/layer_mixins/ogr_layer_method_methods.rb +163 -0
- data/lib/ogr/layer_mixins/ogr_query_filter_methods.rb +89 -0
- data/lib/ogr/layer_mixins/ogr_sql_methods.rb +48 -0
- data/lib/ogr/spatial_reference.rb +108 -589
- data/lib/ogr/spatial_reference_extensions.rb +29 -3
- data/lib/ogr/spatial_reference_mixins/coordinate_system_getter_setters.rb +494 -0
- data/lib/ogr/spatial_reference_mixins/exporters.rb +134 -0
- data/lib/ogr/spatial_reference_mixins/importers.rb +243 -0
- data/lib/ogr/spatial_reference_mixins/morphers.rb +25 -0
- data/lib/ogr/spatial_reference_mixins/parameter_getter_setters.rb +122 -0
- data/lib/ogr/spatial_reference_mixins/type_checks.rb +62 -0
- data/lib/ogr/style_table.rb +53 -5
- data/lib/ogr/style_table_extensions.rb +21 -5
- data/lib/ogr/style_tool.rb +118 -0
- data/lib/ogr.rb +8 -0
- data/spec/ffi-gdal_spec.rb +1 -2
- data/spec/integration/{color_table_info_spec.rb → gdal/color_table_info_spec.rb} +12 -12
- data/spec/integration/{dataset_info_spec.rb → gdal/dataset_info_spec.rb} +2 -6
- data/spec/integration/{driver_info_spec.rb → gdal/driver_info_spec.rb} +5 -5
- data/spec/integration/{geo_transform_info_spec.rb → gdal/geo_transform_info_spec.rb} +1 -14
- data/spec/integration/{raster_attribute_table_info_spec.rb → gdal/raster_attribute_table_info_spec.rb} +1 -2
- data/spec/integration/{raster_band_info_spec.rb → gdal/raster_band_info_spec.rb} +30 -42
- data/spec/integration/ogr/layer_spec.rb +97 -0
- data/spec/spec_helper.rb +94 -5
- data/spec/support/integration_help.rb +1 -0
- data/spec/support/shared_contexts.rb +26 -0
- data/spec/support/shared_examples/{major_object_examples.rb → gdal/major_object_examples.rb} +5 -5
- data/spec/support/shared_examples/ogr/a_25D_geometry.rb +7 -0
- data/spec/support/shared_examples/ogr/a_container_geometry.rb +47 -0
- data/spec/support/shared_examples/ogr/a_geometry.rb +404 -0
- data/spec/support/shared_examples/ogr/a_line_string.rb +16 -0
- data/spec/support/test_style_table.txt +3 -0
- data/spec/unit/ext/error_symbols_spec.rb +41 -53
- data/spec/unit/ext/numeric_as_data_type_spec.rb +113 -0
- data/spec/unit/ffi/gdal_spec.rb +70 -0
- data/spec/unit/gdal/color_entry_spec.rb +5 -0
- data/spec/unit/gdal/color_interpretation_spec.rb +5 -0
- data/spec/unit/gdal/{color_table_extensions_spec.rb → color_table_mixins/extensions_spec.rb} +3 -3
- data/spec/unit/gdal/color_table_spec.rb +14 -16
- data/spec/unit/gdal/data_type_spec.rb +10 -17
- data/spec/unit/gdal/dataset_spec.rb +4 -7
- data/spec/unit/gdal/driver_mixins/extensions_spec.rb +22 -0
- data/spec/unit/gdal/driver_spec.rb +49 -0
- data/spec/unit/gdal/environment_methods_spec.rb +6 -0
- data/spec/unit/gdal/geo_transform_spec.rb +276 -0
- data/spec/unit/gdal/grid_spec.rb +5 -0
- data/spec/unit/gdal/internal_helpers_spec.rb +112 -0
- data/spec/unit/gdal/major_object_spec.rb +6 -0
- data/spec/unit/gdal/options_spec.rb +5 -0
- data/spec/unit/gdal/raster_attribute_table_spec.rb +5 -0
- data/spec/unit/gdal/raster_band_classifier_spec.rb +134 -0
- data/spec/unit/gdal/raster_band_spec.rb +5 -0
- data/spec/unit/gdal/rpc_info_spec.rb +5 -0
- data/spec/unit/gdal/version_info_spec.rb +6 -0
- data/spec/unit/gdal/virtual_dataset_spec.rb +32 -0
- data/spec/unit/gdal/warp_operation_spec.rb +5 -0
- data/spec/unit/ogr/data_source_mixins/capability_methods_spec.rb +30 -0
- data/spec/unit/ogr/data_source_spec.rb +209 -0
- data/spec/unit/ogr/driver_mixins/capability_methods_spec.rb +18 -0
- data/spec/unit/ogr/driver_spec.rb +150 -0
- data/spec/unit/ogr/envelope_spec.rb +322 -0
- data/spec/unit/ogr/feature_definition_spec.rb +313 -0
- data/spec/unit/ogr/feature_spec.rb +379 -0
- data/spec/unit/ogr/field_definition_spec.rb +135 -0
- data/spec/unit/ogr/field_spec.rb +193 -0
- data/spec/unit/ogr/geometries/geometry_collection_spec.rb +186 -0
- data/spec/unit/ogr/geometries/line_string_spec.rb +105 -0
- data/spec/unit/ogr/{linear_ring_spec.rb → geometries/linear_ring_spec.rb} +10 -31
- data/spec/unit/ogr/geometries/multi_line_string_spec.rb +14 -0
- data/spec/unit/ogr/geometries/multi_point_spec.rb +14 -0
- data/spec/unit/ogr/geometries/multi_polygon_spec.rb +41 -0
- data/spec/unit/ogr/geometries/none_geometry_spec.rb +12 -0
- data/spec/unit/ogr/{point_spec.rb → geometries/point_spec.rb} +19 -25
- data/spec/unit/ogr/geometries/polygon_spec.rb +17 -0
- data/spec/unit/ogr/geometries/unknown_geometry_spec.rb +10 -0
- data/spec/unit/ogr/geometry_field_definition_spec.rb +87 -0
- data/spec/unit/ogr/geometry_spec.rb +542 -0
- data/spec/unit/ogr/internal_helpers_spec.rb +57 -0
- data/spec/unit/ogr/layer_mixins/capability_methods_spec.rb +88 -0
- data/spec/unit/ogr/layer_mixins/ogr_feature_methods_spec.rb +145 -0
- data/spec/unit/ogr/layer_mixins/ogr_field_methods_spec.rb +432 -0
- data/spec/unit/ogr/layer_mixins/ogr_layer_method_methods_spec.rb +20 -0
- data/spec/unit/ogr/layer_mixins/ogr_query_filter_methods_spec.rb +42 -0
- data/spec/unit/ogr/layer_mixins/ogr_sql_methods_spec.rb +12 -0
- data/spec/unit/ogr/layer_spec.rb +66 -67
- data/spec/unit/ogr/spatial_reference_mixins/coordinate_system_getter_setters_spec.rb +46 -0
- data/spec/unit/ogr/spatial_reference_mixins/exporters_spec.rb +139 -0
- data/spec/unit/ogr/spatial_reference_mixins/importers_spec.rb +38 -0
- data/spec/unit/ogr/spatial_reference_mixins/morphers_spec.rb +36 -0
- data/spec/unit/ogr/spatial_reference_mixins/parameter_getter_setters_spec.rb +102 -0
- data/spec/unit/ogr/spatial_reference_mixins/type_checks_spec.rb +157 -0
- data/spec/unit/ogr/spatial_reference_spec.rb +42 -0
- data/spec/unit/ogr/style_table_spec.rb +132 -0
- data/spec/unit/ogr/style_tool_spec.rb +157 -0
- data/spec/unit/version_info_spec.rb +1 -1
- metadata +285 -75
- data/lib/ffi/cpl/conv_h.rb +0 -143
- data/lib/ffi/cpl/error_h.rb +0 -63
- data/lib/ffi/cpl/minixml_h.rb +0 -14
- data/lib/ffi/cpl/string_h.rb +0 -81
- data/lib/ffi/cpl/vsi_h.rb +0 -112
- data/lib/ffi/gdal/alg_h.rb +0 -127
- data/lib/ffi/gdal/grid_h.rb +0 -51
- data/lib/ffi/gdal/warper_h.rb +0 -48
- data/lib/ffi/ogr/api_h.rb +0 -553
- data/lib/ffi/ogr/core_h.rb +0 -148
- data/lib/ffi/ogr/featurestyle_h.rb +0 -22
- data/lib/ffi/ogr/geocoding_h.rb +0 -21
- data/lib/ffi/ogr/ogr_field.rb +0 -50
- data/lib/ffi/ogr/ogr_style_param.rb +0 -12
- data/lib/ffi/ogr/srs_api_h.rb +0 -325
- data/lib/gdal/color_entry_extensions.rb +0 -30
- data/lib/gdal/color_table_extensions.rb +0 -47
- data/lib/gdal/dataset_extensions.rb +0 -496
- data/lib/gdal/driver_extensions.rb +0 -56
- data/lib/gdal/geo_transform_extensions.rb +0 -90
- data/lib/gdal/raster_attribute_table_extensions.rb +0 -40
- data/lib/gdal/raster_band_extensions.rb +0 -198
- data/lib/ogr/geometry_types/collection.rb +0 -45
- data/lib/ogr/layer_extensions.rb +0 -55
- data/lib/ogr/line_string.rb +0 -7
- data/lib/ogr/linear_ring.rb +0 -6
- data/lib/ogr/multi_line_string.rb +0 -9
- data/lib/ogr/multi_point.rb +0 -7
- data/lib/ogr/multi_polygon.rb +0 -14
- data/lib/ogr/point.rb +0 -89
- data/lib/ogr/polygon.rb +0 -9
@@ -0,0 +1,110 @@
|
|
1
|
+
require_relative '../ffi/ogr'
|
2
|
+
require_relative 'field_definition_extensions'
|
3
|
+
|
4
|
+
module OGR
|
5
|
+
class FieldDefinition
|
6
|
+
include FieldDefinitionExtensions
|
7
|
+
|
8
|
+
# @return [FFI::Pointer] C pointer to the C FieldDefn.
|
9
|
+
attr_reader :c_pointer
|
10
|
+
|
11
|
+
# @param name_or_pointer [String, FFI::Pointer]
|
12
|
+
# @param type [FFI::OGR::FieldType]
|
13
|
+
def initialize(name_or_pointer, type)
|
14
|
+
@c_pointer = if name_or_pointer.is_a? String
|
15
|
+
FFI::OGR::API.OGR_Fld_Create(name_or_pointer, type)
|
16
|
+
else
|
17
|
+
name_or_pointer
|
18
|
+
end
|
19
|
+
|
20
|
+
unless @c_pointer.is_a?(FFI::Pointer) && !@c_pointer.null?
|
21
|
+
fail OGR::InvalidFieldDefinition, "Unable to create #{self.class.name} from #{name_or_pointer}"
|
22
|
+
end
|
23
|
+
|
24
|
+
ObjectSpace.define_finalizer(self, -> { destroy! })
|
25
|
+
end
|
26
|
+
|
27
|
+
def destroy!
|
28
|
+
FFI::OGR::API.OGR_Fld_Destroy(@c_pointer)
|
29
|
+
@c_pointer = nil
|
30
|
+
end
|
31
|
+
|
32
|
+
# Set all defining attributes in one call.
|
33
|
+
#
|
34
|
+
# @param name [String]
|
35
|
+
# @param type [FFI::OGR::FieldType]
|
36
|
+
# @param width [Fixnum]
|
37
|
+
# @param precision [Fixnum]
|
38
|
+
# @param justification [FFI::OGR::Justification]
|
39
|
+
def set(name, type, width, precision, justification)
|
40
|
+
FFI::OGR::API.OGR_Fld_Set(
|
41
|
+
@c_pointer,
|
42
|
+
name,
|
43
|
+
type,
|
44
|
+
width,
|
45
|
+
precision,
|
46
|
+
justification
|
47
|
+
)
|
48
|
+
end
|
49
|
+
|
50
|
+
# @return [String]
|
51
|
+
def name
|
52
|
+
FFI::OGR::API.OGR_Fld_GetNameRef(@c_pointer)
|
53
|
+
end
|
54
|
+
|
55
|
+
# @param new_value [String]
|
56
|
+
def name=(new_value)
|
57
|
+
FFI::OGR::API.OGR_Fld_SetName(@c_pointer, new_value)
|
58
|
+
end
|
59
|
+
|
60
|
+
# @return [FFI::OGR::Justification]
|
61
|
+
def justification
|
62
|
+
FFI::OGR::API.OGR_Fld_GetJustify(@c_pointer)
|
63
|
+
end
|
64
|
+
|
65
|
+
# @param new_value [FFI::OGR::Justification]
|
66
|
+
def justification=(new_value)
|
67
|
+
FFI::OGR::API.OGR_Fld_SetJustify(@c_pointer, new_value)
|
68
|
+
end
|
69
|
+
|
70
|
+
# @return [Fixnum]
|
71
|
+
def precision
|
72
|
+
FFI::OGR::API.OGR_Fld_GetPrecision(@c_pointer)
|
73
|
+
end
|
74
|
+
|
75
|
+
# @param new_value [Fixnum]
|
76
|
+
def precision=(new_value)
|
77
|
+
FFI::OGR::API.OGR_Fld_SetPrecision(@c_pointer, new_value)
|
78
|
+
end
|
79
|
+
|
80
|
+
# @return [FFI::OGR::FieldType]
|
81
|
+
def type
|
82
|
+
FFI::OGR::API.OGR_Fld_GetType(@c_pointer)
|
83
|
+
end
|
84
|
+
|
85
|
+
# @param new_value [FFI::OGR::FieldType]
|
86
|
+
def type=(new_value)
|
87
|
+
FFI::OGR::API.OGR_Fld_SetType(@c_pointer, new_value)
|
88
|
+
end
|
89
|
+
|
90
|
+
# @return [Fixnum]
|
91
|
+
def width
|
92
|
+
FFI::OGR::API.OGR_Fld_GetWidth(@c_pointer)
|
93
|
+
end
|
94
|
+
|
95
|
+
# @param new_value [Fixnum]
|
96
|
+
def width=(new_value)
|
97
|
+
FFI::OGR::API.OGR_Fld_SetWidth(@c_pointer, new_value)
|
98
|
+
end
|
99
|
+
|
100
|
+
# @return [Boolean]
|
101
|
+
def ignored?
|
102
|
+
FFI::OGR::API.OGR_Fld_IsIgnored(@c_pointer)
|
103
|
+
end
|
104
|
+
|
105
|
+
# @param new_value [Boolean]
|
106
|
+
def ignore=(new_value)
|
107
|
+
FFI::OGR::API.OGR_Fld_SetIgnored(@c_pointer, new_value)
|
108
|
+
end
|
109
|
+
end
|
110
|
+
end
|
@@ -1,10 +1,9 @@
|
|
1
1
|
require 'json'
|
2
2
|
|
3
3
|
module OGR
|
4
|
-
module
|
5
|
-
|
4
|
+
module FieldDefinitionExtensions
|
6
5
|
# @return [Hash]
|
7
|
-
def as_json
|
6
|
+
def as_json(_options = nil)
|
8
7
|
{
|
9
8
|
is_ignored: ignored?,
|
10
9
|
justification: justification,
|
@@ -16,8 +15,8 @@ module OGR
|
|
16
15
|
end
|
17
16
|
|
18
17
|
# @return [String]
|
19
|
-
def to_json
|
20
|
-
as_json.to_json
|
18
|
+
def to_json(options = nil)
|
19
|
+
as_json(options).to_json
|
21
20
|
end
|
22
21
|
end
|
23
22
|
end
|
@@ -1,9 +1,11 @@
|
|
1
1
|
require_relative 'layer'
|
2
2
|
|
3
3
|
module OGR
|
4
|
-
|
5
4
|
# Geocode things! http://www.gdal.org/ogr__geocoding_8h.html
|
6
|
-
class
|
5
|
+
class Geocoder
|
6
|
+
# @return [FFI::Pointer] C pointer to the C geocoding session.
|
7
|
+
attr_reader :c_pointer
|
8
|
+
|
7
9
|
# @param options [Hash]
|
8
10
|
# @option options cache_file [String] Name of the file to write the cache
|
9
11
|
# to.
|
@@ -32,21 +34,20 @@ module OGR
|
|
32
34
|
|
33
35
|
options_ptr = GDAL::Options.pointer(converted_options)
|
34
36
|
|
35
|
-
@
|
36
|
-
end
|
37
|
-
|
38
|
-
def c_pointer
|
39
|
-
@geocoding_session_pointer
|
37
|
+
@c_pointer = FFI::GDAL.OGRGeocodeCreateSession(options_ptr)
|
40
38
|
end
|
41
39
|
|
42
40
|
def destroy!
|
43
|
-
|
41
|
+
return unless @c_pointer
|
42
|
+
|
43
|
+
FFI::GDAL.OGRGeocodeDestroySession(@c_pointer)
|
44
|
+
@c_pointer = nil
|
44
45
|
end
|
45
46
|
|
46
47
|
# @param query [String]
|
47
48
|
# @param options [Hash]
|
48
49
|
# @option options addressdetails [Boolean] +true+ to include a breakdown of
|
49
|
-
# the
|
50
|
+
# the address into elements. Only works with some geocoding services.
|
50
51
|
# @option options countrycodes [Array<String, Symbol>] Limit the search to a
|
51
52
|
# specific country or countries. Only works with some geocoding services.
|
52
53
|
# @option options limit [Fixnum] Limit the number of records returned. Only
|
@@ -57,8 +58,8 @@ module OGR
|
|
57
58
|
# @return [OGR::Layer, nil]
|
58
59
|
def geocode(query, **options)
|
59
60
|
options_ptr = GDAL::Options.pointer(options)
|
60
|
-
layer_ptr =
|
61
|
-
options_ptr)
|
61
|
+
layer_ptr =
|
62
|
+
FFI::GDAL.OGRGeocode(@c_pointer, query, nil, options_ptr)
|
62
63
|
return nil if layer_ptr.null?
|
63
64
|
|
64
65
|
OGR::Layer.new(layer_ptr)
|
@@ -74,8 +75,8 @@ module OGR
|
|
74
75
|
# @return [OGR::Layer]
|
75
76
|
def reverse_geocode(lon, lat, **options)
|
76
77
|
options_ptr = GDAL::Options.pointer(options)
|
77
|
-
layer_ptr =
|
78
|
-
lat, options_ptr)
|
78
|
+
layer_ptr =
|
79
|
+
FFI::GDAL.OGRGeocodeReverse(@c_pointer, lon, lat, options_ptr)
|
79
80
|
return nil if layer_ptr.null?
|
80
81
|
|
81
82
|
OGR::Layer.new(layer_ptr)
|
@@ -0,0 +1,13 @@
|
|
1
|
+
require_relative '../geometry_types/container'
|
2
|
+
|
3
|
+
module OGR
|
4
|
+
class GeometryCollection
|
5
|
+
include OGR::Geometry
|
6
|
+
include GeometryTypes::Container
|
7
|
+
|
8
|
+
def initialize(geometry_ptr = nil)
|
9
|
+
geometry_ptr ||= OGR::Geometry.create(:wkbGeometryCollection)
|
10
|
+
initialize_from_pointer(geometry_ptr)
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
require_relative '../geometry_types/curve'
|
2
|
+
|
3
|
+
module OGR
|
4
|
+
class LineString
|
5
|
+
include OGR::Geometry
|
6
|
+
include GeometryTypes::Curve
|
7
|
+
|
8
|
+
def self.approximate_arc_angles(center_x, center_y,
|
9
|
+
z,
|
10
|
+
primary_radius, secondary_radius,
|
11
|
+
rotation,
|
12
|
+
start_angle, end_angle,
|
13
|
+
max_angle_step_size_degrees = 0)
|
14
|
+
geometry_ptr = FFI::GDAL.OGR_G_ApproximateArcAngles(
|
15
|
+
center_x,
|
16
|
+
center_y,
|
17
|
+
z,
|
18
|
+
primary_radius,
|
19
|
+
secondary_radius,
|
20
|
+
rotation,
|
21
|
+
start_angle,
|
22
|
+
end_angle,
|
23
|
+
max_angle_step_size_degrees
|
24
|
+
)
|
25
|
+
return nil if geometry_ptr.null?
|
26
|
+
|
27
|
+
new(geometry_ptr)
|
28
|
+
end
|
29
|
+
|
30
|
+
def initialize(geometry_ptr = nil)
|
31
|
+
geometry_ptr ||= OGR::Geometry.create(:wkbLineString)
|
32
|
+
initialize_from_pointer(geometry_ptr)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
require_relative 'line_string'
|
2
|
+
|
3
|
+
module OGR
|
4
|
+
class LinearRing < LineString
|
5
|
+
# @param [FFI::Pointer] geometry_ptr
|
6
|
+
def initialize(geometry_ptr = nil)
|
7
|
+
geometry_ptr ||= OGR::Geometry.create(:wkbLinearRing)
|
8
|
+
initialize_from_pointer(geometry_ptr)
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
require_relative '../geometry_types/curve'
|
2
|
+
require_relative '../geometry_types/container'
|
3
|
+
|
4
|
+
module OGR
|
5
|
+
class MultiLineString
|
6
|
+
include OGR::Geometry
|
7
|
+
include GeometryTypes::Curve
|
8
|
+
include GeometryTypes::Container
|
9
|
+
|
10
|
+
# @param [FFI::Pointer] geometry_ptr
|
11
|
+
def initialize(geometry_ptr = nil)
|
12
|
+
geometry_ptr ||= OGR::Geometry.create(:wkbMultiLineString)
|
13
|
+
initialize_from_pointer(geometry_ptr)
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
require_relative '../geometry_types/container'
|
2
|
+
|
3
|
+
module OGR
|
4
|
+
class MultiPoint
|
5
|
+
include OGR::Geometry
|
6
|
+
include GeometryTypes::Container
|
7
|
+
|
8
|
+
# @param [FFI::Pointer] geometry_ptr
|
9
|
+
def initialize(geometry_ptr = nil)
|
10
|
+
geometry_ptr ||= OGR::Geometry.create(:wkbMultiPoint)
|
11
|
+
initialize_from_pointer(geometry_ptr)
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
require_relative '../geometry_types/container'
|
2
|
+
require_relative '../geometry_types/surface'
|
3
|
+
|
4
|
+
module OGR
|
5
|
+
class MultiPolygon
|
6
|
+
include OGR::Geometry
|
7
|
+
include GeometryTypes::Container
|
8
|
+
include GeometryTypes::Surface
|
9
|
+
|
10
|
+
# @param [FFI::Pointer] geometry_ptr
|
11
|
+
def initialize(geometry_ptr = nil)
|
12
|
+
geometry_ptr ||= OGR::Geometry.create(:wkbMultiPolygon)
|
13
|
+
initialize_from_pointer(geometry_ptr)
|
14
|
+
end
|
15
|
+
|
16
|
+
# @return [OGR::Geometry]
|
17
|
+
def union_cascaded
|
18
|
+
build_geometry { |ptr| FFI::OGR::API.OGR_G_UnionCascaded(ptr) }
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
module OGR
|
2
|
+
class NoneGeometry
|
3
|
+
include OGR::Geometry
|
4
|
+
|
5
|
+
# OGR doesn't seem to let you create NoneGeometries, so let's only allow
|
6
|
+
# creation from a pointer.
|
7
|
+
#
|
8
|
+
# @param geometry_ptr [FFI::Pointer]
|
9
|
+
def initialize(geometry_ptr)
|
10
|
+
initialize_from_pointer(geometry_ptr)
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
@@ -0,0 +1,65 @@
|
|
1
|
+
require_relative 'point_extensions'
|
2
|
+
|
3
|
+
module OGR
|
4
|
+
class Point
|
5
|
+
include OGR::Geometry
|
6
|
+
include PointExtensions
|
7
|
+
|
8
|
+
# @param [FFI::Pointer] geometry_ptr
|
9
|
+
def initialize(geometry_ptr = nil)
|
10
|
+
geometry_ptr ||= OGR::Geometry.create(:wkbPoint)
|
11
|
+
initialize_from_pointer(geometry_ptr)
|
12
|
+
end
|
13
|
+
|
14
|
+
# @return [Float]
|
15
|
+
def x
|
16
|
+
return nil if empty?
|
17
|
+
|
18
|
+
FFI::OGR::API.OGR_G_GetX(@c_pointer, 0)
|
19
|
+
end
|
20
|
+
|
21
|
+
# @return [Float]
|
22
|
+
def y
|
23
|
+
return nil if empty?
|
24
|
+
|
25
|
+
FFI::OGR::API.OGR_G_GetY(@c_pointer, 0)
|
26
|
+
end
|
27
|
+
|
28
|
+
# @return [Float]
|
29
|
+
def z
|
30
|
+
return nil if empty?
|
31
|
+
|
32
|
+
FFI::OGR::API.OGR_G_GetZ(@c_pointer, 0)
|
33
|
+
end
|
34
|
+
|
35
|
+
# @return [Array<Float, Float, Float>] [x, y] if 2d or [x, y, z] if 3d.
|
36
|
+
def point
|
37
|
+
return [] if empty?
|
38
|
+
|
39
|
+
x_ptr = FFI::MemoryPointer.new(:double)
|
40
|
+
y_ptr = FFI::MemoryPointer.new(:double)
|
41
|
+
z_ptr = FFI::MemoryPointer.new(:double)
|
42
|
+
|
43
|
+
FFI::OGR::API.OGR_G_GetPoint(@c_pointer, 0, x_ptr, y_ptr, z_ptr)
|
44
|
+
|
45
|
+
if coordinate_dimension == 2
|
46
|
+
[x_ptr.read_double, y_ptr.read_double]
|
47
|
+
else
|
48
|
+
[x_ptr.read_double, y_ptr.read_double, z_ptr.read_double]
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
def set_point(x, y, z = 0)
|
53
|
+
FFI::OGR::API.OGR_G_SetPoint(@c_pointer, 0, x, y, z)
|
54
|
+
end
|
55
|
+
|
56
|
+
# Adds a point to a LineString or Point geometry.
|
57
|
+
#
|
58
|
+
# @param x [Float]
|
59
|
+
# @param y [Float]
|
60
|
+
# @param z [Float]
|
61
|
+
def add_point(x, y, z = 0)
|
62
|
+
FFI::OGR::API.OGR_G_AddPoint(@c_pointer, x, y, z)
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
module OGR
|
2
|
+
module PointExtensions
|
3
|
+
# @return [Array<Array>] An array of (x, y) or (x, y, z) points.
|
4
|
+
def points
|
5
|
+
return [[]] if empty?
|
6
|
+
|
7
|
+
x_stride = 2
|
8
|
+
y_stride = 2
|
9
|
+
z_stride = coordinate_dimension == 3 ? 1 : 0
|
10
|
+
|
11
|
+
buffer_size = FFI::Type::DOUBLE.size * 2 * point_count
|
12
|
+
|
13
|
+
x_buffer = FFI::MemoryPointer.new(:buffer_out, buffer_size)
|
14
|
+
y_buffer = FFI::MemoryPointer.new(:buffer_out, buffer_size)
|
15
|
+
|
16
|
+
z_buffer = if coordinate_dimension == 3
|
17
|
+
z_size = FFI::Type::DOUBLE.size * point_count
|
18
|
+
FFI::MemoryPointer.new(:buffer_out, z_size)
|
19
|
+
end
|
20
|
+
|
21
|
+
_num_points = FFI::OGR::API.OGR_G_GetPoints(@c_pointer,
|
22
|
+
x_buffer,
|
23
|
+
x_stride,
|
24
|
+
y_buffer,
|
25
|
+
y_stride,
|
26
|
+
z_buffer,
|
27
|
+
z_stride)
|
28
|
+
|
29
|
+
[point]
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
require_relative '../geometry_types/surface'
|
2
|
+
|
3
|
+
module OGR
|
4
|
+
class Polygon
|
5
|
+
include OGR::Geometry
|
6
|
+
include GeometryTypes::Surface
|
7
|
+
|
8
|
+
# @param [FFI::Pointer] geometry_ptr
|
9
|
+
def initialize(geometry_ptr = nil)
|
10
|
+
geometry_ptr ||= OGR::Geometry.create(:wkbPolygon)
|
11
|
+
initialize_from_pointer(geometry_ptr)
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|