Skip to content
Snippets Groups Projects
Commit d52c10ba authored by Romain Garrigues's avatar Romain Garrigues
Browse files

Modification de la sortie du TransformPoint, pour être cohérent avec le repère...

Modification de la sortie du TransformPoint, pour être cohérent avec le repère ITK (sortie en lon/lat et non pas en lat/lon comme initialement codé)
parent e3f56dc4
No related branches found
No related tags found
No related merge requests found
...@@ -80,8 +80,8 @@ ForwardSensorModel< TScalarType, ...@@ -80,8 +80,8 @@ ForwardSensorModel< TScalarType,
// "OutputPointType" storage. // "OutputPointType" storage.
OutputPointType outputPoint; OutputPointType outputPoint;
outputPoint[0]=ossimGPoint.lat; outputPoint[0]=ossimGPoint.lon;
outputPoint[1]=ossimGPoint.lon; outputPoint[1]=ossimGPoint.lat;
return outputPoint; return outputPoint;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment