Class: OGR::MultiPoint25D

Inherits:
Geometry show all
Defined in:
lib/ffi-ogr/multi_point_25d.rb

Instance Attribute Summary

Attributes inherited from Geometry

#ptr

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
12
# File 'lib/ffi-ogr/multi_point_25d.rb', line 3

def self.create(points)
  multi_point = OGR::Tools.cast_geometry(FFIOGR.OGR_G_CreateGeometry(:multi_point_25d))

  points.each do |point|
    pt = OGR::Point.create(point)
    multi_point.add_geometry(pt)
  end

  multi_point
end