- Timestamp:
- Mar 1, 2010, 8:32:30 PM (15 years ago)
- Location:
- trunk/BNS
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNS/bns.cpp
r2339 r2347 695 695 _t0 = 2000.0; 696 696 } 697 else if (trafo == "SIRGAS2000") { 698 _dx = -0.0510; 699 _dy = -0.0650; 700 _dz = -0.0990; 701 _dxr = 0.0000; 702 _dyr = 0.0000; 703 _dzr = 0.0000; 704 _ox = 0.000150; 705 _oy = 0.000020; 706 _oz = 0.000021; 707 _oxr = 0.000000; 708 _oyr = 0.000000; 709 _ozr = 0.000000; 710 _sc = 0.000; 711 _scr = 0.000; 712 _t0 = 0000.0; 713 } 697 714 else if (trafo == "Custom") { 698 715 _dx = settings.value("trafo_dx").toDouble(); -
trunk/BNS/bnshelp.html
r2344 r2347 340 340 <li>NAD83 which stands for the North American Datum 1983 as adopted for the U.S.A., and</li> 341 341 <li>GDA94 which stands for the Geodetic Datum Australia 1994 as adopted for Australia, and</li> 342 <li>SIRGAS2000 which stands for the Geodetic Datum adopted for Brazil, and</li> 342 343 <li>'Custom' which allows a transformation of Broadcast Corrections from the IGS05 system to any other system through specifying up to 14 Helmert Transformation Parameters.</li> 343 344 </ul> … … 417 418 </p> 418 419 420 <p> 421 <u>SIRGAS2000:</u> The formulars for the transformation 'ITRF2005->SIRGAS2000' were provided via personal communication from Sonia Maria Alves Costa [soniamaria@ibge.gov.br].</u>. 422 </p> 423 <p> 424 <pre> 425 Translation in X at epoch To: -0.0510 m 426 Translation in Y at epoch To: -0.0650 m 427 Translation in Z at epoch To: -0.0990 m 428 Translation rate in X: 0.0000 m/y 429 Translation rate in Y: 0.0000 m/y 430 Translation rate in Z: 0.0000 m/y 431 Rotation in X at epoch To: 0.150 mas 432 Rotation in Y at epoch To: 0.020 mas 433 Rotation in Z at epoch To: 0.021 mas 434 Rotation rate in X: 0.000 mas/y 435 Rotation rate in Y: 0.000 mas/y 436 Rotation rate in Z: 0.000 mas/y 437 Scale at epoch To : 0.000000000000 438 Scale rate: -0.000000000000 /y 439 To: 2000.0 440 </pre> 441 </p> 419 442 420 443 <p> -
trunk/BNS/bnswindow.cpp
r2345 r2347 177 177 _refSys_1_ComboBox = new QComboBox; 178 178 _refSys_1_ComboBox->setEditable(false); 179 _refSys_1_ComboBox->addItems(QString("IGS05,ETRF2000,NAD83,GDA94, Custom").split(","));179 _refSys_1_ComboBox->addItems(QString("IGS05,ETRF2000,NAD83,GDA94,SIRGAS2000,Custom").split(",")); 180 180 int ii = _refSys_1_ComboBox->findText(settings.value("refSys_1").toString()); 181 181 if (ii != -1) { … … 195 195 _refSys_2_ComboBox = new QComboBox; 196 196 _refSys_2_ComboBox->setEditable(false); 197 _refSys_2_ComboBox->addItems(QString("IGS05,ETRF2000,NAD83,GDA94, Custom").split(","));197 _refSys_2_ComboBox->addItems(QString("IGS05,ETRF2000,NAD83,GDA94,SIRGAS2000,Custom").split(",")); 198 198 ii = _refSys_2_ComboBox->findText(settings.value("refSys_2").toString()); 199 199 if (ii != -1) { … … 213 213 _refSys_3_ComboBox = new QComboBox; 214 214 _refSys_3_ComboBox->setEditable(false); 215 _refSys_3_ComboBox->addItems(QString("IGS05,ETRF2000,NAD83,GDA94, Custom").split(","));215 _refSys_3_ComboBox->addItems(QString("IGS05,ETRF2000,NAD83,GDA94,SIRGAS2000,Custom").split(",")); 216 216 ii = _refSys_3_ComboBox->findText(settings.value("refSys_3").toString()); 217 217 if (ii != -1) { … … 231 231 _refSys_4_ComboBox = new QComboBox; 232 232 _refSys_4_ComboBox->setEditable(false); 233 _refSys_4_ComboBox->addItems(QString("IGS05,ETRF2000,NAD83,GDA94, Custom").split(","));233 _refSys_4_ComboBox->addItems(QString("IGS05,ETRF2000,NAD83,GDA94,SIRGAS2000,Custom").split(",")); 234 234 ii = _refSys_4_ComboBox->findText(settings.value("refSys_4").toString()); 235 235 if (ii != -1) { … … 249 249 _refSys_5_ComboBox = new QComboBox; 250 250 _refSys_5_ComboBox->setEditable(false); 251 _refSys_5_ComboBox->addItems(QString("IGS05,ETRF2000,NAD83,GDA94, Custom").split(","));251 _refSys_5_ComboBox->addItems(QString("IGS05,ETRF2000,NAD83,GDA94,SIRGAS2000,Custom").split(",")); 252 252 ii = _refSys_5_ComboBox->findText(settings.value("refSys_5").toString()); 253 253 if (ii != -1) { … … 267 267 _refSys_6_ComboBox = new QComboBox; 268 268 _refSys_6_ComboBox->setEditable(false); 269 _refSys_6_ComboBox->addItems(QString("IGS05,ETRF2000,NAD83,GDA94, Custom").split(","));269 _refSys_6_ComboBox->addItems(QString("IGS05,ETRF2000,NAD83,GDA94,SIRGAS2000,Custom").split(",")); 270 270 ii = _refSys_6_ComboBox->findText(settings.value("refSys_6").toString()); 271 271 if (ii != -1) {
Note:
See TracChangeset
for help on using the changeset viewer.