Sha256: 084d1d4c383a0dd1d50fb1f311665632c3f159ac500f74e4317b2c0ff45bdf45

Contents?: true

Size: 396 Bytes

Versions: 1

Compression:

Stored size: 396 Bytes

Contents

require_relative '../../ffi/gdal/gdal_grid_moving_average_options'

module GDAL
  module GridTypes
    class MovingAverage
      # @return [FFI::GDAL::GridMovingAverageOptions]
      attr_reader :options

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

      # @return [Symbol]
      def algorithm
        :GGA_MovingAverage
      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/moving_average.rb