Class: OGR::LineString
Instance Attribute Summary
Attributes inherited from Geometry
Class Method Summary collapse
Methods inherited from Geometry
#add_geometry, #add_geometry_directly, #add_point, create_empty, #flatten, #free, from_geojson, #get_area, #get_boundary, #get_envelope, #get_geometry_type, #get_length, #get_spatial_ref, #initialize, #is_3d?, release, #set_point, #to_geojson, #to_gml, #to_kml, #transform
Constructor Details
This class inherits a constructor from OGR::Geometry
Class Method Details
.create(points) ⇒ Object
3 4 5 6 7 8 9 10 11 |
# File 'lib/ffi-ogr/line_string.rb', line 3 def self.create(points) ls = OGR::Tools.cast_geometry(FFIOGR.OGR_G_CreateGeometry(:line_string)) points.each do |point| ls.add_point(point) end ls end |