Class: RegionExtractor::Point
- Inherits:
-
Object
- Object
- RegionExtractor::Point
- Defined in:
- lib/region_extractor/point.rb
Instance Attribute Summary collapse
-
#x ⇒ Object
Returns the value of attribute x.
-
#y ⇒ Object
Returns the value of attribute y.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(x, y) ⇒ Point
constructor
A new instance of Point.
Constructor Details
#initialize(x, y) ⇒ Point
Returns a new instance of Point.
6 7 8 9 |
# File 'lib/region_extractor/point.rb', line 6 def initialize(x,y) @x = x @y = y end |
Instance Attribute Details
#x ⇒ Object
Returns the value of attribute x.
4 5 6 |
# File 'lib/region_extractor/point.rb', line 4 def x @x end |
#y ⇒ Object
Returns the value of attribute y.
4 5 6 |
# File 'lib/region_extractor/point.rb', line 4 def y @y end |
Class Method Details
.tranform_point(point, origin_projection, destination_projection) ⇒ Object
11 12 13 14 |
# File 'lib/region_extractor/point.rb', line 11 def self.tranform_point(point, origin_projection, destination_projection) output = origin_projection.transform(destination_projection, point) Point.new(output.x * Proj4::RAD_TO_DEG, output.y * Proj4::RAD_TO_DEG) end |