class OGR::MultiPoint25D
NOTE: {{#type}} will return :wkbMultiPoint (read: 2D instead of 2.5D) until a Z value is set.
Public Class Methods
new(geometry_ptr = nil, spatial_reference: nil)
click to toggle source
@param geometry_ptr [FFI::Pointer] @param spatial_reference [OGR::SpatialReference]
Calls superclass method
OGR::MultiPoint::new
# File lib/ogr/geometries/multi_point_25d.rb, line 11 def initialize(geometry_ptr = nil, spatial_reference: nil) geometry_ptr ||= OGR::Geometry.create(:wkbMultiPoint25D) super(geometry_ptr, spatial_reference: spatial_reference) end