Skip to content
Snippets Groups Projects
Commit 625aa068 authored by Rashad Kanavath's avatar Rashad Kanavath
Browse files

ENH: pass substring of data_time utc string

parent 08f72afa
No related branches found
No related tags found
No related merge requests found
......@@ -115,11 +115,12 @@ Radarsat2ImageMetadataInterface
const ImageKeywordlistType imageKeywordlist = this->GetImageKeywordlist();
if (!imageKeywordlist.HasKey(key))
{
itkExceptionMacro( << "no key named " << key );
itkExceptionMacro( << "no key named '" << key << "'");
}
const std::string date_time_str = imageKeywordlist.GetMetadataByKey(key);
Utils::ConvertStringToVector(date_time_str, dateFields, " T:.Z" "T:.Z");
Utils::ConvertStringToVector(date_time_str.substr(0, date_time_str.size()-1), dateFields, key, "-T:.");
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment