Skip to content
Snippets Groups Projects
Commit 09d3a30a authored by Cédric Traizet's avatar Cédric Traizet
Browse files

ENH: add a Merge method in ImageMetadataé

parent ad1fa0ab
No related branches found
No related tags found
No related merge requests found
......@@ -228,6 +228,11 @@ public:
* Returns True if all keywords were parsed correctly.
*/
bool FromKeywordlist(const Keywordlist&);
/** Merge with another ImageMetadataBase
* If a key exists in both ImageMetadataBase, keeps the value of this ImageMetadataBase. */
void Fuse(const ImageMetadataBase& );
};
......@@ -263,12 +268,17 @@ public:
ImageMetadata slice(int start, int end) const;
/** concatenate with an other ImageMetadata
* If a key exists in bot ImageMetadata, keeps the value of this ImageMetadata.*/
* If a key exists in both ImageMetadata, keeps the value of this ImageMetadata.*/
void append(const ImageMetadata& );
/** if all bands share the same value of a key, put it at top level */
void compact();
/** merge with another ImageMetadata
* If a key exists in both ImageMetadata, keeps the value of this ImageMetadata.
* */
void Merge(const ImageMetadata& );
/** Append the Metadata to a vector of KeywordList.
* The first KeywordList contains the metadata common to all the bands.
* The following KeywordList contains the metadata of the bands.
......
......@@ -400,6 +400,20 @@ bool ImageMetadataBase::FromKeywordlist(const Keywordlist& kwl)
return all_parsed;
}
/** concatenate with an other ImageMetadata */
void ImageMetadataBase::Fuse(const ImageMetadataBase& imd)
{
// Copy the keys
this->GeometryKeys.insert(imd.GeometryKeys.begin(), imd.GeometryKeys.end());
this->NumericKeys.insert(imd.NumericKeys.begin(), imd.NumericKeys.end());
this->StringKeys.insert(imd.StringKeys.begin(), imd.StringKeys.end());
this->LUT1DKeys.insert(imd.LUT1DKeys.begin(), imd.LUT1DKeys.end());
this->LUT2DKeys.insert(imd.LUT2DKeys.begin(), imd.LUT2DKeys.end());
this->TimeKeys.insert(imd.TimeKeys.begin(), imd.TimeKeys.end());
this->ExtraKeys.insert(imd.ExtraKeys.begin(), imd.ExtraKeys.end());
}
// ----------------------- [ImageMetadata] ------------------------------
ImageMetadata::ImageMetadata()
......@@ -432,18 +446,21 @@ ImageMetadata ImageMetadata::slice(int start, int end) const
/** concatenate with an other ImageMetadata */
void ImageMetadata::append(const ImageMetadata& imd)
{
// Copy the keys
this->GeometryKeys.insert(imd.GeometryKeys.begin(), imd.GeometryKeys.end());
this->NumericKeys.insert(imd.NumericKeys.begin(), imd.NumericKeys.end());
this->StringKeys.insert(imd.StringKeys.begin(), imd.StringKeys.end());
this->LUT1DKeys.insert(imd.LUT1DKeys.begin(), imd.LUT1DKeys.end());
this->LUT2DKeys.insert(imd.LUT2DKeys.begin(), imd.LUT2DKeys.end());
this->TimeKeys.insert(imd.TimeKeys.begin(), imd.TimeKeys.end());
this->ExtraKeys.insert(imd.ExtraKeys.begin(), imd.ExtraKeys.end());
ImageMetadataBase::Fuse(imd);
// Copy the bands
this->Bands.insert(this->Bands.end(), imd.Bands.begin(), imd.Bands.end());
}
void ImageMetadata::Merge(const ImageMetadata& imd)
{
ImageMetadataBase::Fuse(imd);
for (unsigned int i = 0; i < std::min(Bands.size(), imd.Bands.size()); i++)
{
Bands[i].Fuse(imd.Bands[i]);
}
}
/** if all bands share the same value of a key, put it at top level */
void ImageMetadata::compact()
{
......
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