Commits
Takeshi Nakazato authored 5537adb178d Merge
428 428 | + " axes." |
429 429 | ); |
430 430 | } |
431 431 | else { |
432 432 | ThrowCc("Unsupported key " + key); |
433 433 | } |
434 434 | return n; |
435 435 | } |
436 436 | |
437 437 | template <class T> String ImageMetaDataBase<T>::_getEpochString() const { |
438 - | return MVTime(_getObsDate().getValue()).string(MVTime::YMD); |
438 + | return MVTime(_getObsDate().getValue()).string(MVTime::YMD, 12); |
439 439 | } |
440 440 | |
441 441 | template <class T> IPosition ImageMetaDataBase<T>::_getShape() const { |
442 442 | if (_shape.empty()) { |
443 443 | _shape = _image->shape(); |
444 444 | } |
445 445 | return _shape; |
446 446 | } |
447 447 | |
448 448 | template <class T> void ImageMetaDataBase<T>::_fieldToLog( |