Class: Kamelopard::LatLonBox

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

Overview

Corresponds to KML’s LatLonBox and LatLonAltBox

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(north, south, east, west, rotation = 0, minAltitude = nil, maxAltitude = nil, altitudeMode = :clampToGround) ⇒ LatLonBox

Returns a new instance of LatLonBox.



1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
# File 'lib/kamelopard/classes.rb', line 1606

def initialize(north, south, east, west, rotation = 0, minAltitude = nil, maxAltitude = nil, altitudeMode = :clampToGround)
    @north = Kamelopard.convert_coord north
    @south = Kamelopard.convert_coord south
    @east = Kamelopard.convert_coord east
    @west = Kamelopard.convert_coord west
    @minAltitude = minAltitude
    @maxAltitude = maxAltitude
    @altitudeMode = altitudeMode
    @rotation = rotation
end

Instance Attribute Details

#altitudeModeObject

Returns the value of attribute altitudeMode.



1604
1605
1606
# File 'lib/kamelopard/classes.rb', line 1604

def altitudeMode
  @altitudeMode
end

#eastObject

Returns the value of attribute east.



1603
1604
1605
# File 'lib/kamelopard/classes.rb', line 1603

def east
  @east
end

#maxAltitudeObject

Returns the value of attribute maxAltitude.



1604
1605
1606
# File 'lib/kamelopard/classes.rb', line 1604

def maxAltitude
  @maxAltitude
end

#minAltitudeObject

Returns the value of attribute minAltitude.



1604
1605
1606
# File 'lib/kamelopard/classes.rb', line 1604

def minAltitude
  @minAltitude
end

#northObject

Returns the value of attribute north.



1603
1604
1605
# File 'lib/kamelopard/classes.rb', line 1603

def north
  @north
end

#rotationObject

Returns the value of attribute rotation.



1604
1605
1606
# File 'lib/kamelopard/classes.rb', line 1604

def rotation
  @rotation
end

#southObject

Returns the value of attribute south.



1603
1604
1605
# File 'lib/kamelopard/classes.rb', line 1603

def south
  @south
end

#westObject

Returns the value of attribute west.



1603
1604
1605
# File 'lib/kamelopard/classes.rb', line 1603

def west
  @west
end

Instance Method Details

#to_kml(elem = nil, alt = false) ⇒ Object



1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
# File 'lib/kamelopard/classes.rb', line 1633

def to_kml(elem = nil, alt = false)
    name = alt ? 'LatLonAltBox' : 'LatLonBox'
    k = XML::Node.new name
    [
        ['north', @north],
        ['south', @south],
        ['east', @east],
        ['west', @west],
        ['minAltitude', @minAltitude],
        ['maxAltitude', @maxAltitude]
    ].each do |a|
        if not a[1].nil? then
            m = XML::Node.new a[0]
            m << a[1].to_s
            k << m
        end
    end
    if (not @minAltitude.nil? or not @maxAltitude.nil?) then
        Kamelopard.add_altitudeMode(@altitudeMode, k)
    end
    m = XML::Node.new 'rotation'
    m = @rotation.to_s
    k << m
    elem << k unless elem.nil?
    k
end