Class: RGeo::CoordSys::CS::WGS84ConversionInfo
- Defined in:
- lib/rgeo/coord_sys/cs/entities.rb
Overview
OGC spec description
Parameters for a geographic transformation into WGS84. The Bursa Wolf parameters should be applied to geocentric coordinates, where the X axis points towards the Greenwich Prime Meridian, the Y axis points East, and the Z axis points North.
Instance Attribute Summary collapse
-
#dx ⇒ Object
readonly
Bursa Wolf shift in meters.
-
#dy ⇒ Object
readonly
Bursa Wolf shift in meters.
-
#dz ⇒ Object
readonly
Bursa Wolf shift in meters.
-
#ex ⇒ Object
readonly
Bursa Wolf rotation in arc seconds.
-
#ey ⇒ Object
readonly
Bursa Wolf rotation in arc seconds.
-
#ez ⇒ Object
readonly
Bursa Wolf rotation in arc seconds.
-
#ppm ⇒ Object
readonly
Bursa Wolf scaling in in parts per million.
Class Method Summary collapse
-
.create(dx_meters, dy_meters, dz_meters, ex_arc_seconds, ey_arc_seconds, ez_arc_seconds, ppm) ⇒ Object
Create the horizontal datum shift transformation into WGS84, given the seven Bursa Wolf parameters.
Instance Method Summary collapse
-
#initialize(dx_meters, dy_meters, dz_meters, ex_arc_seconds, ey_arc_seconds, ez_arc_seconds, ppm) ⇒ WGS84ConversionInfo
constructor
:nodoc:.
- #to_wkt(standard_brackets: false) ⇒ Object
Methods inherited from Base
#encode_with, #eql?, #hash, #init_with, #inspect, #marshal_dump, #marshal_load, #to_s
Constructor Details
#initialize(dx_meters, dy_meters, dz_meters, ex_arc_seconds, ey_arc_seconds, ez_arc_seconds, ppm) ⇒ WGS84ConversionInfo
:nodoc:
343 344 345 346 347 348 349 350 351 352 |
# File 'lib/rgeo/coord_sys/cs/entities.rb', line 343 def initialize(dx_meters, dy_meters, dz_meters, ex_arc_seconds, ey_arc_seconds, ez_arc_seconds, ppm) # :nodoc: super() @dx = dx_meters.to_f @dy = dy_meters.to_f @dz = dz_meters.to_f @ex = ex_arc_seconds.to_f @ey = ey_arc_seconds.to_f @ez = ez_arc_seconds.to_f @ppm = ppm.to_f end |
Instance Attribute Details
#dx ⇒ Object (readonly)
Bursa Wolf shift in meters.
355 356 357 |
# File 'lib/rgeo/coord_sys/cs/entities.rb', line 355 def dx @dx end |
#dy ⇒ Object (readonly)
Bursa Wolf shift in meters.
358 359 360 |
# File 'lib/rgeo/coord_sys/cs/entities.rb', line 358 def dy @dy end |
#dz ⇒ Object (readonly)
Bursa Wolf shift in meters.
361 362 363 |
# File 'lib/rgeo/coord_sys/cs/entities.rb', line 361 def dz @dz end |
#ex ⇒ Object (readonly)
Bursa Wolf rotation in arc seconds.
364 365 366 |
# File 'lib/rgeo/coord_sys/cs/entities.rb', line 364 def ex @ex end |
#ey ⇒ Object (readonly)
Bursa Wolf rotation in arc seconds.
367 368 369 |
# File 'lib/rgeo/coord_sys/cs/entities.rb', line 367 def ey @ey end |
#ez ⇒ Object (readonly)
Bursa Wolf rotation in arc seconds.
370 371 372 |
# File 'lib/rgeo/coord_sys/cs/entities.rb', line 370 def ez @ez end |
#ppm ⇒ Object (readonly)
Bursa Wolf scaling in in parts per million.
373 374 375 |
# File 'lib/rgeo/coord_sys/cs/entities.rb', line 373 def ppm @ppm end |
Class Method Details
.create(dx_meters, dy_meters, dz_meters, ex_arc_seconds, ey_arc_seconds, ez_arc_seconds, ppm) ⇒ Object
Create the horizontal datum shift transformation into WGS84, given the seven Bursa Wolf parameters. The Bursa Wolf shift should be in meters, the rotation in arc seconds, and the scaling in parts per million.
386 387 388 |
# File 'lib/rgeo/coord_sys/cs/entities.rb', line 386 def create(dx_meters, dy_meters, dz_meters, ex_arc_seconds, ey_arc_seconds, ez_arc_seconds, ppm) new(dx_meters, dy_meters, dz_meters, ex_arc_seconds, ey_arc_seconds, ez_arc_seconds, ppm) end |
Instance Method Details
#to_wkt(standard_brackets: false) ⇒ Object
375 376 377 378 |
# File 'lib/rgeo/coord_sys/cs/entities.rb', line 375 def to_wkt(standard_brackets: false) open, close = brackets(standard_brackets) "TOWGS84#{open}#{@dx},#{@dy},#{@dz},#{@ex},#{@ey},#{@ez},#{@ppm}#{close}" end |