Changeset 8712 in ntrip


Ignore:
Timestamp:
Apr 30, 2019, 3:47:04 PM (5 years ago)
Author:
stuerze
Message:

Update of the transformation parameters IRTF2014 => ETRF 2000

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/BNC_2.12/src/upload/bncrtnetuploadcaster.cpp

    r8710 r8712  
    103103  // -----------------------------
    104104  // Transformation Parameters from ITRF2014 to ETRF2000
     105  // EUREF Technical Note 1 Relationship and Transformation between the ITRF and ETRF
     106  // Zuheir Altamimi, June 28, 2018
    105107  if (_crdTrafo == "ETRF2000") {
    106     _dx  =  0.0537;
    107     _dy  =  0.0512;
    108     _dz  = -0.0551;
     108    _dx  =  0.0547;
     109    _dy  =  0.0522;
     110    _dz  = -0.0741;
    109111
    110112    _dxr =  0.0001;
     
    112114    _dzr = -0.0019;
    113115
    114     _ox  = -0.000891;
    115     _oy  = -0.005390;
    116     _oz  =  0.008712;
    117 
    118     _oxr = -0.000081;
    119     _oyr = -0.000490;
    120     _ozr =  0.000792;
    121 
    122     _sc  =  0.00102;
    123     _scr =  0.00011;
    124 
    125     _t0  =  2000.0;
     116    _ox  =  0.001701;
     117    _oy  =  0.010290;
     118    _oz  = -0.016632;
     119
     120    _oxr =  0.000081;
     121    _oyr =  0.000490;
     122    _ozr = -0.000729;
     123
     124    _sc  =  2.12;
     125    _scr =  0.11;
     126
     127    _t0  =  2010.0;
    126128  }
    127129  // Transformation Parameters from ITRF2014 to GDA2020 (Ryan Ruddick, GA)
     
    166168    _ozr =  0.000000;
    167169
    168     _sc  = -0.00100;
     170    _sc  = -1.00000;
    169171    _scr =  0.00000;
    170172    _t0  =  2000.0;
     
    251253  }
    252254  else {
    253     lines = _rtnetStreamBuffer.left(iEpoEnd).split('\n', 
     255    lines = _rtnetStreamBuffer.left(iEpoEnd).split('\n',
    254256        QString::SkipEmptyParts);
    255257    _rtnetStreamBuffer = _rtnetStreamBuffer.mid(iEpoEnd + 3);
     
    24622464  double oz = (_oz + dt * _ozr) / arcSec;
    24632465
    2464   double sc = 1.0 + _sc * 1e-6 + dt * _scr * 1e-6;
     2466  double sc = 1.0 + _sc * 1e-9 + dt * _scr * 1e-9;
    24652467
    24662468  // Specify approximate center of area
Note: See TracChangeset for help on using the changeset viewer.