Skip to content
Snippets Groups Projects
Commit 9df31c4b authored by Etienne Bougoin's avatar Etienne Bougoin
Browse files

ENH : avoid GCP lon/lat inversion

parent 7b549133
No related branches found
No related tags found
No related merge requests found
......@@ -193,8 +193,8 @@ GCPsToRPCSensorModelImageFilter< TImage >
// Sensor and Ground points
Point3DType groundPoint;
groundPoint[0] = imagePtr->GetGCPX(i);
groundPoint[1] = imagePtr->GetGCPY(i);
groundPoint[1] = imagePtr->GetGCPX(i); // Lat
groundPoint[0] = imagePtr->GetGCPY(i); // Lon
groundPoint[2] = imagePtr->GetGCPZ(i);
// Search image GCPs and remove them from container
......
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