seanhandley/h3_ruby

View on GitHub
lib/h3/inspection.rb

Summary

Maintainability
A
0 mins
Test Coverage
module H3
  # Index inspection functions.
  #
  # @see https://uber.github.io/h3/#/documentation/api-reference/inspection
  module Inspection
    extend H3::Bindings::Base

    H3_TO_STR_BUF_SIZE = 17
    private_constant :H3_TO_STR_BUF_SIZE

    # @!method resolution(h3_index)
    #
    # Derive the resolution of a given H3 index
    #
    # @param [Integer] h3_index A valid H3 index
    #
    # @example Derive the resolution of a H3 index
    #   H3.resolution(617700440100569087)
    #   9
    #
    # @return [Integer] Resolution of H3 index
    attach_function :resolution, :h3GetResolution, %i[h3_index], Resolution

    # @!method base_cell(h3_index)
    #
    # Derives the base cell number of the given H3 index
    #
    # @param [Integer] h3_index A valid H3 index
    #
    # @example Derive the base cell number of a H3 index
    #   H3.base_cell(617700440100569087)
    #   20
    #
    # @return [Integer] Base cell number
    attach_function :base_cell, :h3GetBaseCell, %i[h3_index], :int

    # @!method from_string(h3_string)
    #
    # Derives the H3 index for a given hexadecimal string representation.
    #
    # @param [String] h3_string A H3 index in hexadecimal form.
    #
    # @example Derive the H3 index from the given hexadecimal form.
    #   H3.from_string("8928308280fffff")
    #   617700169958293503
    #
    # @raise [ArgumentError] If h3_string is nil
    #
    # @return [Integer] H3 index
    def from_string(h3_string)
      raise ArgumentError if h3_string.nil?
      Bindings::Private.string_to_h3(h3_string)
    end

    # @!method pentagon?(h3_index)
    #
    # Determine whether the given H3 index is a pentagon.
    #
    # @param [Integer] h3_index A valid H3 index.
    #
    # @example Check if H3 index is a pentagon
    #   H3.pentagon?(585961082523222015)
    #   true
    #
    # @return [Boolean] True if the H3 index is a pentagon.
    attach_predicate_function :pentagon?, :h3IsPentagon, %i[h3_index], :bool

    # @!method class_3_resolution?(h3_index)
    #
    # Determine whether the given H3 index has a resolution with
    # Class III orientation.
    #
    # @param [Integer] h3_index A valid H3 index.
    #
    # @example Check if H3 index has a class III resolution.
    #   H3.class_3_resolution?(599686042433355775)
    #   true
    #
    # @return [Boolean] True if the H3 index has a class III resolution.
    attach_predicate_function :class_3_resolution?, :h3IsResClassIII, %i[h3_index], :bool

    # @!method valid?(h3_index)
    #
    # Determine whether the given H3 index is valid.
    #
    # @param [Integer] h3_index A H3 index.
    #
    # @example Check if H3 index is valid
    #   H3.valid?(599686042433355775)
    #   true
    #
    # @return [Boolean] True if the H3 index is valid.
    attach_predicate_function :valid?, :h3IsValid, %i[h3_index], :bool

    # Derives the hexadecimal string representation for a given H3 index.
    #
    # @param [Integer] h3_index A valid H3 index.
    #
    # @example Derive the given hexadecimal form for the H3 index
    #   H3.to_string(617700169958293503)
    #   "89283470dcbffff"
    #
    # @return [String] H3 index in hexadecimal form.
    def to_string(h3_index)
      h3_str = FFI::MemoryPointer.new(:char, H3_TO_STR_BUF_SIZE)
      Bindings::Private.h3_to_string(h3_index, h3_str, H3_TO_STR_BUF_SIZE)
      h3_str.read_string
    end

    # @!method max_face_count(h3_index)
    #
    # Returns the maximum number of icosahedron faces the given H3 index may intersect.
    #
    # @param [Integer] h3_index A H3 index.
    #
    # @example Check maximum faces
    #   H3.max_face_count(585961082523222015)
    #   5
    #
    # @return [Integer] Maximum possible number of faces
    attach_function :max_face_count, :maxFaceCount, %i[h3_index], :int

    # Find all icosahedron faces intersected by a given H3 index.
    #
    # @param [Integer] h3_index A H3 index.
    #
    # @example Find icosahedron faces for given index
    #   H3.faces(585961082523222015)
    #   [1, 2, 6, 7, 11]
    #
    # @return [Array<Integer>] Faces. Faces are represented as integers from 0-19, inclusive.
    def faces(h3_index)
      max_faces = max_face_count(h3_index)
      out = FFI::MemoryPointer.new(:int, max_faces)
      Bindings::Private.h3_faces(h3_index, out)
      # The C function returns a sparse array whose holes are represented by -1.
      out.read_array_of_int(max_faces).reject(&:negative?).sort
    end
  end
end