Class: Resolv::LOC::Alt
- Inherits:
-
Object
- Object
- Resolv::LOC::Alt
- Defined in:
- lib/resolv.rb
Overview
A Resolv::LOC::Alt
Constant Summary collapse
- Regex =
/^([+-]*\d+\.*\d*)[m]$/
Instance Attribute Summary collapse
-
#altitude ⇒ Object
readonly
The raw altitude.
Class Method Summary collapse
-
.create(arg) ⇒ Object
Creates a new LOC::Alt from
arg
which may be:.
Instance Method Summary collapse
-
#==(other) ⇒ Object
:nodoc:.
-
#eql?(other) ⇒ Boolean
:nodoc:.
-
#hash ⇒ Object
:nodoc:.
-
#initialize(altitude) ⇒ Alt
constructor
A new instance of Alt.
-
#inspect ⇒ Object
:nodoc:.
-
#to_s ⇒ Object
:nodoc:.
Constructor Details
#initialize(altitude) ⇒ Alt
Returns a new instance of Alt.
2857 2858 2859 |
# File 'lib/resolv.rb', line 2857 def initialize(altitude) @altitude = altitude end |
Instance Attribute Details
#altitude ⇒ Object (readonly)
The raw altitude
2864 2865 2866 |
# File 'lib/resolv.rb', line 2864 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
2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 |
# File 'lib/resolv.rb', line 2840 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:
2875 2876 2877 |
# File 'lib/resolv.rb', line 2875 def ==(other) # :nodoc: return @altitude == other.altitude end |
#eql?(other) ⇒ Boolean
:nodoc:
2879 2880 2881 |
# File 'lib/resolv.rb', line 2879 def eql?(other) # :nodoc: return self == other end |
#hash ⇒ Object
:nodoc:
2883 2884 2885 |
# File 'lib/resolv.rb', line 2883 def hash # :nodoc: return @altitude.hash end |
#inspect ⇒ Object
:nodoc:
2871 2872 2873 |
# File 'lib/resolv.rb', line 2871 def inspect # :nodoc: return "#<#{self.class} #{self}>" end |
#to_s ⇒ Object
:nodoc:
2866 2867 2868 2869 |
# File 'lib/resolv.rb', line 2866 def to_s # :nodoc: a = @altitude.unpack("N").join.to_i return ((a.to_f/1e2)-1e5).to_s + "m" end |