Index: applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/ImportTest.java
===================================================================
--- applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/ImportTest.java	(revision 32382)
+++ applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/ImportTest.java	(revision 32383)
@@ -28,6 +28,6 @@
     File image = new File("images/icon16.png");
     MapillaryImportedImage img = ImageUtil.readImagesFrom(image, new LatLon(0, 0)).get(0);
-    assertEquals(0, img.getCa(), 0.01);
-    assertTrue(new LatLon(0, 0).equalsEpsilon(img.getLatLon()));
+    assertEquals(0, img.getMovingCa(), 0.01);
+    assertTrue(new LatLon(0, 0).equalsEpsilon(img.getMovingLatLon()));
   }
 
Index: applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/history/MapillaryRecordTest.java
===================================================================
--- applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/history/MapillaryRecordTest.java	(revision 32382)
+++ applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/history/MapillaryRecordTest.java	(revision 32383)
@@ -120,22 +120,22 @@
     this.record.addCommand(cmd1);
 
-    assertEquals(0.1, this.img1.getLatLon().lat(), 0.01);
-
-    this.record.undo();
-
-    assertEquals(0.0, this.img1.getLatLon().lat(), 0.01);
-
-    this.record.redo();
-
-    assertEquals(0.1, this.img1.getLatLon().lat(), 0.01);
-
-    this.record.addCommand(cmd2);
-    this.record.undo();
-
-    assertEquals(-0.1, this.img1.getLatLon().lat(), 0.01);
-
-    this.record.redo();
-
-    assertEquals(0.1, this.img1.getLatLon().lat(), 0.01);
+    assertEquals(0.1, this.img1.getMovingLatLon().lat(), 0.01);
+
+    this.record.undo();
+
+    assertEquals(0.0, this.img1.getMovingLatLon().lat(), 0.01);
+
+    this.record.redo();
+
+    assertEquals(0.1, this.img1.getMovingLatLon().lat(), 0.01);
+
+    this.record.addCommand(cmd2);
+    this.record.undo();
+
+    assertEquals(-0.1, this.img1.getMovingLatLon().lat(), 0.01);
+
+    this.record.redo();
+
+    assertEquals(0.1, this.img1.getMovingLatLon().lat(), 0.01);
   }
 
@@ -155,18 +155,18 @@
     this.record.undo();
 
-    assertEquals(-0.1, this.img1.getCa(), 0.01);
-
-    this.record.redo();
-
-    assertEquals(0.1, this.img1.getCa(), 0.01);
-
-    this.record.addCommand(cmd2);
-    this.record.undo();
-
-    assertEquals(-0.2, this.img1.getCa(), 0.01);
-
-    this.record.redo();
-
-    assertEquals(0.1, this.img1.getCa(), 0.01);
+    assertEquals(-0.1, this.img1.getMovingCa(), 0.01);
+
+    this.record.redo();
+
+    assertEquals(0.1, this.img1.getMovingCa(), 0.01);
+
+    this.record.addCommand(cmd2);
+    this.record.undo();
+
+    assertEquals(-0.2, this.img1.getMovingCa(), 0.01);
+
+    this.record.redo();
+
+    assertEquals(0.1, this.img1.getMovingCa(), 0.01);
   }
 
Index: applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/utils/ImageUtilsTest.java
===================================================================
--- applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/utils/ImageUtilsTest.java	(revision 32382)
+++ applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/utils/ImageUtilsTest.java	(revision 32383)
@@ -23,6 +23,6 @@
     List<MapillaryImportedImage> images = ImageUtil.readImagesFrom(untaggedFile, defaultLL);
     assertEquals(1, images.size());
-    assertEquals(0, images.get(0).getCa(), 1e-9);
-    assertEquals(defaultLL, images.get(0).getLatLon());
+    assertEquals(0, images.get(0).getMovingCa(), 1e-9);
+    assertEquals(defaultLL, images.get(0).getMovingLatLon());
     assertEquals(untaggedFile, images.get(0).getFile());
     long endTime = System.currentTimeMillis() / 1000 * 1000 + 1000; // Rounding to next full second
@@ -37,7 +37,7 @@
     List<MapillaryImportedImage> images = ImageUtil.readImagesFrom(untaggedFile, defaultLL);
     assertEquals(1, images.size());
-    assertEquals(0, images.get(0).getCa(), 1e-9);
-    assertEquals(55.6052777777, images.get(0).getLatLon().lat(), 1e-9);
-    assertEquals(13.0001388888, images.get(0).getLatLon().lon(), 1e-9);
+    assertEquals(0, images.get(0).getMovingCa(), 1e-9);
+    assertEquals(55.6052777777, images.get(0).getMovingLatLon().lat(), 1e-9);
+    assertEquals(13.0001388888, images.get(0).getMovingLatLon().lon(), 1e-9);
     assertEquals(untaggedFile, images.get(0).getFile());
     long endTime = System.currentTimeMillis() / 1000 * 1000 + 1000; // Rounding to next full second
@@ -52,6 +52,6 @@
     List<MapillaryImportedImage> images = ImageUtil.readImagesFrom(untaggedFile, defaultLL);
     assertEquals(1, images.size());
-    assertEquals(42.73, images.get(0).getCa(), 1e-9);
-    assertEquals(defaultLL, images.get(0).getLatLon());
+    assertEquals(42.73, images.get(0).getMovingCa(), 1e-9);
+    assertEquals(defaultLL, images.get(0).getMovingLatLon());
     assertEquals(untaggedFile, images.get(0).getFile());
     long endTime = System.currentTimeMillis() / 1000 * 1000 + 1000; // Rounding to next full second
@@ -66,6 +66,6 @@
     List<MapillaryImportedImage> images = ImageUtil.readImagesFrom(untaggedFile, defaultLL);
     assertEquals(1, images.size());
-    assertEquals(0, images.get(0).getCa(), 1e-9);
-    assertEquals(defaultLL, images.get(0).getLatLon());
+    assertEquals(0, images.get(0).getMovingCa(), 1e-9);
+    assertEquals(defaultLL, images.get(0).getMovingLatLon());
     assertEquals(untaggedFile, images.get(0).getFile());
     /* http://www.wolframalpha.com/input/?i=convert+2015-12-24T01%3A02%3A03%2B0000+to+unixtime */
