Sha256: 9672994dabadacf2df775a467abf76b3630e153e777050e3c58fad929b46cec1
Contents?: true
Size: 470 Bytes
Versions: 12
Compression:
Stored size: 470 Bytes
Contents
# frozen_string_literal: true require_relative 'multi_polygon' module OGR # NOTE: {{#type}} will return :wkbMultiPolygon (read: 2D instead of 2.5D) # until a Z value is set. class MultiPolygon25D < MultiPolygon # @param [FFI::Pointer] geometry_ptr def initialize(geometry_ptr = nil, spatial_reference: nil) geometry_ptr ||= OGR::Geometry.create(:wkbMultiPolygon25D) super(geometry_ptr, spatial_reference: spatial_reference) end end end
Version data entries
12 entries across 12 versions & 1 rubygems