Skip to content
Snippets Groups Projects
Commit a34691cc authored by brinn's avatar brinn
Browse files

fix: bug in screening API when accessing images

(merged from branch S90.x)

SVN: 18028
parent cf01552f
No related branches found
No related tags found
No related merge requests found
......@@ -377,7 +377,7 @@ public class DssServiceRpcScreening extends AbstractDssServiceRpc implements
{
int row = (tile / tileColumnsNum) + 1;
int col = (tile % tileColumnsNum) + 1;
return new Location(row, col);
return new Location(col, row);
}
private static Location asLocation(WellPosition wellPosition)
......
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