Skip to content
Snippets Groups Projects
Commit fd04b80c authored by pkupczyk's avatar pkupczyk
Browse files

LMS-2803 - Make order of well location coordinates consistent

SVN: 24487
parent 002adb9f
No related branches found
No related tags found
No related merge requests found
......@@ -506,7 +506,7 @@ public class ImagingDatasetLoader extends HCSDatasetLoader implements IImagingDa
{
AbsoluteImageReference image =
tryGetRepresentativeImage(channelCode,
new Location(well.getRow(), well.getColumn()), originalOrThumbnail);
new Location(well.getColumn(), well.getRow()), originalOrThumbnail);
if (image != null)
{
return image;
......@@ -563,8 +563,8 @@ public class ImagingDatasetLoader extends HCSDatasetLoader implements IImagingDa
for (String channelCode : channelCodes)
{
AbsoluteImageReference image =
tryGetRepresentativeThumbnail(channelCode,
new Location(well.getRow(), well.getColumn()), null);
tryGetRepresentativeThumbnail(channelCode, new Location(well.getColumn(),
well.getRow()), null);
if (image != null)
{
return image;
......
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