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

REFAC: return an empty projection in GetGCPProjection if the image has no gcp...

REFAC: return an empty projection in GetGCPProjection if the image has no gcp instead of asserting that the image has gcps (or segfault in release mode). This means that the user of ImageCommon does not have to check that the image has gcp before calling this method
parent fffb2744
No related branches found
No related tags found
No related merge requests found
......@@ -54,8 +54,11 @@ void ImageCommons::SetProjectionRef(const std::string& proj)
std::string ImageCommons::GetGCPProjection(void) const
{
assert(m_Imd.Has(MDGeom::GCP));
return m_Imd.GetGCPParam().GCPProjection;
if (m_Imd.Has(MDGeom::GCP))
{
return m_Imd.GetGCPParam().GCPProjection;
}
return "";
}
......
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