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.



2783
2784
2785
# File 'lib/resolv.rb', line 2783

def initialize(altitude)
  @altitude = altitude
end

Instance Attribute Details

#altitudeObject (readonly)

The raw altitude



2790
2791
2792
# File 'lib/resolv.rb', line 2790

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



2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
# File 'lib/resolv.rb', line 2766

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:



2801
2802
2803
# File 'lib/resolv.rb', line 2801

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

#eql?(other) ⇒ Boolean

:nodoc:

Returns:

  • (Boolean)


2805
2806
2807
# File 'lib/resolv.rb', line 2805

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

#hashObject

:nodoc:



2809
2810
2811
# File 'lib/resolv.rb', line 2809

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

#inspectObject

:nodoc:



2797
2798
2799
# File 'lib/resolv.rb', line 2797

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

#to_sObject

:nodoc:



2792
2793
2794
2795
# File 'lib/resolv.rb', line 2792

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