[3986] | 1 |
|
---|
| 2 | #include <qdatetime.h>
|
---|
[2123] | 3 | #include <time.h>
|
---|
| 4 | #include <cmath>
|
---|
| 5 | #include <cstdio>
|
---|
| 6 | #include <sstream>
|
---|
| 7 | #include <iomanip>
|
---|
[8418] | 8 | #include <iostream>
|
---|
[2123] | 9 |
|
---|
| 10 | #include "bnctime.h"
|
---|
[5886] | 11 | #include "bncutils.h"
|
---|
[2123] | 12 |
|
---|
| 13 | using namespace std;
|
---|
| 14 |
|
---|
| 15 | // Constructor
|
---|
| 16 | //////////////////////////////////////////////////////////////////////////////
|
---|
| 17 | bncTime::bncTime(int gpsw, double gpssec) {
|
---|
| 18 | this->set(gpsw, gpssec);
|
---|
| 19 | }
|
---|
[8717] | 20 |
|
---|
[3986] | 21 | // Constructor (from ISO String yyyy-mm-ddThh:mm:ss)
|
---|
| 22 | //////////////////////////////////////////////////////////////////////////////
|
---|
| 23 | bncTime::bncTime(const std::string& isoString) {
|
---|
| 24 | if (!isoString.empty()) {
|
---|
[3988] | 25 | QDateTime dt = QDateTime::fromString(isoString.c_str(), Qt::ISODate);
|
---|
| 26 | this->set(dt.date().year(), dt.date().month(), dt.date().day(),
|
---|
[8717] | 27 | dt.time().hour(), dt.time().minute(),
|
---|
[3988] | 28 | dt.time().second() + dt.time().msec()/1000.0);
|
---|
[3986] | 29 | }
|
---|
[3987] | 30 | else {
|
---|
| 31 | this->reset();
|
---|
| 32 | }
|
---|
[3986] | 33 | }
|
---|
| 34 |
|
---|
[8717] | 35 | //
|
---|
[2123] | 36 | //////////////////////////////////////////////////////////////////////////////
|
---|
| 37 | bncTime& bncTime::set(int gpsw, double gpssec) {
|
---|
| 38 | int deltad;
|
---|
| 39 | int dow = 0;
|
---|
[8373] | 40 | while ( gpssec >= 86400.0 ) {
|
---|
| 41 | gpssec-=86400.0;
|
---|
[2123] | 42 | dow++;
|
---|
| 43 | }
|
---|
[8373] | 44 | while ( gpssec < 0.0 ) {
|
---|
| 45 | gpssec+=86400.0;
|
---|
[2123] | 46 | dow--;
|
---|
| 47 | }
|
---|
| 48 | deltad = gpsw*7 + dow;
|
---|
| 49 | _mjd = 44244 + deltad;
|
---|
| 50 | _sec = gpssec;
|
---|
| 51 | return *this;
|
---|
| 52 | }
|
---|
| 53 |
|
---|
[7138] | 54 |
|
---|
| 55 | //
|
---|
| 56 | //////////////////////////////////////////////////////////////////////////////
|
---|
| 57 | bncTime& bncTime::setBDS(int gpsw, double gpssec) {
|
---|
| 58 | int deltad;
|
---|
| 59 | int dow = 0;
|
---|
| 60 | gpssec += 14.0;
|
---|
| 61 | gpsw += 1356.0;
|
---|
[8373] | 62 | while ( gpssec >= 86400.0 ) {
|
---|
| 63 | gpssec-=86400.0;
|
---|
[7138] | 64 | dow++;
|
---|
| 65 | }
|
---|
[8373] | 66 | while ( gpssec < 0.0 ) {
|
---|
| 67 | gpssec+=86400.0;
|
---|
[7138] | 68 | dow--;
|
---|
| 69 | }
|
---|
| 70 | deltad = gpsw*7 + dow;
|
---|
| 71 | _mjd = 44244 + deltad;
|
---|
| 72 | _sec = gpssec;
|
---|
| 73 | return *this;
|
---|
| 74 | }
|
---|
| 75 |
|
---|
[8717] | 76 | //
|
---|
[2123] | 77 | //////////////////////////////////////////////////////////////////////////////
|
---|
[6812] | 78 | bncTime &bncTime::set(int msec) {
|
---|
| 79 | int week;
|
---|
| 80 | double sec;
|
---|
| 81 |
|
---|
| 82 | currentGPSWeeks(week, sec);
|
---|
| 83 | if(msec/1000.0 < sec - 86400.0)
|
---|
| 84 | ++week;
|
---|
[8418] | 85 | return set(week, double(msec/1000.0));
|
---|
[6812] | 86 | }
|
---|
| 87 |
|
---|
[8717] | 88 | //
|
---|
[6812] | 89 | //////////////////////////////////////////////////////////////////////////////
|
---|
| 90 | bncTime &bncTime::setTOD(int msec) {
|
---|
| 91 | int week;
|
---|
| 92 | double sec;
|
---|
| 93 |
|
---|
| 94 | currentGPSWeeks(week, sec);
|
---|
| 95 | int intsec = sec;
|
---|
| 96 | int day = intsec/(24*60*60);
|
---|
| 97 | int tod = (intsec%(24*60*60))*1000;
|
---|
| 98 | if(msec > 19*60*60*1000 && tod < 5*60*60*1000)
|
---|
| 99 | --day;
|
---|
| 100 | else if(msec < 5*60*60 && tod > 19*60*60*1000)
|
---|
| 101 | ++day;
|
---|
| 102 | msec += day*24*60*60*1000;
|
---|
| 103 | if(msec < 0.0) {
|
---|
| 104 | msec += 7*24*60*60*1000;
|
---|
| 105 | --week;
|
---|
| 106 | }
|
---|
| 107 |
|
---|
| 108 | return set(week, msec/1000.0);
|
---|
| 109 | }
|
---|
| 110 |
|
---|
[8717] | 111 | //
|
---|
[6812] | 112 | //////////////////////////////////////////////////////////////////////////////
|
---|
| 113 | bncTime &bncTime::setTk(int msec) {
|
---|
| 114 | int week;
|
---|
| 115 | double sec;
|
---|
| 116 | int intsec;
|
---|
| 117 |
|
---|
| 118 | currentGPSWeeks(week, sec);
|
---|
| 119 | intsec = sec;
|
---|
| 120 | updatetime(&week, &intsec, msec, 0); /* Moscow -> GPS */
|
---|
[8418] | 121 | sec = intsec+double((msec%1000)/1000.0);
|
---|
[6812] | 122 | return set(week, sec);
|
---|
| 123 | }
|
---|
| 124 |
|
---|
[8717] | 125 | //
|
---|
[6812] | 126 | //////////////////////////////////////////////////////////////////////////////
|
---|
| 127 | bncTime &bncTime::setBDS(int msec) {
|
---|
| 128 | int week;
|
---|
| 129 | double sec;
|
---|
| 130 |
|
---|
| 131 | msec += 14000;
|
---|
| 132 | if(msec >= 7*24*60*60*1000)
|
---|
| 133 | msec -= 7*24*60*60*1000;
|
---|
| 134 | currentGPSWeeks(week, sec);
|
---|
[8418] | 135 | if((msec/1000.0) < (sec - 86400.0)) {
|
---|
[6812] | 136 | ++week;
|
---|
[8418] | 137 | }
|
---|
| 138 | return set(week, double(msec/1000.0));
|
---|
[6812] | 139 | }
|
---|
[8717] | 140 | //
|
---|
[6812] | 141 | //////////////////////////////////////////////////////////////////////////////
|
---|
[2123] | 142 | bncTime& bncTime::setmjd(double daysec, int mjd) {
|
---|
| 143 | _sec = daysec;
|
---|
| 144 | _mjd = mjd;
|
---|
[8373] | 145 | while ( _sec >= 86400.0 ) {
|
---|
| 146 | _sec-=86400.0;
|
---|
[2123] | 147 | _mjd++;
|
---|
| 148 | }
|
---|
[8373] | 149 | while ( _sec < 0.0 ) {
|
---|
| 150 | _sec+=86400.0;
|
---|
[2123] | 151 | _mjd--;
|
---|
| 152 | }
|
---|
| 153 | return *this;
|
---|
| 154 | }
|
---|
| 155 |
|
---|
[8717] | 156 | //
|
---|
[2123] | 157 | //////////////////////////////////////////////////////////////////////////////
|
---|
[4586] | 158 | bncTime& bncTime::setmjd(double mjddec) {
|
---|
| 159 | _mjd = static_cast<unsigned int>(mjddec);
|
---|
| 160 | _sec = (mjddec - _mjd)*86400.0;
|
---|
| 161 | return *this;
|
---|
| 162 | }
|
---|
| 163 |
|
---|
[8717] | 164 | //
|
---|
[4586] | 165 | //////////////////////////////////////////////////////////////////////////////
|
---|
[2123] | 166 | unsigned int bncTime::mjd() const {
|
---|
| 167 | return _mjd;
|
---|
| 168 | }
|
---|
[8717] | 169 |
|
---|
[2123] | 170 | //
|
---|
| 171 | //////////////////////////////////////////////////////////////////////////////
|
---|
| 172 | double bncTime::daysec() const {
|
---|
| 173 | return _sec;
|
---|
| 174 | }
|
---|
| 175 |
|
---|
| 176 | //
|
---|
| 177 | //////////////////////////////////////////////////////////////////////////////
|
---|
| 178 | unsigned int bncTime::gpsw() const {
|
---|
| 179 | double gsec;
|
---|
| 180 | long gpsw;
|
---|
| 181 | jdgp(_mjd, gsec, gpsw);
|
---|
| 182 | return (int)gpsw;
|
---|
| 183 | }
|
---|
| 184 |
|
---|
[8717] | 185 | //
|
---|
[2123] | 186 | //////////////////////////////////////////////////////////////////////////////
|
---|
| 187 | double bncTime::gpssec() const {
|
---|
| 188 | double gsec;
|
---|
| 189 | long gpsw;
|
---|
| 190 | jdgp(_mjd, gsec, gpsw);
|
---|
| 191 | return gsec + _sec;
|
---|
| 192 | }
|
---|
| 193 |
|
---|
[6812] | 194 | //
|
---|
| 195 | //////////////////////////////////////////////////////////////////////////////
|
---|
| 196 | unsigned int bncTime::bdsw() const {
|
---|
| 197 | double gsec;
|
---|
| 198 | long gpsw;
|
---|
| 199 | jdgp(_mjd, gsec, gpsw);
|
---|
| 200 | if(gsec <= 14.0)
|
---|
| 201 | gpsw -= 1;
|
---|
| 202 | return (int)gpsw-1356;
|
---|
| 203 | }
|
---|
| 204 |
|
---|
[8717] | 205 | //
|
---|
[2123] | 206 | //////////////////////////////////////////////////////////////////////////////
|
---|
[6812] | 207 | double bncTime::bdssec() const {
|
---|
| 208 | double gsec;
|
---|
| 209 | long gpsw;
|
---|
| 210 | jdgp(_mjd, gsec, gpsw);
|
---|
| 211 | if(gsec <= 14.0)
|
---|
| 212 | gsec += 7.0*24.0*60.0*60.0-14.0;
|
---|
| 213 | else
|
---|
| 214 | gsec -= 14.0;
|
---|
| 215 | return gsec + _sec;
|
---|
| 216 | }
|
---|
| 217 |
|
---|
[8717] | 218 | //
|
---|
[6812] | 219 | //////////////////////////////////////////////////////////////////////////////
|
---|
[2123] | 220 | bool bncTime::operator!=(const bncTime &time1) const {
|
---|
[6812] | 221 | if ( fabs((*this) - time1) > 0.000000000001 ) {
|
---|
[2923] | 222 | return true;
|
---|
| 223 | }
|
---|
| 224 | else {
|
---|
| 225 | return false;
|
---|
| 226 | }
|
---|
[2123] | 227 | }
|
---|
| 228 |
|
---|
[8717] | 229 | //
|
---|
[2123] | 230 | //////////////////////////////////////////////////////////////////////////////
|
---|
[2917] | 231 | bool bncTime::operator==(const bncTime &time1) const {
|
---|
[6812] | 232 | if ( fabs((*this) - time1) < 0.000000000001 ) {
|
---|
[2923] | 233 | return true;
|
---|
| 234 | }
|
---|
| 235 | else {
|
---|
| 236 | return false;
|
---|
| 237 | }
|
---|
[2917] | 238 | }
|
---|
| 239 |
|
---|
[8717] | 240 | //
|
---|
[2917] | 241 | //////////////////////////////////////////////////////////////////////////////
|
---|
[2923] | 242 | bool bncTime::operator>(const bncTime &time1) const {
|
---|
| 243 | if ( ((*this) - time1) > 0.0 ) {
|
---|
| 244 | return true;
|
---|
| 245 | }
|
---|
| 246 | else {
|
---|
| 247 | return false;
|
---|
| 248 | }
|
---|
| 249 | }
|
---|
| 250 |
|
---|
[8717] | 251 | //
|
---|
[2923] | 252 | //////////////////////////////////////////////////////////////////////////////
|
---|
| 253 | bool bncTime::operator>=(const bncTime &time1) const {
|
---|
| 254 | if ( ((*this) - time1) >= 0.0 ) {
|
---|
| 255 | return true;
|
---|
| 256 | }
|
---|
| 257 | else {
|
---|
| 258 | return false;
|
---|
| 259 | }
|
---|
| 260 | }
|
---|
| 261 |
|
---|
[8717] | 262 | //
|
---|
[2923] | 263 | //////////////////////////////////////////////////////////////////////////////
|
---|
| 264 | bool bncTime::operator<(const bncTime &time1) const {
|
---|
| 265 | if ( ((*this) - time1) < 0.0 ) {
|
---|
| 266 | return true;
|
---|
| 267 | }
|
---|
| 268 | else {
|
---|
| 269 | return false;
|
---|
| 270 | }
|
---|
| 271 | }
|
---|
| 272 |
|
---|
[8717] | 273 | //
|
---|
[2923] | 274 | //////////////////////////////////////////////////////////////////////////////
|
---|
| 275 | bool bncTime::operator<=(const bncTime &time1) const {
|
---|
| 276 | if ( ((*this) - time1) <= 0.0 ) {
|
---|
| 277 | return true;
|
---|
| 278 | }
|
---|
| 279 | else {
|
---|
| 280 | return false;
|
---|
| 281 | }
|
---|
| 282 | }
|
---|
| 283 |
|
---|
[8717] | 284 | //
|
---|
[2923] | 285 | //////////////////////////////////////////////////////////////////////////////
|
---|
[2123] | 286 | bncTime bncTime::operator+(double sec) const {
|
---|
| 287 | int mjd = this->mjd();
|
---|
| 288 | double daysec = this->daysec();
|
---|
| 289 | daysec+=sec;
|
---|
| 290 | return bncTime().setmjd(daysec, mjd);
|
---|
| 291 | }
|
---|
| 292 |
|
---|
[8717] | 293 | //
|
---|
[2123] | 294 | //////////////////////////////////////////////////////////////////////////////
|
---|
| 295 | bncTime bncTime::operator-(double sec) const {
|
---|
| 296 | return (*this) + (-sec);
|
---|
| 297 | }
|
---|
| 298 |
|
---|
[8717] | 299 | //
|
---|
[2123] | 300 | //////////////////////////////////////////////////////////////////////////////
|
---|
| 301 | double bncTime::operator-(const bncTime &time1) const {
|
---|
| 302 | int mjdDiff = this->_mjd - time1._mjd;
|
---|
| 303 | if ( mjdDiff != 0 ) {
|
---|
| 304 | return mjdDiff * 86400.0 + this->_sec - time1._sec;
|
---|
| 305 | }
|
---|
| 306 | else {
|
---|
| 307 | return this->_sec - time1._sec;
|
---|
| 308 | }
|
---|
| 309 | }
|
---|
| 310 |
|
---|
[5756] | 311 | bncTime& bncTime::operator+=(double sec) {
|
---|
| 312 | _sec+=sec;
|
---|
| 313 |
|
---|
[8717] | 314 | while ( _sec >= 86400.0 ) {
|
---|
| 315 | _sec-=86400.0;
|
---|
[5756] | 316 | _mjd++;
|
---|
| 317 | }
|
---|
[8717] | 318 | while ( _sec < 0.0 ) {
|
---|
| 319 | _sec+=86400.0;
|
---|
[5756] | 320 | _mjd--;
|
---|
| 321 | }
|
---|
| 322 |
|
---|
| 323 | return *this;
|
---|
| 324 | }
|
---|
| 325 |
|
---|
[8717] | 326 | //
|
---|
[2123] | 327 | //////////////////////////////////////////////////////////////////////////////
|
---|
[2566] | 328 | void bncTime::civil_date (unsigned int& year, unsigned int& month,
|
---|
| 329 | unsigned int& day) const {
|
---|
| 330 | double day_d;
|
---|
| 331 | long int yy, mm;
|
---|
| 332 | jmt(_mjd, yy, mm, day_d);
|
---|
| 333 | year = yy;
|
---|
| 334 | month = mm;
|
---|
| 335 | day = static_cast<unsigned int>(day_d);
|
---|
| 336 | }
|
---|
| 337 |
|
---|
[8717] | 338 | //
|
---|
[2566] | 339 | //////////////////////////////////////////////////////////////////////////////
|
---|
[8717] | 340 | void bncTime::civil_time(unsigned int &hour, unsigned int &min,
|
---|
[2123] | 341 | double &sec) const {
|
---|
| 342 | hour = static_cast<unsigned int>(_sec/3600.0);
|
---|
| 343 | min = static_cast<unsigned int>((_sec - hour*3600)/60.0);
|
---|
| 344 | sec = _sec - min*60 - hour*3600;
|
---|
| 345 | if (sec==60.0) {
|
---|
| 346 | min++;
|
---|
| 347 | sec=0;
|
---|
| 348 | }
|
---|
| 349 | if (min==60) {
|
---|
| 350 | hour++;
|
---|
| 351 | min=0;
|
---|
| 352 | }
|
---|
| 353 | }
|
---|
| 354 |
|
---|
[8717] | 355 | //
|
---|
[2123] | 356 | //////////////////////////////////////////////////////////////////////////////
|
---|
| 357 | string bncTime::timestr(unsigned numdec, char sep) const {
|
---|
| 358 | ostringstream str;
|
---|
| 359 | unsigned int hour, minute;
|
---|
| 360 | double sec;
|
---|
| 361 | this->civil_time(hour, minute, sec);
|
---|
| 362 | unsigned sw;
|
---|
| 363 | if (numdec == 0) {
|
---|
| 364 | sw = 2;
|
---|
| 365 | }
|
---|
| 366 | else {
|
---|
| 367 | sw = numdec + 3;
|
---|
| 368 | }
|
---|
| 369 | double chk = 0.5;
|
---|
| 370 | for (unsigned int ii=0; ii<numdec; ii++) chk *= 0.1;
|
---|
| 371 | if (sec > (60.0-chk)) {
|
---|
| 372 | sec = 0;
|
---|
| 373 | minute++;
|
---|
| 374 | if (minute == 60) {
|
---|
| 375 | minute = 0;
|
---|
| 376 | hour++;
|
---|
| 377 | }
|
---|
| 378 | }
|
---|
| 379 | str.setf(ios::fixed);
|
---|
| 380 | str << setfill('0');
|
---|
| 381 | str << setw(2) << hour;
|
---|
| 382 | if (sep) str << sep;
|
---|
| 383 | str << setw(2) << minute;
|
---|
| 384 | if (sep) str << sep;
|
---|
| 385 | str << setw(sw) << setprecision(numdec) << sec;
|
---|
| 386 | return str.str();
|
---|
| 387 | }
|
---|
| 388 |
|
---|
[8717] | 389 | //
|
---|
[2566] | 390 | //////////////////////////////////////////////////////////////////////////////
|
---|
| 391 | string bncTime::datestr(char sep) const {
|
---|
| 392 | unsigned int year, month, day;
|
---|
| 393 | civil_date(year,month,day);
|
---|
| 394 | ostringstream str;
|
---|
| 395 | str.setf(ios::fixed);
|
---|
| 396 | str << setfill('0');
|
---|
| 397 | str << setw(4) << year;
|
---|
| 398 | if (sep) str << sep;
|
---|
| 399 | str << setw(2) << month;
|
---|
| 400 | if (sep) str << sep;
|
---|
| 401 | str << setw(2) << day;
|
---|
| 402 | return str.str();
|
---|
| 403 | }
|
---|
[2251] | 404 |
|
---|
[8717] | 405 | //
|
---|
[2251] | 406 | //////////////////////////////////////////////////////////////////////////////
|
---|
[6812] | 407 | bncTime::operator std::string() const {
|
---|
[5756] | 408 | return datestr() + '_' + timestr();
|
---|
| 409 | }
|
---|
| 410 |
|
---|
[8717] | 411 | //
|
---|
[5756] | 412 | //////////////////////////////////////////////////////////////////////////////
|
---|
[8717] | 413 | bncTime& bncTime::set(int year, int month, int day,
|
---|
[2251] | 414 | int hour, int min, double sec) {
|
---|
| 415 | return set(year, month, day, hour*3600 + min*60 + sec);
|
---|
| 416 | }
|
---|
| 417 |
|
---|
[8717] | 418 | //
|
---|
[2251] | 419 | //////////////////////////////////////////////////////////////////////////////
|
---|
[8717] | 420 | bncTime& bncTime::setBDS(int year, int month, int day,
|
---|
[6812] | 421 | int hour, int min, double sec) {
|
---|
| 422 | return set(year, month, day, hour*3600 + min*60 + sec+14.0);
|
---|
| 423 | }
|
---|
| 424 |
|
---|
[8717] | 425 | //
|
---|
[6812] | 426 | //////////////////////////////////////////////////////////////////////////////
|
---|
[2251] | 427 | bncTime& bncTime::set(int year, int month, int day, double daysec) {
|
---|
| 428 | _sec = daysec;
|
---|
[8717] | 429 |
|
---|
[2251] | 430 | _mjd = (unsigned int)djul(year, month, day);
|
---|
[8717] | 431 |
|
---|
[2251] | 432 | while ( _sec >= 86400 ) {
|
---|
| 433 | _sec-=86400;
|
---|
| 434 | _mjd++;
|
---|
| 435 | }
|
---|
| 436 | while ( _sec < 0 ) {
|
---|
| 437 | _sec+=86400;
|
---|
| 438 | _mjd--;
|
---|
| 439 | }
|
---|
| 440 |
|
---|
| 441 | return *this;
|
---|
| 442 | }
|
---|