Class: Resolv::LOC::Alt

Inherits:
Object
  • Object
show all
Defined in:
lib/resolv.rb

Overview

A Resolv::LOC::Alt

Constant Summary collapse

Regex =
/^([+-]*\d+\.*\d*)[m]$/

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(altitude) ⇒ Alt

Returns a new instance of Alt.



2831
2832
2833
# File 'lib/resolv.rb', line 2831

def initialize(altitude)
  @altitude = altitude
end

Instance Attribute Details

#altitudeObject (readonly)

The raw altitude



2838
2839
2840
# File 'lib/resolv.rb', line 2838

def altitude
  @altitude
end

Class Method Details

.create(arg) ⇒ Object

Creates a new LOC::Alt from arg which may be:

LOC::Alt

returns arg.

String

arg must match the LOC::Alt::Regex constant



2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
# File 'lib/resolv.rb', line 2814

def self.create(arg)
  case arg
  when Alt
    return arg
  when String
    altitude = ''
    if Regex =~ arg
      altitude = [($1.to_f*(1e2))+(1e7)].pack("N")
    else
      raise ArgumentError.new("not a properly formed Alt string: " + arg)
    end
    return Alt.new(altitude)
  else
    raise ArgumentError.new("cannot interpret as Alt: #{arg.inspect}")
  end
end

Instance Method Details

#==(other) ⇒ Object

:nodoc:



2849
2850
2851
# File 'lib/resolv.rb', line 2849

def ==(other) # :nodoc:
  return @altitude == other.altitude
end

#eql?(other) ⇒ Boolean

:nodoc:

Returns:

  • (Boolean)


2853
2854
2855
# File 'lib/resolv.rb', line 2853

def eql?(other) # :nodoc:
  return self == other
end

#hashObject

:nodoc:



2857
2858
2859
# File 'lib/resolv.rb', line 2857

def hash # :nodoc:
  return @altitude.hash
end

#inspectObject

:nodoc:



2845
2846
2847
# File 'lib/resolv.rb', line 2845

def inspect # :nodoc:
  return "#<#{self.class} #{self}>"
end

#to_sObject

:nodoc:



2840
2841
2842
2843
# File 'lib/resolv.rb', line 2840

def to_s # :nodoc:
  a = @altitude.unpack("N").join.to_i
  return ((a.to_f/1e2)-1e5).to_s + "m"
end