Sha256: f4f79331a154a85c7cf7239107cdcc14af4cb2650a92b023b93022860d54a7fe

Contents?: true

Size: 406 Bytes

Versions: 1

Compression:

Stored size: 406 Bytes

Contents

require_relative '../../ffi/gdal/gdal_grid_nearest_neighbor_options'

module GDAL
  module GridTypes
    class NearestNeighbor
      # @return [FFI::GDAL::GridNearestNeighborOptions]
      attr_reader :options

      def initialize
        @options = FFI::GDAL::GridNearestNeighborOptions.new
      end

      # @return [Symbol]
      def algorithm
        :GGA_NearestNeighbor
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ffi-gdal-1.0.0.beta4 lib/gdal/grid_types/nearest_neighbor.rb